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

oci.Database.ExternalPluggableDatabasesStackMonitoring

Explore with Pulumi AI

This resource provides the Externalpluggabledatabases Stack Monitoring resource in Oracle Cloud Infrastructure Database service.

Enable Stack Monitoring for the external pluggable database.

Example Usage

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

const testExternalpluggabledatabasesStackMonitoring = new oci.database.ExternalPluggableDatabasesStackMonitoring("test_externalpluggabledatabases_stack_monitoring", {
    externalDatabaseConnectorId: testExternalDatabaseConnector.id,
    externalPluggableDatabaseId: testExternalPluggableDatabase.id,
    enableStackMonitoring: true,
});
Copy
import pulumi
import pulumi_oci as oci

test_externalpluggabledatabases_stack_monitoring = oci.database.ExternalPluggableDatabasesStackMonitoring("test_externalpluggabledatabases_stack_monitoring",
    external_database_connector_id=test_external_database_connector["id"],
    external_pluggable_database_id=test_external_pluggable_database["id"],
    enable_stack_monitoring=True)
Copy
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := database.NewExternalPluggableDatabasesStackMonitoring(ctx, "test_externalpluggabledatabases_stack_monitoring", &database.ExternalPluggableDatabasesStackMonitoringArgs{
			ExternalDatabaseConnectorId: pulumi.Any(testExternalDatabaseConnector.Id),
			ExternalPluggableDatabaseId: pulumi.Any(testExternalPluggableDatabase.Id),
			EnableStackMonitoring:       pulumi.Bool(true),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testExternalpluggabledatabasesStackMonitoring = new Oci.Database.ExternalPluggableDatabasesStackMonitoring("test_externalpluggabledatabases_stack_monitoring", new()
    {
        ExternalDatabaseConnectorId = testExternalDatabaseConnector.Id,
        ExternalPluggableDatabaseId = testExternalPluggableDatabase.Id,
        EnableStackMonitoring = true,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Database.ExternalPluggableDatabasesStackMonitoring;
import com.pulumi.oci.Database.ExternalPluggableDatabasesStackMonitoringArgs;
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 testExternalpluggabledatabasesStackMonitoring = new ExternalPluggableDatabasesStackMonitoring("testExternalpluggabledatabasesStackMonitoring", ExternalPluggableDatabasesStackMonitoringArgs.builder()
            .externalDatabaseConnectorId(testExternalDatabaseConnector.id())
            .externalPluggableDatabaseId(testExternalPluggableDatabase.id())
            .enableStackMonitoring(true)
            .build());

    }
}
Copy
resources:
  testExternalpluggabledatabasesStackMonitoring:
    type: oci:Database:ExternalPluggableDatabasesStackMonitoring
    name: test_externalpluggabledatabases_stack_monitoring
    properties:
      externalDatabaseConnectorId: ${testExternalDatabaseConnector.id}
      externalPluggableDatabaseId: ${testExternalPluggableDatabase.id}
      enableStackMonitoring: true
Copy

Create ExternalPluggableDatabasesStackMonitoring Resource

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

Constructor syntax

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

@overload
def ExternalPluggableDatabasesStackMonitoring(resource_name: str,
                                              opts: Optional[ResourceOptions] = None,
                                              enable_stack_monitoring: Optional[bool] = None,
                                              external_database_connector_id: Optional[str] = None,
                                              external_pluggable_database_id: Optional[str] = None)
func NewExternalPluggableDatabasesStackMonitoring(ctx *Context, name string, args ExternalPluggableDatabasesStackMonitoringArgs, opts ...ResourceOption) (*ExternalPluggableDatabasesStackMonitoring, error)
public ExternalPluggableDatabasesStackMonitoring(string name, ExternalPluggableDatabasesStackMonitoringArgs args, CustomResourceOptions? opts = null)
public ExternalPluggableDatabasesStackMonitoring(String name, ExternalPluggableDatabasesStackMonitoringArgs args)
public ExternalPluggableDatabasesStackMonitoring(String name, ExternalPluggableDatabasesStackMonitoringArgs args, CustomResourceOptions options)
type: oci:Database:ExternalPluggableDatabasesStackMonitoring
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. ExternalPluggableDatabasesStackMonitoringArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. ExternalPluggableDatabasesStackMonitoringArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. ExternalPluggableDatabasesStackMonitoringArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. ExternalPluggableDatabasesStackMonitoringArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. ExternalPluggableDatabasesStackMonitoringArgs
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 externalPluggableDatabasesStackMonitoringResource = new Oci.Database.ExternalPluggableDatabasesStackMonitoring("externalPluggableDatabasesStackMonitoringResource", new()
{
    EnableStackMonitoring = false,
    ExternalDatabaseConnectorId = "string",
    ExternalPluggableDatabaseId = "string",
});
Copy
example, err := Database.NewExternalPluggableDatabasesStackMonitoring(ctx, "externalPluggableDatabasesStackMonitoringResource", &Database.ExternalPluggableDatabasesStackMonitoringArgs{
	EnableStackMonitoring:       pulumi.Bool(false),
	ExternalDatabaseConnectorId: pulumi.String("string"),
	ExternalPluggableDatabaseId: pulumi.String("string"),
})
Copy
var externalPluggableDatabasesStackMonitoringResource = new ExternalPluggableDatabasesStackMonitoring("externalPluggableDatabasesStackMonitoringResource", ExternalPluggableDatabasesStackMonitoringArgs.builder()
    .enableStackMonitoring(false)
    .externalDatabaseConnectorId("string")
    .externalPluggableDatabaseId("string")
    .build());
Copy
external_pluggable_databases_stack_monitoring_resource = oci.database.ExternalPluggableDatabasesStackMonitoring("externalPluggableDatabasesStackMonitoringResource",
    enable_stack_monitoring=False,
    external_database_connector_id="string",
    external_pluggable_database_id="string")
Copy
const externalPluggableDatabasesStackMonitoringResource = new oci.database.ExternalPluggableDatabasesStackMonitoring("externalPluggableDatabasesStackMonitoringResource", {
    enableStackMonitoring: false,
    externalDatabaseConnectorId: "string",
    externalPluggableDatabaseId: "string",
});
Copy
type: oci:Database:ExternalPluggableDatabasesStackMonitoring
properties:
    enableStackMonitoring: false
    externalDatabaseConnectorId: string
    externalPluggableDatabaseId: string
Copy

ExternalPluggableDatabasesStackMonitoring Resource Properties

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

Inputs

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

The ExternalPluggableDatabasesStackMonitoring resource accepts the following input properties:

EnableStackMonitoring This property is required. bool

(Updatable) Enabling Stack Monitoring 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

ExternalDatabaseConnectorId
This property is required.
Changes to this property will trigger replacement.
string
The OCID of the external database connector.
ExternalPluggableDatabaseId
This property is required.
Changes to this property will trigger replacement.
string
The ExternalPluggableDatabaseId OCID.
EnableStackMonitoring This property is required. bool

(Updatable) Enabling Stack Monitoring 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

ExternalDatabaseConnectorId
This property is required.
Changes to this property will trigger replacement.
string
The OCID of the external database connector.
ExternalPluggableDatabaseId
This property is required.
Changes to this property will trigger replacement.
string
The ExternalPluggableDatabaseId OCID.
enableStackMonitoring This property is required. Boolean

(Updatable) Enabling Stack Monitoring 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

externalDatabaseConnectorId
This property is required.
Changes to this property will trigger replacement.
String
The OCID of the external database connector.
externalPluggableDatabaseId
This property is required.
Changes to this property will trigger replacement.
String
The ExternalPluggableDatabaseId OCID.
enableStackMonitoring This property is required. boolean

(Updatable) Enabling Stack Monitoring 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

externalDatabaseConnectorId
This property is required.
Changes to this property will trigger replacement.
string
The OCID of the external database connector.
externalPluggableDatabaseId
This property is required.
Changes to this property will trigger replacement.
string
The ExternalPluggableDatabaseId OCID.
enable_stack_monitoring This property is required. bool

(Updatable) Enabling Stack Monitoring 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_connector_id
This property is required.
Changes to this property will trigger replacement.
str
The OCID of the external database connector.
external_pluggable_database_id
This property is required.
Changes to this property will trigger replacement.
str
The ExternalPluggableDatabaseId OCID.
enableStackMonitoring This property is required. Boolean

(Updatable) Enabling Stack Monitoring 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

externalDatabaseConnectorId
This property is required.
Changes to this property will trigger replacement.
String
The OCID of the external database connector.
externalPluggableDatabaseId
This property is required.
Changes to this property will trigger replacement.
String
The ExternalPluggableDatabaseId OCID.

Outputs

All input properties are implicitly available as output properties. Additionally, the ExternalPluggableDatabasesStackMonitoring 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 ExternalPluggableDatabasesStackMonitoring Resource

Get an existing ExternalPluggableDatabasesStackMonitoring 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?: ExternalPluggableDatabasesStackMonitoringState, opts?: CustomResourceOptions): ExternalPluggableDatabasesStackMonitoring
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        enable_stack_monitoring: Optional[bool] = None,
        external_database_connector_id: Optional[str] = None,
        external_pluggable_database_id: Optional[str] = None) -> ExternalPluggableDatabasesStackMonitoring
