oci.Opsi.OpsiConfiguration
Explore with Pulumi AI
This resource provides the Opsi Configuration resource in Oracle Cloud Infrastructure Opsi service.
Create an OPSI configuration resource.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testOpsiConfiguration = new oci.opsi.OpsiConfiguration("test_opsi_configuration", {
opsiConfigType: opsiConfigurationOpsiConfigType,
compartmentId: compartmentId,
configItemCustomStatuses: opsiConfigurationConfigItemCustomStatus,
configItemFields: opsiConfigurationConfigItemField,
configItems: [{
configItemType: opsiConfigurationConfigItemsConfigItemType,
name: opsiConfigurationConfigItemsName,
value: opsiConfigurationConfigItemsValue,
}],
configItemsApplicableContexts: opsiConfigurationConfigItemsApplicableContext,
definedTags: {
"foo-namespace.bar-key": "value",
},
description: opsiConfigurationDescription,
displayName: opsiConfigurationDisplayName,
freeformTags: {
"bar-key": "value",
},
opsiConfigFields: opsiConfigurationOpsiConfigField,
systemTags: opsiConfigurationSystemTags,
});
import pulumi
import pulumi_oci as oci
test_opsi_configuration = oci.opsi.OpsiConfiguration("test_opsi_configuration",
opsi_config_type=opsi_configuration_opsi_config_type,
compartment_id=compartment_id,
config_item_custom_statuses=opsi_configuration_config_item_custom_status,
config_item_fields=opsi_configuration_config_item_field,
config_items=[oci.opsi.OpsiConfigurationConfigItemArgs(
config_item_type=opsi_configuration_config_items_config_item_type,
name=opsi_configuration_config_items_name,
value=opsi_configuration_config_items_value,
)],
config_items_applicable_contexts=opsi_configuration_config_items_applicable_context,
defined_tags={
"foo-namespace.bar-key": "value",
},
description=opsi_configuration_description,
display_name=opsi_configuration_display_name,
freeform_tags={
"bar-key": "value",
},
opsi_config_fields=opsi_configuration_opsi_config_field,
system_tags=opsi_configuration_system_tags)
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.NewOpsiConfiguration(ctx, "test_opsi_configuration", &Opsi.OpsiConfigurationArgs{
OpsiConfigType: pulumi.Any(opsiConfigurationOpsiConfigType),
CompartmentId: pulumi.Any(compartmentId),
ConfigItemCustomStatuses: pulumi.Any(opsiConfigurationConfigItemCustomStatus),
ConfigItemFields: pulumi.Any(opsiConfigurationConfigItemField),
ConfigItems: opsi.OpsiConfigurationConfigItemArray{
&opsi.OpsiConfigurationConfigItemArgs{
ConfigItemType: pulumi.Any(opsiConfigurationConfigItemsConfigItemType),
Name: pulumi.Any(opsiConfigurationConfigItemsName),
Value: pulumi.Any(opsiConfigurationConfigItemsValue),
},
},
ConfigItemsApplicableContexts: pulumi.Any(opsiConfigurationConfigItemsApplicableContext),
DefinedTags: pulumi.Map{
"foo-namespace.bar-key": pulumi.Any("value"),
},
Description: pulumi.Any(opsiConfigurationDescription),
DisplayName: pulumi.Any(opsiConfigurationDisplayName),
FreeformTags: pulumi.Map{
"bar-key": pulumi.Any("value"),
},
OpsiConfigFields: pulumi.Any(opsiConfigurationOpsiConfigField),
SystemTags: pulumi.Any(opsiConfigurationSystemTags),
})
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 testOpsiConfiguration = new Oci.Opsi.OpsiConfiguration("test_opsi_configuration", new()
{
OpsiConfigType = opsiConfigurationOpsiConfigType,
CompartmentId = compartmentId,
ConfigItemCustomStatuses = opsiConfigurationConfigItemCustomStatus,
ConfigItemFields = opsiConfigurationConfigItemField,
ConfigItems = new[]
{
new Oci.Opsi.Inputs.OpsiConfigurationConfigItemArgs
{
ConfigItemType = opsiConfigurationConfigItemsConfigItemType,
Name = opsiConfigurationConfigItemsName,
Value = opsiConfigurationConfigItemsValue,
},
},
ConfigItemsApplicableContexts = opsiConfigurationConfigItemsApplicableContext,
DefinedTags =
{
{ "foo-namespace.bar-key", "value" },
},
Description = opsiConfigurationDescription,
DisplayName = opsiConfigurationDisplayName,
FreeformTags =
{
{ "bar-key", "value" },
},
OpsiConfigFields = opsiConfigurationOpsiConfigField,
SystemTags = opsiConfigurationSystemTags,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Opsi.OpsiConfiguration;
import com.pulumi.oci.Opsi.OpsiConfigurationArgs;
import com.pulumi.oci.Opsi.inputs.OpsiConfigurationConfigItemArgs;
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 testOpsiConfiguration = new OpsiConfiguration("testOpsiConfiguration", OpsiConfigurationArgs.builder()
.opsiConfigType(opsiConfigurationOpsiConfigType)
.compartmentId(compartmentId)
.configItemCustomStatuses(opsiConfigurationConfigItemCustomStatus)
.configItemFields(opsiConfigurationConfigItemField)
.configItems(OpsiConfigurationConfigItemArgs.builder()
.configItemType(opsiConfigurationConfigItemsConfigItemType)
.name(opsiConfigurationConfigItemsName)
.value(opsiConfigurationConfigItemsValue)
.build())
.configItemsApplicableContexts(opsiConfigurationConfigItemsApplicableContext)
.definedTags(Map.of("foo-namespace.bar-key", "value"))
.description(opsiConfigurationDescription)
.displayName(opsiConfigurationDisplayName)
.freeformTags(Map.of("bar-key", "value"))
.opsiConfigFields(opsiConfigurationOpsiConfigField)
.systemTags(opsiConfigurationSystemTags)
.build());
}
}
resources:
testOpsiConfiguration:
type: oci:Opsi:OpsiConfiguration
name: test_opsi_configuration
properties:
opsiConfigType: ${opsiConfigurationOpsiConfigType}
compartmentId: ${compartmentId}
configItemCustomStatuses: ${opsiConfigurationConfigItemCustomStatus}
configItemFields: ${opsiConfigurationConfigItemField}
configItems:
- configItemType: ${opsiConfigurationConfigItemsConfigItemType}
name: ${opsiConfigurationConfigItemsName}
value: ${opsiConfigurationConfigItemsValue}
configItemsApplicableContexts: ${opsiConfigurationConfigItemsApplicableContext}
definedTags:
foo-namespace.bar-key: value
description: ${opsiConfigurationDescription}
displayName: ${opsiConfigurationDisplayName}
freeformTags:
bar-key: value
opsiConfigFields: ${opsiConfigurationOpsiConfigField}
systemTags: ${opsiConfigurationSystemTags}
Create OpsiConfiguration Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new OpsiConfiguration(name: string, args: OpsiConfigurationArgs, opts?: CustomResourceOptions);
@overload
def OpsiConfiguration(resource_name: str,
args: OpsiConfigurationArgs,
opts: Optional[ResourceOptions] = None)
@overload
def OpsiConfiguration(resource_name: str,
opts: Optional[ResourceOptions] = None,
opsi_config_type: Optional[str] = None,
compartment_id: Optional[str] = None,
config_item_custom_statuses: Optional[Sequence[str]] = None,
config_item_fields: Optional[Sequence[str]] = None,
config_items: Optional[Sequence[_opsi.OpsiConfigurationConfigItemArgs]] = None,
config_items_applicable_contexts: Optional[Sequence[str]] = None,
defined_tags: Optional[Mapping[str, Any]] = None,
description: Optional[str] = None,
display_name: Optional[str] = None,
freeform_tags: Optional[Mapping[str, Any]] = None,
opsi_config_fields: Optional[Sequence[str]] = None,
system_tags: Optional[Mapping[str, Any]] = None)
func NewOpsiConfiguration(ctx *Context, name string, args OpsiConfigurationArgs, opts ...ResourceOption) (*OpsiConfiguration, error)
public OpsiConfiguration(string name, OpsiConfigurationArgs args, CustomResourceOptions? opts = null)
public OpsiConfiguration(String name, OpsiConfigurationArgs args)
public OpsiConfiguration(String name, OpsiConfigurationArgs args, CustomResourceOptions options)
type: oci:Opsi:OpsiConfiguration
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 OpsiConfigurationArgs
- 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 OpsiConfigurationArgs
- 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 OpsiConfigurationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args OpsiConfigurationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args OpsiConfigurationArgs
- 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 opsiConfigurationResource = new Oci.Opsi.OpsiConfiguration("opsiConfigurationResource", new()
{
OpsiConfigType = "string",
CompartmentId = "string",
ConfigItemCustomStatuses = new[]
{
"string",
},
ConfigItemFields = new[]
{
"string",
},
ConfigItems = new[]
{
new Oci.Opsi.Inputs.OpsiConfigurationConfigItemArgs
{
ConfigItemType = "string",
ApplicableContexts = new[]
{
"string",
},
DefaultValue = "string",
Metadatas = new[]
{
new Oci.Opsi.Inputs.OpsiConfigurationConfigItemMetadataArgs
{
ConfigItemType = "string",
DataType = "string",
Description = "string",
DisplayName = "string",
UnitDetails = new[]
{
new Oci.Opsi.Inputs.OpsiConfigurationConfigItemMetadataUnitDetailArgs
{
DisplayName = "string",
Unit = "string",
},
},
ValueInputDetails = new[]
{
new Oci.Opsi.Inputs.OpsiConfigurationConfigItemMetadataValueInputDetailArgs
{
AllowedValueType = "string",
MaxValue = "string",
MinValue = "string",
PossibleValues = new[]
{
"string",
},
},
},
},
},
Name = "string",
Value = "string",
},
},
ConfigItemsApplicableContexts = new[]
{
"string",
},
DefinedTags =
{
{ "string", "any" },
},
Description = "string",
DisplayName = "string",
FreeformTags =
{
{ "string", "any" },
},
OpsiConfigFields = new[]
{
"string",
},
SystemTags =
{
{ "string", "any" },
},
});
example, err := Opsi.NewOpsiConfiguration(ctx, "opsiConfigurationResource", &Opsi.OpsiConfigurationArgs{
OpsiConfigType: pulumi.String("string"),
CompartmentId: pulumi.String("string"),
ConfigItemCustomStatuses: pulumi.StringArray{
pulumi.String("string"),
},
ConfigItemFields: pulumi.StringArray{
pulumi.String("string"),
},
ConfigItems: opsi.OpsiConfigurationConfigItemArray{
&opsi.OpsiConfigurationConfigItemArgs{
ConfigItemType: pulumi.String("string"),
ApplicableContexts: pulumi.StringArray{
pulumi.String("string"),
},
DefaultValue: pulumi.String("string"),
Metadatas: opsi.OpsiConfigurationConfigItemMetadataArray{
&opsi.OpsiConfigurationConfigItemMetadataArgs{
ConfigItemType: pulumi.String("string"),
DataType: pulumi.String("string"),
Description: pulumi.String("string"),
DisplayName: pulumi.String("string"),
UnitDetails: opsi.OpsiConfigurationConfigItemMetadataUnitDetailArray{
&opsi.OpsiConfigurationConfigItemMetadataUnitDetailArgs{
DisplayName: pulumi.String("string"),
Unit: pulumi.String("string"),
},
},
ValueInputDetails: opsi.OpsiConfigurationConfigItemMetadataValueInputDetailArray{
&opsi.OpsiConfigurationConfigItemMetadataValueInputDetailArgs{
AllowedValueType: pulumi.String("string"),
MaxValue: pulumi.String("string"),
MinValue: pulumi.String("string"),
PossibleValues: pulumi.StringArray{
pulumi.String("string"),
},
},
},
},
},
Name: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
ConfigItemsApplicableContexts: pulumi.StringArray{
pulumi.String("string"),
},
DefinedTags: pulumi.Map{
"string": pulumi.Any("any"),
},
Description: pulumi.String("string"),
DisplayName: pulumi.String("string"),
FreeformTags: pulumi.Map{
"string": pulumi.Any("any"),
},
OpsiConfigFields: pulumi.StringArray{
pulumi.String("string"),
},
SystemTags: pulumi.Map{
"string": pulumi.Any("any"),
},
})
var opsiConfigurationResource = new OpsiConfiguration("opsiConfigurationResource", OpsiConfigurationArgs.builder()
.opsiConfigType("string")
.compartmentId("string")
.configItemCustomStatuses("string")
.configItemFields("string")
.configItems(OpsiConfigurationConfigItemArgs.builder()
.configItemType("string")
.applicableContexts("string")
.defaultValue("string")
.metadatas(OpsiConfigurationConfigItemMetadataArgs.builder()
.configItemType("string")
.dataType("string")
.description("string")
.displayName("string")
.unitDetails(OpsiConfigurationConfigItemMetadataUnitDetailArgs.builder()
.displayName("string")
.unit("string")
.build())
.valueInputDetails(OpsiConfigurationConfigItemMetadataValueInputDetailArgs.builder()
.allowedValueType("string")
.maxValue("string")
.minValue("string")
.possibleValues("string")
.build())
.build())
.name("string")
.value("string")
.build())
.configItemsApplicableContexts("string")
.definedTags(Map.of("string", "any"))
.description("string")
.displayName("string")
.freeformTags(Map.of("string", "any"))
.opsiConfigFields("string")
.systemTags(Map.of("string", "any"))
.build());
opsi_configuration_resource = oci.opsi.OpsiConfiguration("opsiConfigurationResource",
opsi_config_type="string",
compartment_id="string",
config_item_custom_statuses=["string"],
config_item_fields=["string"],
config_items=[oci.opsi.OpsiConfigurationConfigItemArgs(
config_item_type="string",
applicable_contexts=["string"],
default_value="string",
metadatas=[oci.opsi.OpsiConfigurationConfigItemMetadataArgs(
config_item_type="string",
data_type="string",
description="string",
display_name="string",
unit_details=[oci.opsi.OpsiConfigurationConfigItemMetadataUnitDetailArgs(
display_name="string",
unit="string",
)],
value_input_details=[oci.opsi.OpsiConfigurationConfigItemMetadataValueInputDetailArgs(
allowed_value_type="string",
max_value="string",
min_value="string",
possible_values=["string"],
)],
)],
name="string",
value="string",
)],
config_items_applicable_contexts=["string"],
defined_tags={
"string": "any",
},
description="string",
display_name="string",
freeform_tags={
"string": "any",
},
opsi_config_fields=["string"],
system_tags={
"string": "any",
})
const opsiConfigurationResource = new oci.opsi.OpsiConfiguration("opsiConfigurationResource", {
opsiConfigType: "string",
compartmentId: "string",
configItemCustomStatuses: ["string"],
configItemFields: ["string"],
configItems: [{
configItemType: "string",
applicableContexts: ["string"],
defaultValue: "string",
metadatas: [{
configItemType: "string",
dataType: "string",
description: "string",
displayName: "string",
unitDetails: [{
displayName: "string",
unit: "string",
}],
valueInputDetails: [{
allowedValueType: "string",
maxValue: "string",
minValue: "string",
possibleValues: ["string"],
}],
}],
name: "string",
value: "string",
}],
configItemsApplicableContexts: ["string"],
definedTags: {
string: "any",
},
description: "string",
displayName: "string",
freeformTags: {
string: "any",
},
opsiConfigFields: ["string"],
systemTags: {
string: "any",
},
});
type: oci:Opsi:OpsiConfiguration
properties:
compartmentId: string
configItemCustomStatuses:
- string
configItemFields:
- string
configItems:
- applicableContexts:
- string
configItemType: string
defaultValue: string
metadatas:
- configItemType: string
dataType: string
description: string
displayName: string
unitDetails:
- displayName: string
unit: string
valueInputDetails:
- allowedValueType: string
maxValue: string
minValue: string
possibleValues:
- string
name: string
value: string
configItemsApplicableContexts:
- string
definedTags:
string: any
description: string
displayName: string
freeformTags:
string: any
opsiConfigFields:
- string
opsiConfigType: string
systemTags:
string: any
OpsiConfiguration 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 OpsiConfiguration resource accepts the following input properties:
- Opsi
Config stringType - (Updatable) OPSI configuration type.
- Compartment
Id string - (Updatable) The OCID of the compartment.
- Config
Item List<string>Custom Statuses - Specifies whether only customized configuration items or only non-customized configuration items or both have to be returned. By default only customized configuration items are returned.
- Config
Item List<string>Fields - Specifies the fields to return in a config item summary.
- Config
Items List<OpsiConfiguration Config Item> - (Updatable) Array of configuration items with custom values. All and only configuration items requiring custom values should be part of this array.
- Config
Items List<string>Applicable Contexts - Returns the configuration items filtered by applicable contexts sent in this param. By default configuration items of all applicable contexts are returned.
- Dictionary<string, object>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Description string
- (Updatable) Description of OPSI configuration.
- Display
Name string - (Updatable) User-friendly display name for the OPSI configuration. The name does not have to be unique.
- 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
Config List<string>Fields - Optional fields to return as part of OpsiConfiguration object. Unless requested, these fields will not be returned by default.
- Dictionary<string, object>
(Updatable) System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
** 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
- Opsi
Config stringType - (Updatable) OPSI configuration type.
- Compartment
Id string - (Updatable) The OCID of the compartment.
- Config
Item []stringCustom Statuses - Specifies whether only customized configuration items or only non-customized configuration items or both have to be returned. By default only customized configuration items are returned.
- Config
Item []stringFields - Specifies the fields to return in a config item summary.
- Config
Items []OpsiConfiguration Config Item Args - (Updatable) Array of configuration items with custom values. All and only configuration items requiring custom values should be part of this array.
- Config
Items []stringApplicable Contexts - Returns the configuration items filtered by applicable contexts sent in this param. By default configuration items of all applicable contexts are returned.
- map[string]interface{}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Description string
- (Updatable) Description of OPSI configuration.
- Display
Name string - (Updatable) User-friendly display name for the OPSI configuration. The name does not have to be unique.
- 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
Config []stringFields - Optional fields to return as part of OpsiConfiguration object. Unless requested, these fields will not be returned by default.
- map[string]interface{}
(Updatable) System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
** 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
- opsi
Config StringType - (Updatable) OPSI configuration type.
- compartment
Id String - (Updatable) The OCID of the compartment.
- config
Item List<String>Custom Statuses - Specifies whether only customized configuration items or only non-customized configuration items or both have to be returned. By default only customized configuration items are returned.
- config
Item List<String>Fields - Specifies the fields to return in a config item summary.
- config
Items List<ConfigurationConfig Item> - (Updatable) Array of configuration items with custom values. All and only configuration items requiring custom values should be part of this array.
- config
Items List<String>Applicable Contexts - Returns the configuration items filtered by applicable contexts sent in this param. By default configuration items of all applicable contexts are returned.
- Map<String,Object>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description String
- (Updatable) Description of OPSI configuration.
- display
Name String - (Updatable) User-friendly display name for the OPSI configuration. The name does not have to be unique.
- 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
Config List<String>Fields - Optional fields to return as part of OpsiConfiguration object. Unless requested, these fields will not be returned by default.
- Map<String,Object>
(Updatable) System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
** 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
- opsi
Config stringType - (Updatable) OPSI configuration type.
- compartment
Id string - (Updatable) The OCID of the compartment.
- config
Item string[]Custom Statuses - Specifies whether only customized configuration items or only non-customized configuration items or both have to be returned. By default only customized configuration items are returned.
- config
Item string[]Fields - Specifies the fields to return in a config item summary.
- config
Items OpsiConfiguration Config Item[] - (Updatable) Array of configuration items with custom values. All and only configuration items requiring custom values should be part of this array.
- config
Items string[]Applicable Contexts - Returns the configuration items filtered by applicable contexts sent in this param. By default configuration items of all applicable contexts are returned.
- {[key: string]: any}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description string
- (Updatable) Description of OPSI configuration.
- display
Name string - (Updatable) User-friendly display name for the OPSI configuration. The name does not have to be unique.
- {[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
Config string[]Fields - Optional fields to return as part of OpsiConfiguration object. Unless requested, these fields will not be returned by default.
- {[key: string]: any}
(Updatable) System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
** 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
- opsi_
config_ strtype - (Updatable) OPSI configuration type.
- compartment_
id str - (Updatable) The OCID of the compartment.
- config_
item_ Sequence[str]custom_ statuses - Specifies whether only customized configuration items or only non-customized configuration items or both have to be returned. By default only customized configuration items are returned.
- config_
item_ Sequence[str]fields - Specifies the fields to return in a config item summary.
- config_
items Sequence[opsi.Opsi Configuration Config Item Args] - (Updatable) Array of configuration items with custom values. All and only configuration items requiring custom values should be part of this array.
- config_
items_ Sequence[str]applicable_ contexts - Returns the configuration items filtered by applicable contexts sent in this param. By default configuration items of all applicable contexts are returned.
- Mapping[str, Any]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description str
- (Updatable) Description of OPSI configuration.
- display_
name str - (Updatable) User-friendly display name for the OPSI configuration. The name does not have to be unique.
- 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_
config_ Sequence[str]fields - Optional fields to return as part of OpsiConfiguration object. Unless requested, these fields will not be returned by default.
- Mapping[str, Any]
(Updatable) System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
** 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
- opsi
Config StringType - (Updatable) OPSI configuration type.
- compartment
Id String - (Updatable) The OCID of the compartment.
- config
Item List<String>Custom Statuses - Specifies whether only customized configuration items or only non-customized configuration items or both have to be returned. By default only customized configuration items are returned.
- config
Item List<String>Fields - Specifies the fields to return in a config item summary.
- config
Items List<Property Map> - (Updatable) Array of configuration items with custom values. All and only configuration items requiring custom values should be part of this array.
- config
Items List<String>Applicable Contexts - Returns the configuration items filtered by applicable contexts sent in this param. By default configuration items of all applicable contexts are returned.
- Map<Any>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description String
- (Updatable) Description of OPSI configuration.
- display
Name String - (Updatable) User-friendly display name for the OPSI configuration. The name does not have to be unique.
- 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
Config List<String>Fields - Optional fields to return as part of OpsiConfiguration object. Unless requested, these fields will not be returned by default.
- Map<Any>
(Updatable) System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
** 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 OpsiConfiguration resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- 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
- OPSI configuration resource lifecycle state.
- Time
Created string - The time at which the resource was first created. An RFC3339 formatted datetime string
- Time
Updated string - The time at which the resource was last updated. An RFC3339 formatted datetime string
- Id string
- The provider-assigned unique ID for this managed resource.
- 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
- OPSI configuration resource lifecycle state.
- Time
Created string - The time at which the resource was first created. An RFC3339 formatted datetime string
- Time
Updated string - The time at which the resource was last updated. An RFC3339 formatted datetime string
- id String
- The provider-assigned unique ID for this managed resource.
- 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
- OPSI configuration resource lifecycle state.
- time
Created String - The time at which the resource was first created. An RFC3339 formatted datetime string
- time
Updated String - The time at which the resource was last updated. An RFC3339 formatted datetime string
- id string
- The provider-assigned unique ID for this managed resource.
- 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
- OPSI configuration resource lifecycle state.
- time
Created string - The time at which the resource was first created. An RFC3339 formatted datetime string
- time
Updated string - The time at which the resource was last updated. An RFC3339 formatted datetime string
- id str
- The provider-assigned unique ID for this managed resource.
- 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
- OPSI configuration resource lifecycle state.
- time_
created str - The time at which the resource was first created. An RFC3339 formatted datetime string
- time_
updated str - The time at which the resource was last updated. An RFC3339 formatted datetime string
- id String
- The provider-assigned unique ID for this managed resource.
- 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
- OPSI configuration resource lifecycle state.
- time
Created String - The time at which the resource was first created. An RFC3339 formatted datetime string
- time
Updated String - The time at which the resource was last updated. An RFC3339 formatted datetime string
Look up Existing OpsiConfiguration Resource
Get an existing OpsiConfiguration 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?: OpsiConfigurationState, opts?: CustomResourceOptions): OpsiConfiguration
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
config_item_custom_statuses: Optional[Sequence[str]] = None,
config_item_fields: Optional[Sequence[str]] = None,
config_items: Optional[Sequence[_opsi.OpsiConfigurationConfigItemArgs]] = None,
config_items_applicable_contexts: Optional[Sequence[str]] = None,
defined_tags: Optional[Mapping[str, Any]] = None,
description: Optional[str] = None,
display_name: Optional[str] = None,
freeform_tags: Optional[Mapping[str, Any]] = None,
lifecycle_details: Optional[str] = None,
opsi_config_fields: Optional[Sequence[str]] = None,
opsi_config_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) -> OpsiConfiguration
func GetOpsiConfiguration(ctx *Context, name string, id IDInput, state *OpsiConfigurationState, opts ...ResourceOption) (*OpsiConfiguration, error)
public static OpsiConfiguration Get(string name, Input<string> id, OpsiConfigurationState? state, CustomResourceOptions? opts = null)
public static OpsiConfiguration get(String name, Output<String> id, OpsiConfigurationState 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) The OCID of the compartment.
- Config
Item List<string>Custom Statuses - Specifies whether only customized configuration items or only non-customized configuration items or both have to be returned. By default only customized configuration items are returned.
- Config
Item List<string>Fields - Specifies the fields to return in a config item summary.
- Config
Items List<OpsiConfiguration Config Item> - (Updatable) Array of configuration items with custom values. All and only configuration items requiring custom values should be part of this array.
- Config
Items List<string>Applicable Contexts - Returns the configuration items filtered by applicable contexts sent in this param. By default configuration items of all applicable contexts are returned.
- Dictionary<string, object>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Description string
- (Updatable) Description of OPSI configuration.
- Display
Name string - (Updatable) User-friendly display name for the OPSI configuration. The name does not have to be unique.
- 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"}
- 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.
- Opsi
Config List<string>Fields - Optional fields to return as part of OpsiConfiguration object. Unless requested, these fields will not be returned by default.
- Opsi
Config stringType - (Updatable) OPSI configuration type.
- State string
- OPSI configuration resource lifecycle state.
- Dictionary<string, object>
(Updatable) System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
** 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
- Time
Created string - The time at which the resource was first created. An RFC3339 formatted datetime string
- Time
Updated string - The time at which the resource was last updated. An RFC3339 formatted datetime string
- Compartment
Id string - (Updatable) The OCID of the compartment.
- Config
Item []stringCustom Statuses - Specifies whether only customized configuration items or only non-customized configuration items or both have to be returned. By default only customized configuration items are returned.
- Config
Item []stringFields - Specifies the fields to return in a config item summary.
- Config
Items []OpsiConfiguration Config Item Args - (Updatable) Array of configuration items with custom values. All and only configuration items requiring custom values should be part of this array.
- Config
Items []stringApplicable Contexts - Returns the configuration items filtered by applicable contexts sent in this param. By default configuration items of all applicable contexts are returned.
- map[string]interface{}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Description string
- (Updatable) Description of OPSI configuration.
- Display
Name string - (Updatable) User-friendly display name for the OPSI configuration. The name does not have to be unique.
- 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"}
- 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.
- Opsi
Config []stringFields - Optional fields to return as part of OpsiConfiguration object. Unless requested, these fields will not be returned by default.
- Opsi
Config stringType - (Updatable) OPSI configuration type.
- State string
- OPSI configuration resource lifecycle state.
- map[string]interface{}
(Updatable) System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
** 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
- Time
Created string - The time at which the resource was first created. An RFC3339 formatted datetime string
- Time
Updated string - The time at which the resource was last updated. An RFC3339 formatted datetime string
- compartment
Id String - (Updatable) The OCID of the compartment.
- config
Item List<String>Custom Statuses - Specifies whether only customized configuration items or only non-customized configuration items or both have to be returned. By default only customized configuration items are returned.
- config
Item List<String>Fields - Specifies the fields to return in a config item summary.
- config
Items List<ConfigurationConfig Item> - (Updatable) Array of configuration items with custom values. All and only configuration items requiring custom values should be part of this array.
- config
Items List<String>Applicable Contexts - Returns the configuration items filtered by applicable contexts sent in this param. By default configuration items of all applicable contexts are returned.
- Map<String,Object>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description String
- (Updatable) Description of OPSI configuration.
- display
Name String - (Updatable) User-friendly display name for the OPSI configuration. The name does not have to be unique.
- 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"}
- 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.
- opsi
Config List<String>Fields - Optional fields to return as part of OpsiConfiguration object. Unless requested, these fields will not be returned by default.
- opsi
Config StringType - (Updatable) OPSI configuration type.
- state String
- OPSI configuration resource lifecycle state.
- Map<String,Object>
(Updatable) System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
** 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
- time
Created String - The time at which the resource was first created. An RFC3339 formatted datetime string
- time
Updated String - The time at which the resource was last updated. An RFC3339 formatted datetime string
- compartment
Id string - (Updatable) The OCID of the compartment.
- config
Item string[]Custom Statuses - Specifies whether only customized configuration items or only non-customized configuration items or both have to be returned. By default only customized configuration items are returned.
- config
Item string[]Fields - Specifies the fields to return in a config item summary.
- config
Items OpsiConfiguration Config Item[] - (Updatable) Array of configuration items with custom values. All and only configuration items requiring custom values should be part of this array.
- config
Items string[]Applicable Contexts - Returns the configuration items filtered by applicable contexts sent in this param. By default configuration items of all applicable contexts are returned.
- {[key: string]: any}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description string
- (Updatable) Description of OPSI configuration.
- display
Name string - (Updatable) User-friendly display name for the OPSI configuration. The name does not have to be unique.
- {[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"}
- 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.
- opsi
Config string[]Fields - Optional fields to return as part of OpsiConfiguration object. Unless requested, these fields will not be returned by default.
- opsi
Config stringType - (Updatable) OPSI configuration type.
- state string
- OPSI configuration resource lifecycle state.
- {[key: string]: any}
(Updatable) System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
** 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
- time
Created string - The time at which the resource was first created. An RFC3339 formatted datetime string
- time
Updated string - The time at which the resource was last updated. An RFC3339 formatted datetime string
- compartment_
id str - (Updatable) The OCID of the compartment.
- config_
item_ Sequence[str]custom_ statuses - Specifies whether only customized configuration items or only non-customized configuration items or both have to be returned. By default only customized configuration items are returned.
- config_
item_ Sequence[str]fields - Specifies the fields to return in a config item summary.
- config_
items Sequence[opsi.Opsi Configuration Config Item Args] - (Updatable) Array of configuration items with custom values. All and only configuration items requiring custom values should be part of this array.
- config_
items_ Sequence[str]applicable_ contexts - Returns the configuration items filtered by applicable contexts sent in this param. By default configuration items of all applicable contexts are returned.
- Mapping[str, Any]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description str
- (Updatable) Description of OPSI configuration.
- display_
name str - (Updatable) User-friendly display name for the OPSI configuration. The name does not have to be unique.
- 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"}
- 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.
- opsi_
config_ Sequence[str]fields - Optional fields to return as part of OpsiConfiguration object. Unless requested, these fields will not be returned by default.
- opsi_
config_ strtype - (Updatable) OPSI configuration type.
- state str
- OPSI configuration resource lifecycle state.
- Mapping[str, Any]
(Updatable) System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
** 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
- time_
created str - The time at which the resource was first created. An RFC3339 formatted datetime string
- time_
updated str - The time at which the resource was last updated. An RFC3339 formatted datetime string
- compartment
Id String - (Updatable) The OCID of the compartment.
- config
Item List<String>Custom Statuses - Specifies whether only customized configuration items or only non-customized configuration items or both have to be returned. By default only customized configuration items are returned.
- config
Item List<String>Fields - Specifies the fields to return in a config item summary.
- config
Items List<Property Map> - (Updatable) Array of configuration items with custom values. All and only configuration items requiring custom values should be part of this array.
- config
Items List<String>Applicable Contexts - Returns the configuration items filtered by applicable contexts sent in this param. By default configuration items of all applicable contexts are returned.
- Map<Any>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description String
- (Updatable) Description of OPSI configuration.
- display
Name String - (Updatable) User-friendly display name for the OPSI configuration. The name does not have to be unique.
- 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"}
- 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.
- opsi
Config List<String>Fields - Optional fields to return as part of OpsiConfiguration object. Unless requested, these fields will not be returned by default.
- opsi
Config StringType - (Updatable) OPSI configuration type.
- state String
- OPSI configuration resource lifecycle state.
- Map<Any>
(Updatable) System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
** 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
- time
Created String - The time at which the resource was first created. An RFC3339 formatted datetime string
- time
Updated String - The time at which the resource was last updated. An RFC3339 formatted datetime string
Supporting Types
OpsiConfigurationConfigItem, OpsiConfigurationConfigItemArgs
- Config
Item stringType - (Updatable) Type of configuration item.
- Applicable
Contexts List<string> - List of contexts in Operations Insights where this configuration item is applicable.
- Default
Value string - Value of configuration item.
- Metadatas
List<Opsi
Configuration Config Item Metadata> - Configuration item metadata.
- Name string
- (Updatable) Name of configuration item.
- Value string
- (Updatable) Value of configuration item.
- Config
Item stringType - (Updatable) Type of configuration item.
- Applicable
Contexts []string - List of contexts in Operations Insights where this configuration item is applicable.
- Default
Value string - Value of configuration item.
- Metadatas
[]Opsi
Configuration Config Item Metadata - Configuration item metadata.
- Name string
- (Updatable) Name of configuration item.
- Value string
- (Updatable) Value of configuration item.
- config
Item StringType - (Updatable) Type of configuration item.
- applicable
Contexts List<String> - List of contexts in Operations Insights where this configuration item is applicable.
- default
Value String - Value of configuration item.
- metadatas
List<Configuration
Config Item Metadata> - Configuration item metadata.
- name String
- (Updatable) Name of configuration item.
- value String
- (Updatable) Value of configuration item.
- config
Item stringType - (Updatable) Type of configuration item.
- applicable
Contexts string[] - List of contexts in Operations Insights where this configuration item is applicable.
- default
Value string - Value of configuration item.
- metadatas
Opsi
Configuration Config Item Metadata[] - Configuration item metadata.
- name string
- (Updatable) Name of configuration item.
- value string
- (Updatable) Value of configuration item.
- config_
item_ strtype - (Updatable) Type of configuration item.
- applicable_
contexts Sequence[str] - List of contexts in Operations Insights where this configuration item is applicable.
- default_
value str - Value of configuration item.
- metadatas
Sequence[opsi.
Opsi Configuration Config Item Metadata] - Configuration item metadata.
- name str
- (Updatable) Name of configuration item.
- value str
- (Updatable) Value of configuration item.
- config
Item StringType - (Updatable) Type of configuration item.
- applicable
Contexts List<String> - List of contexts in Operations Insights where this configuration item is applicable.
- default
Value String - Value of configuration item.
- metadatas List<Property Map>
- Configuration item metadata.
- name String
- (Updatable) Name of configuration item.
- value String
- (Updatable) Value of configuration item.
OpsiConfigurationConfigItemMetadata, OpsiConfigurationConfigItemMetadataArgs
- Config
Item stringType - Type of configuration item.
- Data
Type string - Data type of configuration item. Examples: STRING, BOOLEAN, NUMBER
- Description string
- (Updatable) Description of OPSI configuration.
- Display
Name string - (Updatable) User-friendly display name for the OPSI configuration. The name does not have to be unique.
- Unit
Details List<OpsiConfiguration Config Item Metadata Unit Detail> - Unit details of configuration item.
- Value
Input List<OpsiDetails Configuration Config Item Metadata Value Input Detail> - Allowed value details of configuration item, to validate what value can be assigned to a configuration item.
- Config
Item stringType - Type of configuration item.
- Data
Type string - Data type of configuration item. Examples: STRING, BOOLEAN, NUMBER
- Description string
- (Updatable) Description of OPSI configuration.
- Display
Name string - (Updatable) User-friendly display name for the OPSI configuration. The name does not have to be unique.
- Unit
Details []OpsiConfiguration Config Item Metadata Unit Detail - Unit details of configuration item.
- Value
Input []OpsiDetails Configuration Config Item Metadata Value Input Detail - Allowed value details of configuration item, to validate what value can be assigned to a configuration item.
- config
Item StringType - Type of configuration item.
- data
Type String - Data type of configuration item. Examples: STRING, BOOLEAN, NUMBER
- description String
- (Updatable) Description of OPSI configuration.
- display
Name String - (Updatable) User-friendly display name for the OPSI configuration. The name does not have to be unique.
- unit
Details List<ConfigurationConfig Item Metadata Unit Detail> - Unit details of configuration item.
- value
Input List<ConfigurationDetails Config Item Metadata Value Input Detail> - Allowed value details of configuration item, to validate what value can be assigned to a configuration item.
- config
Item stringType - Type of configuration item.
- data
Type string - Data type of configuration item. Examples: STRING, BOOLEAN, NUMBER
- description string
- (Updatable) Description of OPSI configuration.
- display
Name string - (Updatable) User-friendly display name for the OPSI configuration. The name does not have to be unique.
- unit
Details OpsiConfiguration Config Item Metadata Unit Detail[] - Unit details of configuration item.
- value
Input OpsiDetails Configuration Config Item Metadata Value Input Detail[] - Allowed value details of configuration item, to validate what value can be assigned to a configuration item.
- config_
item_ strtype - Type of configuration item.
- data_
type str - Data type of configuration item. Examples: STRING, BOOLEAN, NUMBER
- description str
- (Updatable) Description of OPSI configuration.
- display_
name str - (Updatable) User-friendly display name for the OPSI configuration. The name does not have to be unique.
- unit_
details Sequence[opsi.Opsi Configuration Config Item Metadata Unit Detail] - Unit details of configuration item.
- value_
input_ Sequence[opsi.details Opsi Configuration Config Item Metadata Value Input Detail] - Allowed value details of configuration item, to validate what value can be assigned to a configuration item.
- config
Item StringType - Type of configuration item.
- data
Type String - Data type of configuration item. Examples: STRING, BOOLEAN, NUMBER
- description String
- (Updatable) Description of OPSI configuration.
- display
Name String - (Updatable) User-friendly display name for the OPSI configuration. The name does not have to be unique.
- unit
Details List<Property Map> - Unit details of configuration item.
- value
Input List<Property Map>Details - Allowed value details of configuration item, to validate what value can be assigned to a configuration item.
OpsiConfigurationConfigItemMetadataUnitDetail, OpsiConfigurationConfigItemMetadataUnitDetailArgs
- Display
Name string - (Updatable) User-friendly display name for the OPSI configuration. The name does not have to be unique.
- Unit string
- Unit of configuration item.
- Display
Name string - (Updatable) User-friendly display name for the OPSI configuration. The name does not have to be unique.
- Unit string
- Unit of configuration item.
- display
Name String - (Updatable) User-friendly display name for the OPSI configuration. The name does not have to be unique.
- unit String
- Unit of configuration item.
- display
Name string - (Updatable) User-friendly display name for the OPSI configuration. The name does not have to be unique.
- unit string
- Unit of configuration item.
- display_
name str - (Updatable) User-friendly display name for the OPSI configuration. The name does not have to be unique.
- unit str
- Unit of configuration item.
- display
Name String - (Updatable) User-friendly display name for the OPSI configuration. The name does not have to be unique.
- unit String
- Unit of configuration item.
OpsiConfigurationConfigItemMetadataValueInputDetail, OpsiConfigurationConfigItemMetadataValueInputDetailArgs
- Allowed
Value stringType - Allowed value type of configuration item.
- Max
Value string - Maximum value limit for the configuration item.
- Min
Value string - Minimum value limit for the configuration item.
- Possible
Values List<string> - Allowed values to pick for the configuration item.
- Allowed
Value stringType - Allowed value type of configuration item.
- Max
Value string - Maximum value limit for the configuration item.
- Min
Value string - Minimum value limit for the configuration item.
- Possible
Values []string - Allowed values to pick for the configuration item.
- allowed
Value StringType - Allowed value type of configuration item.
- max
Value String - Maximum value limit for the configuration item.
- min
Value String - Minimum value limit for the configuration item.
- possible
Values List<String> - Allowed values to pick for the configuration item.
- allowed
Value stringType - Allowed value type of configuration item.
- max
Value string - Maximum value limit for the configuration item.
- min
Value string - Minimum value limit for the configuration item.
- possible
Values string[] - Allowed values to pick for the configuration item.
- allowed_
value_ strtype - Allowed value type of configuration item.
- max_
value str - Maximum value limit for the configuration item.
- min_
value str - Minimum value limit for the configuration item.
- possible_
values Sequence[str] - Allowed values to pick for the configuration item.
- allowed
Value StringType - Allowed value type of configuration item.
- max
Value String - Maximum value limit for the configuration item.
- min
Value String - Minimum value limit for the configuration item.
- possible
Values List<String> - Allowed values to pick for the configuration item.
Import
OpsiConfigurations can be imported using the id
, e.g.
$ pulumi import oci:Opsi/opsiConfiguration:OpsiConfiguration test_opsi_configuration "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.