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

oci.Opsi.getOpsiConfigurations

Explore with Pulumi AI

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

    This data source provides the list of Opsi Configurations in Oracle Cloud Infrastructure Opsi service.

    Gets a list of OPSI configuration resources based on the query parameters specified.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testOpsiConfigurations = oci.Opsi.getOpsiConfigurations({
        compartmentId: _var.compartment_id,
        displayName: _var.opsi_configuration_display_name,
        opsiConfigTypes: _var.opsi_configuration_opsi_config_type,
        states: _var.opsi_configuration_state,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_opsi_configurations = oci.Opsi.get_opsi_configurations(compartment_id=var["compartment_id"],
        display_name=var["opsi_configuration_display_name"],
        opsi_config_types=var["opsi_configuration_opsi_config_type"],
        states=var["opsi_configuration_state"])
    
    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.GetOpsiConfigurations(ctx, &opsi.GetOpsiConfigurationsArgs{
    			CompartmentId:   _var.Compartment_id,
    			DisplayName:     pulumi.StringRef(_var.Opsi_configuration_display_name),
    			OpsiConfigTypes: _var.Opsi_configuration_opsi_config_type,
    			States:          _var.Opsi_configuration_state,
    		}, 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 testOpsiConfigurations = Oci.Opsi.GetOpsiConfigurations.Invoke(new()
        {
            CompartmentId = @var.Compartment_id,
            DisplayName = @var.Opsi_configuration_display_name,
            OpsiConfigTypes = @var.Opsi_configuration_opsi_config_type,
            States = @var.Opsi_configuration_state,
        });
    
    });
    
    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.GetOpsiConfigurationsArgs;
    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 testOpsiConfigurations = OpsiFunctions.getOpsiConfigurations(GetOpsiConfigurationsArgs.builder()
                .compartmentId(var_.compartment_id())
                .displayName(var_.opsi_configuration_display_name())
                .opsiConfigTypes(var_.opsi_configuration_opsi_config_type())
                .states(var_.opsi_configuration_state())
                .build());
    
        }
    }
    
    variables:
      testOpsiConfigurations:
        fn::invoke:
          Function: oci:Opsi:getOpsiConfigurations
          Arguments:
            compartmentId: ${var.compartment_id}
            displayName: ${var.opsi_configuration_display_name}
            opsiConfigTypes: ${var.opsi_configuration_opsi_config_type}
            states: ${var.opsi_configuration_state}
    

    Using getOpsiConfigurations

    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 getOpsiConfigurations(args: GetOpsiConfigurationsArgs, opts?: InvokeOptions): Promise<GetOpsiConfigurationsResult>
    function getOpsiConfigurationsOutput(args: GetOpsiConfigurationsOutputArgs, opts?: InvokeOptions): Output<GetOpsiConfigurationsResult>
    def get_opsi_configurations(compartment_id: Optional[str] = None,
                                display_name: Optional[str] = None,
                                filters: Optional[Sequence[_opsi.GetOpsiConfigurationsFilter]] = None,
                                opsi_config_types: Optional[Sequence[str]] = None,
                                states: Optional[Sequence[str]] = None,
                                opts: Optional[InvokeOptions] = None) -> GetOpsiConfigurationsResult
    def get_opsi_configurations_output(compartment_id: Optional[pulumi.Input[str]] = None,
                                display_name: Optional[pulumi.Input[str]] = None,
                                filters: Optional[pulumi.Input[Sequence[pulumi.Input[_opsi.GetOpsiConfigurationsFilterArgs]]]] = None,
                                opsi_config_types: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                                states: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                                opts: Optional[InvokeOptions] = None) -> Output[GetOpsiConfigurationsResult]
    func GetOpsiConfigurations(ctx *Context, args *GetOpsiConfigurationsArgs, opts ...InvokeOption) (*GetOpsiConfigurationsResult, error)
    func GetOpsiConfigurationsOutput(ctx *Context, args *GetOpsiConfigurationsOutputArgs, opts ...InvokeOption) GetOpsiConfigurationsResultOutput

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

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

    The following arguments are supported:

    CompartmentId string
    The OCID of the compartment.
    DisplayName string
    Filter to return based on resources that match the entire display name.
    Filters List<GetOpsiConfigurationsFilter>
    OpsiConfigTypes List<string>
    Filter to return based on configuration type of OPSI configuration.
    States List<string>
    Filter to return based on Lifecycle state of OPSI configuration.
    CompartmentId string
    The OCID of the compartment.
    DisplayName string
    Filter to return based on resources that match the entire display name.
    Filters []GetOpsiConfigurationsFilter
    OpsiConfigTypes []string
    Filter to return based on configuration type of OPSI configuration.
    States []string
    Filter to return based on Lifecycle state of OPSI configuration.
    compartmentId String
    The OCID of the compartment.
    displayName String
    Filter to return based on resources that match the entire display name.
    filters List<GetConfigurationsFilter>
    opsiConfigTypes List<String>
    Filter to return based on configuration type of OPSI configuration.
    states List<String>
    Filter to return based on Lifecycle state of OPSI configuration.
    compartmentId string
    The OCID of the compartment.
    displayName string
    Filter to return based on resources that match the entire display name.
    filters GetOpsiConfigurationsFilter[]
    opsiConfigTypes string[]
    Filter to return based on configuration type of OPSI configuration.
    states string[]
    Filter to return based on Lifecycle state of OPSI configuration.
    compartment_id str
    The OCID of the compartment.
    display_name str
    Filter to return based on resources that match the entire display name.
    filters Sequence[opsi.GetOpsiConfigurationsFilter]
    opsi_config_types Sequence[str]
    Filter to return based on configuration type of OPSI configuration.
    states Sequence[str]
    Filter to return based on Lifecycle state of OPSI configuration.
    compartmentId String
    The OCID of the compartment.
    displayName String
    Filter to return based on resources that match the entire display name.
    filters List<Property Map>
    opsiConfigTypes List<String>
    Filter to return based on configuration type of OPSI configuration.
    states List<String>
    Filter to return based on Lifecycle state of OPSI configuration.

    getOpsiConfigurations Result

    The following output properties are available:

    CompartmentId string
    The OCID of the compartment.
    Id string
    The provider-assigned unique ID for this managed resource.
    OpsiConfigurationsCollections List<GetOpsiConfigurationsOpsiConfigurationsCollection>
    The list of opsi_configurations_collection.
    DisplayName string
    User-friendly display name for the OPSI configuration. The name does not have to be unique.
    Filters List<GetOpsiConfigurationsFilter>
    OpsiConfigTypes List<string>
    OPSI configuration type.
    States List<string>
    OPSI configuration resource lifecycle state.
    CompartmentId string
    The OCID of the compartment.
    Id string
    The provider-assigned unique ID for this managed resource.
    OpsiConfigurationsCollections []GetOpsiConfigurationsOpsiConfigurationsCollection
    The list of opsi_configurations_collection.
    DisplayName string
    User-friendly display name for the OPSI configuration. The name does not have to be unique.
    Filters []GetOpsiConfigurationsFilter
    OpsiConfigTypes []string
    OPSI configuration type.
    States []string
    OPSI configuration resource lifecycle state.
    compartmentId String
    The OCID of the compartment.
    id String
    The provider-assigned unique ID for this managed resource.
    opsiConfigurationsCollections List<GetConfigurationsConfigurationsCollection>
    The list of opsi_configurations_collection.
    displayName String
    User-friendly display name for the OPSI configuration. The name does not have to be unique.
    filters List<GetConfigurationsFilter>
    opsiConfigTypes List<String>
    OPSI configuration type.
    states List<String>
    OPSI configuration resource lifecycle state.
    compartmentId string
    The OCID of the compartment.
    id string
    The provider-assigned unique ID for this managed resource.
    opsiConfigurationsCollections GetOpsiConfigurationsOpsiConfigurationsCollection[]
    The list of opsi_configurations_collection.
    displayName string
    User-friendly display name for the OPSI configuration. The name does not have to be unique.
    filters GetOpsiConfigurationsFilter[]
    opsiConfigTypes string[]
    OPSI configuration type.
    states string[]
    OPSI configuration resource lifecycle state.
    compartment_id str
    The OCID of the compartment.
    id str
    The provider-assigned unique ID for this managed resource.
    opsi_configurations_collections Sequence[opsi.GetOpsiConfigurationsOpsiConfigurationsCollection]
    The list of opsi_configurations_collection.
    display_name str
    User-friendly display name for the OPSI configuration. The name does not have to be unique.
    filters Sequence[opsi.GetOpsiConfigurationsFilter]
    opsi_config_types Sequence[str]
    OPSI configuration type.
    states Sequence[str]
    OPSI configuration resource lifecycle state.
    compartmentId String
    The OCID of the compartment.
    id String
    The provider-assigned unique ID for this managed resource.
    opsiConfigurationsCollections List<Property Map>
    The list of opsi_configurations_collection.
    displayName String
    User-friendly display name for the OPSI configuration. The name does not have to be unique.
    filters List<Property Map>
    opsiConfigTypes List<String>
    OPSI configuration type.
    states List<String>
    OPSI configuration resource lifecycle state.

    Supporting Types

    GetOpsiConfigurationsFilter

    Name string
    Name of configuration item.
    Values List<string>
    Regex bool
    Name string
    Name of configuration item.
    Values []string
    Regex bool
    name String
    Name of configuration item.
    values List<String>
    regex Boolean
    name string
    Name of configuration item.
    values string[]
    regex boolean
    name str
    Name of configuration item.
    values Sequence[str]
    regex bool
    name String
    Name of configuration item.
    values List<String>
    regex Boolean

    GetOpsiConfigurationsOpsiConfigurationsCollection

    GetOpsiConfigurationsOpsiConfigurationsCollectionItem

    CompartmentId string
    The OCID of the compartment.
    ConfigItemCustomStatuses List<string>
    ConfigItemFields List<string>
    ConfigItems List<GetOpsiConfigurationsOpsiConfigurationsCollectionItemConfigItem>
    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
    Filter to return based on resources that match the entire display name.
    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
    Filter to return based on configuration type of OPSI configuration.
    State string
    Filter to return based on Lifecycle state of OPSI configuration.
    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 []GetOpsiConfigurationsOpsiConfigurationsCollectionItemConfigItem
    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
    Filter to return based on resources that match the entire display name.
    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
    Filter to return based on configuration type of OPSI configuration.
    State string
    Filter to return based on Lifecycle state of OPSI configuration.
    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<GetConfigurationsConfigurationsCollectionItemConfigItem>
    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
    Filter to return based on resources that match the entire display name.
    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
    Filter to return based on configuration type of OPSI configuration.
    state String
    Filter to return based on Lifecycle state of OPSI configuration.
    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 GetOpsiConfigurationsOpsiConfigurationsCollectionItemConfigItem[]
    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
    Filter to return based on resources that match the entire display name.
    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
    Filter to return based on configuration type of OPSI configuration.
    state string
    Filter to return based on Lifecycle state of OPSI configuration.
    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.GetOpsiConfigurationsOpsiConfigurationsCollectionItemConfigItem]
    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
    Filter to return based on resources that match the entire display name.
    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
    Filter to return based on configuration type of OPSI configuration.
    state str
    Filter to return based on Lifecycle state of OPSI configuration.
    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
    Filter to return based on resources that match the entire display name.
    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
    Filter to return based on configuration type of OPSI configuration.
    state String
    Filter to return based on Lifecycle state of OPSI configuration.
    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

    GetOpsiConfigurationsOpsiConfigurationsCollectionItemConfigItem

    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<GetOpsiConfigurationsOpsiConfigurationsCollectionItemConfigItemMetadata>
    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 []GetOpsiConfigurationsOpsiConfigurationsCollectionItemConfigItemMetadata
    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<GetConfigurationsConfigurationsCollectionItemConfigItemMetadata>
    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 GetOpsiConfigurationsOpsiConfigurationsCollectionItemConfigItemMetadata[]
    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.GetOpsiConfigurationsOpsiConfigurationsCollectionItemConfigItemMetadata]
    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.

    GetOpsiConfigurationsOpsiConfigurationsCollectionItemConfigItemMetadata

    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
    Filter to return based on resources that match the entire display name.
    UnitDetails List<GetOpsiConfigurationsOpsiConfigurationsCollectionItemConfigItemMetadataUnitDetail>
    Unit details of configuration item.
    ValueInputDetails List<GetOpsiConfigurationsOpsiConfigurationsCollectionItemConfigItemMetadataValueInputDetail>
    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
    Filter to return based on resources that match the entire display name.
    UnitDetails []GetOpsiConfigurationsOpsiConfigurationsCollectionItemConfigItemMetadataUnitDetail
    Unit details of configuration item.
    ValueInputDetails []GetOpsiConfigurationsOpsiConfigurationsCollectionItemConfigItemMetadataValueInputDetail
    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
    Filter to return based on resources that match the entire display name.
    unitDetails List<GetConfigurationsConfigurationsCollectionItemConfigItemMetadataUnitDetail>
    Unit details of configuration item.
    valueInputDetails List<GetConfigurationsConfigurationsCollectionItemConfigItemMetadataValueInputDetail>
    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
    Filter to return based on resources that match the entire display name.
    unitDetails GetOpsiConfigurationsOpsiConfigurationsCollectionItemConfigItemMetadataUnitDetail[]
    Unit details of configuration item.
    valueInputDetails GetOpsiConfigurationsOpsiConfigurationsCollectionItemConfigItemMetadataValueInputDetail[]
    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
    Filter to return based on resources that match the entire display name.
    unit_details Sequence[opsi.GetOpsiConfigurationsOpsiConfigurationsCollectionItemConfigItemMetadataUnitDetail]
    Unit details of configuration item.
    value_input_details Sequence[opsi.GetOpsiConfigurationsOpsiConfigurationsCollectionItemConfigItemMetadataValueInputDetail]
    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
    Filter to return based on resources that match the entire display name.
    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.

    GetOpsiConfigurationsOpsiConfigurationsCollectionItemConfigItemMetadataUnitDetail

    DisplayName string
    Filter to return based on resources that match the entire display name.
    Unit string
    Unit of configuration item.
    DisplayName string
    Filter to return based on resources that match the entire display name.
    Unit string
    Unit of configuration item.
    displayName String
    Filter to return based on resources that match the entire display name.
    unit String
    Unit of configuration item.
    displayName string
    Filter to return based on resources that match the entire display name.
    unit string
    Unit of configuration item.
    display_name str
    Filter to return based on resources that match the entire display name.
    unit str
    Unit of configuration item.
    displayName String
    Filter to return based on resources that match the entire display name.
    unit String
    Unit of configuration item.

    GetOpsiConfigurationsOpsiConfigurationsCollectionItemConfigItemMetadataValueInputDetail

    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