oci.Database.ExternalContainerDatabasesStackMonitoring
Explore with Pulumi AI
This resource provides the Externalcontainerdatabases Stack Monitoring resource in Oracle Cloud Infrastructure Database service.
Enable Stack Monitoring for the external container database.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testExternalcontainerdatabasesStackMonitoring = new oci.database.ExternalContainerDatabasesStackMonitoring("test_externalcontainerdatabases_stack_monitoring", {
externalContainerDatabaseId: testExternalContainerDatabase.id,
externalDatabaseConnectorId: testExternalDatabaseConnector.id,
enableStackMonitoring: true,
});
import pulumi
import pulumi_oci as oci
test_externalcontainerdatabases_stack_monitoring = oci.database.ExternalContainerDatabasesStackMonitoring("test_externalcontainerdatabases_stack_monitoring",
external_container_database_id=test_external_container_database["id"],
external_database_connector_id=test_external_database_connector["id"],
enable_stack_monitoring=True)
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.NewExternalContainerDatabasesStackMonitoring(ctx, "test_externalcontainerdatabases_stack_monitoring", &Database.ExternalContainerDatabasesStackMonitoringArgs{
ExternalContainerDatabaseId: pulumi.Any(testExternalContainerDatabase.Id),
ExternalDatabaseConnectorId: pulumi.Any(testExternalDatabaseConnector.Id),
EnableStackMonitoring: pulumi.Bool(true),
})
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 testExternalcontainerdatabasesStackMonitoring = new Oci.Database.ExternalContainerDatabasesStackMonitoring("test_externalcontainerdatabases_stack_monitoring", new()
{
ExternalContainerDatabaseId = testExternalContainerDatabase.Id,
ExternalDatabaseConnectorId = testExternalDatabaseConnector.Id,
EnableStackMonitoring = true,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Database.ExternalContainerDatabasesStackMonitoring;
import com.pulumi.oci.Database.ExternalContainerDatabasesStackMonitoringArgs;
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 testExternalcontainerdatabasesStackMonitoring = new ExternalContainerDatabasesStackMonitoring("testExternalcontainerdatabasesStackMonitoring", ExternalContainerDatabasesStackMonitoringArgs.builder()
.externalContainerDatabaseId(testExternalContainerDatabase.id())
.externalDatabaseConnectorId(testExternalDatabaseConnector.id())
.enableStackMonitoring(true)
.build());
}
}
resources:
testExternalcontainerdatabasesStackMonitoring:
type: oci:Database:ExternalContainerDatabasesStackMonitoring
name: test_externalcontainerdatabases_stack_monitoring
properties:
externalContainerDatabaseId: ${testExternalContainerDatabase.id}
externalDatabaseConnectorId: ${testExternalDatabaseConnector.id}
enableStackMonitoring: true
Create ExternalContainerDatabasesStackMonitoring Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ExternalContainerDatabasesStackMonitoring(name: string, args: ExternalContainerDatabasesStackMonitoringArgs, opts?: CustomResourceOptions);
@overload
def ExternalContainerDatabasesStackMonitoring(resource_name: str,
args: ExternalContainerDatabasesStackMonitoringArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ExternalContainerDatabasesStackMonitoring(resource_name: str,
opts: Optional[ResourceOptions] = None,
enable_stack_monitoring: Optional[bool] = None,
external_container_database_id: Optional[str] = None,
external_database_connector_id: Optional[str] = None)
func NewExternalContainerDatabasesStackMonitoring(ctx *Context, name string, args ExternalContainerDatabasesStackMonitoringArgs, opts ...ResourceOption) (*ExternalContainerDatabasesStackMonitoring, error)
public ExternalContainerDatabasesStackMonitoring(string name, ExternalContainerDatabasesStackMonitoringArgs args, CustomResourceOptions? opts = null)
public ExternalContainerDatabasesStackMonitoring(String name, ExternalContainerDatabasesStackMonitoringArgs args)
public ExternalContainerDatabasesStackMonitoring(String name, ExternalContainerDatabasesStackMonitoringArgs args, CustomResourceOptions options)
type: oci:Database:ExternalContainerDatabasesStackMonitoring
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 ExternalContainerDatabasesStackMonitoringArgs
- 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 ExternalContainerDatabasesStackMonitoringArgs
- 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 ExternalContainerDatabasesStackMonitoringArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ExternalContainerDatabasesStackMonitoringArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ExternalContainerDatabasesStackMonitoringArgs
- 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 externalContainerDatabasesStackMonitoringResource = new Oci.Database.ExternalContainerDatabasesStackMonitoring("externalContainerDatabasesStackMonitoringResource", new()
{
EnableStackMonitoring = false,
ExternalContainerDatabaseId = "string",
ExternalDatabaseConnectorId = "string",
});
example, err := Database.NewExternalContainerDatabasesStackMonitoring(ctx, "externalContainerDatabasesStackMonitoringResource", &Database.ExternalContainerDatabasesStackMonitoringArgs{
EnableStackMonitoring: pulumi.Bool(false),
ExternalContainerDatabaseId: pulumi.String("string"),
ExternalDatabaseConnectorId: pulumi.String("string"),
})
var externalContainerDatabasesStackMonitoringResource = new ExternalContainerDatabasesStackMonitoring("externalContainerDatabasesStackMonitoringResource", ExternalContainerDatabasesStackMonitoringArgs.builder()
.enableStackMonitoring(false)
.externalContainerDatabaseId("string")
.externalDatabaseConnectorId("string")
.build());
external_container_databases_stack_monitoring_resource = oci.database.ExternalContainerDatabasesStackMonitoring("externalContainerDatabasesStackMonitoringResource",
enable_stack_monitoring=False,
external_container_database_id="string",
external_database_connector_id="string")
const externalContainerDatabasesStackMonitoringResource = new oci.database.ExternalContainerDatabasesStackMonitoring("externalContainerDatabasesStackMonitoringResource", {
enableStackMonitoring: false,
externalContainerDatabaseId: "string",
externalDatabaseConnectorId: "string",
});
type: oci:Database:ExternalContainerDatabasesStackMonitoring
properties:
enableStackMonitoring: false
externalContainerDatabaseId: string
externalDatabaseConnectorId: string
ExternalContainerDatabasesStackMonitoring 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 ExternalContainerDatabasesStackMonitoring resource accepts the following input properties:
- Enable
Stack boolMonitoring (Updatable) Enabling Stack Monitoring on External Container 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
Container stringDatabase Id - The ExternalContainerDatabase OCID.
- External
Database stringConnector Id - The OCID of the external database connector.
- Enable
Stack boolMonitoring (Updatable) Enabling Stack Monitoring on External Container 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
Container stringDatabase Id - The ExternalContainerDatabase OCID.
- External
Database stringConnector Id - The OCID of the external database connector.
- enable
Stack BooleanMonitoring (Updatable) Enabling Stack Monitoring on External Container 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
Container StringDatabase Id - The ExternalContainerDatabase OCID.
- external
Database StringConnector Id - The OCID of the external database connector.
- enable
Stack booleanMonitoring (Updatable) Enabling Stack Monitoring on External Container 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
Container stringDatabase Id - The ExternalContainerDatabase OCID.
- external
Database stringConnector Id - The OCID of the external database connector.
- enable_
stack_ boolmonitoring (Updatable) Enabling Stack Monitoring on External Container 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_
container_ strdatabase_ id - The ExternalContainerDatabase OCID.
- external_
database_ strconnector_ id - The OCID of the external database connector.
- enable
Stack BooleanMonitoring (Updatable) Enabling Stack Monitoring on External Container 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
Container StringDatabase Id - The ExternalContainerDatabase OCID.
- external
Database StringConnector Id - The OCID of the external database connector.
Outputs
All input properties are implicitly available as output properties. Additionally, the ExternalContainerDatabasesStackMonitoring 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 ExternalContainerDatabasesStackMonitoring Resource
Get an existing ExternalContainerDatabasesStackMonitoring 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?: ExternalContainerDatabasesStackMonitoringState, opts?: CustomResourceOptions): ExternalContainerDatabasesStackMonitoring
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
enable_stack_monitoring: Optional[bool] = None,
external_container_database_id: Optional[str] = None,
external_database_connector_id: Optional[str] = None) -> ExternalContainerDatabasesStackMonitoring
func GetExternalContainerDatabasesStackMonitoring(ctx *Context, name string, id IDInput, state *ExternalContainerDatabasesStackMonitoringState, opts ...ResourceOption) (*ExternalContainerDatabasesStackMonitoring, error)
public static ExternalContainerDatabasesStackMonitoring Get(string name, Input<string> id, ExternalContainerDatabasesStackMonitoringState? state, CustomResourceOptions? opts = null)
public static ExternalContainerDatabasesStackMonitoring get(String name, Output<String> id, ExternalContainerDatabasesStackMonitoringState 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
Stack boolMonitoring (Updatable) Enabling Stack Monitoring on External Container 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
Container stringDatabase Id - The ExternalContainerDatabase OCID.
- External
Database stringConnector Id - The OCID of the external database connector.
- Enable
Stack boolMonitoring (Updatable) Enabling Stack Monitoring on External Container 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
Container stringDatabase Id - The ExternalContainerDatabase OCID.
- External
Database stringConnector Id - The OCID of the external database connector.
- enable
Stack BooleanMonitoring (Updatable) Enabling Stack Monitoring on External Container 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
Container StringDatabase Id - The ExternalContainerDatabase OCID.
- external
Database StringConnector Id - The OCID of the external database connector.
- enable
Stack booleanMonitoring (Updatable) Enabling Stack Monitoring on External Container 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
Container stringDatabase Id - The ExternalContainerDatabase OCID.
- external
Database stringConnector Id - The OCID of the external database connector.
- enable_
stack_ boolmonitoring (Updatable) Enabling Stack Monitoring on External Container 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_
container_ strdatabase_ id - The ExternalContainerDatabase OCID.
- external_
database_ strconnector_ id - The OCID of the external database connector.
- enable
Stack BooleanMonitoring (Updatable) Enabling Stack Monitoring on External Container 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
Container StringDatabase Id - The ExternalContainerDatabase OCID.
- external
Database StringConnector Id - The OCID of the external database connector.
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.