1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Opsi
  5. EnterpriseManagerBridge
Oracle Cloud Infrastructure v1.31.0 published on Wednesday, Apr 10, 2024 by Pulumi

oci.Opsi.EnterpriseManagerBridge

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.31.0 published on Wednesday, Apr 10, 2024 by Pulumi

    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("testEnterpriseManagerBridge", {
        compartmentId: _var.compartment_id,
        displayName: _var.enterprise_manager_bridge_display_name,
        objectStorageBucketName: oci_objectstorage_bucket.test_bucket.name,
        definedTags: {
            "foo-namespace.bar-key": "value",
        },
        description: _var.enterprise_manager_bridge_description,
        freeformTags: {
            "bar-key": "value",
        },
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_enterprise_manager_bridge = oci.opsi.EnterpriseManagerBridge("testEnterpriseManagerBridge",
        compartment_id=var["compartment_id"],
        display_name=var["enterprise_manager_bridge_display_name"],
        object_storage_bucket_name=oci_objectstorage_bucket["test_bucket"]["name"],
        defined_tags={
            "foo-namespace.bar-key": "value",
        },
        description=var["enterprise_manager_bridge_description"],
        freeform_tags={
            "bar-key": "value",
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/go/oci/Opsi"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := Opsi.NewEnterpriseManagerBridge(ctx, "testEnterpriseManagerBridge", &Opsi.EnterpriseManagerBridgeArgs{
    			CompartmentId:           pulumi.Any(_var.Compartment_id),
    			DisplayName:             pulumi.Any(_var.Enterprise_manager_bridge_display_name),
    			ObjectStorageBucketName: pulumi.Any(oci_objectstorage_bucket.Test_bucket.Name),
    			DefinedTags: pulumi.Map{
    				"foo-namespace.bar-key": pulumi.Any("value"),
    			},
    			Description: pulumi.Any(_var.Enterprise_manager_bridge_description),
    			FreeformTags: pulumi.Map{
    				"bar-key": pulumi.Any("value"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Oci = Pulumi.Oci;
    
    return await Deployment.RunAsync(() => 
    {
        var testEnterpriseManagerBridge = new Oci.Opsi.EnterpriseManagerBridge("testEnterpriseManagerBridge", new()
        {
            CompartmentId = @var.Compartment_id,
            DisplayName = @var.Enterprise_manager_bridge_display_name,
            ObjectStorageBucketName = oci_objectstorage_bucket.Test_bucket.Name,
            DefinedTags = 
            {
                { "foo-namespace.bar-key", "value" },
            },
            Description = @var.Enterprise_manager_bridge_description,
            FreeformTags = 
            {
                { "bar-key", "value" },
            },
        });
    
    });
    
    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(var_.compartment_id())
                .displayName(var_.enterprise_manager_bridge_display_name())
                .objectStorageBucketName(oci_objectstorage_bucket.test_bucket().name())
                .definedTags(Map.of("foo-namespace.bar-key", "value"))
                .description(var_.enterprise_manager_bridge_description())
                .freeformTags(Map.of("bar-key", "value"))
                .build());
    
        }
    }
    
    resources:
      testEnterpriseManagerBridge:
        type: oci:Opsi:EnterpriseManagerBridge
        properties:
          #Required
          compartmentId: ${var.compartment_id}
          displayName: ${var.enterprise_manager_bridge_display_name}
          objectStorageBucketName: ${oci_objectstorage_bucket.test_bucket.name}
          #Optional
          definedTags:
            foo-namespace.bar-key: value
          description: ${var.enterprise_manager_bridge_description}
          freeformTags:
            bar-key: value
    

    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, Any]] = None,
                                description: Optional[str] = None,
                                freeform_tags: Optional[Mapping[str, Any]] = 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 string
    The unique name of the resource.
    args EnterpriseManagerBridgeArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args 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 string
    The unique name of the resource.
    args EnterpriseManagerBridgeArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args EnterpriseManagerBridgeArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args EnterpriseManagerBridgeArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    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", "any" },
        },
        Description = "string",
        FreeformTags = 
        {
            { "string", "any" },
        },
    });
    
    example, err := Opsi.NewEnterpriseManagerBridge(ctx, "enterpriseManagerBridgeResource", &Opsi.EnterpriseManagerBridgeArgs{
    	CompartmentId:           pulumi.String("string"),
    	DisplayName:             pulumi.String("string"),
    	ObjectStorageBucketName: pulumi.String("string"),
    	DefinedTags: pulumi.Map{
    		"string": pulumi.Any("any"),
    	},
    	Description: pulumi.String("string"),
    	FreeformTags: pulumi.Map{
    		"string": pulumi.Any("any"),
    	},
    })
    
    var enterpriseManagerBridgeResource = new EnterpriseManagerBridge("enterpriseManagerBridgeResource", EnterpriseManagerBridgeArgs.builder()        
        .compartmentId("string")
        .displayName("string")
        .objectStorageBucketName("string")
        .definedTags(Map.of("string", "any"))
        .description("string")
        .freeformTags(Map.of("string", "any"))
        .build());
    
    enterprise_manager_bridge_resource = oci.opsi.EnterpriseManagerBridge("enterpriseManagerBridgeResource",
        compartment_id="string",
        display_name="string",
        object_storage_bucket_name="string",
        defined_tags={
            "string": "any",
        },
        description="string",
        freeform_tags={
            "string": "any",
        })
    
    const enterpriseManagerBridgeResource = new oci.opsi.EnterpriseManagerBridge("enterpriseManagerBridgeResource", {
        compartmentId: "string",
        displayName: "string",
        objectStorageBucketName: "string",
        definedTags: {
            string: "any",
        },
        description: "string",
        freeformTags: {
            string: "any",
        },
    });
    
    type: oci:Opsi:EnterpriseManagerBridge
    properties:
        compartmentId: string
        definedTags:
            string: any
        description: string
        displayName: string
        freeformTags:
            string: any
        objectStorageBucketName: string
    

    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

    The EnterpriseManagerBridge resource accepts the following input properties:

    CompartmentId string
    (Updatable) Compartment identifier of the Enterprise Manager bridge
    DisplayName string
    (Updatable) User-friedly name of Enterprise Manager Bridge that does not have to be unique.
    ObjectStorageBucketName 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, object>
    (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, object>
    (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 string
    (Updatable) Compartment identifier of the Enterprise Manager bridge
    DisplayName string
    (Updatable) User-friedly name of Enterprise Manager Bridge that does not have to be unique.
    ObjectStorageBucketName 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]interface{}
    (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]interface{}
    (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 String
    (Updatable) Compartment identifier of the Enterprise Manager bridge
    displayName String
    (Updatable) User-friedly name of Enterprise Manager Bridge that does not have to be unique.
    objectStorageBucketName 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,Object>
    (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,Object>
    (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 string
    (Updatable) Compartment identifier of the Enterprise Manager bridge
    displayName string
    (Updatable) User-friedly name of Enterprise Manager Bridge that does not have to be unique.
    objectStorageBucketName 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]: any}
    (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]: any}
    (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 str
    (Updatable) Compartment identifier of the Enterprise Manager bridge
    display_name str
    (Updatable) User-friedly name of Enterprise Manager Bridge that does not have to be unique.
    object_storage_bucket_name 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, Any]
    (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, Any]
    (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 String
    (Updatable) Compartment identifier of the Enterprise Manager bridge
    displayName String
    (Updatable) User-friedly name of Enterprise Manager Bridge that does not have to be unique.
    objectStorageBucketName 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<Any>
    (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<Any>
    (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, object>
    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]interface{}
    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,Object>
    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]: any}
    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, Any]
    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<Any>
    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, Any]] = None,
            description: Optional[str] = None,
            display_name: Optional[str] = None,
            freeform_tags: Optional[Mapping[str, Any]] = 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, Any]] = 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)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    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, object>
    (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, object>
    (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 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, object>
    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]interface{}
    (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]interface{}
    (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 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]interface{}
    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,Object>
    (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,Object>
    (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 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,Object>
    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]: any}
    (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]: any}
    (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 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]: any}
    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, Any]
    (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, Any]
    (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 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, Any]
    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<Any>
    (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<Any>
    (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 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<Any>
    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"
    

    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.
    oci logo
    Oracle Cloud Infrastructure v1.31.0 published on Wednesday, Apr 10, 2024 by Pulumi