1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Opsi
  5. getOpsiConfiguration
Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi

oci.Opsi.getOpsiConfiguration

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi

    This data source provides details about a specific Opsi Configuration resource in Oracle Cloud Infrastructure Opsi service.

    Gets details of an OPSI configuration resource. Values specified in configItemField and configItemCustomStatus query params will be considered, only if configItems field is requested as part of opsiConfigField query param. Values specified in configItemCustomStatus will determine whether only customized configuration items or only non-customized configuration items or both have to be returned.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testOpsiConfiguration = oci.Opsi.getOpsiConfiguration({
        opsiConfigurationId: oci_opsi_opsi_configuration.test_opsi_configuration.id,
        configItemCustomStatuses: _var.opsi_configuration_config_item_custom_status,
        configItemFields: _var.opsi_configuration_config_item_field,
        configItemsApplicableContexts: _var.opsi_configuration_config_items_applicable_context,
        opsiConfigFields: _var.opsi_configuration_opsi_config_field,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_opsi_configuration = oci.Opsi.get_opsi_configuration(opsi_configuration_id=oci_opsi_opsi_configuration["test_opsi_configuration"]["id"],
        config_item_custom_statuses=var["opsi_configuration_config_item_custom_status"],
        config_item_fields=var["opsi_configuration_config_item_field"],
        config_items_applicable_contexts=var["opsi_configuration_config_items_applicable_context"],
        opsi_config_fields=var["opsi_configuration_opsi_config_field"])
    
    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.GetOpsiConfiguration(ctx, &opsi.GetOpsiConfigurationArgs{
    			OpsiConfigurationId:           oci_opsi_opsi_configuration.Test_opsi_configuration.Id,
    			ConfigItemCustomStatuses:      _var.Opsi_configuration_config_item_custom_status,
    			ConfigItemFields:              _var.Opsi_configuration_config_item_field,
    			ConfigItemsApplicableContexts: _var.Opsi_configuration_config_items_applicable_context,
    			OpsiConfigFields:              _var.Opsi_configuration_opsi_config_field,
    		}, nil)
    		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 = Oci.Opsi.GetOpsiConfiguration.Invoke(new()
        {
            OpsiConfigurationId = oci_opsi_opsi_configuration.Test_opsi_configuration.Id,
            ConfigItemCustomStatuses = @var.Opsi_configuration_config_item_custom_status,
            ConfigItemFields = @var.Opsi_configuration_config_item_field,
            ConfigItemsApplicableContexts = @var.Opsi_configuration_config_items_applicable_context,
            OpsiConfigFields = @var.Opsi_configuration_opsi_config_field,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.Opsi.OpsiFunctions;
    import com.pulumi.oci.Opsi.inputs.GetOpsiConfigurationArgs;
    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) {
            final var testOpsiConfiguration = OpsiFunctions.getOpsiConfiguration(GetOpsiConfigurationArgs.builder()
                .opsiConfigurationId(oci_opsi_opsi_configuration.test_opsi_configuration().id())
                .configItemCustomStatuses(var_.opsi_configuration_config_item_custom_status())
                .configItemFields(var_.opsi_configuration_config_item_field())
                .configItemsApplicableContexts(var_.opsi_configuration_config_items_applicable_context())
                .opsiConfigFields(var_.opsi_configuration_opsi_config_field())
                .build());
    
        }
    }
    
    variables:
      testOpsiConfiguration:
        fn::invoke:
          Function: oci:Opsi:getOpsiConfiguration
          Arguments:
            opsiConfigurationId: ${oci_opsi_opsi_configuration.test_opsi_configuration.id}
            configItemCustomStatuses: ${var.opsi_configuration_config_item_custom_status}
            configItemFields: ${var.opsi_configuration_config_item_field}
            configItemsApplicableContexts: ${var.opsi_configuration_config_items_applicable_context}
            opsiConfigFields: ${var.opsi_configuration_opsi_config_field}
    

    Using getOpsiConfiguration

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getOpsiConfiguration(args: GetOpsiConfigurationArgs, opts?: InvokeOptions): Promise<GetOpsiConfigurationResult>
    function getOpsiConfigurationOutput(args: GetOpsiConfigurationOutputArgs, opts?: InvokeOptions): Output<GetOpsiConfigurationResult>
    def get_opsi_configuration(config_item_custom_statuses: Optional[Sequence[str]] = None,
                               config_item_fields: Optional[Sequence[str]] = None,
                               config_items_applicable_contexts: Optional[Sequence[str]] = None,
                               opsi_config_fields: Optional[Sequence[str]] = None,
                               opsi_configuration_id: Optional[str] = None,
                               opts: Optional[InvokeOptions] = None) -> GetOpsiConfigurationResult
    def get_opsi_configuration_output(config_item_custom_statuses: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                               config_item_fields: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                               config_items_applicable_contexts: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                               opsi_config_fields: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                               opsi_configuration_id: Optional[pulumi.Input[str]] = None,
                               opts: Optional[InvokeOptions] = None) -> Output[GetOpsiConfigurationResult]
    func GetOpsiConfiguration(ctx *Context, args *GetOpsiConfigurationArgs, opts ...InvokeOption) (*GetOpsiConfigurationResult, error)
    func GetOpsiConfigurationOutput(ctx *Context, args *GetOpsiConfigurationOutputArgs, opts ...InvokeOption) GetOpsiConfigurationResultOutput

    > Note: This function is named GetOpsiConfiguration in the Go SDK.

    public static class GetOpsiConfiguration 
    {
        public static Task<GetOpsiConfigurationResult> InvokeAsync(GetOpsiConfigurationArgs args, InvokeOptions? opts = null)
        public static Output<GetOpsiConfigurationResult> Invoke(GetOpsiConfigurationInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetOpsiConfigurationResult> getOpsiConfiguration(GetOpsiConfigurationArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: oci:Opsi/getOpsiConfiguration:getOpsiConfiguration
      arguments:
        # arguments dictionary

    The following arguments are supported:

    ConfigItemCustomStatuses List<string>
    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.
    ConfigItemFields List<string>
    Specifies the fields to return in a config item summary.
    ConfigItemsApplicableContexts List<string>
    Returns the configuration items filtered by applicable contexts sent in this param. By default configuration items of all applicable contexts are returned.
    OpsiConfigFields List<string>
    Optional fields to return as part of OpsiConfiguration object. Unless requested, these fields will not be returned by default.
    OpsiConfigurationId string
    OCID of OPSI configuration resource.
    ConfigItemCustomStatuses []string
    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.
    ConfigItemFields []string
    Specifies the fields to return in a config item summary.
    ConfigItemsApplicableContexts []string
    Returns the configuration items filtered by applicable contexts sent in this param. By default configuration items of all applicable contexts are returned.
    OpsiConfigFields []string
    Optional fields to return as part of OpsiConfiguration object. Unless requested, these fields will not be returned by default.
    OpsiConfigurationId string
    OCID of OPSI configuration resource.
    configItemCustomStatuses List<String>
    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.
    configItemFields List<String>
    Specifies the fields to return in a config item summary.
    configItemsApplicableContexts List<String>
    Returns the configuration items filtered by applicable contexts sent in this param. By default configuration items of all applicable contexts are returned.
    opsiConfigFields List<String>
    Optional fields to return as part of OpsiConfiguration object. Unless requested, these fields will not be returned by default.
    opsiConfigurationId String
    OCID of OPSI configuration resource.
    configItemCustomStatuses string[]
    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.
    configItemFields string[]
    Specifies the fields to return in a config item summary.
    configItemsApplicableContexts string[]
    Returns the configuration items filtered by applicable contexts sent in this param. By default configuration items of all applicable contexts are returned.
    opsiConfigFields string[]
    Optional fields to return as part of OpsiConfiguration object. Unless requested, these fields will not be returned by default.
    opsiConfigurationId string
    OCID of OPSI configuration resource.
    config_item_custom_statuses Sequence[str]
    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_fields Sequence[str]
    Specifies the fields to return in a config item summary.
    config_items_applicable_contexts Sequence[str]
    Returns the configuration items filtered by applicable contexts sent in this param. By default configuration items of all applicable contexts are returned.
    opsi_config_fields Sequence[str]
    Optional fields to return as part of OpsiConfiguration object. Unless requested, these fields will not be returned by default.
    opsi_configuration_id str
    OCID of OPSI configuration resource.
    configItemCustomStatuses List<String>
    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.
    configItemFields List<String>
    Specifies the fields to return in a config item summary.
    configItemsApplicableContexts List<String>
    Returns the configuration items filtered by applicable contexts sent in this param. By default configuration items of all applicable contexts are returned.
    opsiConfigFields List<String>
    Optional fields to return as part of OpsiConfiguration object. Unless requested, these fields will not be returned by default.
    opsiConfigurationId String
    OCID of OPSI configuration resource.

    getOpsiConfiguration Result

    The following output properties are available:

    CompartmentId string
    The OCID of the compartment.
    ConfigItemCustomStatuses List<string>
    ConfigItemFields List<string>
    ConfigItems List<GetOpsiConfigurationConfigItem>
    Array of configuration item summary objects.
    ConfigItemsApplicableContexts List<string>
    DefinedTags Dictionary<string, object>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    Description string
    Description of OPSI configuration.
    DisplayName string
    User-friendly display name for the OPSI configuration. The name does not have to be unique.
    FreeformTags Dictionary<string, object>
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    Id string
    OCID of OPSI configuration resource.
    LifecycleDetails 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.
    OpsiConfigFields List<string>
    OpsiConfigType string
    OPSI configuration type.
    OpsiConfigurationId string
    State string
    OPSI configuration resource lifecycle state.
    SystemTags Dictionary<string, object>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The time at which the resource was first created. An RFC3339 formatted datetime string
    TimeUpdated string
    The time at which the resource was last updated. An RFC3339 formatted datetime string
    CompartmentId string
    The OCID of the compartment.
    ConfigItemCustomStatuses []string
    ConfigItemFields []string
    ConfigItems []GetOpsiConfigurationConfigItem
    Array of configuration item summary objects.
    ConfigItemsApplicableContexts []string
    DefinedTags map[string]interface{}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    Description string
    Description of OPSI configuration.
    DisplayName string
    User-friendly display name for the OPSI configuration. The name does not have to be unique.
    FreeformTags map[string]interface{}
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    Id string
    OCID of OPSI configuration resource.
    LifecycleDetails 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.
    OpsiConfigFields []string
    OpsiConfigType string
    OPSI configuration type.
    OpsiConfigurationId string
    State string
    OPSI configuration resource lifecycle state.
    SystemTags map[string]interface{}
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The time at which the resource was first created. An RFC3339 formatted datetime string
    TimeUpdated string
    The time at which the resource was last updated. An RFC3339 formatted datetime string
    compartmentId String
    The OCID of the compartment.
    configItemCustomStatuses List<String>
    configItemFields List<String>
    configItems List<GetConfigurationConfigItem>
    Array of configuration item summary objects.
    configItemsApplicableContexts List<String>
    definedTags Map<String,Object>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description String
    Description of OPSI configuration.
    displayName String
    User-friendly display name for the OPSI configuration. The name does not have to be unique.
    freeformTags Map<String,Object>
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    id String
    OCID of OPSI configuration resource.
    lifecycleDetails 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.
    opsiConfigFields List<String>
    opsiConfigType String
    OPSI configuration type.
    opsiConfigurationId String
    state String
    OPSI configuration resource lifecycle state.
    systemTags Map<String,Object>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The time at which the resource was first created. An RFC3339 formatted datetime string
    timeUpdated String
    The time at which the resource was last updated. An RFC3339 formatted datetime string
    compartmentId string
    The OCID of the compartment.
    configItemCustomStatuses string[]
    configItemFields string[]
    configItems GetOpsiConfigurationConfigItem[]
    Array of configuration item summary objects.
    configItemsApplicableContexts string[]
    definedTags {[key: string]: any}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description string
    Description of OPSI configuration.
    displayName string
    User-friendly display name for the OPSI configuration. The name does not have to be unique.
    freeformTags {[key: string]: any}
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    id string
    OCID of OPSI configuration resource.
    lifecycleDetails 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.
    opsiConfigFields string[]
    opsiConfigType string
    OPSI configuration type.
    opsiConfigurationId string
    state string
    OPSI configuration resource lifecycle state.
    systemTags {[key: string]: any}
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated string
    The time at which the resource was first created. An RFC3339 formatted datetime string
    timeUpdated string
    The time at which the resource was last updated. An RFC3339 formatted datetime string
    compartment_id str
    The OCID of the compartment.
    config_item_custom_statuses Sequence[str]
    config_item_fields Sequence[str]
    config_items Sequence[opsi.GetOpsiConfigurationConfigItem]
    Array of configuration item summary objects.
    config_items_applicable_contexts Sequence[str]
    defined_tags Mapping[str, Any]
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description str
    Description of OPSI configuration.
    display_name str
    User-friendly display name for the OPSI configuration. The name does not have to be unique.
    freeform_tags Mapping[str, Any]
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    id str
    OCID of OPSI configuration 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.
    opsi_config_fields Sequence[str]
    opsi_config_type str
    OPSI configuration type.
    opsi_configuration_id str
    state str
    OPSI configuration resource lifecycle state.
    system_tags Mapping[str, Any]
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    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
    compartmentId String
    The OCID of the compartment.
    configItemCustomStatuses List<String>
    configItemFields List<String>
    configItems List<Property Map>
    Array of configuration item summary objects.
    configItemsApplicableContexts List<String>
    definedTags Map<Any>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description String
    Description of OPSI configuration.
    displayName String
    User-friendly display name for the OPSI configuration. The name does not have to be unique.
    freeformTags Map<Any>
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    id String
    OCID of OPSI configuration resource.
    lifecycleDetails 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.
    opsiConfigFields List<String>
    opsiConfigType String
    OPSI configuration type.
    opsiConfigurationId String
    state String
    OPSI configuration resource lifecycle state.
    systemTags Map<Any>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The time at which the resource was first created. An RFC3339 formatted datetime string
    timeUpdated String
    The time at which the resource was last updated. An RFC3339 formatted datetime string

    Supporting Types

    GetOpsiConfigurationConfigItem

    ApplicableContexts List<string>
    List of contexts in Operations Insights where this configuration item is applicable.
    ConfigItemType string
    Type of configuration item.
    DefaultValue string
    Value of configuration item.
    Metadatas List<GetOpsiConfigurationConfigItemMetadata>
    Configuration item metadata.
    Name string
    Name of configuration item.
    Value string
    Value of configuration item.
    ApplicableContexts []string
    List of contexts in Operations Insights where this configuration item is applicable.
    ConfigItemType string
    Type of configuration item.
    DefaultValue string
    Value of configuration item.
    Metadatas []GetOpsiConfigurationConfigItemMetadata
    Configuration item metadata.
    Name string
    Name of configuration item.
    Value string
    Value of configuration item.
    applicableContexts List<String>
    List of contexts in Operations Insights where this configuration item is applicable.
    configItemType String
    Type of configuration item.
    defaultValue String
    Value of configuration item.
    metadatas List<GetConfigurationConfigItemMetadata>
    Configuration item metadata.
    name String
    Name of configuration item.
    value String
    Value of configuration item.
    applicableContexts string[]
    List of contexts in Operations Insights where this configuration item is applicable.
    configItemType string
    Type of configuration item.
    defaultValue string
    Value of configuration item.
    metadatas GetOpsiConfigurationConfigItemMetadata[]
    Configuration item metadata.
    name string
    Name of configuration item.
    value string
    Value of configuration item.
    applicable_contexts Sequence[str]
    List of contexts in Operations Insights where this configuration item is applicable.
    config_item_type str
    Type of configuration item.
    default_value str
    Value of configuration item.
    metadatas Sequence[opsi.GetOpsiConfigurationConfigItemMetadata]
    Configuration item metadata.
    name str
    Name of configuration item.
    value str
    Value of configuration item.
    applicableContexts List<String>
    List of contexts in Operations Insights where this configuration item is applicable.
    configItemType String
    Type of configuration item.
    defaultValue String
    Value of configuration item.
    metadatas List<Property Map>
    Configuration item metadata.
    name String
    Name of configuration item.
    value String
    Value of configuration item.

    GetOpsiConfigurationConfigItemMetadata

    ConfigItemType string
    Type of configuration item.
    DataType string
    Data type of configuration item. Examples: STRING, BOOLEAN, NUMBER
    Description string
    Description of OPSI configuration.
    DisplayName string
    User-friendly display name for the OPSI configuration. The name does not have to be unique.
    UnitDetails List<GetOpsiConfigurationConfigItemMetadataUnitDetail>
    Unit details of configuration item.
    ValueInputDetails List<GetOpsiConfigurationConfigItemMetadataValueInputDetail>
    Allowed value details of configuration item, to validate what value can be assigned to a configuration item.
    ConfigItemType string
    Type of configuration item.
    DataType string
    Data type of configuration item. Examples: STRING, BOOLEAN, NUMBER
    Description string
    Description of OPSI configuration.
    DisplayName string
    User-friendly display name for the OPSI configuration. The name does not have to be unique.
    UnitDetails []GetOpsiConfigurationConfigItemMetadataUnitDetail
    Unit details of configuration item.
    ValueInputDetails []GetOpsiConfigurationConfigItemMetadataValueInputDetail
    Allowed value details of configuration item, to validate what value can be assigned to a configuration item.
    configItemType String
    Type of configuration item.
    dataType String
    Data type of configuration item. Examples: STRING, BOOLEAN, NUMBER
    description String
    Description of OPSI configuration.
    displayName String
    User-friendly display name for the OPSI configuration. The name does not have to be unique.
    unitDetails List<GetConfigurationConfigItemMetadataUnitDetail>
    Unit details of configuration item.
    valueInputDetails List<GetConfigurationConfigItemMetadataValueInputDetail>
    Allowed value details of configuration item, to validate what value can be assigned to a configuration item.
    configItemType string
    Type of configuration item.
    dataType string
    Data type of configuration item. Examples: STRING, BOOLEAN, NUMBER
    description string
    Description of OPSI configuration.
    displayName string
    User-friendly display name for the OPSI configuration. The name does not have to be unique.
    unitDetails GetOpsiConfigurationConfigItemMetadataUnitDetail[]
    Unit details of configuration item.
    valueInputDetails GetOpsiConfigurationConfigItemMetadataValueInputDetail[]
    Allowed value details of configuration item, to validate what value can be assigned to a configuration item.
    config_item_type str
    Type of configuration item.
    data_type str
    Data type of configuration item. Examples: STRING, BOOLEAN, NUMBER
    description str
    Description of OPSI configuration.
    display_name str
    User-friendly display name for the OPSI configuration. The name does not have to be unique.
    unit_details Sequence[opsi.GetOpsiConfigurationConfigItemMetadataUnitDetail]
    Unit details of configuration item.
    value_input_details Sequence[opsi.GetOpsiConfigurationConfigItemMetadataValueInputDetail]
    Allowed value details of configuration item, to validate what value can be assigned to a configuration item.
    configItemType String
    Type of configuration item.
    dataType String
    Data type of configuration item. Examples: STRING, BOOLEAN, NUMBER
    description String
    Description of OPSI configuration.
    displayName String
    User-friendly display name for the OPSI configuration. The name does not have to be unique.
    unitDetails List<Property Map>
    Unit details of configuration item.
    valueInputDetails List<Property Map>
    Allowed value details of configuration item, to validate what value can be assigned to a configuration item.

    GetOpsiConfigurationConfigItemMetadataUnitDetail

    DisplayName string
    User-friendly display name for the OPSI configuration. The name does not have to be unique.
    Unit string
    Unit of configuration item.
    DisplayName string
    User-friendly display name for the OPSI configuration. The name does not have to be unique.
    Unit string
    Unit of configuration item.
    displayName String
    User-friendly display name for the OPSI configuration. The name does not have to be unique.
    unit String
    Unit of configuration item.
    displayName string
    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
    User-friendly display name for the OPSI configuration. The name does not have to be unique.
    unit str
    Unit of configuration item.
    displayName String
    User-friendly display name for the OPSI configuration. The name does not have to be unique.
    unit String
    Unit of configuration item.

    GetOpsiConfigurationConfigItemMetadataValueInputDetail

    AllowedValueType string
    Allowed value type of configuration item.
    MaxValue string
    Maximum value limit for the configuration item.
    MinValue string
    Minimum value limit for the configuration item.
    PossibleValues List<string>
    Allowed values to pick for the configuration item.
    AllowedValueType string
    Allowed value type of configuration item.
    MaxValue string
    Maximum value limit for the configuration item.
    MinValue string
    Minimum value limit for the configuration item.
    PossibleValues []string
    Allowed values to pick for the configuration item.
    allowedValueType String
    Allowed value type of configuration item.
    maxValue String
    Maximum value limit for the configuration item.
    minValue String
    Minimum value limit for the configuration item.
    possibleValues List<String>
    Allowed values to pick for the configuration item.
    allowedValueType string
    Allowed value type of configuration item.
    maxValue string
    Maximum value limit for the configuration item.
    minValue string
    Minimum value limit for the configuration item.
    possibleValues string[]
    Allowed values to pick for the configuration item.
    allowed_value_type str
    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.
    allowedValueType String
    Allowed value type of configuration item.
    maxValue String
    Maximum value limit for the configuration item.
    minValue String
    Minimum value limit for the configuration item.
    possibleValues List<String>
    Allowed values to pick for the configuration item.

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi