1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Opsi
  5. EnterpriseManagerBridge
Oracle Cloud Infrastructure v2.28.0 published on Thursday, Mar 27, 2025 by Pulumi

oci.Opsi.EnterpriseManagerBridge

Explore with Pulumi AI

This resource provides the Enterprise Manager Bridge resource in Oracle Cloud Infrastructure Opsi service.

Create a Enterprise Manager bridge in Operations Insights.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";

const testEnterpriseManagerBridge = new oci.opsi.EnterpriseManagerBridge("test_enterprise_manager_bridge", {
    compartmentId: compartmentId,
    displayName: enterpriseManagerBridgeDisplayName,
    objectStorageBucketName: testBucket.name,
    definedTags: {
        "foo-namespace.bar-key": "value",
    },
    description: enterpriseManagerBridgeDescription,
    freeformTags: {
        "bar-key": "value",
    },
});
Copy
import pulumi
import pulumi_oci as oci

test_enterprise_manager_bridge = oci.opsi.EnterpriseManagerBridge("test_enterprise_manager_bridge",
    compartment_id=compartment_id,
    display_name=enterprise_manager_bridge_display_name,
    object_storage_bucket_name=test_bucket["name"],
    defined_tags={
        "foo-namespace.bar-key": "value",
    },
    description=enterprise_manager_bridge_description,
    freeform_tags={
        "bar-key": "value",
    })
Copy
package main

