1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. CapacityManagement
  5. getOccmDemandSignalCatalogResources
Oracle Cloud Infrastructure v3.3.0 published on Thursday, Jul 17, 2025 by Pulumi

oci.CapacityManagement.getOccmDemandSignalCatalogResources

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v3.3.0 published on Thursday, Jul 17, 2025 by Pulumi

    This data source provides the list of Occm Demand Signal Catalog Resources in Oracle Cloud Infrastructure Capacity Management service.

    This API will list all the resources across all demand signal catalogs for a given namespace and customer group containing the caller compartment.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testOccmDemandSignalCatalogResources = oci.CapacityManagement.getOccmDemandSignalCatalogResources({
        compartmentId: compartmentId,
        demandSignalNamespace: occmDemandSignalCatalogResourceDemandSignalNamespace,
        name: occmDemandSignalCatalogResourceName,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_occm_demand_signal_catalog_resources = oci.CapacityManagement.get_occm_demand_signal_catalog_resources(compartment_id=compartment_id,
        demand_signal_namespace=occm_demand_signal_catalog_resource_demand_signal_namespace,
        name=occm_demand_signal_catalog_resource_name)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/v3/go/oci/capacitymanagement"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := capacitymanagement.GetOccmDemandSignalCatalogResources(ctx, &capacitymanagement.GetOccmDemandSignalCatalogResourcesArgs{
    			CompartmentId:         compartmentId,
    			DemandSignalNamespace: pulumi.StringRef(occmDemandSignalCatalogResourceDemandSignalNamespace),
    			Name:                  pulumi.StringRef(occmDemandSignalCatalogResourceName),
    		}, 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 testOccmDemandSignalCatalogResources = Oci.CapacityManagement.GetOccmDemandSignalCatalogResources.Invoke(new()
        {
            CompartmentId = compartmentId,
            DemandSignalNamespace = occmDemandSignalCatalogResourceDemandSignalNamespace,
            Name = occmDemandSignalCatalogResourceName,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.CapacityManagement.CapacityManagementFunctions;
    import com.pulumi.oci.CapacityManagement.inputs.GetOccmDemandSignalCatalogResourcesArgs;
    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 testOccmDemandSignalCatalogResources = CapacityManagementFunctions.getOccmDemandSignalCatalogResources(GetOccmDemandSignalCatalogResourcesArgs.builder()
                .compartmentId(compartmentId)
                .demandSignalNamespace(occmDemandSignalCatalogResourceDemandSignalNamespace)
                .name(occmDemandSignalCatalogResourceName)
                .build());
    
        }
    }
    
    variables:
      testOccmDemandSignalCatalogResources:
        fn::invoke:
          function: oci:CapacityManagement:getOccmDemandSignalCatalogResources
          arguments:
            compartmentId: ${compartmentId}
            demandSignalNamespace: ${occmDemandSignalCatalogResourceDemandSignalNamespace}
            name: ${occmDemandSignalCatalogResourceName}
    

    Using getOccmDemandSignalCatalogResources

    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 getOccmDemandSignalCatalogResources(args: GetOccmDemandSignalCatalogResourcesArgs, opts?: InvokeOptions): Promise<GetOccmDemandSignalCatalogResourcesResult>
    function getOccmDemandSignalCatalogResourcesOutput(args: GetOccmDemandSignalCatalogResourcesOutputArgs, opts?: InvokeOptions): Output<GetOccmDemandSignalCatalogResourcesResult>
    def get_occm_demand_signal_catalog_resources(compartment_id: Optional[str] = None,
                                                 demand_signal_namespace: Optional[str] = None,
                                                 filters: Optional[Sequence[GetOccmDemandSignalCatalogResourcesFilter]] = None,
                                                 name: Optional[str] = None,
                                                 opts: Optional[InvokeOptions] = None) -> GetOccmDemandSignalCatalogResourcesResult
    def get_occm_demand_signal_catalog_resources_output(compartment_id: Optional[pulumi.Input[str]] = None,
                                                 demand_signal_namespace: Optional[pulumi.Input[str]] = None,
                                                 filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetOccmDemandSignalCatalogResourcesFilterArgs]]]] = None,
                                                 name: Optional[pulumi.Input[str]] = None,
                                                 opts: Optional[InvokeOptions] = None) -> Output[GetOccmDemandSignalCatalogResourcesResult]
    func GetOccmDemandSignalCatalogResources(ctx *Context, args *GetOccmDemandSignalCatalogResourcesArgs, opts ...InvokeOption) (*GetOccmDemandSignalCatalogResourcesResult, error)
    func GetOccmDemandSignalCatalogResourcesOutput(ctx *Context, args *GetOccmDemandSignalCatalogResourcesOutputArgs, opts ...InvokeOption) GetOccmDemandSignalCatalogResourcesResultOutput

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

    public static class GetOccmDemandSignalCatalogResources 
    {
        public static Task<GetOccmDemandSignalCatalogResourcesResult> InvokeAsync(GetOccmDemandSignalCatalogResourcesArgs args, InvokeOptions? opts = null)
        public static Output<GetOccmDemandSignalCatalogResourcesResult> Invoke(GetOccmDemandSignalCatalogResourcesInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetOccmDemandSignalCatalogResourcesResult> getOccmDemandSignalCatalogResources(GetOccmDemandSignalCatalogResourcesArgs args, InvokeOptions options)
    public static Output<GetOccmDemandSignalCatalogResourcesResult> getOccmDemandSignalCatalogResources(GetOccmDemandSignalCatalogResourcesArgs args, InvokeOptions options)
    
    fn::invoke:
      function: oci:CapacityManagement/getOccmDemandSignalCatalogResources:getOccmDemandSignalCatalogResources
      arguments:
        # arguments dictionary

    The following arguments are supported:

    CompartmentId string
    The ocid of the compartment or tenancy in which resources are to be listed. This will also be used for authorization purposes.
    DemandSignalNamespace string
    A query parameter to filter the list of demand signal catalog resources based on the namespace.
    Filters List<GetOccmDemandSignalCatalogResourcesFilter>
    Name string
    A query parameter to filter the list of demand signal catalog resource based on the resource name.
    CompartmentId string
    The ocid of the compartment or tenancy in which resources are to be listed. This will also be used for authorization purposes.
    DemandSignalNamespace string
    A query parameter to filter the list of demand signal catalog resources based on the namespace.
    Filters []GetOccmDemandSignalCatalogResourcesFilter
    Name string
    A query parameter to filter the list of demand signal catalog resource based on the resource name.
    compartmentId String
    The ocid of the compartment or tenancy in which resources are to be listed. This will also be used for authorization purposes.
    demandSignalNamespace String
    A query parameter to filter the list of demand signal catalog resources based on the namespace.
    filters List<GetOccmDemandSignalCatalogResourcesFilter>
    name String
    A query parameter to filter the list of demand signal catalog resource based on the resource name.
    compartmentId string
    The ocid of the compartment or tenancy in which resources are to be listed. This will also be used for authorization purposes.
    demandSignalNamespace string
    A query parameter to filter the list of demand signal catalog resources based on the namespace.
    filters GetOccmDemandSignalCatalogResourcesFilter[]
    name string
    A query parameter to filter the list of demand signal catalog resource based on the resource name.
    compartment_id str
    The ocid of the compartment or tenancy in which resources are to be listed. This will also be used for authorization purposes.
    demand_signal_namespace str
    A query parameter to filter the list of demand signal catalog resources based on the namespace.
    filters Sequence[GetOccmDemandSignalCatalogResourcesFilter]
    name str
    A query parameter to filter the list of demand signal catalog resource based on the resource name.
    compartmentId String
    The ocid of the compartment or tenancy in which resources are to be listed. This will also be used for authorization purposes.
    demandSignalNamespace String
    A query parameter to filter the list of demand signal catalog resources based on the namespace.
    filters List<Property Map>
    name String
    A query parameter to filter the list of demand signal catalog resource based on the resource name.

    getOccmDemandSignalCatalogResources Result

    The following output properties are available:

    CompartmentId string
    The OCID of the tenancy from which the request to create the demand signal was made.
    Id string
    The provider-assigned unique ID for this managed resource.
    OccmDemandSignalCatalogResourceCollections List<GetOccmDemandSignalCatalogResourcesOccmDemandSignalCatalogResourceCollection>
    The list of occm_demand_signal_catalog_resource_collection.
    DemandSignalNamespace string
    Filters List<GetOccmDemandSignalCatalogResourcesFilter>
    Name string
    The name of the Oracle Cloud Infrastructure resource that you want to request.
    CompartmentId string
    The OCID of the tenancy from which the request to create the demand signal was made.
    Id string
    The provider-assigned unique ID for this managed resource.
    OccmDemandSignalCatalogResourceCollections []GetOccmDemandSignalCatalogResourcesOccmDemandSignalCatalogResourceCollection
    The list of occm_demand_signal_catalog_resource_collection.
    DemandSignalNamespace string
    Filters []GetOccmDemandSignalCatalogResourcesFilter
    Name string
    The name of the Oracle Cloud Infrastructure resource that you want to request.
    compartmentId String
    The OCID of the tenancy from which the request to create the demand signal was made.
    id String
    The provider-assigned unique ID for this managed resource.
    occmDemandSignalCatalogResourceCollections List<GetOccmDemandSignalCatalogResourcesOccmDemandSignalCatalogResourceCollection>
    The list of occm_demand_signal_catalog_resource_collection.
    demandSignalNamespace String
    filters List<GetOccmDemandSignalCatalogResourcesFilter>
    name String
    The name of the Oracle Cloud Infrastructure resource that you want to request.
    compartmentId string
    The OCID of the tenancy from which the request to create the demand signal was made.
    id string
    The provider-assigned unique ID for this managed resource.
    occmDemandSignalCatalogResourceCollections GetOccmDemandSignalCatalogResourcesOccmDemandSignalCatalogResourceCollection[]
    The list of occm_demand_signal_catalog_resource_collection.
    demandSignalNamespace string
    filters GetOccmDemandSignalCatalogResourcesFilter[]
    name string
    The name of the Oracle Cloud Infrastructure resource that you want to request.
    compartment_id str
    The OCID of the tenancy from which the request to create the demand signal was made.
    id str
    The provider-assigned unique ID for this managed resource.
    occm_demand_signal_catalog_resource_collections Sequence[GetOccmDemandSignalCatalogResourcesOccmDemandSignalCatalogResourceCollection]
    The list of occm_demand_signal_catalog_resource_collection.
    demand_signal_namespace str
    filters Sequence[GetOccmDemandSignalCatalogResourcesFilter]
    name str
    The name of the Oracle Cloud Infrastructure resource that you want to request.
    compartmentId String
    The OCID of the tenancy from which the request to create the demand signal was made.
    id String
    The provider-assigned unique ID for this managed resource.
    occmDemandSignalCatalogResourceCollections List<Property Map>
    The list of occm_demand_signal_catalog_resource_collection.
    demandSignalNamespace String
    filters List<Property Map>
    name String
    The name of the Oracle Cloud Infrastructure resource that you want to request.

    Supporting Types

    GetOccmDemandSignalCatalogResourcesFilter

    Name string
    A query parameter to filter the list of demand signal catalog resource based on the resource name.
    Values List<string>
    Regex bool
    Name string
    A query parameter to filter the list of demand signal catalog resource based on the resource name.
    Values []string
    Regex bool
    name String
    A query parameter to filter the list of demand signal catalog resource based on the resource name.
    values List<String>
    regex Boolean
    name string
    A query parameter to filter the list of demand signal catalog resource based on the resource name.
    values string[]
    regex boolean
    name str
    A query parameter to filter the list of demand signal catalog resource based on the resource name.
    values Sequence[str]
    regex bool
    name String
    A query parameter to filter the list of demand signal catalog resource based on the resource name.
    values List<String>
    regex Boolean

    GetOccmDemandSignalCatalogResourcesOccmDemandSignalCatalogResourceCollection

    Items List<GetOccmDemandSignalCatalogResourcesOccmDemandSignalCatalogResourceCollectionItem>
    An array of items containing detailed information about a resource's property dependecies.
    Items []GetOccmDemandSignalCatalogResourcesOccmDemandSignalCatalogResourceCollectionItem
    An array of items containing detailed information about a resource's property dependecies.
    items List<GetOccmDemandSignalCatalogResourcesOccmDemandSignalCatalogResourceCollectionItem>
    An array of items containing detailed information about a resource's property dependecies.
    items GetOccmDemandSignalCatalogResourcesOccmDemandSignalCatalogResourceCollectionItem[]
    An array of items containing detailed information about a resource's property dependecies.
    items Sequence[GetOccmDemandSignalCatalogResourcesOccmDemandSignalCatalogResourceCollectionItem]
    An array of items containing detailed information about a resource's property dependecies.
    items List<Property Map>
    An array of items containing detailed information about a resource's property dependecies.

    GetOccmDemandSignalCatalogResourcesOccmDemandSignalCatalogResourceCollectionItem

    AvailabilityDomain string
    The name of the availability domain for which you want to request the Oracle Cloud Infrastructure resource. This is an optional parameter.
    CompartmentId string
    The ocid of the compartment or tenancy in which resources are to be listed. This will also be used for authorization purposes.
    DefinedTags Dictionary<string, string>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    FreeformTags Dictionary<string, string>
    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
    The OCID of the demand signal catalog resource.
    Name string
    A query parameter to filter the list of demand signal catalog resource based on the resource name.
    Namespace string
    The name of the Oracle Cloud Infrastructure service in consideration for demand signal submission. For example: COMPUTE, NETWORK, GPU etc.
    Region string
    The name of region for which you want to request the Oracle Cloud Infrastructure resource. This is an optional parameter.
    ResourceProperties List<GetOccmDemandSignalCatalogResourcesOccmDemandSignalCatalogResourceCollectionItemResourceProperty>
    A list containing detailed information about a resource's properties.
    ResourcePropertyConstraints List<GetOccmDemandSignalCatalogResourcesOccmDemandSignalCatalogResourceCollectionItemResourcePropertyConstraint>
    A list containing detailed information about a resource's property constraints.
    State string
    The current lifecycles state of the demand signal catalog resource.
    SystemTags Dictionary<string, string>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    TargetCompartmentId string
    The OCID of the customer tenancy for which this resource will be available for the customer to order against.
    TimeCreated string
    The time when the demand signal catalog resource was created.
    TimeUpdated string
    The time when the demand signal catalog resource was last updated.
    AvailabilityDomain string
    The name of the availability domain for which you want to request the Oracle Cloud Infrastructure resource. This is an optional parameter.
    CompartmentId string
    The ocid of the compartment or tenancy in which resources are to be listed. This will also be used for authorization purposes.
    DefinedTags map[string]string
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    FreeformTags map[string]string
    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
    The OCID of the demand signal catalog resource.
    Name string
    A query parameter to filter the list of demand signal catalog resource based on the resource name.
    Namespace string
    The name of the Oracle Cloud Infrastructure service in consideration for demand signal submission. For example: COMPUTE, NETWORK, GPU etc.
    Region string
    The name of region for which you want to request the Oracle Cloud Infrastructure resource. This is an optional parameter.
    ResourceProperties []GetOccmDemandSignalCatalogResourcesOccmDemandSignalCatalogResourceCollectionItemResourceProperty
    A list containing detailed information about a resource's properties.
    ResourcePropertyConstraints []GetOccmDemandSignalCatalogResourcesOccmDemandSignalCatalogResourceCollectionItemResourcePropertyConstraint
    A list containing detailed information about a resource's property constraints.
    State string
    The current lifecycles state of the demand signal catalog resource.
    SystemTags map[string]string
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    TargetCompartmentId string
    The OCID of the customer tenancy for which this resource will be available for the customer to order against.
    TimeCreated string
    The time when the demand signal catalog resource was created.
    TimeUpdated string
    The time when the demand signal catalog resource was last updated.
    availabilityDomain String
    The name of the availability domain for which you want to request the Oracle Cloud Infrastructure resource. This is an optional parameter.
    compartmentId String
    The ocid of the compartment or tenancy in which resources are to be listed. This will also be used for authorization purposes.
    definedTags Map<String,String>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    freeformTags Map<String,String>
    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
    The OCID of the demand signal catalog resource.
    name String
    A query parameter to filter the list of demand signal catalog resource based on the resource name.
    namespace String
    The name of the Oracle Cloud Infrastructure service in consideration for demand signal submission. For example: COMPUTE, NETWORK, GPU etc.
    region String
    The name of region for which you want to request the Oracle Cloud Infrastructure resource. This is an optional parameter.
    resourceProperties List<GetOccmDemandSignalCatalogResourcesOccmDemandSignalCatalogResourceCollectionItemResourceProperty>
    A list containing detailed information about a resource's properties.
    resourcePropertyConstraints List<GetOccmDemandSignalCatalogResourcesOccmDemandSignalCatalogResourceCollectionItemResourcePropertyConstraint>
    A list containing detailed information about a resource's property constraints.
    state String
    The current lifecycles state of the demand signal catalog resource.
    systemTags Map<String,String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    targetCompartmentId String
    The OCID of the customer tenancy for which this resource will be available for the customer to order against.
    timeCreated String
    The time when the demand signal catalog resource was created.
    timeUpdated String
    The time when the demand signal catalog resource was last updated.
    availabilityDomain string
    The name of the availability domain for which you want to request the Oracle Cloud Infrastructure resource. This is an optional parameter.
    compartmentId string
    The ocid of the compartment or tenancy in which resources are to be listed. This will also be used for authorization purposes.
    definedTags {[key: string]: string}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    freeformTags {[key: string]: string}
    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
    The OCID of the demand signal catalog resource.
    name string
    A query parameter to filter the list of demand signal catalog resource based on the resource name.
    namespace string
    The name of the Oracle Cloud Infrastructure service in consideration for demand signal submission. For example: COMPUTE, NETWORK, GPU etc.
    region string
    The name of region for which you want to request the Oracle Cloud Infrastructure resource. This is an optional parameter.
    resourceProperties GetOccmDemandSignalCatalogResourcesOccmDemandSignalCatalogResourceCollectionItemResourceProperty[]
    A list containing detailed information about a resource's properties.
    resourcePropertyConstraints GetOccmDemandSignalCatalogResourcesOccmDemandSignalCatalogResourceCollectionItemResourcePropertyConstraint[]
    A list containing detailed information about a resource's property constraints.
    state string
    The current lifecycles state of the demand signal catalog resource.
    systemTags {[key: string]: string}
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    targetCompartmentId string
    The OCID of the customer tenancy for which this resource will be available for the customer to order against.
    timeCreated string
    The time when the demand signal catalog resource was created.
    timeUpdated string
    The time when the demand signal catalog resource was last updated.
    availability_domain str
    The name of the availability domain for which you want to request the Oracle Cloud Infrastructure resource. This is an optional parameter.
    compartment_id str
    The ocid of the compartment or tenancy in which resources are to be listed. This will also be used for authorization purposes.
    defined_tags Mapping[str, str]
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    freeform_tags Mapping[str, str]
    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
    The OCID of the demand signal catalog resource.
    name str
    A query parameter to filter the list of demand signal catalog resource based on the resource name.
    namespace str
    The name of the Oracle Cloud Infrastructure service in consideration for demand signal submission. For example: COMPUTE, NETWORK, GPU etc.
    region str
    The name of region for which you want to request the Oracle Cloud Infrastructure resource. This is an optional parameter.
    resource_properties Sequence[GetOccmDemandSignalCatalogResourcesOccmDemandSignalCatalogResourceCollectionItemResourceProperty]
    A list containing detailed information about a resource's properties.
    resource_property_constraints Sequence[GetOccmDemandSignalCatalogResourcesOccmDemandSignalCatalogResourceCollectionItemResourcePropertyConstraint]
    A list containing detailed information about a resource's property constraints.
    state str
    The current lifecycles state of the demand signal catalog resource.
    system_tags Mapping[str, str]
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    target_compartment_id str
    The OCID of the customer tenancy for which this resource will be available for the customer to order against.
    time_created str
    The time when the demand signal catalog resource was created.
    time_updated str
    The time when the demand signal catalog resource was last updated.
    availabilityDomain String
    The name of the availability domain for which you want to request the Oracle Cloud Infrastructure resource. This is an optional parameter.
    compartmentId String
    The ocid of the compartment or tenancy in which resources are to be listed. This will also be used for authorization purposes.
    definedTags Map<String>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    freeformTags Map<String>
    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
    The OCID of the demand signal catalog resource.
    name String
    A query parameter to filter the list of demand signal catalog resource based on the resource name.
    namespace String
    The name of the Oracle Cloud Infrastructure service in consideration for demand signal submission. For example: COMPUTE, NETWORK, GPU etc.
    region String
    The name of region for which you want to request the Oracle Cloud Infrastructure resource. This is an optional parameter.
    resourceProperties List<Property Map>
    A list containing detailed information about a resource's properties.
    resourcePropertyConstraints List<Property Map>
    A list containing detailed information about a resource's property constraints.
    state String
    The current lifecycles state of the demand signal catalog resource.
    systemTags Map<String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    targetCompartmentId String
    The OCID of the customer tenancy for which this resource will be available for the customer to order against.
    timeCreated String
    The time when the demand signal catalog resource was created.
    timeUpdated String
    The time when the demand signal catalog resource was last updated.

    GetOccmDemandSignalCatalogResourcesOccmDemandSignalCatalogResourceCollectionItemResourceProperty

    Items List<GetOccmDemandSignalCatalogResourcesOccmDemandSignalCatalogResourceCollectionItemResourcePropertyItem>
    An array of items containing detailed information about a resource's property dependecies.
    Items []GetOccmDemandSignalCatalogResourcesOccmDemandSignalCatalogResourceCollectionItemResourcePropertyItem
    An array of items containing detailed information about a resource's property dependecies.
    items List<GetOccmDemandSignalCatalogResourcesOccmDemandSignalCatalogResourceCollectionItemResourcePropertyItem>
    An array of items containing detailed information about a resource's property dependecies.
    items GetOccmDemandSignalCatalogResourcesOccmDemandSignalCatalogResourceCollectionItemResourcePropertyItem[]
    An array of items containing detailed information about a resource's property dependecies.
    items Sequence[GetOccmDemandSignalCatalogResourcesOccmDemandSignalCatalogResourceCollectionItemResourcePropertyItem]
    An array of items containing detailed information about a resource's property dependecies.
    items List<Property Map>
    An array of items containing detailed information about a resource's property dependecies.

    GetOccmDemandSignalCatalogResourcesOccmDemandSignalCatalogResourceCollectionItemResourcePropertyConstraint

    Items List<GetOccmDemandSignalCatalogResourcesOccmDemandSignalCatalogResourceCollectionItemResourcePropertyConstraintItem>
    An array of items containing detailed information about a resource's property dependecies.
    Items []GetOccmDemandSignalCatalogResourcesOccmDemandSignalCatalogResourceCollectionItemResourcePropertyConstraintItem
    An array of items containing detailed information about a resource's property dependecies.
    items List<GetOccmDemandSignalCatalogResourcesOccmDemandSignalCatalogResourceCollectionItemResourcePropertyConstraintItem>
    An array of items containing detailed information about a resource's property dependecies.
    items GetOccmDemandSignalCatalogResourcesOccmDemandSignalCatalogResourceCollectionItemResourcePropertyConstraintItem[]
    An array of items containing detailed information about a resource's property dependecies.
    items Sequence[GetOccmDemandSignalCatalogResourcesOccmDemandSignalCatalogResourceCollectionItemResourcePropertyConstraintItem]
    An array of items containing detailed information about a resource's property dependecies.
    items List<Property Map>
    An array of items containing detailed information about a resource's property dependecies.

    GetOccmDemandSignalCatalogResourcesOccmDemandSignalCatalogResourceCollectionItemResourcePropertyConstraintItem

    ConstraintName string
    The name of demand signal resource's property constraint.
    ConstraintValue string
    The value of demand signal resource's property constraint.
    ConstraintName string
    The name of demand signal resource's property constraint.
    ConstraintValue string
    The value of demand signal resource's property constraint.
    constraintName String
    The name of demand signal resource's property constraint.
    constraintValue String
    The value of demand signal resource's property constraint.
    constraintName string
    The name of demand signal resource's property constraint.
    constraintValue string
    The value of demand signal resource's property constraint.
    constraint_name str
    The name of demand signal resource's property constraint.
    constraint_value str
    The value of demand signal resource's property constraint.
    constraintName String
    The name of demand signal resource's property constraint.
    constraintValue String
    The value of demand signal resource's property constraint.

    GetOccmDemandSignalCatalogResourcesOccmDemandSignalCatalogResourceCollectionItemResourcePropertyItem

    IsEditable bool
    This will indicate if demand signal resource's property is editable.
    PropertyMaxValue string
    The maximum value of demand signal resource's property. This is an optional parameter.
    PropertyMinValue string
    The minimum value of demand signal resource's property. This is an optional parameter.
    PropertyName string
    The name of demand signal resource's property.
    PropertyOptions List<GetOccmDemandSignalCatalogResourcesOccmDemandSignalCatalogResourceCollectionItemResourcePropertyItemPropertyOption>
    Predefined options for demand signal resource's property. This is an optional parameter.
    PropertyUnit string
    Unit for demand signal resource's property.
    PropertyValue string
    Default value of demand signal resource's property.
    IsEditable bool
    This will indicate if demand signal resource's property is editable.
    PropertyMaxValue string
    The maximum value of demand signal resource's property. This is an optional parameter.
    PropertyMinValue string
    The minimum value of demand signal resource's property. This is an optional parameter.
    PropertyName string
    The name of demand signal resource's property.
    PropertyOptions []GetOccmDemandSignalCatalogResourcesOccmDemandSignalCatalogResourceCollectionItemResourcePropertyItemPropertyOption
    Predefined options for demand signal resource's property. This is an optional parameter.
    PropertyUnit string
    Unit for demand signal resource's property.
    PropertyValue string
    Default value of demand signal resource's property.
    isEditable Boolean
    This will indicate if demand signal resource's property is editable.
    propertyMaxValue String
    The maximum value of demand signal resource's property. This is an optional parameter.
    propertyMinValue String
    The minimum value of demand signal resource's property. This is an optional parameter.
    propertyName String
    The name of demand signal resource's property.
    propertyOptions List<GetOccmDemandSignalCatalogResourcesOccmDemandSignalCatalogResourceCollectionItemResourcePropertyItemPropertyOption>
    Predefined options for demand signal resource's property. This is an optional parameter.
    propertyUnit String
    Unit for demand signal resource's property.
    propertyValue String
    Default value of demand signal resource's property.
    isEditable boolean
    This will indicate if demand signal resource's property is editable.
    propertyMaxValue string
    The maximum value of demand signal resource's property. This is an optional parameter.
    propertyMinValue string
    The minimum value of demand signal resource's property. This is an optional parameter.
    propertyName string
    The name of demand signal resource's property.
    propertyOptions GetOccmDemandSignalCatalogResourcesOccmDemandSignalCatalogResourceCollectionItemResourcePropertyItemPropertyOption[]
    Predefined options for demand signal resource's property. This is an optional parameter.
    propertyUnit string
    Unit for demand signal resource's property.
    propertyValue string
    Default value of demand signal resource's property.
    is_editable bool
    This will indicate if demand signal resource's property is editable.
    property_max_value str
    The maximum value of demand signal resource's property. This is an optional parameter.
    property_min_value str
    The minimum value of demand signal resource's property. This is an optional parameter.
    property_name str
    The name of demand signal resource's property.
    property_options Sequence[GetOccmDemandSignalCatalogResourcesOccmDemandSignalCatalogResourceCollectionItemResourcePropertyItemPropertyOption]
    Predefined options for demand signal resource's property. This is an optional parameter.
    property_unit str
    Unit for demand signal resource's property.
    property_value str
    Default value of demand signal resource's property.
    isEditable Boolean
    This will indicate if demand signal resource's property is editable.
    propertyMaxValue String
    The maximum value of demand signal resource's property. This is an optional parameter.
    propertyMinValue String
    The minimum value of demand signal resource's property. This is an optional parameter.
    propertyName String
    The name of demand signal resource's property.
    propertyOptions List<Property Map>
    Predefined options for demand signal resource's property. This is an optional parameter.
    propertyUnit String
    Unit for demand signal resource's property.
    propertyValue String
    Default value of demand signal resource's property.

    GetOccmDemandSignalCatalogResourcesOccmDemandSignalCatalogResourceCollectionItemResourcePropertyItemPropertyOption

    OptionKey string
    key of a property option like memoryValue, ocpuValue.
    OptionValue string
    value of a property option like 64, 2 fastconnect etc.
    OptionKey string
    key of a property option like memoryValue, ocpuValue.
    OptionValue string
    value of a property option like 64, 2 fastconnect etc.
    optionKey String
    key of a property option like memoryValue, ocpuValue.
    optionValue String
    value of a property option like 64, 2 fastconnect etc.
    optionKey string
    key of a property option like memoryValue, ocpuValue.
    optionValue string
    value of a property option like 64, 2 fastconnect etc.
    option_key str
    key of a property option like memoryValue, ocpuValue.
    option_value str
    value of a property option like 64, 2 fastconnect etc.
    optionKey String
    key of a property option like memoryValue, ocpuValue.
    optionValue String
    value of a property option like 64, 2 fastconnect etc.

    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 v3.3.0 published on Thursday, Jul 17, 2025 by Pulumi