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

oci.CapacityManagement.getOccmDemandSignalItems

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

    This 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 testOccmDemandSignalItems = oci.CapacityManagement.getOccmDemandSignalItems({
        compartmentId: compartmentId,
        demandSignalNamespace: occmDemandSignalItemDemandSignalNamespace,
        occmDemandSignalId: testOccmDemandSignal.id,
        resourceName: testResource.name,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_occm_demand_signal_items = oci.CapacityManagement.get_occm_demand_signal_items(compartment_id=compartment_id,
        demand_signal_namespace=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.GetOccmDemandSignalItems(ctx, &capacitymanagement.GetOccmDemandSignalItemsArgs{
    			CompartmentId:         compartmentId,
    			DemandSignalNamespace: pulumi.StringRef(occmDemandSignalItemDemandSignalNamespace),
    			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 testOccmDemandSignalItems = Oci.CapacityManagement.GetOccmDemandSignalItems.Invoke(new()
        {
            CompartmentId = compartmentId,
            DemandSignalNamespace = occmDemandSignalItemDemandSignalNamespace,
            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.GetOccmDemandSignalItemsArgs;
    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 testOccmDemandSignalItems = CapacityManagementFunctions.getOccmDemandSignalItems(GetOccmDemandSignalItemsArgs.builder()
                .compartmentId(compartmentId)
                .demandSignalNamespace(occmDemandSignalItemDemandSignalNamespace)
                .occmDemandSignalId(testOccmDemandSignal.id())
                .resourceName(testResource.name())
                .build());
    
        }
    }
    
    variables:
      testOccmDemandSignalItems:
        fn::invoke:
          function: oci:CapacityManagement:getOccmDemandSignalItems
          arguments:
            compartmentId: ${compartmentId}
            demandSignalNamespace: ${occmDemandSignalItemDemandSignalNamespace}
            occmDemandSignalId: ${testOccmDemandSignal.id}
            resourceName: ${testResource.name}
    

    Using getOccmDemandSignalItems

    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 getOccmDemandSignalItems(args: GetOccmDemandSignalItemsArgs, opts?: InvokeOptions): Promise<GetOccmDemandSignalItemsResult>
    function getOccmDemandSignalItemsOutput(args: GetOccmDemandSignalItemsOutputArgs, opts?: InvokeOptions): Output<GetOccmDemandSignalItemsResult>
    def get_occm_demand_signal_items(compartment_id: Optional[str] = None,
                                     demand_signal_namespace: Optional[str] = None,
                                     filters: Optional[Sequence[GetOccmDemandSignalItemsFilter]] = None,
                                     occm_demand_signal_id: Optional[str] = None,
                                     resource_name: Optional[str] = None,
                                     opts: Optional[InvokeOptions] = None) -> GetOccmDemandSignalItemsResult
    def get_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[GetOccmDemandSignalItemsFilterArgs]]]] = None,
                                     occm_demand_signal_id: Optional[pulumi.Input[str]] = None,
                                     resource_name: Optional[pulumi.Input[str]] = None,
                                     opts: Optional[InvokeOptions] = None) -> Output[GetOccmDemandSignalItemsResult]
    func GetOccmDemandSignalItems(ctx *Context, args *GetOccmDemandSignalItemsArgs, opts ...InvokeOption) (*GetOccmDemandSignalItemsResult, error)
    func GetOccmDemandSignalItemsOutput(ctx *Context, args *GetOccmDemandSignalItemsOutputArgs, opts ...InvokeOption) GetOccmDemandSignalItemsResultOutput

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

    public static class GetOccmDemandSignalItems 
    {
        public static Task<GetOccmDemandSignalItemsResult> InvokeAsync(GetOccmDemandSignalItemsArgs args, InvokeOptions? opts = null)
        public static Output<GetOccmDemandSignalItemsResult> Invoke(GetOccmDemandSignalItemsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetOccmDemandSignalItemsResult> getOccmDemandSignalItems(GetOccmDemandSignalItemsArgs args, InvokeOptions options)
    public static Output<GetOccmDemandSignalItemsResult> getOccmDemandSignalItems(GetOccmDemandSignalItemsArgs args, InvokeOptions options)
    
    fn::invoke:
      function: oci:CapacityManagement/getOccmDemandSignalItems:getOccmDemandSignalItems
      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 details based on the namespace.
    Filters List<GetOccmDemandSignalItemsFilter>
    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.
    DemandSignalNamespace string
    A query parameter to filter the list of demand signal details based on the namespace.
    Filters []GetOccmDemandSignalItemsFilter
    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.
    demandSignalNamespace String
    A query parameter to filter the list of demand signal details based on the namespace.
    filters List<GetOccmDemandSignalItemsFilter>
    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.
    demandSignalNamespace string
    A query parameter to filter the list of demand signal details based on the namespace.
    filters GetOccmDemandSignalItemsFilter[]
    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.
    demand_signal_namespace str
    A query parameter to filter the list of demand signal details based on the namespace.
    filters Sequence[GetOccmDemandSignalItemsFilter]
    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.
    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.

    getOccmDemandSignalItems 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.
    OccmDemandSignalItemCollections List<GetOccmDemandSignalItemsOccmDemandSignalItemCollection>
    The list of occm_demand_signal_item_collection.
    DemandSignalNamespace string
    The name of the Oracle Cloud Infrastructure service in consideration for demand signal submission. For example: COMPUTE, NETWORK, GPU etc.
    Filters List<GetOccmDemandSignalItemsFilter>
    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.
    OccmDemandSignalItemCollections []GetOccmDemandSignalItemsOccmDemandSignalItemCollection
    The list of occm_demand_signal_item_collection.
    DemandSignalNamespace string
    The name of the Oracle Cloud Infrastructure service in consideration for demand signal submission. For example: COMPUTE, NETWORK, GPU etc.
    Filters []GetOccmDemandSignalItemsFilter
    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.
    occmDemandSignalItemCollections List<GetOccmDemandSignalItemsOccmDemandSignalItemCollection>
    The list of occm_demand_signal_item_collection.
    demandSignalNamespace String
    The name of the Oracle Cloud Infrastructure service in consideration for demand signal submission. For example: COMPUTE, NETWORK, GPU etc.
    filters List<GetOccmDemandSignalItemsFilter>
    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.
    occmDemandSignalItemCollections GetOccmDemandSignalItemsOccmDemandSignalItemCollection[]
    The list of occm_demand_signal_item_collection.
    demandSignalNamespace string
    The name of the Oracle Cloud Infrastructure service in consideration for demand signal submission. For example: COMPUTE, NETWORK, GPU etc.
    filters GetOccmDemandSignalItemsFilter[]
    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.
    occm_demand_signal_item_collections Sequence[GetOccmDemandSignalItemsOccmDemandSignalItemCollection]
    The list of occm_demand_signal_item_collection.
    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[GetOccmDemandSignalItemsFilter]
    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.
    occmDemandSignalItemCollections List<Property Map>
    The list of occm_demand_signal_item_collection.
    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

    GetOccmDemandSignalItemsFilter

    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

    GetOccmDemandSignalItemsOccmDemandSignalItemCollection

    GetOccmDemandSignalItemsOccmDemandSignalItemCollectionItem

    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"}
    DemandQuantity string
    The quantity of the resource that you want to demand from OCI.
    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 item.
    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.
    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 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 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"}
    DemandQuantity string
    The quantity of the resource that you want to demand from OCI.
    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 item.
    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.
    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 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 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"}
    demandQuantity String
    The quantity of the resource that you want to demand from OCI.
    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 item.
    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.
    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 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 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"}
    demandQuantity string
    The quantity of the resource that you want to demand from OCI.
    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 item.
    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.
    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 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 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_quantity str
    The quantity of the resource that you want to demand from OCI.
    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 item.
    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.
    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 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 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"}
    demandQuantity String
    The quantity of the resource that you want to demand from OCI.
    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 item.
    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.
    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 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 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