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

oci.CapacityManagement.getInternalOccmDemandSignalCatalogResources

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 Internal 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.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testInternalOccmDemandSignalCatalogResources = oci.CapacityManagement.getInternalOccmDemandSignalCatalogResources({
        compartmentId: compartmentId,
        occCustomerGroupId: testOccCustomerGroup.id,
        occmDemandSignalCatalogId: testCatalog.id,
        demandSignalNamespace: internalOccmDemandSignalCatalogResourceDemandSignalNamespace,
        name: internalOccmDemandSignalCatalogResourceName,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_internal_occm_demand_signal_catalog_resources = oci.CapacityManagement.get_internal_occm_demand_signal_catalog_resources(compartment_id=compartment_id,
        occ_customer_group_id=test_occ_customer_group["id"],
        occm_demand_signal_catalog_id=test_catalog["id"],
        demand_signal_namespace=internal_occm_demand_signal_catalog_resource_demand_signal_namespace,
        name=internal_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.GetInternalOccmDemandSignalCatalogResources(ctx, &capacitymanagement.GetInternalOccmDemandSignalCatalogResourcesArgs{
    			CompartmentId:             compartmentId,
    			OccCustomerGroupId:        testOccCustomerGroup.Id,
    			OccmDemandSignalCatalogId: testCatalog.Id,
    			DemandSignalNamespace:     pulumi.StringRef(internalOccmDemandSignalCatalogResourceDemandSignalNamespace),
    			Name:                      pulumi.StringRef(internalOccmDemandSignalCatalogResourceName),
    		}, 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 testInternalOccmDemandSignalCatalogResources = Oci.CapacityManagement.GetInternalOccmDemandSignalCatalogResources.Invoke(new()
        {
            CompartmentId = compartmentId,
            OccCustomerGroupId = testOccCustomerGroup.Id,
            OccmDemandSignalCatalogId = testCatalog.Id,
            DemandSignalNamespace = internalOccmDemandSignalCatalogResourceDemandSignalNamespace,
            Name = internalOccmDemandSignalCatalogResourceName,
        });
    
    });
    
    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.GetInternalOccmDemandSignalCatalogResourcesArgs;
    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 testInternalOccmDemandSignalCatalogResources = CapacityManagementFunctions.getInternalOccmDemandSignalCatalogResources(GetInternalOccmDemandSignalCatalogResourcesArgs.builder()
                .compartmentId(compartmentId)
                .occCustomerGroupId(testOccCustomerGroup.id())
                .occmDemandSignalCatalogId(testCatalog.id())
                .demandSignalNamespace(internalOccmDemandSignalCatalogResourceDemandSignalNamespace)
                .name(internalOccmDemandSignalCatalogResourceName)
                .build());
    
        }
    }
    
    variables:
      testInternalOccmDemandSignalCatalogResources:
        fn::invoke:
          function: oci:CapacityManagement:getInternalOccmDemandSignalCatalogResources
          arguments:
            compartmentId: ${compartmentId}
            occCustomerGroupId: ${testOccCustomerGroup.id}
            occmDemandSignalCatalogId: ${testCatalog.id}
            demandSignalNamespace: ${internalOccmDemandSignalCatalogResourceDemandSignalNamespace}
            name: ${internalOccmDemandSignalCatalogResourceName}
    

    Using getInternalOccmDemandSignalCatalogResources

    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 getInternalOccmDemandSignalCatalogResources(args: GetInternalOccmDemandSignalCatalogResourcesArgs, opts?: InvokeOptions): Promise<GetInternalOccmDemandSignalCatalogResourcesResult>
    function getInternalOccmDemandSignalCatalogResourcesOutput(args: GetInternalOccmDemandSignalCatalogResourcesOutputArgs, opts?: InvokeOptions): Output<GetInternalOccmDemandSignalCatalogResourcesResult>
    def get_internal_occm_demand_signal_catalog_resources(compartment_id: Optional[str] = None,
                                                          demand_signal_namespace: Optional[str] = None,
                                                          filters: Optional[Sequence[GetInternalOccmDemandSignalCatalogResourcesFilter]] = None,
                                                          name: Optional[str] = None,
                                                          occ_customer_group_id: Optional[str] = None,
                                                          occm_demand_signal_catalog_id: Optional[str] = None,
                                                          opts: Optional[InvokeOptions] = None) -> GetInternalOccmDemandSignalCatalogResourcesResult
    def get_internal_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[GetInternalOccmDemandSignalCatalogResourcesFilterArgs]]]] = None,
                                                          name: Optional[pulumi.Input[str]] = None,
                                                          occ_customer_group_id: Optional[pulumi.Input[str]] = None,
                                                          occm_demand_signal_catalog_id: Optional[pulumi.Input[str]] = None,
                                                          opts: Optional[InvokeOptions] = None) -> Output[GetInternalOccmDemandSignalCatalogResourcesResult]
    func GetInternalOccmDemandSignalCatalogResources(ctx *Context, args *GetInternalOccmDemandSignalCatalogResourcesArgs, opts ...InvokeOption) (*GetInternalOccmDemandSignalCatalogResourcesResult, error)
    func GetInternalOccmDemandSignalCatalogResourcesOutput(ctx *Context, args *GetInternalOccmDemandSignalCatalogResourcesOutputArgs, opts ...InvokeOption) GetInternalOccmDemandSignalCatalogResourcesResultOutput

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

    public static class GetInternalOccmDemandSignalCatalogResources 
    {
        public static Task<GetInternalOccmDemandSignalCatalogResourcesResult> InvokeAsync(GetInternalOccmDemandSignalCatalogResourcesArgs args, InvokeOptions? opts = null)
        public static Output<GetInternalOccmDemandSignalCatalogResourcesResult> Invoke(GetInternalOccmDemandSignalCatalogResourcesInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetInternalOccmDemandSignalCatalogResourcesResult> getInternalOccmDemandSignalCatalogResources(GetInternalOccmDemandSignalCatalogResourcesArgs args, InvokeOptions options)
    public static Output<GetInternalOccmDemandSignalCatalogResourcesResult> getInternalOccmDemandSignalCatalogResources(GetInternalOccmDemandSignalCatalogResourcesArgs args, InvokeOptions options)
    
    fn::invoke:
      function: oci:CapacityManagement/getInternalOccmDemandSignalCatalogResources:getInternalOccmDemandSignalCatalogResources
      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.
    OccCustomerGroupId string
    The customer group ocid by which we would filter the list.
    OccmDemandSignalCatalogId string
    The ocid of demand signal catalog id.
    DemandSignalNamespace string
    A query parameter to filter the list of demand signal catalog resources based on the namespace.
    Filters List<GetInternalOccmDemandSignalCatalogResourcesFilter>
    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.
    OccCustomerGroupId string
    The customer group ocid by which we would filter the list.
    OccmDemandSignalCatalogId string
    The ocid of demand signal catalog id.
    DemandSignalNamespace string
    A query parameter to filter the list of demand signal catalog resources based on the namespace.
    Filters []GetInternalOccmDemandSignalCatalogResourcesFilter
    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.
    occCustomerGroupId String
    The customer group ocid by which we would filter the list.
    occmDemandSignalCatalogId String
    The ocid of demand signal catalog id.
    demandSignalNamespace String
    A query parameter to filter the list of demand signal catalog resources based on the namespace.
    filters List<GetInternalOccmDemandSignalCatalogResourcesFilter>
    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.
    occCustomerGroupId string
    The customer group ocid by which we would filter the list.
    occmDemandSignalCatalogId string
    The ocid of demand signal catalog id.
    demandSignalNamespace string
    A query parameter to filter the list of demand signal catalog resources based on the namespace.
    filters GetInternalOccmDemandSignalCatalogResourcesFilter[]
    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.
    occ_customer_group_id str
    The customer group ocid by which we would filter the list.
    occm_demand_signal_catalog_id str
    The ocid of demand signal catalog id.
    demand_signal_namespace str
    A query parameter to filter the list of demand signal catalog resources based on the namespace.
    filters Sequence[GetInternalOccmDemandSignalCatalogResourcesFilter]
    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.
    occCustomerGroupId String
    The customer group ocid by which we would filter the list.
    occmDemandSignalCatalogId String
    The ocid of demand signal catalog id.
    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.

    getInternalOccmDemandSignalCatalogResources Result

    The following output properties are available:

    CompartmentId string
    The OCID of the tenancy from which the request to create the demand signal catalog was made.
    Id string
    The provider-assigned unique ID for this managed resource.
    InternalOccmDemandSignalCatalogResourceCollections List<GetInternalOccmDemandSignalCatalogResourcesInternalOccmDemandSignalCatalogResourceCollection>
    The list of internal_occm_demand_signal_catalog_resource_collection.
    OccCustomerGroupId string
    The OCID of the customerGroup.
    OccmDemandSignalCatalogId string
    This OCID of the demand signal catalog
    DemandSignalNamespace string
    Filters List<GetInternalOccmDemandSignalCatalogResourcesFilter>
    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 catalog was made.
    Id string
    The provider-assigned unique ID for this managed resource.
    InternalOccmDemandSignalCatalogResourceCollections []GetInternalOccmDemandSignalCatalogResourcesInternalOccmDemandSignalCatalogResourceCollection
    The list of internal_occm_demand_signal_catalog_resource_collection.
    OccCustomerGroupId string
    The OCID of the customerGroup.
    OccmDemandSignalCatalogId string
    This OCID of the demand signal catalog
    DemandSignalNamespace string
    Filters []GetInternalOccmDemandSignalCatalogResourcesFilter
    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 catalog was made.
    id String
    The provider-assigned unique ID for this managed resource.
    internalOccmDemandSignalCatalogResourceCollections List<GetInternalOccmDemandSignalCatalogResourcesInternalOccmDemandSignalCatalogResourceCollection>
    The list of internal_occm_demand_signal_catalog_resource_collection.
    occCustomerGroupId String
    The OCID of the customerGroup.
    occmDemandSignalCatalogId String
    This OCID of the demand signal catalog
    demandSignalNamespace String
    filters List<GetInternalOccmDemandSignalCatalogResourcesFilter>
    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 catalog was made.
    id string
    The provider-assigned unique ID for this managed resource.
    internalOccmDemandSignalCatalogResourceCollections GetInternalOccmDemandSignalCatalogResourcesInternalOccmDemandSignalCatalogResourceCollection[]
    The list of internal_occm_demand_signal_catalog_resource_collection.
    occCustomerGroupId string
    The OCID of the customerGroup.
    occmDemandSignalCatalogId string
    This OCID of the demand signal catalog
    demandSignalNamespace string
    filters GetInternalOccmDemandSignalCatalogResourcesFilter[]
    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 catalog was made.
    id str
    The provider-assigned unique ID for this managed resource.
    internal_occm_demand_signal_catalog_resource_collections Sequence[GetInternalOccmDemandSignalCatalogResourcesInternalOccmDemandSignalCatalogResourceCollection]
    The list of internal_occm_demand_signal_catalog_resource_collection.
    occ_customer_group_id str
    The OCID of the customerGroup.
    occm_demand_signal_catalog_id str
    This OCID of the demand signal catalog
    demand_signal_namespace str
    filters Sequence[GetInternalOccmDemandSignalCatalogResourcesFilter]
    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 catalog was made.
    id String
    The provider-assigned unique ID for this managed resource.
    internalOccmDemandSignalCatalogResourceCollections List<Property Map>
    The list of internal_occm_demand_signal_catalog_resource_collection.
    occCustomerGroupId String
    The OCID of the customerGroup.
    occmDemandSignalCatalogId String
    This OCID of the demand signal catalog
    demandSignalNamespace String
    filters List<Property Map>
    name String
    The name of the Oracle Cloud Infrastructure resource that you want to request.

    Supporting Types

    GetInternalOccmDemandSignalCatalogResourcesFilter

    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

    GetInternalOccmDemandSignalCatalogResourcesInternalOccmDemandSignalCatalogResourceCollection

    Items List<GetInternalOccmDemandSignalCatalogResourcesInternalOccmDemandSignalCatalogResourceCollectionItem>
    An array of items containing detailed information about a resource's property dependecies.
    Items []GetInternalOccmDemandSignalCatalogResourcesInternalOccmDemandSignalCatalogResourceCollectionItem
    An array of items containing detailed information about a resource's property dependecies.
    items List<GetInternalOccmDemandSignalCatalogResourcesInternalOccmDemandSignalCatalogResourceCollectionItem>
    An array of items containing detailed information about a resource's property dependecies.
    items GetInternalOccmDemandSignalCatalogResourcesInternalOccmDemandSignalCatalogResourceCollectionItem[]
    An array of items containing detailed information about a resource's property dependecies.
    items Sequence[GetInternalOccmDemandSignalCatalogResourcesInternalOccmDemandSignalCatalogResourceCollectionItem]
    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.

    GetInternalOccmDemandSignalCatalogResourcesInternalOccmDemandSignalCatalogResourceCollectionItem

    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.
    OccCustomerGroupId string
    The customer group ocid by which we would filter the list.
    OccmDemandSignalCatalogId string
    The ocid of demand signal catalog id.
    Region string
    The name of region for which you want to request the Oracle Cloud Infrastructure resource. This is an optional parameter.
    ResourceProperties List<GetInternalOccmDemandSignalCatalogResourcesInternalOccmDemandSignalCatalogResourceCollectionItemResourceProperty>
    A list containing detailed information about a resource's properties.
    ResourcePropertyConstraints List<GetInternalOccmDemandSignalCatalogResourcesInternalOccmDemandSignalCatalogResourceCollectionItemResourcePropertyConstraint>
    A list containing detailed information about a resource's property constraints.
    State string
    The current lifecycle 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.
    OccCustomerGroupId string
    The customer group ocid by which we would filter the list.
    OccmDemandSignalCatalogId string
    The ocid of demand signal catalog id.
    Region string
    The name of region for which you want to request the Oracle Cloud Infrastructure resource. This is an optional parameter.
    ResourceProperties []GetInternalOccmDemandSignalCatalogResourcesInternalOccmDemandSignalCatalogResourceCollectionItemResourceProperty
    A list containing detailed information about a resource's properties.
    ResourcePropertyConstraints []GetInternalOccmDemandSignalCatalogResourcesInternalOccmDemandSignalCatalogResourceCollectionItemResourcePropertyConstraint
    A list containing detailed information about a resource's property constraints.
    State string
    The current lifecycle 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.
    occCustomerGroupId String
    The customer group ocid by which we would filter the list.
    occmDemandSignalCatalogId String
    The ocid of demand signal catalog id.
    region String
    The name of region for which you want to request the Oracle Cloud Infrastructure resource. This is an optional parameter.
    resourceProperties List<GetInternalOccmDemandSignalCatalogResourcesInternalOccmDemandSignalCatalogResourceCollectionItemResourceProperty>
    A list containing detailed information about a resource's properties.
    resourcePropertyConstraints List<GetInternalOccmDemandSignalCatalogResourcesInternalOccmDemandSignalCatalogResourceCollectionItemResourcePropertyConstraint>
    A list containing detailed information about a resource's property constraints.
    state String
    The current lifecycle 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.
    occCustomerGroupId string
    The customer group ocid by which we would filter the list.
    occmDemandSignalCatalogId string
    The ocid of demand signal catalog id.
    region string
    The name of region for which you want to request the Oracle Cloud Infrastructure resource. This is an optional parameter.
    resourceProperties GetInternalOccmDemandSignalCatalogResourcesInternalOccmDemandSignalCatalogResourceCollectionItemResourceProperty[]
    A list containing detailed information about a resource's properties.
    resourcePropertyConstraints GetInternalOccmDemandSignalCatalogResourcesInternalOccmDemandSignalCatalogResourceCollectionItemResourcePropertyConstraint[]
    A list containing detailed information about a resource's property constraints.
    state string
    The current lifecycle 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.
    occ_customer_group_id str
    The customer group ocid by which we would filter the list.
    occm_demand_signal_catalog_id str
    The ocid of demand signal catalog id.
    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[GetInternalOccmDemandSignalCatalogResourcesInternalOccmDemandSignalCatalogResourceCollectionItemResourceProperty]
    A list containing detailed information about a resource's properties.
    resource_property_constraints Sequence[GetInternalOccmDemandSignalCatalogResourcesInternalOccmDemandSignalCatalogResourceCollectionItemResourcePropertyConstraint]
    A list containing detailed information about a resource's property constraints.
    state str
    The current lifecycle 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.
    occCustomerGroupId String
    The customer group ocid by which we would filter the list.
    occmDemandSignalCatalogId String
    The ocid of demand signal catalog id.
    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 lifecycle 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.

    GetInternalOccmDemandSignalCatalogResourcesInternalOccmDemandSignalCatalogResourceCollectionItemResourceProperty

    Items List<GetInternalOccmDemandSignalCatalogResourcesInternalOccmDemandSignalCatalogResourceCollectionItemResourcePropertyItem>
    An array of items containing detailed information about a resource's property dependecies.
    Items []GetInternalOccmDemandSignalCatalogResourcesInternalOccmDemandSignalCatalogResourceCollectionItemResourcePropertyItem
    An array of items containing detailed information about a resource's property dependecies.
    items List<GetInternalOccmDemandSignalCatalogResourcesInternalOccmDemandSignalCatalogResourceCollectionItemResourcePropertyItem>
    An array of items containing detailed information about a resource's property dependecies.
    items GetInternalOccmDemandSignalCatalogResourcesInternalOccmDemandSignalCatalogResourceCollectionItemResourcePropertyItem[]
    An array of items containing detailed information about a resource's property dependecies.
    items Sequence[GetInternalOccmDemandSignalCatalogResourcesInternalOccmDemandSignalCatalogResourceCollectionItemResourcePropertyItem]
    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.

    GetInternalOccmDemandSignalCatalogResourcesInternalOccmDemandSignalCatalogResourceCollectionItemResourcePropertyConstraint

    Items []GetInternalOccmDemandSignalCatalogResourcesInternalOccmDemandSignalCatalogResourceCollectionItemResourcePropertyConstraintItem
    An array of items containing detailed information about a resource's property dependecies.
    items GetInternalOccmDemandSignalCatalogResourcesInternalOccmDemandSignalCatalogResourceCollectionItemResourcePropertyConstraintItem[]
    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.

    GetInternalOccmDemandSignalCatalogResourcesInternalOccmDemandSignalCatalogResourceCollectionItemResourcePropertyConstraintItem

    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.

    GetInternalOccmDemandSignalCatalogResourcesInternalOccmDemandSignalCatalogResourceCollectionItemResourcePropertyItem

    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<GetInternalOccmDemandSignalCatalogResourcesInternalOccmDemandSignalCatalogResourceCollectionItemResourcePropertyItemPropertyOption>
    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 []GetInternalOccmDemandSignalCatalogResourcesInternalOccmDemandSignalCatalogResourceCollectionItemResourcePropertyItemPropertyOption
    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<GetInternalOccmDemandSignalCatalogResourcesInternalOccmDemandSignalCatalogResourceCollectionItemResourcePropertyItemPropertyOption>
    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 GetInternalOccmDemandSignalCatalogResourcesInternalOccmDemandSignalCatalogResourceCollectionItemResourcePropertyItemPropertyOption[]
    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[GetInternalOccmDemandSignalCatalogResourcesInternalOccmDemandSignalCatalogResourceCollectionItemResourcePropertyItemPropertyOption]
    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.

    GetInternalOccmDemandSignalCatalogResourcesInternalOccmDemandSignalCatalogResourceCollectionItemResourcePropertyItemPropertyOption

    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