oci.Database.ExternalPluggableDatabaseOperationsInsightsManagement
Explore with Pulumi AI
This resource provides the External Pluggable Database Operations Insights Management resource in Oracle Cloud Infrastructure Database service.
Enable Operations Insights for the external pluggable database. When deleting this resource block , we call disable if it was in enabled state .
Example Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() =>
{
var testExternalPluggableDatabaseOperationsInsightsManagement = new Oci.Database.ExternalPluggableDatabaseOperationsInsightsManagement("testExternalPluggableDatabaseOperationsInsightsManagement", new()
{
ExternalDatabaseConnectorId = oci_database_external_database_connector.Test_external_database_connector.Id,
ExternalPluggableDatabaseId = oci_database_external_pluggable_database.Test_external_pluggable_database.Id,
EnableOperationsInsights = true,
});
});
package main
import (
"github.com/pulumi/pulumi-oci/sdk/go/oci/Database"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := Database.NewExternalPluggableDatabaseOperationsInsightsManagement(ctx, "testExternalPluggableDatabaseOperationsInsightsManagement", &Database.ExternalPluggableDatabaseOperationsInsightsManagementArgs{
ExternalDatabaseConnectorId: pulumi.Any(oci_database_external_database_connector.Test_external_database_connector.Id),
ExternalPluggableDatabaseId: pulumi.Any(oci_database_external_pluggable_database.Test_external_pluggable_database.Id),
EnableOperationsInsights: pulumi.Bool(true),
})
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.Database.ExternalPluggableDatabaseOperationsInsightsManagement;
import com.pulumi.oci.Database.ExternalPluggableDatabaseOperationsInsightsManagementArgs;
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 testExternalPluggableDatabaseOperationsInsightsManagement = new ExternalPluggableDatabaseOperationsInsightsManagement("testExternalPluggableDatabaseOperationsInsightsManagement", ExternalPluggableDatabaseOperationsInsightsManagementArgs.builder()
.externalDatabaseConnectorId(oci_database_external_database_connector.test_external_database_connector().id())
.externalPluggableDatabaseId(oci_database_external_pluggable_database.test_external_pluggable_database().id())
.enableOperationsInsights(true)
.build());
}
}
import pulumi
import pulumi_oci as oci
test_external_pluggable_database_operations_insights_management = oci.database.ExternalPluggableDatabaseOperationsInsightsManagement("testExternalPluggableDatabaseOperationsInsightsManagement",
external_database_connector_id=oci_database_external_database_connector["test_external_database_connector"]["id"],
external_pluggable_database_id=oci_database_external_pluggable_database["test_external_pluggable_database"]["id"],
enable_operations_insights=True)
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testExternalPluggableDatabaseOperationsInsightsManagement = new oci.database.ExternalPluggableDatabaseOperationsInsightsManagement("testExternalPluggableDatabaseOperationsInsightsManagement", {
externalDatabaseConnectorId: oci_database_external_database_connector.test_external_database_connector.id,
externalPluggableDatabaseId: oci_database_external_pluggable_database.test_external_pluggable_database.id,
enableOperationsInsights: true,
});
resources:
testExternalPluggableDatabaseOperationsInsightsManagement:
type: oci:Database:ExternalPluggableDatabaseOperationsInsightsManagement
properties:
#Required
externalDatabaseConnectorId: ${oci_database_external_database_connector.test_external_database_connector.id}
externalPluggableDatabaseId: ${oci_database_external_pluggable_database.test_external_pluggable_database.id}
enableOperationsInsights: true
Create ExternalPluggableDatabaseOperationsInsightsManagement Resource
new ExternalPluggableDatabaseOperationsInsightsManagement(name: string, args: ExternalPluggableDatabaseOperationsInsightsManagementArgs, opts?: CustomResourceOptions);
@overload
def ExternalPluggableDatabaseOperationsInsightsManagement(resource_name: str,
opts: Optional[ResourceOptions] = None,
enable_operations_insights: Optional[bool] = None,
external_database_connector_id: Optional[str] = None,
external_pluggable_database_id: Optional[str] = None)
@overload
def ExternalPluggableDatabaseOperationsInsightsManagement(resource_name: str,
args: ExternalPluggableDatabaseOperationsInsightsManagementArgs,
opts: Optional[ResourceOptions] = None)
func NewExternalPluggableDatabaseOperationsInsightsManagement(ctx *Context, name string, args ExternalPluggableDatabaseOperationsInsightsManagementArgs, opts ...ResourceOption) (*ExternalPluggableDatabaseOperationsInsightsManagement, error)
public ExternalPluggableDatabaseOperationsInsightsManagement(string name, ExternalPluggableDatabaseOperationsInsightsManagementArgs args, CustomResourceOptions? opts = null)
public ExternalPluggableDatabaseOperationsInsightsManagement(String name, ExternalPluggableDatabaseOperationsInsightsManagementArgs args)
public ExternalPluggableDatabaseOperationsInsightsManagement(String name, ExternalPluggableDatabaseOperationsInsightsManagementArgs args, CustomResourceOptions options)
type: oci:Database:ExternalPluggableDatabaseOperationsInsightsManagement
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ExternalPluggableDatabaseOperationsInsightsManagementArgs
- 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 ExternalPluggableDatabaseOperationsInsightsManagementArgs
- 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 ExternalPluggableDatabaseOperationsInsightsManagementArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ExternalPluggableDatabaseOperationsInsightsManagementArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ExternalPluggableDatabaseOperationsInsightsManagementArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
ExternalPluggableDatabaseOperationsInsightsManagement 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 ExternalPluggableDatabaseOperationsInsightsManagement resource accepts the following input properties:
- Enable
Operations boolInsights (Updatable) Enabling OPSI on External Pluggable Databases . Requires boolean value "true" or "false".
** 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
- External
Database stringConnector Id The OCID of the external database connector.
- External
Pluggable stringDatabase Id The ExternalPluggableDatabaseId OCID.
- Enable
Operations boolInsights (Updatable) Enabling OPSI on External Pluggable Databases . Requires boolean value "true" or "false".
** 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
- External
Database stringConnector Id The OCID of the external database connector.
- External
Pluggable stringDatabase Id The ExternalPluggableDatabaseId OCID.
- enable
Operations BooleanInsights (Updatable) Enabling OPSI on External Pluggable Databases . Requires boolean value "true" or "false".
** 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
- external
Database StringConnector Id The OCID of the external database connector.
- external
Pluggable StringDatabase Id The ExternalPluggableDatabaseId OCID.
- enable
Operations booleanInsights (Updatable) Enabling OPSI on External Pluggable Databases . Requires boolean value "true" or "false".
** 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
- external
Database stringConnector Id The OCID of the external database connector.
- external
Pluggable stringDatabase Id The ExternalPluggableDatabaseId OCID.
- enable_
operations_ boolinsights (Updatable) Enabling OPSI on External Pluggable Databases . Requires boolean value "true" or "false".
** 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
- external_
database_ strconnector_ id The OCID of the external database connector.
- external_
pluggable_ strdatabase_ id The ExternalPluggableDatabaseId OCID.
- enable
Operations BooleanInsights (Updatable) Enabling OPSI on External Pluggable Databases . Requires boolean value "true" or "false".
** 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
- external
Database StringConnector Id The OCID of the external database connector.
- external
Pluggable StringDatabase Id The ExternalPluggableDatabaseId OCID.
Outputs
All input properties are implicitly available as output properties. Additionally, the ExternalPluggableDatabaseOperationsInsightsManagement resource produces the following output properties:
- Id string
The provider-assigned unique ID for this managed resource.
- Id string
The provider-assigned unique ID for this managed resource.
- id String
The provider-assigned unique ID for this managed resource.
- id string
The provider-assigned unique ID for this managed resource.
- id str
The provider-assigned unique ID for this managed resource.
- id String
The provider-assigned unique ID for this managed resource.
Look up Existing ExternalPluggableDatabaseOperationsInsightsManagement Resource
Get an existing ExternalPluggableDatabaseOperationsInsightsManagement 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?: ExternalPluggableDatabaseOperationsInsightsManagementState, opts?: CustomResourceOptions): ExternalPluggableDatabaseOperationsInsightsManagement
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
enable_operations_insights: Optional[bool] = None,
external_database_connector_id: Optional[str] = None,
external_pluggable_database_id: Optional[str] = None) -> ExternalPluggableDatabaseOperationsInsightsManagement
func GetExternalPluggableDatabaseOperationsInsightsManagement(ctx *Context, name string, id IDInput, state *ExternalPluggableDatabaseOperationsInsightsManagementState, opts ...ResourceOption) (*ExternalPluggableDatabaseOperationsInsightsManagement, error)
public static ExternalPluggableDatabaseOperationsInsightsManagement Get(string name, Input<string> id, ExternalPluggableDatabaseOperationsInsightsManagementState? state, CustomResourceOptions? opts = null)
public static ExternalPluggableDatabaseOperationsInsightsManagement get(String name, Output<String> id, ExternalPluggableDatabaseOperationsInsightsManagementState 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.
- Enable
Operations boolInsights (Updatable) Enabling OPSI on External Pluggable Databases . Requires boolean value "true" or "false".
** 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
- External
Database stringConnector Id The OCID of the external database connector.
- External
Pluggable stringDatabase Id The ExternalPluggableDatabaseId OCID.
- Enable
Operations boolInsights (Updatable) Enabling OPSI on External Pluggable Databases . Requires boolean value "true" or "false".
** 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
- External
Database stringConnector Id The OCID of the external database connector.
- External
Pluggable stringDatabase Id The ExternalPluggableDatabaseId OCID.
- enable
Operations BooleanInsights (Updatable) Enabling OPSI on External Pluggable Databases . Requires boolean value "true" or "false".
** 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
- external
Database StringConnector Id The OCID of the external database connector.
- external
Pluggable StringDatabase Id The ExternalPluggableDatabaseId OCID.
- enable
Operations booleanInsights (Updatable) Enabling OPSI on External Pluggable Databases . Requires boolean value "true" or "false".
** 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
- external
Database stringConnector Id The OCID of the external database connector.
- external
Pluggable stringDatabase Id The ExternalPluggableDatabaseId OCID.
- enable_
operations_ boolinsights (Updatable) Enabling OPSI on External Pluggable Databases . Requires boolean value "true" or "false".
** 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
- external_
database_ strconnector_ id The OCID of the external database connector.
- external_
pluggable_ strdatabase_ id The ExternalPluggableDatabaseId OCID.
- enable
Operations BooleanInsights (Updatable) Enabling OPSI on External Pluggable Databases . Requires boolean value "true" or "false".
** 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
- external
Database StringConnector Id The OCID of the external database connector.
- external
Pluggable StringDatabase Id The ExternalPluggableDatabaseId OCID.
Import
Import is not supported for this resource.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
oci
Terraform Provider.