import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/opsi"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := opsi.NewEnterpriseManagerBridge(ctx, "test_enterprise_manager_bridge", &opsi.EnterpriseManagerBridgeArgs{
			CompartmentId:           pulumi.Any(compartmentId),
			DisplayName:             pulumi.Any(enterpriseManagerBridgeDisplayName),
			ObjectStorageBucketName: pulumi.Any(testBucket.Name),
			DefinedTags: pulumi.StringMap{
				"foo-namespace.bar-key": pulumi.String("value"),
			},
			Description: pulumi.Any(enterpriseManagerBridgeDescription),
			FreeformTags: pulumi.StringMap{
				"bar-key": pulumi.String("value"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testEnterpriseManagerBridge = new Oci.Opsi.EnterpriseManagerBridge("test_enterprise_manager_bridge", new()
    {
        CompartmentId = compartmentId,
        DisplayName = enterpriseManagerBridgeDisplayName,
        ObjectStorageBucketName = testBucket.Name,
        DefinedTags = 
        {
            { "foo-namespace.bar-key", "value" },
        },
        Description = enterpriseManagerBridgeDescription,
        FreeformTags = 
        {
            { "bar-key", "value" },
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Opsi.EnterpriseManagerBridge;
import com.pulumi.oci.Opsi.EnterpriseManagerBridgeArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var testEnterpriseManagerBridge = new EnterpriseManagerBridge("testEnterpriseManagerBridge", EnterpriseManagerBridgeArgs.builder()
            .compartmentId(compartmentId)
            .displayName(enterpriseManagerBridgeDisplayName)
            .objectStorageBucketName(testBucket.name())
            .definedTags(Map.of("foo-namespace.bar-key", "value"))
            .description(enterpriseManagerBridgeDescription)
            .freeformTags(Map.of("bar-key", "value"))
            .build());

    }
}
Copy
resources:
  testEnterpriseManagerBridge:
    type: oci:Opsi:EnterpriseManagerBridge
    name: test_enterprise_manager_bridge
    properties:
      compartmentId: ${compartmentId}
      displayName: ${enterpriseManagerBridgeDisplayName}
      objectStorageBucketName: ${testBucket.name}
      definedTags:
        foo-namespace.bar-key: value
      description: ${enterpriseManagerBridgeDescription}
      freeformTags:
        bar-key: value
Copy

Create EnterpriseManagerBridge Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new EnterpriseManagerBridge(name: string, args: EnterpriseManagerBridgeArgs, opts?: CustomResourceOptions);
@overload
def EnterpriseManagerBridge(resource_name: str,
                            args: EnterpriseManagerBridgeArgs,
                            opts: Optional[ResourceOptions] = None)

@overload
def EnterpriseManagerBridge(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            compartment_id: Optional[str] = None,
                            display_name: Optional[str] = None,
                            object_storage_bucket_name: Optional[str] = None,
                            defined_tags: Optional[Mapping[str, str]] = None,
                            description: Optional[str] = None,
                            freeform_tags: Optional[Mapping[str, str]] = None)
func NewEnterpriseManagerBridge(ctx *Context, name string, args EnterpriseManagerBridgeArgs, opts ...ResourceOption) (*EnterpriseManagerBridge, error)
public EnterpriseManagerBridge(string name, EnterpriseManagerBridgeArgs args, CustomResourceOptions? opts = null)
public EnterpriseManagerBridge(String name, EnterpriseManagerBridgeArgs args)
public EnterpriseManagerBridge(String name, EnterpriseManagerBridgeArgs args, CustomResourceOptions options)
type: oci:Opsi:EnterpriseManagerBridge
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. EnterpriseManagerBridgeArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. EnterpriseManagerBridgeArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. EnterpriseManagerBridgeArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. EnterpriseManagerBridgeArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. EnterpriseManagerBridgeArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var enterpriseManagerBridgeResource = new Oci.Opsi.EnterpriseManagerBridge("enterpriseManagerBridgeResource", new()
{
    CompartmentId = "string",
    DisplayName = "string",
    ObjectStorageBucketName = "string",
    DefinedTags = 
    {
        { "string", "string" },
    },
    Description = "string",
    FreeformTags = 
    {
        { "string", "string" },
    },
});
Copy
example, err := Opsi.NewEnterpriseManagerBridge(ctx, "enterpriseManagerBridgeResource", &Opsi.EnterpriseManagerBridgeArgs{
	CompartmentId:           pulumi.String("string"),
	DisplayName:             pulumi.String("string"),
	ObjectStorageBucketName: pulumi.String("string"),
	DefinedTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	Description: pulumi.String("string"),
	FreeformTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
Copy
var enterpriseManagerBridgeResource = new EnterpriseManagerBridge("enterpriseManagerBridgeResource", EnterpriseManagerBridgeArgs.builder()
    .compartmentId("string")
    .displayName("string")
    .objectStorageBucketName("string")
    .definedTags(Map.of("string", "string"))
    .description("string")
    .freeformTags(Map.of("string", "string"))
    .build());
Copy
enterprise_manager_bridge_resource = oci.opsi.EnterpriseManagerBridge("enterpriseManagerBridgeResource",
    compartment_id="string",
    display_name="string",
    object_storage_bucket_name="string",
    defined_tags={
        "string": "string",
    },
    description="string",
    freeform_tags={
        "string": "string",
    })
Copy
const enterpriseManagerBridgeResource = new oci.opsi.EnterpriseManagerBridge("enterpriseManagerBridgeResource", {
    compartmentId: "string",
    displayName: "string",
    objectStorageBucketName: "string",
    definedTags: {
        string: "string",
    },
    description: "string",
    freeformTags: {
        string: "string",
    },
});
Copy
type: oci:Opsi:EnterpriseManagerBridge
properties:
    compartmentId: string
    definedTags:
        string: string
    description: string
    displayName: string
    freeformTags:
        string: string
    objectStorageBucketName: string
Copy

EnterpriseManagerBridge Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The EnterpriseManagerBridge resource accepts the following input properties:

CompartmentId This property is required. string
(Updatable) Compartment identifier of the Enterprise Manager bridge
DisplayName This property is required. string
(Updatable) User-friedly name of Enterprise Manager Bridge that does not have to be unique.
ObjectStorageBucketName
This property is required.
Changes to this property will trigger replacement.
string

Object Storage Bucket Name

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

DefinedTags Dictionary<string, string>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
Description string
(Updatable) Description of Enterprise Manager Bridge
FreeformTags Dictionary<string, string>
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
CompartmentId This property is required. string
(Updatable) Compartment identifier of the Enterprise Manager bridge
DisplayName This property is required. string
(Updatable) User-friedly name of Enterprise Manager Bridge that does not have to be unique.
ObjectStorageBucketName
This property is required.
Changes to this property will trigger replacement.
string

Object Storage Bucket Name

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

DefinedTags map[string]string
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
Description string
(Updatable) Description of Enterprise Manager Bridge
FreeformTags map[string]string
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
compartmentId This property is required. String
(Updatable) Compartment identifier of the Enterprise Manager bridge
displayName This property is required. String
(Updatable) User-friedly name of Enterprise Manager Bridge that does not have to be unique.
objectStorageBucketName
This property is required.
Changes to this property will trigger replacement.
String

Object Storage Bucket Name

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

definedTags Map<String,String>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
description String
(Updatable) Description of Enterprise Manager Bridge
freeformTags Map<String,String>
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
compartmentId This property is required. string
(Updatable) Compartment identifier of the Enterprise Manager bridge
displayName This property is required. string
(Updatable) User-friedly name of Enterprise Manager Bridge that does not have to be unique.
objectStorageBucketName
This property is required.
Changes to this property will trigger replacement.
string

Object Storage Bucket Name

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

definedTags {[key: string]: string}
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
description string
(Updatable) Description of Enterprise Manager Bridge
freeformTags {[key: string]: string}
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
compartment_id This property is required. str
(Updatable) Compartment identifier of the Enterprise Manager bridge
display_name This property is required. str
(Updatable) User-friedly name of Enterprise Manager Bridge that does not have to be unique.
object_storage_bucket_name
This property is required.
Changes to this property will trigger replacement.
str

Object Storage Bucket Name

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

defined_tags Mapping[str, str]
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
description str
(Updatable) Description of Enterprise Manager Bridge
freeform_tags Mapping[str, str]
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
compartmentId This property is required. String
(Updatable) Compartment identifier of the Enterprise Manager bridge
displayName This property is required. String
(Updatable) User-friedly name of Enterprise Manager Bridge that does not have to be unique.
objectStorageBucketName
This property is required.
Changes to this property will trigger replacement.
String

Object Storage Bucket Name

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

definedTags Map<String>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
description String
(Updatable) Description of Enterprise Manager Bridge
freeformTags Map<String>
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

Outputs

All input properties are implicitly available as output properties. Additionally, the EnterpriseManagerBridge resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
LifecycleDetails string
A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
ObjectStorageBucketStatusDetails string
A message describing status of the object storage bucket of this resource. For example, it can be used to provide actionable information about the permission and content validity of the bucket.
ObjectStorageNamespaceName string
Object Storage Namespace Name
State string
The current state of the Enterprise Manager bridge.
SystemTags Dictionary<string, string>
System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
TimeCreated string
The time the the Enterprise Manager bridge was first created. An RFC3339 formatted datetime string
TimeUpdated string
The time the Enterprise Manager bridge was updated. An RFC3339 formatted datetime string
Id string
The provider-assigned unique ID for this managed resource.
LifecycleDetails string
A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
ObjectStorageBucketStatusDetails string
A message describing status of the object storage bucket of this resource. For example, it can be used to provide actionable information about the permission and content validity of the bucket.
ObjectStorageNamespaceName string
Object Storage Namespace Name
State string
The current state of the Enterprise Manager bridge.
SystemTags map[string]string
System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
TimeCreated string
The time the the Enterprise Manager bridge was first created. An RFC3339 formatted datetime string
TimeUpdated string
The time the Enterprise Manager bridge was updated. An RFC3339 formatted datetime string
id String
The provider-assigned unique ID for this managed resource.
lifecycleDetails String
A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
objectStorageBucketStatusDetails String
A message describing status of the object storage bucket of this resource. For example, it can be used to provide actionable information about the permission and content validity of the bucket.
objectStorageNamespaceName String
Object Storage Namespace Name
state String
The current state of the Enterprise Manager bridge.
systemTags Map<String,String>
System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated String
The time the the Enterprise Manager bridge was first created. An RFC3339 formatted datetime string
timeUpdated String
The time the Enterprise Manager bridge was updated. An RFC3339 formatted datetime string
id string
The provider-assigned unique ID for this managed resource.
lifecycleDetails string
A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
objectStorageBucketStatusDetails string
A message describing status of the object storage bucket of this resource. For example, it can be used to provide actionable information about the permission and content validity of the bucket.
objectStorageNamespaceName string
Object Storage Namespace Name
state string
The current state of the Enterprise Manager bridge.
systemTags {[key: string]: string}
System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated string
The time the the Enterprise Manager bridge was first created. An RFC3339 formatted datetime string
timeUpdated string
The time the Enterprise Manager bridge was updated. An RFC3339 formatted datetime string
id str
The provider-assigned unique ID for this managed resource.
lifecycle_details str
A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
object_storage_bucket_status_details str
A message describing status of the object storage bucket of this resource. For example, it can be used to provide actionable information about the permission and content validity of the bucket.
object_storage_namespace_name str
Object Storage Namespace Name
state str
The current state of the Enterprise Manager bridge.
system_tags Mapping[str, str]
System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
time_created str
The time the the Enterprise Manager bridge was first created. An RFC3339 formatted datetime string
time_updated str
The time the Enterprise Manager bridge was updated. An RFC3339 formatted datetime string
id String
The provider-assigned unique ID for this managed resource.
lifecycleDetails String
A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
objectStorageBucketStatusDetails String
A message describing status of the object storage bucket of this resource. For example, it can be used to provide actionable information about the permission and content validity of the bucket.
objectStorageNamespaceName String
Object Storage Namespace Name
state String
The current state of the Enterprise Manager bridge.
systemTags Map<String>
System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated String
The time the the Enterprise Manager bridge was first created. An RFC3339 formatted datetime string
timeUpdated String
The time the Enterprise Manager bridge was updated. An RFC3339 formatted datetime string

Look up Existing EnterpriseManagerBridge Resource

Get an existing EnterpriseManagerBridge resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: EnterpriseManagerBridgeState, opts?: CustomResourceOptions): EnterpriseManagerBridge
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        compartment_id: Optional[str] = None,
        defined_tags: Optional[Mapping[str, str]] = None,
        description: Optional[str] = None,
        display_name: Optional[str] = None,
        freeform_tags: Optional[Mapping[str, str]] = None,
        lifecycle_details: Optional[str] = None,
        object_storage_bucket_name: Optional[str] = None,
        object_storage_bucket_status_details: Optional[str] = None,
        object_storage_namespace_name: Optional[str] = None,
        state: Optional[str] = None,
        system_tags: Optional[Mapping[str, str]] = None,
        time_created: Optional[str] = None,
        time_updated: Optional[str] = None) -> EnterpriseManagerBridge
func GetEnterpriseManagerBridge(ctx *Context, name string, id IDInput, state *EnterpriseManagerBridgeState, opts ...ResourceOption) (*EnterpriseManagerBridge, error)
public static EnterpriseManagerBridge Get(string name, Input<string> id, EnterpriseManagerBridgeState? state, CustomResourceOptions? opts = null)
public static EnterpriseManagerBridge get(String name, Output<String> id, EnterpriseManagerBridgeState state, CustomResourceOptions options)
resources:  _:    type: oci:Opsi:EnterpriseManagerBridge    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
CompartmentId string
(Updatable) Compartment identifier of the Enterprise Manager bridge
DefinedTags Dictionary<string, string>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
Description string
(Updatable) Description of Enterprise Manager Bridge
DisplayName string
(Updatable) User-friedly name of Enterprise Manager Bridge that does not have to be unique.
FreeformTags Dictionary<string, string>
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
LifecycleDetails string
A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
ObjectStorageBucketName Changes to this property will trigger replacement. string

Object Storage Bucket Name

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

ObjectStorageBucketStatusDetails string
A message describing status of the object storage bucket of this resource. For example, it can be used to provide actionable information about the permission and content validity of the bucket.
ObjectStorageNamespaceName string
Object Storage Namespace Name
State string
The current state of the Enterprise Manager bridge.
SystemTags Dictionary<string, string>
System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
TimeCreated string
The time the the Enterprise Manager bridge was first created. An RFC3339 formatted datetime string
TimeUpdated string
The time the Enterprise Manager bridge was updated. An RFC3339 formatted datetime string
CompartmentId string
(Updatable) Compartment identifier of the Enterprise Manager bridge
DefinedTags map[string]string
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
Description string
(Updatable) Description of Enterprise Manager Bridge
DisplayName string
(Updatable) User-friedly name of Enterprise Manager Bridge that does not have to be unique.
FreeformTags map[string]string
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
LifecycleDetails string
A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
ObjectStorageBucketName Changes to this property will trigger replacement. string

Object Storage Bucket Name

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

ObjectStorageBucketStatusDetails string
A message describing status of the object storage bucket of this resource. For example, it can be used to provide actionable information about the permission and content validity of the bucket.
ObjectStorageNamespaceName string
Object Storage Namespace Name
State string
The current state of the Enterprise Manager bridge.
SystemTags map[string]string
System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
TimeCreated string
The time the the Enterprise Manager bridge was first created. An RFC3339 formatted datetime string
TimeUpdated string
The time the Enterprise Manager bridge was updated. An RFC3339 formatted datetime string
compartmentId String
(Updatable) Compartment identifier of the Enterprise Manager bridge
definedTags Map<String,String>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
description String
(Updatable) Description of Enterprise Manager Bridge
displayName String
(Updatable) User-friedly name of Enterprise Manager Bridge that does not have to be unique.
freeformTags Map<String,String>
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
lifecycleDetails String
A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
objectStorageBucketName Changes to this property will trigger replacement. String

Object Storage Bucket Name

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

objectStorageBucketStatusDetails String
A message describing status of the object storage bucket of this resource. For example, it can be used to provide actionable information about the permission and content validity of the bucket.
objectStorageNamespaceName String
Object Storage Namespace Name
state String
The current state of the Enterprise Manager bridge.
systemTags Map<String,String>
System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated String
The time the the Enterprise Manager bridge was first created. An RFC3339 formatted datetime string
timeUpdated String
The time the Enterprise Manager bridge was updated. An RFC3339 formatted datetime string
compartmentId string
(Updatable) Compartment identifier of the Enterprise Manager bridge
definedTags {[key: string]: string}
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
description string
(Updatable) Description of Enterprise Manager Bridge
displayName string
(Updatable) User-friedly name of Enterprise Manager Bridge that does not have to be unique.
freeformTags {[key: string]: string}
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
lifecycleDetails string
A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
objectStorageBucketName Changes to this property will trigger replacement. string

Object Storage Bucket Name

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

objectStorageBucketStatusDetails string
A message describing status of the object storage bucket of this resource. For example, it can be used to provide actionable information about the permission and content validity of the bucket.
objectStorageNamespaceName string
Object Storage Namespace Name
state string
The current state of the Enterprise Manager bridge.
systemTags {[key: string]: string}
System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated string
The time the the Enterprise Manager bridge was first created. An RFC3339 formatted datetime string
timeUpdated string
The time the Enterprise Manager bridge was updated. An RFC3339 formatted datetime string
compartment_id str
(Updatable) Compartment identifier of the Enterprise Manager bridge
defined_tags Mapping[str, str]
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
description str
(Updatable) Description of Enterprise Manager Bridge
display_name str
(Updatable) User-friedly name of Enterprise Manager Bridge that does not have to be unique.
freeform_tags Mapping[str, str]
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
lifecycle_details str
A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
object_storage_bucket_name Changes to this property will trigger replacement. str

Object Storage Bucket Name

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

object_storage_bucket_status_details str
A message describing status of the object storage bucket of this resource. For example, it can be used to provide actionable information about the permission and content validity of the bucket.
object_storage_namespace_name str
Object Storage Namespace Name
state str
The current state of the Enterprise Manager bridge.
system_tags Mapping[str, str]
System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
time_created str
The time the the Enterprise Manager bridge was first created. An RFC3339 formatted datetime string
time_updated str
The time the Enterprise Manager bridge was updated. An RFC3339 formatted datetime string
compartmentId String
(Updatable) Compartment identifier of the Enterprise Manager bridge
definedTags Map<String>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
description String
(Updatable) Description of Enterprise Manager Bridge
displayName String
(Updatable) User-friedly name of Enterprise Manager Bridge that does not have to be unique.
freeformTags Map<String>
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
lifecycleDetails String
A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
objectStorageBucketName Changes to this property will trigger replacement. String

Object Storage Bucket Name

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

objectStorageBucketStatusDetails String
A message describing status of the object storage bucket of this resource. For example, it can be used to provide actionable information about the permission and content validity of the bucket.
objectStorageNamespaceName String
Object Storage Namespace Name
state String
The current state of the Enterprise Manager bridge.
systemTags Map<String>
System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated String
The time the the Enterprise Manager bridge was first created. An RFC3339 formatted datetime string
timeUpdated String
The time the Enterprise Manager bridge was updated. An RFC3339 formatted datetime string

Import

EnterpriseManagerBridges can be imported using the id, e.g.

$ pulumi import oci:Opsi/enterpriseManagerBridge:EnterpriseManagerBridge test_enterprise_manager_bridge "id"
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
oci pulumi/pulumi-oci
License
Apache-2.0
Notes
This Pulumi package is based on the oci Terraform Provider.