oci.Opsi.ExadataInsight
This resource provides the Exadata Insight resource in Oracle Cloud Infrastructure Opsi service.
Create an Exadata insight resource for an Exadata system in Operations Insights. The Exadata system will be enabled in Operations Insights. Exadata-related metric collection and analysis will be started.
Example Usage
using System.Collections.Generic;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() =>
{
var testExadataInsight = new Oci.Opsi.ExadataInsight("testExadataInsight", new()
{
CompartmentId = @var.Compartment_id,
EnterpriseManagerBridgeId = oci_opsi_enterprise_manager_bridge.Test_enterprise_manager_bridge.Id,
EnterpriseManagerEntityIdentifier = @var.Exadata_insight_enterprise_manager_entity_identifier,
EnterpriseManagerIdentifier = @var.Exadata_insight_enterprise_manager_identifier,
EntitySource = @var.Exadata_insight_entity_source,
DefinedTags =
{
{ "foo-namespace.bar-key", "value" },
},
FreeformTags =
{
{ "bar-key", "value" },
},
IsAutoSyncEnabled = @var.Exadata_insight_is_auto_sync_enabled,
});
});
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.NewExadataInsight(ctx, "testExadataInsight", &Opsi.ExadataInsightArgs{
CompartmentId: pulumi.Any(_var.Compartment_id),
EnterpriseManagerBridgeId: pulumi.Any(oci_opsi_enterprise_manager_bridge.Test_enterprise_manager_bridge.Id),
EnterpriseManagerEntityIdentifier: pulumi.Any(_var.Exadata_insight_enterprise_manager_entity_identifier),
EnterpriseManagerIdentifier: pulumi.Any(_var.Exadata_insight_enterprise_manager_identifier),
EntitySource: pulumi.Any(_var.Exadata_insight_entity_source),
DefinedTags: pulumi.AnyMap{
"foo-namespace.bar-key": pulumi.Any("value"),
},
FreeformTags: pulumi.AnyMap{
"bar-key": pulumi.Any("value"),
},
IsAutoSyncEnabled: pulumi.Any(_var.Exadata_insight_is_auto_sync_enabled),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Opsi.ExadataInsight;
import com.pulumi.oci.Opsi.ExadataInsightArgs;
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 testExadataInsight = new ExadataInsight("testExadataInsight", ExadataInsightArgs.builder()
.compartmentId(var_.compartment_id())
.enterpriseManagerBridgeId(oci_opsi_enterprise_manager_bridge.test_enterprise_manager_bridge().id())
.enterpriseManagerEntityIdentifier(var_.exadata_insight_enterprise_manager_entity_identifier())
.enterpriseManagerIdentifier(var_.exadata_insight_enterprise_manager_identifier())
.entitySource(var_.exadata_insight_entity_source())
.definedTags(Map.of("foo-namespace.bar-key", "value"))
.freeformTags(Map.of("bar-key", "value"))
.isAutoSyncEnabled(var_.exadata_insight_is_auto_sync_enabled())
.build());
}
}
import pulumi
import pulumi_oci as oci
test_exadata_insight = oci.opsi.ExadataInsight("testExadataInsight",
compartment_id=var["compartment_id"],
enterprise_manager_bridge_id=oci_opsi_enterprise_manager_bridge["test_enterprise_manager_bridge"]["id"],
enterprise_manager_entity_identifier=var["exadata_insight_enterprise_manager_entity_identifier"],
enterprise_manager_identifier=var["exadata_insight_enterprise_manager_identifier"],
entity_source=var["exadata_insight_entity_source"],
defined_tags={
"foo-namespace.bar-key": "value",
},
freeform_tags={
"bar-key": "value",
},
is_auto_sync_enabled=var["exadata_insight_is_auto_sync_enabled"])
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testExadataInsight = new oci.opsi.ExadataInsight("testExadataInsight", {
compartmentId: _var.compartment_id,
enterpriseManagerBridgeId: oci_opsi_enterprise_manager_bridge.test_enterprise_manager_bridge.id,
enterpriseManagerEntityIdentifier: _var.exadata_insight_enterprise_manager_entity_identifier,
enterpriseManagerIdentifier: _var.exadata_insight_enterprise_manager_identifier,
entitySource: _var.exadata_insight_entity_source,
definedTags: {
"foo-namespace.bar-key": "value",
},
freeformTags: {
"bar-key": "value",
},
isAutoSyncEnabled: _var.exadata_insight_is_auto_sync_enabled,
});
resources:
testExadataInsight:
type: oci:Opsi:ExadataInsight
properties:
#Required
compartmentId: ${var.compartment_id}
enterpriseManagerBridgeId: ${oci_opsi_enterprise_manager_bridge.test_enterprise_manager_bridge.id}
enterpriseManagerEntityIdentifier: ${var.exadata_insight_enterprise_manager_entity_identifier}
enterpriseManagerIdentifier: ${var.exadata_insight_enterprise_manager_identifier}
entitySource: ${var.exadata_insight_entity_source}
#Optional
definedTags:
foo-namespace.bar-key: value
freeformTags:
bar-key: value
isAutoSyncEnabled: ${var.exadata_insight_is_auto_sync_enabled}
Create ExadataInsight Resource
new ExadataInsight(name: string, args: ExadataInsightArgs, opts?: CustomResourceOptions);
@overload
def ExadataInsight(resource_name: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
defined_tags: Optional[Mapping[str, Any]] = None,
enterprise_manager_bridge_id: Optional[str] = None,
enterprise_manager_entity_identifier: Optional[str] = None,
enterprise_manager_identifier: Optional[str] = None,
entity_source: Optional[str] = None,
exadata_infra_id: Optional[str] = None,
freeform_tags: Optional[Mapping[str, Any]] = None,
is_auto_sync_enabled: Optional[bool] = None,
member_vm_cluster_details: Optional[Sequence[_opsi.ExadataInsightMemberVmClusterDetailArgs]] = None,
status: Optional[str] = None)
@overload
def ExadataInsight(resource_name: str,
args: ExadataInsightArgs,
opts: Optional[ResourceOptions] = None)
func NewExadataInsight(ctx *Context, name string, args ExadataInsightArgs, opts ...ResourceOption) (*ExadataInsight, error)
public ExadataInsight(string name, ExadataInsightArgs args, CustomResourceOptions? opts = null)
public ExadataInsight(String name, ExadataInsightArgs args)
public ExadataInsight(String name, ExadataInsightArgs args, CustomResourceOptions options)
type: oci:Opsi:ExadataInsight
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ExadataInsightArgs
- 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 ExadataInsightArgs
- 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 ExadataInsightArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ExadataInsightArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ExadataInsightArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
ExadataInsight 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 ExadataInsight resource accepts the following input properties:
- Compartment
Id string (Updatable) Compartment Identifier of Exadata insight
- Entity
Source string (Updatable) Source of the Exadata system.
- Dictionary<string, object>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Enterprise
Manager stringBridge Id OPSI Enterprise Manager Bridge OCID
- Enterprise
Manager stringEntity Identifier Enterprise Manager Entity Unique Identifier
- Enterprise
Manager stringIdentifier Enterprise Manager Unique Identifier
- Exadata
Infra stringId - 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"}
- Is
Auto boolSync Enabled (Updatable) Set to true to enable automatic enablement and disablement of related targets from Enterprise Manager. New resources (e.g. Database Insights) will be placed in the same compartment as the related Exadata Insight.
- Member
Vm List<ExadataCluster Details Insight Member Vm Cluster Detail Args> - Status string
(Updatable) Status of the resource. Example: "ENABLED", "DISABLED". Resource can be either enabled or disabled by updating the value of status field to either "ENABLED" or "DISABLED"
- Compartment
Id string (Updatable) Compartment Identifier of Exadata insight
- Entity
Source string (Updatable) Source of the Exadata system.
- map[string]interface{}
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Enterprise
Manager stringBridge Id OPSI Enterprise Manager Bridge OCID
- Enterprise
Manager stringEntity Identifier Enterprise Manager Entity Unique Identifier
- Enterprise
Manager stringIdentifier Enterprise Manager Unique Identifier
- Exadata
Infra stringId - 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"}
- Is
Auto boolSync Enabled (Updatable) Set to true to enable automatic enablement and disablement of related targets from Enterprise Manager. New resources (e.g. Database Insights) will be placed in the same compartment as the related Exadata Insight.
- Member
Vm []ExadataCluster Details Insight Member Vm Cluster Detail Args - Status string
(Updatable) Status of the resource. Example: "ENABLED", "DISABLED". Resource can be either enabled or disabled by updating the value of status field to either "ENABLED" or "DISABLED"
- compartment
Id String (Updatable) Compartment Identifier of Exadata insight
- entity
Source String (Updatable) Source of the Exadata system.
- Map<String,Object>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- enterprise
Manager StringBridge Id OPSI Enterprise Manager Bridge OCID
- enterprise
Manager StringEntity Identifier Enterprise Manager Entity Unique Identifier
- enterprise
Manager StringIdentifier Enterprise Manager Unique Identifier
- exadata
Infra StringId - 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"}
- is
Auto BooleanSync Enabled (Updatable) Set to true to enable automatic enablement and disablement of related targets from Enterprise Manager. New resources (e.g. Database Insights) will be placed in the same compartment as the related Exadata Insight.
- member
Vm List<ExadataCluster Details Insight Member Vm Cluster Detail Args> - status String
(Updatable) Status of the resource. Example: "ENABLED", "DISABLED". Resource can be either enabled or disabled by updating the value of status field to either "ENABLED" or "DISABLED"
- compartment
Id string (Updatable) Compartment Identifier of Exadata insight
- entity
Source string (Updatable) Source of the Exadata system.
- {[key: string]: any}
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- enterprise
Manager stringBridge Id OPSI Enterprise Manager Bridge OCID
- enterprise
Manager stringEntity Identifier Enterprise Manager Entity Unique Identifier
- enterprise
Manager stringIdentifier Enterprise Manager Unique Identifier
- exadata
Infra stringId - {[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"}
- is
Auto booleanSync Enabled (Updatable) Set to true to enable automatic enablement and disablement of related targets from Enterprise Manager. New resources (e.g. Database Insights) will be placed in the same compartment as the related Exadata Insight.
- member
Vm ExadataCluster Details Insight Member Vm Cluster Detail Args[] - status string
(Updatable) Status of the resource. Example: "ENABLED", "DISABLED". Resource can be either enabled or disabled by updating the value of status field to either "ENABLED" or "DISABLED"
- compartment_
id str (Updatable) Compartment Identifier of Exadata insight
- entity_
source str (Updatable) Source of the Exadata system.
- Mapping[str, Any]
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- enterprise_
manager_ strbridge_ id OPSI Enterprise Manager Bridge OCID
- enterprise_
manager_ strentity_ identifier Enterprise Manager Entity Unique Identifier
- enterprise_
manager_ stridentifier Enterprise Manager Unique Identifier
- exadata_
infra_ strid - 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"}
- is_
auto_ boolsync_ enabled (Updatable) Set to true to enable automatic enablement and disablement of related targets from Enterprise Manager. New resources (e.g. Database Insights) will be placed in the same compartment as the related Exadata Insight.
- member_
vm_ Exadatacluster_ details Insight Member Vm Cluster Detail Args] - status str
(Updatable) Status of the resource. Example: "ENABLED", "DISABLED". Resource can be either enabled or disabled by updating the value of status field to either "ENABLED" or "DISABLED"
- compartment
Id String (Updatable) Compartment Identifier of Exadata insight
- entity
Source String (Updatable) Source of the Exadata system.
- Map<Any>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- enterprise
Manager StringBridge Id OPSI Enterprise Manager Bridge OCID
- enterprise
Manager StringEntity Identifier Enterprise Manager Entity Unique Identifier
- enterprise
Manager StringIdentifier Enterprise Manager Unique Identifier
- exadata
Infra StringId - 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"}
- is
Auto BooleanSync Enabled (Updatable) Set to true to enable automatic enablement and disablement of related targets from Enterprise Manager. New resources (e.g. Database Insights) will be placed in the same compartment as the related Exadata Insight.
- member
Vm List<Property Map>Cluster Details - status String
(Updatable) Status of the resource. Example: "ENABLED", "DISABLED". Resource can be either enabled or disabled by updating the value of status field to either "ENABLED" or "DISABLED"
Outputs
All input properties are implicitly available as output properties. Additionally, the ExadataInsight resource produces the following output properties:
- Enterprise
Manager stringEntity Display Name Enterprise Manager Entity Display Name
- Enterprise
Manager stringEntity Name Enterprise Manager Entity Name
- Enterprise
Manager stringEntity Type Enterprise Manager Entity Type
- Exadata
Display stringName The user-friendly name for the Exadata system. The name does not have to be unique.
- Exadata
Infra stringResource Type - Exadata
Name string The Exadata system name. If the Exadata systems managed by Enterprise Manager, the name is unique amongst the Exadata systems managed by the same Enterprise Manager.
- Exadata
Rack stringType Exadata rack type.
- Exadata
Shape string - Exadata
Type string Operations Insights internal representation of the the Exadata system type.
- Id string
The provider-assigned unique ID for this managed resource.
- Is
Virtualized boolExadata true if virtualization is used in the Exadata system
- 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.
- State string
The current state of the Exadata insight.
- 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 Exadata insight was first enabled. An RFC3339 formatted datetime string
- Time
Updated string The time the Exadata insight was updated. An RFC3339 formatted datetime string
- Enterprise
Manager stringEntity Display Name Enterprise Manager Entity Display Name
- Enterprise
Manager stringEntity Name Enterprise Manager Entity Name
- Enterprise
Manager stringEntity Type Enterprise Manager Entity Type
- Exadata
Display stringName The user-friendly name for the Exadata system. The name does not have to be unique.
- Exadata
Infra stringResource Type - Exadata
Name string The Exadata system name. If the Exadata systems managed by Enterprise Manager, the name is unique amongst the Exadata systems managed by the same Enterprise Manager.
- Exadata
Rack stringType Exadata rack type.
- Exadata
Shape string - Exadata
Type string Operations Insights internal representation of the the Exadata system type.
- Id string
The provider-assigned unique ID for this managed resource.
- Is
Virtualized boolExadata true if virtualization is used in the Exadata system
- 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.
- State string
The current state of the Exadata insight.
- 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 Exadata insight was first enabled. An RFC3339 formatted datetime string
- Time
Updated string The time the Exadata insight was updated. An RFC3339 formatted datetime string
- enterprise
Manager StringEntity Display Name Enterprise Manager Entity Display Name
- enterprise
Manager StringEntity Name Enterprise Manager Entity Name
- enterprise
Manager StringEntity Type Enterprise Manager Entity Type
- exadata
Display StringName The user-friendly name for the Exadata system. The name does not have to be unique.
- exadata
Infra StringResource Type - exadata
Name String The Exadata system name. If the Exadata systems managed by Enterprise Manager, the name is unique amongst the Exadata systems managed by the same Enterprise Manager.
- exadata
Rack StringType Exadata rack type.
- exadata
Shape String - exadata
Type String Operations Insights internal representation of the the Exadata system type.
- id String
The provider-assigned unique ID for this managed resource.
- is
Virtualized BooleanExadata true if virtualization is used in the Exadata system
- 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.
- state String
The current state of the Exadata insight.
- 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 Exadata insight was first enabled. An RFC3339 formatted datetime string
- time
Updated String The time the Exadata insight was updated. An RFC3339 formatted datetime string
- enterprise
Manager stringEntity Display Name Enterprise Manager Entity Display Name
- enterprise
Manager stringEntity Name Enterprise Manager Entity Name
- enterprise
Manager stringEntity Type Enterprise Manager Entity Type
- exadata
Display stringName The user-friendly name for the Exadata system. The name does not have to be unique.
- exadata
Infra stringResource Type - exadata
Name string The Exadata system name. If the Exadata systems managed by Enterprise Manager, the name is unique amongst the Exadata systems managed by the same Enterprise Manager.
- exadata
Rack stringType Exadata rack type.
- exadata
Shape string - exadata
Type string Operations Insights internal representation of the the Exadata system type.
- id string
The provider-assigned unique ID for this managed resource.
- is
Virtualized booleanExadata true if virtualization is used in the Exadata system
- 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.
- state string
The current state of the Exadata insight.
- {[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 Exadata insight was first enabled. An RFC3339 formatted datetime string
- time
Updated string The time the Exadata insight was updated. An RFC3339 formatted datetime string
- enterprise_
manager_ strentity_ display_ name Enterprise Manager Entity Display Name
- enterprise_
manager_ strentity_ name Enterprise Manager Entity Name
- enterprise_
manager_ strentity_ type Enterprise Manager Entity Type
- exadata_
display_ strname The user-friendly name for the Exadata system. The name does not have to be unique.
- exadata_
infra_ strresource_ type - exadata_
name str The Exadata system name. If the Exadata systems managed by Enterprise Manager, the name is unique amongst the Exadata systems managed by the same Enterprise Manager.
- exadata_
rack_ strtype Exadata rack type.
- exadata_
shape str - exadata_
type str Operations Insights internal representation of the the Exadata system type.
- id str
The provider-assigned unique ID for this managed resource.
- is_
virtualized_ boolexadata true if virtualization is used in the Exadata system
- 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.
- state str
The current state of the Exadata insight.
- 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 Exadata insight was first enabled. An RFC3339 formatted datetime string
- time_
updated str The time the Exadata insight was updated. An RFC3339 formatted datetime string
- enterprise
Manager StringEntity Display Name Enterprise Manager Entity Display Name
- enterprise
Manager StringEntity Name Enterprise Manager Entity Name
- enterprise
Manager StringEntity Type Enterprise Manager Entity Type
- exadata
Display StringName The user-friendly name for the Exadata system. The name does not have to be unique.
- exadata
Infra StringResource Type - exadata
Name String The Exadata system name. If the Exadata systems managed by Enterprise Manager, the name is unique amongst the Exadata systems managed by the same Enterprise Manager.
- exadata
Rack StringType Exadata rack type.
- exadata
Shape String - exadata
Type String Operations Insights internal representation of the the Exadata system type.
- id String
The provider-assigned unique ID for this managed resource.
- is
Virtualized BooleanExadata true if virtualization is used in the Exadata system
- 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.
- state String
The current state of the Exadata insight.
- 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 Exadata insight was first enabled. An RFC3339 formatted datetime string
- time
Updated String The time the Exadata insight was updated. An RFC3339 formatted datetime string
Look up Existing ExadataInsight Resource
Get an existing ExadataInsight 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?: ExadataInsightState, opts?: CustomResourceOptions): ExadataInsight
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
defined_tags: Optional[Mapping[str, Any]] = None,
enterprise_manager_bridge_id: Optional[str] = None,
enterprise_manager_entity_display_name: Optional[str] = None,
enterprise_manager_entity_identifier: Optional[str] = None,
enterprise_manager_entity_name: Optional[str] = None,
enterprise_manager_entity_type: Optional[str] = None,
enterprise_manager_identifier: Optional[str] = None,
entity_source: Optional[str] = None,
exadata_display_name: Optional[str] = None,
exadata_infra_id: Optional[str] = None,
exadata_infra_resource_type: Optional[str] = None,
exadata_name: Optional[str] = None,
exadata_rack_type: Optional[str] = None,
exadata_shape: Optional[str] = None,
exadata_type: Optional[str] = None,
freeform_tags: Optional[Mapping[str, Any]] = None,
is_auto_sync_enabled: Optional[bool] = None,
is_virtualized_exadata: Optional[bool] = None,
lifecycle_details: Optional[str] = None,
member_vm_cluster_details: Optional[Sequence[_opsi.ExadataInsightMemberVmClusterDetailArgs]] = None,
state: Optional[str] = None,
status: Optional[str] = None,
system_tags: Optional[Mapping[str, Any]] = None,
time_created: Optional[str] = None,
time_updated: Optional[str] = None) -> ExadataInsight
func GetExadataInsight(ctx *Context, name string, id IDInput, state *ExadataInsightState, opts ...ResourceOption) (*ExadataInsight, error)
public static ExadataInsight Get(string name, Input<string> id, ExadataInsightState? state, CustomResourceOptions? opts = null)
public static ExadataInsight get(String name, Output<String> id, ExadataInsightState 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 Exadata insight
- Dictionary<string, object>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Enterprise
Manager stringBridge Id OPSI Enterprise Manager Bridge OCID
- Enterprise
Manager stringEntity Display Name Enterprise Manager Entity Display Name
- Enterprise
Manager stringEntity Identifier Enterprise Manager Entity Unique Identifier
- Enterprise
Manager stringEntity Name Enterprise Manager Entity Name
- Enterprise
Manager stringEntity Type Enterprise Manager Entity Type
- Enterprise
Manager stringIdentifier Enterprise Manager Unique Identifier
- Entity
Source string (Updatable) Source of the Exadata system.
- Exadata
Display stringName The user-friendly name for the Exadata system. The name does not have to be unique.
- Exadata
Infra stringId - Exadata
Infra stringResource Type - Exadata
Name string The Exadata system name. If the Exadata systems managed by Enterprise Manager, the name is unique amongst the Exadata systems managed by the same Enterprise Manager.
- Exadata
Rack stringType Exadata rack type.
- Exadata
Shape string - Exadata
Type string Operations Insights internal representation of the the Exadata system type.
- 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"}
- Is
Auto boolSync Enabled (Updatable) Set to true to enable automatic enablement and disablement of related targets from Enterprise Manager. New resources (e.g. Database Insights) will be placed in the same compartment as the related Exadata Insight.
- Is
Virtualized boolExadata true if virtualization is used in the Exadata system
- 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.
- Member
Vm List<ExadataCluster Details Insight Member Vm Cluster Detail Args> - State string
The current state of the Exadata insight.
- Status string
(Updatable) Status of the resource. Example: "ENABLED", "DISABLED". Resource can be either enabled or disabled by updating the value of status field to either "ENABLED" or "DISABLED"
- 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 Exadata insight was first enabled. An RFC3339 formatted datetime string
- Time
Updated string The time the Exadata insight was updated. An RFC3339 formatted datetime string
- Compartment
Id string (Updatable) Compartment Identifier of Exadata insight
- map[string]interface{}
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Enterprise
Manager stringBridge Id OPSI Enterprise Manager Bridge OCID
- Enterprise
Manager stringEntity Display Name Enterprise Manager Entity Display Name
- Enterprise
Manager stringEntity Identifier Enterprise Manager Entity Unique Identifier
- Enterprise
Manager stringEntity Name Enterprise Manager Entity Name
- Enterprise
Manager stringEntity Type Enterprise Manager Entity Type
- Enterprise
Manager stringIdentifier Enterprise Manager Unique Identifier
- Entity
Source string (Updatable) Source of the Exadata system.
- Exadata
Display stringName The user-friendly name for the Exadata system. The name does not have to be unique.
- Exadata
Infra stringId - Exadata
Infra stringResource Type - Exadata
Name string The Exadata system name. If the Exadata systems managed by Enterprise Manager, the name is unique amongst the Exadata systems managed by the same Enterprise Manager.
- Exadata
Rack stringType Exadata rack type.
- Exadata
Shape string - Exadata
Type string Operations Insights internal representation of the the Exadata system type.
- 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"}
- Is
Auto boolSync Enabled (Updatable) Set to true to enable automatic enablement and disablement of related targets from Enterprise Manager. New resources (e.g. Database Insights) will be placed in the same compartment as the related Exadata Insight.
- Is
Virtualized boolExadata true if virtualization is used in the Exadata system
- 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.
- Member
Vm []ExadataCluster Details Insight Member Vm Cluster Detail Args - State string
The current state of the Exadata insight.
- Status string
(Updatable) Status of the resource. Example: "ENABLED", "DISABLED". Resource can be either enabled or disabled by updating the value of status field to either "ENABLED" or "DISABLED"
- 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 Exadata insight was first enabled. An RFC3339 formatted datetime string
- Time
Updated string The time the Exadata insight was updated. An RFC3339 formatted datetime string
- compartment
Id String (Updatable) Compartment Identifier of Exadata insight
- Map<String,Object>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- enterprise
Manager StringBridge Id OPSI Enterprise Manager Bridge OCID
- enterprise
Manager StringEntity Display Name Enterprise Manager Entity Display Name
- enterprise
Manager StringEntity Identifier Enterprise Manager Entity Unique Identifier
- enterprise
Manager StringEntity Name Enterprise Manager Entity Name
- enterprise
Manager StringEntity Type Enterprise Manager Entity Type
- enterprise
Manager StringIdentifier Enterprise Manager Unique Identifier
- entity
Source String (Updatable) Source of the Exadata system.
- exadata
Display StringName The user-friendly name for the Exadata system. The name does not have to be unique.
- exadata
Infra StringId - exadata
Infra StringResource Type - exadata
Name String The Exadata system name. If the Exadata systems managed by Enterprise Manager, the name is unique amongst the Exadata systems managed by the same Enterprise Manager.
- exadata
Rack StringType Exadata rack type.
- exadata
Shape String - exadata
Type String Operations Insights internal representation of the the Exadata system type.
- 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"}
- is
Auto BooleanSync Enabled (Updatable) Set to true to enable automatic enablement and disablement of related targets from Enterprise Manager. New resources (e.g. Database Insights) will be placed in the same compartment as the related Exadata Insight.
- is
Virtualized BooleanExadata true if virtualization is used in the Exadata system
- 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.
- member
Vm List<ExadataCluster Details Insight Member Vm Cluster Detail Args> - state String
The current state of the Exadata insight.
- status String
(Updatable) Status of the resource. Example: "ENABLED", "DISABLED". Resource can be either enabled or disabled by updating the value of status field to either "ENABLED" or "DISABLED"
- 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 Exadata insight was first enabled. An RFC3339 formatted datetime string
- time
Updated String The time the Exadata insight was updated. An RFC3339 formatted datetime string
- compartment
Id string (Updatable) Compartment Identifier of Exadata insight
- {[key: string]: any}
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- enterprise
Manager stringBridge Id OPSI Enterprise Manager Bridge OCID
- enterprise
Manager stringEntity Display Name Enterprise Manager Entity Display Name
- enterprise
Manager stringEntity Identifier Enterprise Manager Entity Unique Identifier
- enterprise
Manager stringEntity Name Enterprise Manager Entity Name
- enterprise
Manager stringEntity Type Enterprise Manager Entity Type
- enterprise
Manager stringIdentifier Enterprise Manager Unique Identifier
- entity
Source string (Updatable) Source of the Exadata system.
- exadata
Display stringName The user-friendly name for the Exadata system. The name does not have to be unique.
- exadata
Infra stringId - exadata
Infra stringResource Type - exadata
Name string The Exadata system name. If the Exadata systems managed by Enterprise Manager, the name is unique amongst the Exadata systems managed by the same Enterprise Manager.
- exadata
Rack stringType Exadata rack type.
- exadata
Shape string - exadata
Type string Operations Insights internal representation of the the Exadata system type.
- {[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"}
- is
Auto booleanSync Enabled (Updatable) Set to true to enable automatic enablement and disablement of related targets from Enterprise Manager. New resources (e.g. Database Insights) will be placed in the same compartment as the related Exadata Insight.
- is
Virtualized booleanExadata true if virtualization is used in the Exadata system
- 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.
- member
Vm ExadataCluster Details Insight Member Vm Cluster Detail Args[] - state string
The current state of the Exadata insight.
- status string
(Updatable) Status of the resource. Example: "ENABLED", "DISABLED". Resource can be either enabled or disabled by updating the value of status field to either "ENABLED" or "DISABLED"
- {[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 Exadata insight was first enabled. An RFC3339 formatted datetime string
- time
Updated string The time the Exadata insight was updated. An RFC3339 formatted datetime string
- compartment_
id str (Updatable) Compartment Identifier of Exadata insight
- Mapping[str, Any]
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- enterprise_
manager_ strbridge_ id OPSI Enterprise Manager Bridge OCID
- enterprise_
manager_ strentity_ display_ name Enterprise Manager Entity Display Name
- enterprise_
manager_ strentity_ identifier Enterprise Manager Entity Unique Identifier
- enterprise_
manager_ strentity_ name Enterprise Manager Entity Name
- enterprise_
manager_ strentity_ type Enterprise Manager Entity Type
- enterprise_
manager_ stridentifier Enterprise Manager Unique Identifier
- entity_
source str (Updatable) Source of the Exadata system.
- exadata_
display_ strname The user-friendly name for the Exadata system. The name does not have to be unique.
- exadata_
infra_ strid - exadata_
infra_ strresource_ type - exadata_
name str The Exadata system name. If the Exadata systems managed by Enterprise Manager, the name is unique amongst the Exadata systems managed by the same Enterprise Manager.
- exadata_
rack_ strtype Exadata rack type.
- exadata_
shape str - exadata_
type str Operations Insights internal representation of the the Exadata system type.
- 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"}
- is_
auto_ boolsync_ enabled (Updatable) Set to true to enable automatic enablement and disablement of related targets from Enterprise Manager. New resources (e.g. Database Insights) will be placed in the same compartment as the related Exadata Insight.
- is_
virtualized_ boolexadata true if virtualization is used in the Exadata system
- 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.
- member_
vm_ Exadatacluster_ details Insight Member Vm Cluster Detail Args] - state str
The current state of the Exadata insight.
- status str
(Updatable) Status of the resource. Example: "ENABLED", "DISABLED". Resource can be either enabled or disabled by updating the value of status field to either "ENABLED" or "DISABLED"
- 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 Exadata insight was first enabled. An RFC3339 formatted datetime string
- time_
updated str The time the Exadata insight was updated. An RFC3339 formatted datetime string
- compartment
Id String (Updatable) Compartment Identifier of Exadata insight
- Map<Any>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- enterprise
Manager StringBridge Id OPSI Enterprise Manager Bridge OCID
- enterprise
Manager StringEntity Display Name Enterprise Manager Entity Display Name
- enterprise
Manager StringEntity Identifier Enterprise Manager Entity Unique Identifier
- enterprise
Manager StringEntity Name Enterprise Manager Entity Name
- enterprise
Manager StringEntity Type Enterprise Manager Entity Type
- enterprise
Manager StringIdentifier Enterprise Manager Unique Identifier
- entity
Source String (Updatable) Source of the Exadata system.
- exadata
Display StringName The user-friendly name for the Exadata system. The name does not have to be unique.
- exadata
Infra StringId - exadata
Infra StringResource Type - exadata
Name String The Exadata system name. If the Exadata systems managed by Enterprise Manager, the name is unique amongst the Exadata systems managed by the same Enterprise Manager.
- exadata
Rack StringType Exadata rack type.
- exadata
Shape String - exadata
Type String Operations Insights internal representation of the the Exadata system type.
- 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"}
- is
Auto BooleanSync Enabled (Updatable) Set to true to enable automatic enablement and disablement of related targets from Enterprise Manager. New resources (e.g. Database Insights) will be placed in the same compartment as the related Exadata Insight.
- is
Virtualized BooleanExadata true if virtualization is used in the Exadata system
- 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.
- member
Vm List<Property Map>Cluster Details - state String
The current state of the Exadata insight.
- status String
(Updatable) Status of the resource. Example: "ENABLED", "DISABLED". Resource can be either enabled or disabled by updating the value of status field to either "ENABLED" or "DISABLED"
- 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 Exadata insight was first enabled. An RFC3339 formatted datetime string
- time
Updated String The time the Exadata insight was updated. An RFC3339 formatted datetime string
Supporting Types
ExadataInsightMemberVmClusterDetail
- Compartment
Id string (Updatable) Compartment Identifier of Exadata insight
- Member
Database List<ExadataDetails Insight Member Vm Cluster Detail Member Database Detail> - Opsi
Private stringEndpoint Id - Vmcluster
Id string
- Compartment
Id string (Updatable) Compartment Identifier of Exadata insight
- Member
Database []ExadataDetails Insight Member Vm Cluster Detail Member Database Detail - Opsi
Private stringEndpoint Id - Vmcluster
Id string
- compartment
Id String (Updatable) Compartment Identifier of Exadata insight
- member
Database List<ExadataDetails Insight Member Vm Cluster Detail Member Database Detail> - opsi
Private StringEndpoint Id - vmcluster
Id String
- compartment
Id string (Updatable) Compartment Identifier of Exadata insight
- member
Database ExadataDetails Insight Member Vm Cluster Detail Member Database Detail[] - opsi
Private stringEndpoint Id - vmcluster
Id string
- compartment_
id str (Updatable) Compartment Identifier of Exadata insight
- member_
database_ Exadatadetails Insight Member Vm Cluster Detail Member Database Detail] - opsi_
private_ strendpoint_ id - vmcluster_
id str
- compartment
Id String (Updatable) Compartment Identifier of Exadata insight
- member
Database List<Property Map>Details - opsi
Private StringEndpoint Id - vmcluster
Id String
ExadataInsightMemberVmClusterDetailMemberDatabaseDetail
- Compartment
Id string (Updatable) Compartment Identifier of Exadata insight
- Credential
Details ExadataInsight Member Vm Cluster Detail Member Database Detail Credential Details - Database
Id string - Database
Resource stringType - Dbm
Private stringEndpoint Id - Dictionary<string, object>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Deployment
Type string - Entity
Source string (Updatable) Source of the Exadata system.
- 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"}
- Opsi
Private stringEndpoint Id - Service
Name string - Dictionary<string, object>
System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Compartment
Id string (Updatable) Compartment Identifier of Exadata insight
- Credential
Details ExadataInsight Member Vm Cluster Detail Member Database Detail Credential Details - Database
Id string - Database
Resource stringType - Dbm
Private stringEndpoint Id - map[string]interface{}
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Deployment
Type string - Entity
Source string (Updatable) Source of the Exadata system.
- 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"}
- Opsi
Private stringEndpoint Id - Service
Name string - map[string]interface{}
System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- compartment
Id String (Updatable) Compartment Identifier of Exadata insight
- credential
Details ExadataInsight Member Vm Cluster Detail Member Database Detail Credential Details - database
Id String - database
Resource StringType - dbm
Private StringEndpoint Id - Map<String,Object>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- deployment
Type String - entity
Source String (Updatable) Source of the Exadata system.
- 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"}
- opsi
Private StringEndpoint Id - service
Name String - Map<String,Object>
System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- compartment
Id string (Updatable) Compartment Identifier of Exadata insight
- credential
Details ExadataInsight Member Vm Cluster Detail Member Database Detail Credential Details - database
Id string - database
Resource stringType - dbm
Private stringEndpoint Id - {[key: string]: any}
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- deployment
Type string - entity
Source string (Updatable) Source of the Exadata system.
- {[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"}
- opsi
Private stringEndpoint Id - service
Name string - {[key: string]: any}
System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- compartment_
id str (Updatable) Compartment Identifier of Exadata insight
- credential_
details ExadataInsight Member Vm Cluster Detail Member Database Detail Credential Details - database_
id str - database_
resource_ strtype - dbm_
private_ strendpoint_ id - Mapping[str, Any]
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- deployment_
type str - entity_
source str (Updatable) Source of the Exadata system.
- 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"}
- opsi_
private_ strendpoint_ id - service_
name str - Mapping[str, Any]
System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- compartment
Id String (Updatable) Compartment Identifier of Exadata insight
- credential
Details Property Map - database
Id String - database
Resource StringType - dbm
Private StringEndpoint Id - Map<Any>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- deployment
Type String - entity
Source String (Updatable) Source of the Exadata system.
- 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"}
- opsi
Private StringEndpoint Id - service
Name String - Map<Any>
System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
ExadataInsightMemberVmClusterDetailMemberDatabaseDetailCredentialDetails
- Credential
Type string - Credential
Source stringName - Password
Secret stringId - Role string
- User
Name string
- Credential
Type string - Credential
Source stringName - Password
Secret stringId - Role string
- User
Name string
- credential
Type String - credential
Source StringName - password
Secret StringId - role String
- user
Name String
- credential
Type string - credential
Source stringName - password
Secret stringId - role string
- user
Name string
- credential_
type str - credential_
source_ strname - password_
secret_ strid - role str
- user_
name str
- credential
Type String - credential
Source StringName - password
Secret StringId - role String
- user
Name String
Import
ExadataInsights can be imported using the id
, e.g.
$ pulumi import oci:Opsi/exadataInsight:ExadataInsight test_exadata_insight "id"
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
oci
Terraform Provider.