oci.StackMonitoring.Config
Explore with Pulumi AI
This resource provides the Config resource in Oracle Cloud Infrastructure Stack Monitoring service.
Creates a configuration item, for example to define whether resources of a specific type should be discovered automatically.
For example, when a new Management Agent gets registered in a certain compartment, this Management Agent can potentially get promoted to a HOST resource. The configuration item will determine if HOST resources in the selected compartment will be discovered automatically.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testConfig = new oci.stackmonitoring.Config("test_config", {
compartmentId: compartmentId,
configType: configConfigType,
isEnabled: configIsEnabled,
resourceType: configResourceType,
license: configLicense,
definedTags: {
"foo-namespace.bar-key": "value",
},
displayName: configDisplayName,
freeformTags: {
"bar-key": "value",
},
});
import pulumi
import pulumi_oci as oci
test_config = oci.stack_monitoring.Config("test_config",
compartment_id=compartment_id,
config_type=config_config_type,
is_enabled=config_is_enabled,
resource_type=config_resource_type,
license=config_license,
defined_tags={
"foo-namespace.bar-key": "value",
},
display_name=config_display_name,
freeform_tags={
"bar-key": "value",
})
package main
import (
"github.com/pulumi/pulumi-oci/sdk/go/oci/StackMonitoring"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := StackMonitoring.NewConfig(ctx, "test_config", &StackMonitoring.ConfigArgs{
CompartmentId: pulumi.Any(compartmentId),
ConfigType: pulumi.Any(configConfigType),
IsEnabled: pulumi.Any(configIsEnabled),
ResourceType: pulumi.Any(configResourceType),
License: pulumi.Any(configLicense),
DefinedTags: pulumi.Map{
"foo-namespace.bar-key": pulumi.Any("value"),
},
DisplayName: pulumi.Any(configDisplayName),
FreeformTags: pulumi.Map{
"bar-key": pulumi.Any("value"),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() =>
{
var testConfig = new Oci.StackMonitoring.Config("test_config", new()
{
CompartmentId = compartmentId,
ConfigType = configConfigType,
IsEnabled = configIsEnabled,
ResourceType = configResourceType,
License = configLicense,
DefinedTags =
{
{ "foo-namespace.bar-key", "value" },
},
DisplayName = configDisplayName,
FreeformTags =
{
{ "bar-key", "value" },
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.StackMonitoring.Config;
import com.pulumi.oci.StackMonitoring.ConfigArgs;
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 testConfig = new Config("testConfig", ConfigArgs.builder()
.compartmentId(compartmentId)
.configType(configConfigType)
.isEnabled(configIsEnabled)
.resourceType(configResourceType)
.license(configLicense)
.definedTags(Map.of("foo-namespace.bar-key", "value"))
.displayName(configDisplayName)
.freeformTags(Map.of("bar-key", "value"))
.build());
}
}
resources:
testConfig:
type: oci:StackMonitoring:Config
name: test_config
properties:
compartmentId: ${compartmentId}
configType: ${configConfigType}
isEnabled: ${configIsEnabled}
resourceType: ${configResourceType}
license: ${configLicense}
definedTags:
foo-namespace.bar-key: value
displayName: ${configDisplayName}
freeformTags:
bar-key: value
Create Config Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Config(name: string, args: ConfigArgs, opts?: CustomResourceOptions);
@overload
def Config(resource_name: str,
args: ConfigArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Config(resource_name: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
config_type: Optional[str] = None,
defined_tags: Optional[Mapping[str, Any]] = None,
display_name: Optional[str] = None,
freeform_tags: Optional[Mapping[str, Any]] = None,
is_enabled: Optional[bool] = None,
license: Optional[str] = None,
resource_type: Optional[str] = None)
func NewConfig(ctx *Context, name string, args ConfigArgs, opts ...ResourceOption) (*Config, error)
public Config(string name, ConfigArgs args, CustomResourceOptions? opts = null)
public Config(String name, ConfigArgs args)
public Config(String name, ConfigArgs args, CustomResourceOptions options)
type: oci:StackMonitoring:Config
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 ConfigArgs
- 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 ConfigArgs
- 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 ConfigArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ConfigArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ConfigArgs
- 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 exampleconfigResourceResourceFromStackMonitoringconfig = new Oci.StackMonitoring.Config("exampleconfigResourceResourceFromStackMonitoringconfig", new()
{
CompartmentId = "string",
ConfigType = "string",
DefinedTags =
{
{ "string", "any" },
},
DisplayName = "string",
FreeformTags =
{
{ "string", "any" },
},
IsEnabled = false,
License = "string",
ResourceType = "string",
});
example, err := StackMonitoring.NewConfig(ctx, "exampleconfigResourceResourceFromStackMonitoringconfig", &StackMonitoring.ConfigArgs{
CompartmentId: pulumi.String("string"),
ConfigType: pulumi.String("string"),
DefinedTags: pulumi.Map{
"string": pulumi.Any("any"),
},
DisplayName: pulumi.String("string"),
FreeformTags: pulumi.Map{
"string": pulumi.Any("any"),
},
IsEnabled: pulumi.Bool(false),
License: pulumi.String("string"),
ResourceType: pulumi.String("string"),
})
var exampleconfigResourceResourceFromStackMonitoringconfig = new Config("exampleconfigResourceResourceFromStackMonitoringconfig", ConfigArgs.builder()
.compartmentId("string")
.configType("string")
.definedTags(Map.of("string", "any"))
.displayName("string")
.freeformTags(Map.of("string", "any"))
.isEnabled(false)
.license("string")
.resourceType("string")
.build());
exampleconfig_resource_resource_from_stack_monitoringconfig = oci.stack_monitoring.Config("exampleconfigResourceResourceFromStackMonitoringconfig",
compartment_id="string",
config_type="string",
defined_tags={
"string": "any",
},
display_name="string",
freeform_tags={
"string": "any",
},
is_enabled=False,
license="string",
resource_type="string")
const exampleconfigResourceResourceFromStackMonitoringconfig = new oci.stackmonitoring.Config("exampleconfigResourceResourceFromStackMonitoringconfig", {
compartmentId: "string",
configType: "string",
definedTags: {
string: "any",
},
displayName: "string",
freeformTags: {
string: "any",
},
isEnabled: false,
license: "string",
resourceType: "string",
});
type: oci:StackMonitoring:Config
properties:
compartmentId: string
configType: string
definedTags:
string: any
displayName: string
freeformTags:
string: any
isEnabled: false
license: string
resourceType: string
Config 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 Config resource accepts the following input properties:
- Compartment
Id string - (Updatable) Compartment in which the configuration is created.
- Config
Type string - The type of configuration. The only valid value is
"AUTO_PROMOTE"
. - Dictionary<string, object>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Display
Name string - (Updatable) The display name of the configuration.
- 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
Enabled bool - (Updatable) True if enterprise extensibility is enabled, false if it is not enabled.
- License string
- (Updatable) License edition.
- Resource
Type string The type of resource to configure for automatic promotion.
** 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
- Compartment
Id string - (Updatable) Compartment in which the configuration is created.
- Config
Type string - The type of configuration. The only valid value is
"AUTO_PROMOTE"
. - map[string]interface{}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Display
Name string - (Updatable) The display name of the configuration.
- 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
Enabled bool - (Updatable) True if enterprise extensibility is enabled, false if it is not enabled.
- License string
- (Updatable) License edition.
- Resource
Type string The type of resource to configure for automatic promotion.
** 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
- compartment
Id String - (Updatable) Compartment in which the configuration is created.
- config
Type String - The type of configuration. The only valid value is
"AUTO_PROMOTE"
. - Map<String,Object>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- display
Name String - (Updatable) The display name of the configuration.
- 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
Enabled Boolean - (Updatable) True if enterprise extensibility is enabled, false if it is not enabled.
- license String
- (Updatable) License edition.
- resource
Type String The type of resource to configure for automatic promotion.
** 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
- compartment
Id string - (Updatable) Compartment in which the configuration is created.
- config
Type string - The type of configuration. The only valid value is
"AUTO_PROMOTE"
. - {[key: string]: any}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- display
Name string - (Updatable) The display name of the configuration.
- {[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
Enabled boolean - (Updatable) True if enterprise extensibility is enabled, false if it is not enabled.
- license string
- (Updatable) License edition.
- resource
Type string The type of resource to configure for automatic promotion.
** 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
- compartment_
id str - (Updatable) Compartment in which the configuration is created.
- config_
type str - The type of configuration. The only valid value is
"AUTO_PROMOTE"
. - Mapping[str, Any]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- display_
name str - (Updatable) The display name of the configuration.
- 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_
enabled bool - (Updatable) True if enterprise extensibility is enabled, false if it is not enabled.
- license str
- (Updatable) License edition.
- resource_
type str The type of resource to configure for automatic promotion.
** 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
- compartment
Id String - (Updatable) Compartment in which the configuration is created.
- config
Type String - The type of configuration. The only valid value is
"AUTO_PROMOTE"
. - Map<Any>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- display
Name String - (Updatable) The display name of the configuration.
- 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
Enabled Boolean - (Updatable) True if enterprise extensibility is enabled, false if it is not enabled.
- license String
- (Updatable) License edition.
- resource
Type String The type of resource to configure for automatic promotion.
** 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
Outputs
All input properties are implicitly available as output properties. Additionally, the Config resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- State string
- The current state of the configuration.
- Dictionary<string, object>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The time the configuration was created. An RFC3339 formatted datetime string.
- Time
Updated string - The time the Config was updated.
- Id string
- The provider-assigned unique ID for this managed resource.
- State string
- The current state of the configuration.
- map[string]interface{}
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The time the configuration was created. An RFC3339 formatted datetime string.
- Time
Updated string - The time the Config was updated.
- id String
- The provider-assigned unique ID for this managed resource.
- state String
- The current state of the configuration.
- Map<String,Object>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The time the configuration was created. An RFC3339 formatted datetime string.
- time
Updated String - The time the Config was updated.
- id string
- The provider-assigned unique ID for this managed resource.
- state string
- The current state of the configuration.
- {[key: string]: any}
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created string - The time the configuration was created. An RFC3339 formatted datetime string.
- time
Updated string - The time the Config was updated.
- id str
- The provider-assigned unique ID for this managed resource.
- state str
- The current state of the configuration.
- Mapping[str, Any]
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time_
created str - The time the configuration was created. An RFC3339 formatted datetime string.
- time_
updated str - The time the Config was updated.
- id String
- The provider-assigned unique ID for this managed resource.
- state String
- The current state of the configuration.
- Map<Any>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The time the configuration was created. An RFC3339 formatted datetime string.
- time
Updated String - The time the Config was updated.
Look up Existing Config Resource
Get an existing Config 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?: ConfigState, opts?: CustomResourceOptions): Config
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
config_type: Optional[str] = None,
defined_tags: Optional[Mapping[str, Any]] = None,
display_name: Optional[str] = None,
freeform_tags: Optional[Mapping[str, Any]] = None,
is_enabled: Optional[bool] = None,
license: Optional[str] = None,
resource_type: Optional[str] = None,
state: Optional[str] = None,
system_tags: Optional[Mapping[str, Any]] = None,
time_created: Optional[str] = None,
time_updated: Optional[str] = None) -> Config
func GetConfig(ctx *Context, name string, id IDInput, state *ConfigState, opts ...ResourceOption) (*Config, error)
public static Config Get(string name, Input<string> id, ConfigState? state, CustomResourceOptions? opts = null)
public static Config get(String name, Output<String> id, ConfigState 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 in which the configuration is created.
- Config
Type string - The type of configuration. The only valid value is
"AUTO_PROMOTE"
. - Dictionary<string, object>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Display
Name string - (Updatable) The display name of the configuration.
- 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
Enabled bool - (Updatable) True if enterprise extensibility is enabled, false if it is not enabled.
- License string
- (Updatable) License edition.
- Resource
Type string The type of resource to configure for automatic promotion.
** 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
- State string
- The current state of the configuration.
- Dictionary<string, object>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The time the configuration was created. An RFC3339 formatted datetime string.
- Time
Updated string - The time the Config was updated.
- Compartment
Id string - (Updatable) Compartment in which the configuration is created.
- Config
Type string - The type of configuration. The only valid value is
"AUTO_PROMOTE"
. - map[string]interface{}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Display
Name string - (Updatable) The display name of the configuration.
- 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
Enabled bool - (Updatable) True if enterprise extensibility is enabled, false if it is not enabled.
- License string
- (Updatable) License edition.
- Resource
Type string The type of resource to configure for automatic promotion.
** 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
- State string
- The current state of the configuration.
- map[string]interface{}
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The time the configuration was created. An RFC3339 formatted datetime string.
- Time
Updated string - The time the Config was updated.
- compartment
Id String - (Updatable) Compartment in which the configuration is created.
- config
Type String - The type of configuration. The only valid value is
"AUTO_PROMOTE"
. - Map<String,Object>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- display
Name String - (Updatable) The display name of the configuration.
- 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
Enabled Boolean - (Updatable) True if enterprise extensibility is enabled, false if it is not enabled.
- license String
- (Updatable) License edition.
- resource
Type String The type of resource to configure for automatic promotion.
** 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
- state String
- The current state of the configuration.
- Map<String,Object>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The time the configuration was created. An RFC3339 formatted datetime string.
- time
Updated String - The time the Config was updated.
- compartment
Id string - (Updatable) Compartment in which the configuration is created.
- config
Type string - The type of configuration. The only valid value is
"AUTO_PROMOTE"
. - {[key: string]: any}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- display
Name string - (Updatable) The display name of the configuration.
- {[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
Enabled boolean - (Updatable) True if enterprise extensibility is enabled, false if it is not enabled.
- license string
- (Updatable) License edition.
- resource
Type string The type of resource to configure for automatic promotion.
** 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
- state string
- The current state of the configuration.
- {[key: string]: any}
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created string - The time the configuration was created. An RFC3339 formatted datetime string.
- time
Updated string - The time the Config was updated.
- compartment_
id str - (Updatable) Compartment in which the configuration is created.
- config_
type str - The type of configuration. The only valid value is
"AUTO_PROMOTE"
. - Mapping[str, Any]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- display_
name str - (Updatable) The display name of the configuration.
- 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_
enabled bool - (Updatable) True if enterprise extensibility is enabled, false if it is not enabled.
- license str
- (Updatable) License edition.
- resource_
type str The type of resource to configure for automatic promotion.
** 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
- state str
- The current state of the configuration.
- Mapping[str, Any]
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time_
created str - The time the configuration was created. An RFC3339 formatted datetime string.
- time_
updated str - The time the Config was updated.
- compartment
Id String - (Updatable) Compartment in which the configuration is created.
- config
Type String - The type of configuration. The only valid value is
"AUTO_PROMOTE"
. - Map<Any>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- display
Name String - (Updatable) The display name of the configuration.
- 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
Enabled Boolean - (Updatable) True if enterprise extensibility is enabled, false if it is not enabled.
- license String
- (Updatable) License edition.
- resource
Type String The type of resource to configure for automatic promotion.
** 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
- state String
- The current state of the configuration.
- Map<Any>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The time the configuration was created. An RFC3339 formatted datetime string.
- time
Updated String - The time the Config was updated.
Import
Configs can be imported using the id
, e.g.
$ pulumi import oci:StackMonitoring/config:Config test_config "id"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.