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

oci.CapacityManagement.getInternalOccmDemandSignalItems

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 Items in Oracle Cloud Infrastructure Capacity Management service.

    This internal API will list the detailed information about the resources demanded as part of the demand signal.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testInternalOccmDemandSignalItems = oci.CapacityManagement.getInternalOccmDemandSignalItems({
        compartmentId: compartmentId,
        occCustomerGroupId: testOccCustomerGroup.id,
        demandSignalNamespace: internalOccmDemandSignalItemDemandSignalNamespace,
        occmDemandSignalId: testOccmDemandSignal.id,
        resourceName: testResource.name,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_internal_occm_demand_signal_items = oci.CapacityManagement.get_internal_occm_demand_signal_items(compartment_id=compartment_id,
        occ_customer_group_id=test_occ_customer_group["id"],
        demand_signal_namespace=internal_occm_demand_signal_item_demand_signal_namespace,
        occm_demand_signal_id=test_occm_demand_signal["id"],
        resource_name=test_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.GetInternalOccmDemandSignalItems(ctx, &capacitymanagement.GetInternalOccmDemandSignalItemsArgs{
    			CompartmentId:         compartmentId,
    			OccCustomerGroupId:    testOccCustomerGroup.Id,
    			DemandSignalNamespace: pulumi.StringRef(internalOccmDemandSignalItemDemandSignalNamespace),
    			OccmDemandSignalId:    pulumi.StringRef(testOccmDemandSignal.Id),
    			ResourceName:          pulumi.StringRef(testResource.Name),
    		}, 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 testInternalOccmDemandSignalItems = Oci.CapacityManagement.GetInternalOccmDemandSignalItems.Invoke(new()
        {
            CompartmentId = compartmentId,
            OccCustomerGroupId = testOccCustomerGroup.Id,
            DemandSignalNamespace = internalOccmDemandSignalItemDemandSignalNamespace,
            OccmDemandSignalId = testOccmDemandSignal.Id,
            ResourceName = testResource.Name,
        });
    
    });
    
    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.GetInternalOccmDemandSignalItemsArgs;
    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 testInternalOccmDemandSignalItems = CapacityManagementFunctions.getInternalOccmDemandSignalItems(GetInternalOccmDemandSignalItemsArgs.builder()
                .compartmentId(compartmentId)
                .occCustomerGroupId(testOccCustomerGroup.id())
                .demandSignalNamespace(internalOccmDemandSignalItemDemandSignalNamespace)
                .occmDemandSignalId(testOccmDemandSignal.id())
                .resourceName(testResource.name())
                .build());
    
        }
    }
    
    variables:
      testInternalOccmDemandSignalItems:
        fn::invoke:
          function: oci:CapacityManagement:getInternalOccmDemandSignalItems
          arguments:
            compartmentId: ${compartmentId}
            occCustomerGroupId: ${testOccCustomerGroup.id}
            demandSignalNamespace: ${internalOccmDemandSignalItemDemandSignalNamespace}
            occmDemandSignalId: ${testOccmDemandSignal.id}
            resourceName: ${testResource.name}
    

    Using getInternalOccmDemandSignalItems

    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 getInternalOccmDemandSignalItems(args: GetInternalOccmDemandSignalItemsArgs, opts?: InvokeOptions): Promise<GetInternalOccmDemandSignalItemsResult>
    function getInternalOccmDemandSignalItemsOutput(args: GetInternalOccmDemandSignalItemsOutputArgs, opts?: InvokeOptions): Output<GetInternalOccmDemandSignalItemsResult>
    def get_internal_occm_demand_signal_items(compartment_id: Optional[str] = None,
                                              demand_signal_namespace: Optional[str] = None,
                                              filters: Optional[Sequence[GetInternalOccmDemandSignalItemsFilter]] = None,
                                              occ_customer_group_id: Optional[str] = None,
                                              occm_demand_signal_id: Optional[str] = None,
                                              resource_name: Optional[str] = None,
                                              opts: Optional[InvokeOptions] = None) -> GetInternalOccmDemandSignalItemsResult
    def get_internal_occm_demand_signal_items_output(compartment_id: Optional[pulumi.Input[str]] = None,
                                              demand_signal_namespace: Optional[pulumi.Input[str]] = None,
                                              filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetInternalOccmDemandSignalItemsFilterArgs]]]] = None,
                                              occ_customer_group_id: Optional[pulumi.Input[str]] = None,
                                              occm_demand_signal_id: Optional[pulumi.Input[str]] = None,
                                              resource_name: Optional[pulumi.Input[str]] = None,
                                              opts: Optional[InvokeOptions] = None) -> Output[GetInternalOccmDemandSignalItemsResult]
    func GetInternalOccmDemandSignalItems(ctx *Context, args *GetInternalOccmDemandSignalItemsArgs, opts ...InvokeOption) (*GetInternalOccmDemandSignalItemsResult, error)
    func GetInternalOccmDemandSignalItemsOutput(ctx *Context, args *GetInternalOccmDemandSignalItemsOutputArgs, opts ...InvokeOption) GetInternalOccmDemandSignalItemsResultOutput

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

    public static class GetInternalOccmDemandSignalItems 
    {
        public static Task<GetInternalOccmDemandSignalItemsResult> InvokeAsync(GetInternalOccmDemandSignalItemsArgs args, InvokeOptions? opts = null)
        public static Output<GetInternalOccmDemandSignalItemsResult> Invoke(GetInternalOccmDemandSignalItemsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetInternalOccmDemandSignalItemsResult> getInternalOccmDemandSignalItems(GetInternalOccmDemandSignalItemsArgs args, InvokeOptions options)
    public static Output<GetInternalOccmDemandSignalItemsResult> getInternalOccmDemandSignalItems(GetInternalOccmDemandSignalItemsArgs args, InvokeOptions options)
    
    fn::invoke:
      function: oci:CapacityManagement/getInternalOccmDemandSignalItems:getInternalOccmDemandSignalItems
      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.
    DemandSignalNamespace string
    A query parameter to filter the list of demand signal details based on the namespace.
    Filters List<GetInternalOccmDemandSignalItemsFilter>
    OccmDemandSignalId string
    A query parameter to filter the list of demand signal items based on a demand signal id.
    ResourceName string
    A query parameter to filter the list of demand signal details 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.
    DemandSignalNamespace string
    A query parameter to filter the list of demand signal details based on the namespace.
    Filters []GetInternalOccmDemandSignalItemsFilter
    OccmDemandSignalId string
    A query parameter to filter the list of demand signal items based on a demand signal id.
    ResourceName string
    A query parameter to filter the list of demand signal details 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.
    demandSignalNamespace String
    A query parameter to filter the list of demand signal details based on the namespace.
    filters List<GetInternalOccmDemandSignalItemsFilter>
    occmDemandSignalId String
    A query parameter to filter the list of demand signal items based on a demand signal id.
    resourceName String
    A query parameter to filter the list of demand signal details 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.
    demandSignalNamespace string
    A query parameter to filter the list of demand signal details based on the namespace.
    filters GetInternalOccmDemandSignalItemsFilter[]
    occmDemandSignalId string
    A query parameter to filter the list of demand signal items based on a demand signal id.
    resourceName string
    A query parameter to filter the list of demand signal details 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.
    demand_signal_namespace str
    A query parameter to filter the list of demand signal details based on the namespace.
    filters Sequence[GetInternalOccmDemandSignalItemsFilter]
    occm_demand_signal_id str
    A query parameter to filter the list of demand signal items based on a demand signal id.
    resource_name str
    A query parameter to filter the list of demand signal details 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.
    demandSignalNamespace String
    A query parameter to filter the list of demand signal details based on the namespace.
    filters List<Property Map>
    occmDemandSignalId String
    A query parameter to filter the list of demand signal items based on a demand signal id.
    resourceName String
    A query parameter to filter the list of demand signal details based on the resource name.

    getInternalOccmDemandSignalItems Result

    The following output properties are available:

    CompartmentId string
    The OCID of the tenancy from which the demand signal item was created.
    Id string
    The provider-assigned unique ID for this managed resource.
    InternalOccmDemandSignalItemCollections List<GetInternalOccmDemandSignalItemsInternalOccmDemandSignalItemCollection>
    The list of internal_occm_demand_signal_item_collection.
    OccCustomerGroupId string
    The OCID of the customer group in which the demand signal is created.
    DemandSignalNamespace string
    The name of the Oracle Cloud Infrastructure service in consideration for demand signal submission. For example: COMPUTE, NETWORK, GPU etc.
    Filters List<GetInternalOccmDemandSignalItemsFilter>
    OccmDemandSignalId string
    ResourceName string
    The name of the Oracle Cloud Infrastructure resource that you want to request.
    CompartmentId string
    The OCID of the tenancy from which the demand signal item was created.
    Id string
    The provider-assigned unique ID for this managed resource.
    InternalOccmDemandSignalItemCollections []GetInternalOccmDemandSignalItemsInternalOccmDemandSignalItemCollection
    The list of internal_occm_demand_signal_item_collection.
    OccCustomerGroupId string
    The OCID of the customer group in which the demand signal is created.
    DemandSignalNamespace string
    The name of the Oracle Cloud Infrastructure service in consideration for demand signal submission. For example: COMPUTE, NETWORK, GPU etc.
    Filters []GetInternalOccmDemandSignalItemsFilter
    OccmDemandSignalId string
    ResourceName string
    The name of the Oracle Cloud Infrastructure resource that you want to request.
    compartmentId String
    The OCID of the tenancy from which the demand signal item was created.
    id String
    The provider-assigned unique ID for this managed resource.
    internalOccmDemandSignalItemCollections List<GetInternalOccmDemandSignalItemsInternalOccmDemandSignalItemCollection>
    The list of internal_occm_demand_signal_item_collection.
    occCustomerGroupId String
    The OCID of the customer group in which the demand signal is created.
    demandSignalNamespace String
    The name of the Oracle Cloud Infrastructure service in consideration for demand signal submission. For example: COMPUTE, NETWORK, GPU etc.
    filters List<GetInternalOccmDemandSignalItemsFilter>
    occmDemandSignalId String
    resourceName String
    The name of the Oracle Cloud Infrastructure resource that you want to request.
    compartmentId string
    The OCID of the tenancy from which the demand signal item was created.
    id string
    The provider-assigned unique ID for this managed resource.
    internalOccmDemandSignalItemCollections GetInternalOccmDemandSignalItemsInternalOccmDemandSignalItemCollection[]
    The list of internal_occm_demand_signal_item_collection.
    occCustomerGroupId string
    The OCID of the customer group in which the demand signal is created.
    demandSignalNamespace string
    The name of the Oracle Cloud Infrastructure service in consideration for demand signal submission. For example: COMPUTE, NETWORK, GPU etc.
    filters GetInternalOccmDemandSignalItemsFilter[]
    occmDemandSignalId string
    resourceName 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 demand signal item was created.
    id str
    The provider-assigned unique ID for this managed resource.
    internal_occm_demand_signal_item_collections Sequence[GetInternalOccmDemandSignalItemsInternalOccmDemandSignalItemCollection]
    The list of internal_occm_demand_signal_item_collection.
    occ_customer_group_id str
    The OCID of the customer group in which the demand signal is created.
    demand_signal_namespace str
    The name of the Oracle Cloud Infrastructure service in consideration for demand signal submission. For example: COMPUTE, NETWORK, GPU etc.
    filters Sequence[GetInternalOccmDemandSignalItemsFilter]
    occm_demand_signal_id str
    resource_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 demand signal item was created.
    id String
    The provider-assigned unique ID for this managed resource.
    internalOccmDemandSignalItemCollections List<Property Map>
    The list of internal_occm_demand_signal_item_collection.
    occCustomerGroupId String
    The OCID of the customer group in which the demand signal is created.
    demandSignalNamespace String
    The name of the Oracle Cloud Infrastructure service in consideration for demand signal submission. For example: COMPUTE, NETWORK, GPU etc.
    filters List<Property Map>
    occmDemandSignalId String
    resourceName String
    The name of the Oracle Cloud Infrastructure resource that you want to request.

    Supporting Types

    GetInternalOccmDemandSignalItemsFilter

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

    GetInternalOccmDemandSignalItemsInternalOccmDemandSignalItemCollection

    Items List<GetInternalOccmDemandSignalItemsInternalOccmDemandSignalItemCollectionItem>
    An array of items containing detailed information about different resource demanded as part of a demand signal.
    Items []GetInternalOccmDemandSignalItemsInternalOccmDemandSignalItemCollectionItem
    An array of items containing detailed information about different resource demanded as part of a demand signal.
    items List<GetInternalOccmDemandSignalItemsInternalOccmDemandSignalItemCollectionItem>
    An array of items containing detailed information about different resource demanded as part of a demand signal.
    items GetInternalOccmDemandSignalItemsInternalOccmDemandSignalItemCollectionItem[]
    An array of items containing detailed information about different resource demanded as part of a demand signal.
    items Sequence[GetInternalOccmDemandSignalItemsInternalOccmDemandSignalItemCollectionItem]
    An array of items containing detailed information about different resource demanded as part of a demand signal.
    items List<Property Map>
    An array of items containing detailed information about different resource demanded as part of a demand signal.

    GetInternalOccmDemandSignalItemsInternalOccmDemandSignalItemCollectionItem

    AvailabilityDomain string
    The name of the availability domain for which you want to request the Oracle Cloud Infrastructure resource.
    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"}
    DemandSignalCatalogResourceId string
    The OCID of the corresponding demand signal catalog resource.
    DemandSignalId string
    The OCID of the demand signal under which this item will be grouped.
    DemandSignalNamespace string
    A query parameter to filter the list of demand signal details based on the namespace.
    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 resource request.
    Notes string
    This field will serve as notes section for you. You can use this section to convey a message to Oracle Cloud Infrastructure regarding your resource request.
    OccCustomerGroupId string
    The customer group ocid by which we would filter the list.
    Quantity string
    The quantity of the resource that you want to demand from Oracle Cloud Infrastructure or return to OCI.
    Region string
    The name of region for which you want to request the Oracle Cloud Infrastructure resource.
    RequestType string
    The type of request (DEMAND or RETURN) made against a particular demand signal item.
    ResourceName string
    A query parameter to filter the list of demand signal details based on the resource name.
    ResourceProperties Dictionary<string, string>
    A map of various properties associated with the Oracle Cloud Infrastructure resource.
    State string
    The current lifecycle state of the demand signal item.
    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 tenancy for which you want to request the Oracle Cloud Infrastructure resource for. This is an optional parameter.
    TimeNeededBefore string
    the date before which you would ideally like the Oracle Cloud Infrastructure resource to be delivered to you.
    AvailabilityDomain string
    The name of the availability domain for which you want to request the Oracle Cloud Infrastructure resource.
    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"}
    DemandSignalCatalogResourceId string
    The OCID of the corresponding demand signal catalog resource.
    DemandSignalId string
    The OCID of the demand signal under which this item will be grouped.
    DemandSignalNamespace string
    A query parameter to filter the list of demand signal details based on the namespace.
    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 resource request.
    Notes string
    This field will serve as notes section for you. You can use this section to convey a message to Oracle Cloud Infrastructure regarding your resource request.
    OccCustomerGroupId string
    The customer group ocid by which we would filter the list.
    Quantity string
    The quantity of the resource that you want to demand from Oracle Cloud Infrastructure or return to OCI.
    Region string
    The name of region for which you want to request the Oracle Cloud Infrastructure resource.
    RequestType string
    The type of request (DEMAND or RETURN) made against a particular demand signal item.
    ResourceName string
    A query parameter to filter the list of demand signal details based on the resource name.
    ResourceProperties map[string]string
    A map of various properties associated with the Oracle Cloud Infrastructure resource.
    State string
    The current lifecycle state of the demand signal item.
    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 tenancy for which you want to request the Oracle Cloud Infrastructure resource for. This is an optional parameter.
    TimeNeededBefore string
    the date before which you would ideally like the Oracle Cloud Infrastructure resource to be delivered to you.
    availabilityDomain String
    The name of the availability domain for which you want to request the Oracle Cloud Infrastructure resource.
    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"}
    demandSignalCatalogResourceId String
    The OCID of the corresponding demand signal catalog resource.
    demandSignalId String
    The OCID of the demand signal under which this item will be grouped.
    demandSignalNamespace String
    A query parameter to filter the list of demand signal details based on the namespace.
    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 resource request.
    notes String
    This field will serve as notes section for you. You can use this section to convey a message to Oracle Cloud Infrastructure regarding your resource request.
    occCustomerGroupId String
    The customer group ocid by which we would filter the list.
    quantity String
    The quantity of the resource that you want to demand from Oracle Cloud Infrastructure or return to OCI.
    region String
    The name of region for which you want to request the Oracle Cloud Infrastructure resource.
    requestType String
    The type of request (DEMAND or RETURN) made against a particular demand signal item.
    resourceName String
    A query parameter to filter the list of demand signal details based on the resource name.
    resourceProperties Map<String,String>
    A map of various properties associated with the Oracle Cloud Infrastructure resource.
    state String
    The current lifecycle state of the demand signal item.
    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 tenancy for which you want to request the Oracle Cloud Infrastructure resource for. This is an optional parameter.
    timeNeededBefore String
    the date before which you would ideally like the Oracle Cloud Infrastructure resource to be delivered to you.
    availabilityDomain string
    The name of the availability domain for which you want to request the Oracle Cloud Infrastructure resource.
    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"}
    demandSignalCatalogResourceId string
    The OCID of the corresponding demand signal catalog resource.
    demandSignalId string
    The OCID of the demand signal under which this item will be grouped.
    demandSignalNamespace string
    A query parameter to filter the list of demand signal details based on the namespace.
    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 resource request.
    notes string
    This field will serve as notes section for you. You can use this section to convey a message to Oracle Cloud Infrastructure regarding your resource request.
    occCustomerGroupId string
    The customer group ocid by which we would filter the list.
    quantity string
    The quantity of the resource that you want to demand from Oracle Cloud Infrastructure or return to OCI.
    region string
    The name of region for which you want to request the Oracle Cloud Infrastructure resource.
    requestType string
    The type of request (DEMAND or RETURN) made against a particular demand signal item.
    resourceName string
    A query parameter to filter the list of demand signal details based on the resource name.
    resourceProperties {[key: string]: string}
    A map of various properties associated with the Oracle Cloud Infrastructure resource.
    state string
    The current lifecycle state of the demand signal item.
    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 tenancy for which you want to request the Oracle Cloud Infrastructure resource for. This is an optional parameter.
    timeNeededBefore string
    the date before which you would ideally like the Oracle Cloud Infrastructure resource to be delivered to you.
    availability_domain str
    The name of the availability domain for which you want to request the Oracle Cloud Infrastructure resource.
    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"}
    demand_signal_catalog_resource_id str
    The OCID of the corresponding demand signal catalog resource.
    demand_signal_id str
    The OCID of the demand signal under which this item will be grouped.
    demand_signal_namespace str
    A query parameter to filter the list of demand signal details based on the namespace.
    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 resource request.
    notes str
    This field will serve as notes section for you. You can use this section to convey a message to Oracle Cloud Infrastructure regarding your resource request.
    occ_customer_group_id str
    The customer group ocid by which we would filter the list.
    quantity str
    The quantity of the resource that you want to demand from Oracle Cloud Infrastructure or return to OCI.
    region str
    The name of region for which you want to request the Oracle Cloud Infrastructure resource.
    request_type str
    The type of request (DEMAND or RETURN) made against a particular demand signal item.
    resource_name str
    A query parameter to filter the list of demand signal details based on the resource name.
    resource_properties Mapping[str, str]
    A map of various properties associated with the Oracle Cloud Infrastructure resource.
    state str
    The current lifecycle state of the demand signal item.
    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 tenancy for which you want to request the Oracle Cloud Infrastructure resource for. This is an optional parameter.
    time_needed_before str
    the date before which you would ideally like the Oracle Cloud Infrastructure resource to be delivered to you.
    availabilityDomain String
    The name of the availability domain for which you want to request the Oracle Cloud Infrastructure resource.
    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"}
    demandSignalCatalogResourceId String
    The OCID of the corresponding demand signal catalog resource.
    demandSignalId String
    The OCID of the demand signal under which this item will be grouped.
    demandSignalNamespace String
    A query parameter to filter the list of demand signal details based on the namespace.
    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 resource request.
    notes String
    This field will serve as notes section for you. You can use this section to convey a message to Oracle Cloud Infrastructure regarding your resource request.
    occCustomerGroupId String
    The customer group ocid by which we would filter the list.
    quantity String
    The quantity of the resource that you want to demand from Oracle Cloud Infrastructure or return to OCI.
    region String
    The name of region for which you want to request the Oracle Cloud Infrastructure resource.
    requestType String
    The type of request (DEMAND or RETURN) made against a particular demand signal item.
    resourceName String
    A query parameter to filter the list of demand signal details based on the resource name.
    resourceProperties Map<String>
    A map of various properties associated with the Oracle Cloud Infrastructure resource.
    state String
    The current lifecycle state of the demand signal item.
    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 tenancy for which you want to request the Oracle Cloud Infrastructure resource for. This is an optional parameter.
    timeNeededBefore String
    the date before which you would ideally like the Oracle Cloud Infrastructure resource to be delivered to you.

    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