func GetExternalPluggableDatabasesStackMonitoring(ctx *Context, name string, id IDInput, state *ExternalPluggableDatabasesStackMonitoringState, opts ...ResourceOption) (*ExternalPluggableDatabasesStackMonitoring, error)
public static ExternalPluggableDatabasesStackMonitoring Get(string name, Input<string> id, ExternalPluggableDatabasesStackMonitoringState? state, CustomResourceOptions? opts = null)
public static ExternalPluggableDatabasesStackMonitoring get(String name, Output<String> id, ExternalPluggableDatabasesStackMonitoringState state, CustomResourceOptions options)
resources:  _:    type: oci:Database:ExternalPluggableDatabasesStackMonitoring    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
EnableStackMonitoring bool

(Updatable) Enabling Stack Monitoring 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

ExternalDatabaseConnectorId Changes to this property will trigger replacement. string
The OCID of the external database connector.
ExternalPluggableDatabaseId Changes to this property will trigger replacement. string
The ExternalPluggableDatabaseId OCID.
EnableStackMonitoring bool

(Updatable) Enabling Stack Monitoring 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

ExternalDatabaseConnectorId Changes to this property will trigger replacement. string
The OCID of the external database connector.
ExternalPluggableDatabaseId Changes to this property will trigger replacement. string
The ExternalPluggableDatabaseId OCID.
enableStackMonitoring Boolean

(Updatable) Enabling Stack Monitoring 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

externalDatabaseConnectorId Changes to this property will trigger replacement. String
The OCID of the external database connector.
externalPluggableDatabaseId Changes to this property will trigger replacement. String
The ExternalPluggableDatabaseId OCID.
enableStackMonitoring boolean

(Updatable) Enabling Stack Monitoring 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

externalDatabaseConnectorId Changes to this property will trigger replacement. string
The OCID of the external database connector.
externalPluggableDatabaseId Changes to this property will trigger replacement. string
The ExternalPluggableDatabaseId OCID.
enable_stack_monitoring bool

(Updatable) Enabling Stack Monitoring 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_connector_id Changes to this property will trigger replacement. str
The OCID of the external database connector.
external_pluggable_database_id Changes to this property will trigger replacement. str
The ExternalPluggableDatabaseId OCID.
enableStackMonitoring Boolean

(Updatable) Enabling Stack Monitoring 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

externalDatabaseConnectorId Changes to this property will trigger replacement. String
The OCID of the external database connector.
externalPluggableDatabaseId Changes to this property will trigger replacement. String
The ExternalPluggableDatabaseId OCID.

Import

Import is not supported for this resource.

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.