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",
},
});
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",
})
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, "test_enterprise_manager_bridge", &Opsi.EnterpriseManagerBridgeArgs{
CompartmentId: pulumi.Any(compartmentId),
DisplayName: pulumi.Any(enterpriseManagerBridgeDisplayName),
ObjectStorageBucketName: pulumi.Any(testBucket.Name),
DefinedTags: pulumi.Map{
"foo-namespace.bar-key": pulumi.Any("value"),
},
Description: pulumi.Any(enterpriseManagerBridgeDescription),
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("test_enterprise_manager_bridge", new()
{
CompartmentId = compartmentId,
DisplayName = enterpriseManagerBridgeDisplayName,
ObjectStorageBucketName = testBucket.Name,
DefinedTags =
{
{ "foo-namespace.bar-key", "value" },
},
Description = enterpriseManagerBridgeDescription,
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(compartmentId)
.displayName(enterpriseManagerBridgeDisplayName)
.objectStorageBucketName(testBucket.name())
.definedTags(Map.of("foo-namespace.bar-key", "value"))
.description(enterpriseManagerBridgeDescription)
.freeformTags(Map.of("bar-key", "value"))
.build());
}
}
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
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.
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", "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:
- Compartment
Id string - (Updatable) Compartment identifier of the Enterprise Manager bridge
- Display
Name string - (Updatable) User-friedly name of Enterprise Manager Bridge that does not have to be unique.
- Object
Storage stringBucket Name 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
- 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
- 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"}
- Compartment
Id string - (Updatable) Compartment identifier of the Enterprise Manager bridge
- Display
Name string - (Updatable) User-friedly name of Enterprise Manager Bridge that does not have to be unique.
- Object
Storage stringBucket Name 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
- 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
- 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"}
- compartment
Id String - (Updatable) Compartment identifier of the Enterprise Manager bridge
- display
Name String - (Updatable) User-friedly name of Enterprise Manager Bridge that does not have to be unique.
- object
Storage StringBucket Name 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
- 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
- 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"}
- compartment
Id string - (Updatable) Compartment identifier of the Enterprise Manager bridge
- display
Name string - (Updatable) User-friedly name of Enterprise Manager Bridge that does not have to be unique.
- object
Storage stringBucket Name 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
- {[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
- {[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_ strbucket_ name 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
- 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
- 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"}
- compartment
Id String - (Updatable) Compartment identifier of the Enterprise Manager bridge
- display
Name String - (Updatable) User-friedly name of Enterprise Manager Bridge that does not have to be unique.
- object
Storage StringBucket Name 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
- 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
- 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.
- Lifecycle
Details 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.
- Object
Storage stringBucket Status Details - 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 stringNamespace Name - Object Storage Namespace Name
- State string
- The current state of the Enterprise Manager bridge.
- Dictionary<string, object>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The time the the Enterprise Manager bridge was first created. An RFC3339 formatted datetime string
- Time
Updated 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.
- Lifecycle
Details 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.
- Object
Storage stringBucket Status Details - 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 stringNamespace Name - Object Storage Namespace Name
- State string
- The current state of the Enterprise Manager bridge.
- map[string]interface{}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The time the the Enterprise Manager bridge was first created. An RFC3339 formatted datetime string
- Time
Updated 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.
- lifecycle
Details 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.
- object
Storage StringBucket Status Details - 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 StringNamespace Name - Object Storage Namespace Name
- state String
- The current state of the Enterprise Manager bridge.
- Map<String,Object>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The time the the Enterprise Manager bridge was first created. An RFC3339 formatted datetime string
- time
Updated 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.
- lifecycle
Details 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.
- object
Storage stringBucket Status Details - 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 stringNamespace Name - Object Storage Namespace Name
- state string
- The current state of the Enterprise Manager bridge.
- {[key: string]: any}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created string - The time the the Enterprise Manager bridge was first created. An RFC3339 formatted datetime string
- time
Updated 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_ strbucket_ status_ details - 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_ strnamespace_ name - Object Storage Namespace Name
- state str
- The current state of the Enterprise Manager bridge.
- 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.
- lifecycle
Details 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.
- object
Storage StringBucket Status Details - 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 StringNamespace Name - Object Storage Namespace Name
- state String
- The current state of the Enterprise Manager bridge.
- Map<Any>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The time the the Enterprise Manager bridge was first created. An RFC3339 formatted datetime string
- time
Updated 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.
- Compartment
Id string - (Updatable) Compartment identifier of the Enterprise Manager bridge
- 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
- Display
Name string - (Updatable) User-friedly name of Enterprise Manager Bridge that does not have to be unique.
- 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"}
- Lifecycle
Details 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.
- Object
Storage stringBucket Name 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 stringBucket Status Details - 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 stringNamespace Name - Object Storage Namespace Name
- State string
- The current state of the Enterprise Manager bridge.
- Dictionary<string, object>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The time the the Enterprise Manager bridge was first created. An RFC3339 formatted datetime string
- Time
Updated string - The time the Enterprise Manager bridge was updated. An RFC3339 formatted datetime string
- Compartment
Id string - (Updatable) Compartment identifier of the Enterprise Manager bridge
- 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
- Display
Name string - (Updatable) User-friedly name of Enterprise Manager Bridge that does not have to be unique.
- 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"}
- Lifecycle
Details 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.
- Object
Storage stringBucket Name 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 stringBucket Status Details - 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 stringNamespace Name - Object Storage Namespace Name
- State string
- The current state of the Enterprise Manager bridge.
- map[string]interface{}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The time the the Enterprise Manager bridge was first created. An RFC3339 formatted datetime string
- Time
Updated string - The time the Enterprise Manager bridge was updated. An RFC3339 formatted datetime string
- compartment
Id String - (Updatable) Compartment identifier of the Enterprise Manager bridge
- 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
- display
Name String - (Updatable) User-friedly name of Enterprise Manager Bridge that does not have to be unique.
- 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"}
- lifecycle
Details 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.
- object
Storage StringBucket Name 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 StringBucket Status Details - 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 StringNamespace Name - Object Storage Namespace Name
- state String
- The current state of the Enterprise Manager bridge.
- Map<String,Object>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The time the the Enterprise Manager bridge was first created. An RFC3339 formatted datetime string
- time
Updated String - The time the Enterprise Manager bridge was updated. An RFC3339 formatted datetime string
- compartment
Id string - (Updatable) Compartment identifier of the Enterprise Manager bridge
- {[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
- display
Name string - (Updatable) User-friedly name of Enterprise Manager Bridge that does not have to be unique.
- {[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"}
- lifecycle
Details 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.
- object
Storage stringBucket Name 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 stringBucket Status Details - 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 stringNamespace Name - Object Storage Namespace Name
- state string
- The current state of the Enterprise Manager bridge.
- {[key: string]: any}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created string - The time the the Enterprise Manager bridge was first created. An RFC3339 formatted datetime string
- time
Updated 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
- 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.
- 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_ strbucket_ name 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_ strbucket_ status_ details - 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_ strnamespace_ name - Object Storage Namespace Name
- state str
- The current state of the Enterprise Manager bridge.
- 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
- compartment
Id String - (Updatable) Compartment identifier of the Enterprise Manager bridge
- 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
- display
Name String - (Updatable) User-friedly name of Enterprise Manager Bridge that does not have to be unique.
- 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"}
- lifecycle
Details 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.
- object
Storage StringBucket Name 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 StringBucket Status Details - 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 StringNamespace Name - Object Storage Namespace Name
- state String
- The current state of the Enterprise Manager bridge.
- Map<Any>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The time the the Enterprise Manager bridge was first created. An RFC3339 formatted datetime string
- time
Updated 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.