Oracle Cloud Infrastructure v3.3.0 published on Thursday, Jul 17, 2025 by Pulumi
oci.CapacityManagement.getInternalOccmDemandSignalItems
Explore with Pulumi AI
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:
- Compartment
Id string - The ocid of the compartment or tenancy in which resources are to be listed. This will also be used for authorization purposes.
- Occ
Customer stringGroup Id - The customer group ocid by which we would filter the list.
- Demand
Signal stringNamespace - A query parameter to filter the list of demand signal details based on the namespace.
- Filters
List<Get
Internal Occm Demand Signal Items Filter> - Occm
Demand stringSignal Id - A query parameter to filter the list of demand signal items based on a demand signal id.
- Resource
Name string - A query parameter to filter the list of demand signal details based on the resource name.
- Compartment
Id string - The ocid of the compartment or tenancy in which resources are to be listed. This will also be used for authorization purposes.
- Occ
Customer stringGroup Id - The customer group ocid by which we would filter the list.
- Demand
Signal stringNamespace - A query parameter to filter the list of demand signal details based on the namespace.
- Filters
[]Get
Internal Occm Demand Signal Items Filter - Occm
Demand stringSignal Id - A query parameter to filter the list of demand signal items based on a demand signal id.
- Resource
Name string - A query parameter to filter the list of demand signal details based on the resource name.
- compartment
Id String - The ocid of the compartment or tenancy in which resources are to be listed. This will also be used for authorization purposes.
- occ
Customer StringGroup Id - The customer group ocid by which we would filter the list.
- demand
Signal StringNamespace - A query parameter to filter the list of demand signal details based on the namespace.
- filters
List<Get
Internal Occm Demand Signal Items Filter> - occm
Demand StringSignal Id - A query parameter to filter the list of demand signal items based on a demand signal id.
- resource
Name String - A query parameter to filter the list of demand signal details based on the resource name.
- compartment
Id string - The ocid of the compartment or tenancy in which resources are to be listed. This will also be used for authorization purposes.
- occ
Customer stringGroup Id - The customer group ocid by which we would filter the list.
- demand
Signal stringNamespace - A query parameter to filter the list of demand signal details based on the namespace.
- filters
Get
Internal Occm Demand Signal Items Filter[] - occm
Demand stringSignal Id - A query parameter to filter the list of demand signal items based on a demand signal id.
- resource
Name 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_ strgroup_ id - The customer group ocid by which we would filter the list.
- demand_
signal_ strnamespace - A query parameter to filter the list of demand signal details based on the namespace.
- filters
Sequence[Get
Internal Occm Demand Signal Items Filter] - occm_
demand_ strsignal_ id - 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.
- compartment
Id String - The ocid of the compartment or tenancy in which resources are to be listed. This will also be used for authorization purposes.
- occ
Customer StringGroup Id - The customer group ocid by which we would filter the list.
- demand
Signal StringNamespace - A query parameter to filter the list of demand signal details based on the namespace.
- filters List<Property Map>
- occm
Demand StringSignal Id - A query parameter to filter the list of demand signal items based on a demand signal id.
- resource
Name 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:
- Compartment
Id 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.
- Internal
Occm List<GetDemand Signal Item Collections Internal Occm Demand Signal Items Internal Occm Demand Signal Item Collection> - The list of internal_occm_demand_signal_item_collection.
- Occ
Customer stringGroup Id - The OCID of the customer group in which the demand signal is created.
- Demand
Signal stringNamespace - The name of the Oracle Cloud Infrastructure service in consideration for demand signal submission. For example: COMPUTE, NETWORK, GPU etc.
- Filters
List<Get
Internal Occm Demand Signal Items Filter> - Occm
Demand stringSignal Id - Resource
Name string - The name of the Oracle Cloud Infrastructure resource that you want to request.
- Compartment
Id 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.
- Internal
Occm []GetDemand Signal Item Collections Internal Occm Demand Signal Items Internal Occm Demand Signal Item Collection - The list of internal_occm_demand_signal_item_collection.
- Occ
Customer stringGroup Id - The OCID of the customer group in which the demand signal is created.
- Demand
Signal stringNamespace - The name of the Oracle Cloud Infrastructure service in consideration for demand signal submission. For example: COMPUTE, NETWORK, GPU etc.
- Filters
[]Get
Internal Occm Demand Signal Items Filter - Occm
Demand stringSignal Id - Resource
Name string - The name of the Oracle Cloud Infrastructure resource that you want to request.
- compartment
Id 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.
- internal
Occm List<GetDemand Signal Item Collections Internal Occm Demand Signal Items Internal Occm Demand Signal Item Collection> - The list of internal_occm_demand_signal_item_collection.
- occ
Customer StringGroup Id - The OCID of the customer group in which the demand signal is created.
- demand
Signal StringNamespace - The name of the Oracle Cloud Infrastructure service in consideration for demand signal submission. For example: COMPUTE, NETWORK, GPU etc.
- filters
List<Get
Internal Occm Demand Signal Items Filter> - occm
Demand StringSignal Id - resource
Name String - The name of the Oracle Cloud Infrastructure resource that you want to request.
- compartment
Id 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.
- internal
Occm GetDemand Signal Item Collections Internal Occm Demand Signal Items Internal Occm Demand Signal Item Collection[] - The list of internal_occm_demand_signal_item_collection.
- occ
Customer stringGroup Id - The OCID of the customer group in which the demand signal is created.
- demand
Signal stringNamespace - The name of the Oracle Cloud Infrastructure service in consideration for demand signal submission. For example: COMPUTE, NETWORK, GPU etc.
- filters
Get
Internal Occm Demand Signal Items Filter[] - occm
Demand stringSignal Id - resource
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 demand signal item was created.
- id str
- The provider-assigned unique ID for this managed resource.
- internal_
occm_ Sequence[Getdemand_ signal_ item_ collections Internal Occm Demand Signal Items Internal Occm Demand Signal Item Collection] - The list of internal_occm_demand_signal_item_collection.
- occ_
customer_ strgroup_ id - The OCID of the customer group in which the demand signal is created.
- demand_
signal_ strnamespace - The name of the Oracle Cloud Infrastructure service in consideration for demand signal submission. For example: COMPUTE, NETWORK, GPU etc.
- filters
Sequence[Get
Internal Occm Demand Signal Items Filter] - occm_
demand_ strsignal_ id - resource_
name str - The name of the Oracle Cloud Infrastructure resource that you want to request.
- compartment
Id 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.
- internal
Occm List<Property Map>Demand Signal Item Collections - The list of internal_occm_demand_signal_item_collection.
- occ
Customer StringGroup Id - The OCID of the customer group in which the demand signal is created.
- demand
Signal StringNamespace - The name of the Oracle Cloud Infrastructure service in consideration for demand signal submission. For example: COMPUTE, NETWORK, GPU etc.
- filters List<Property Map>
- occm
Demand StringSignal Id - resource
Name String - The name of the Oracle Cloud Infrastructure resource that you want to request.
Supporting Types
GetInternalOccmDemandSignalItemsFilter
GetInternalOccmDemandSignalItemsInternalOccmDemandSignalItemCollection
- Items
List<Get
Internal Occm Demand Signal Items Internal Occm Demand Signal Item Collection Item> - An array of items containing detailed information about different resource demanded as part of a demand signal.
- Items
[]Get
Internal Occm Demand Signal Items Internal Occm Demand Signal Item Collection Item - An array of items containing detailed information about different resource demanded as part of a demand signal.
- items
List<Get
Internal Occm Demand Signal Items Internal Occm Demand Signal Item Collection Item> - An array of items containing detailed information about different resource demanded as part of a demand signal.
- items
Get
Internal Occm Demand Signal Items Internal Occm Demand Signal Item Collection Item[] - An array of items containing detailed information about different resource demanded as part of a demand signal.
- items
Sequence[Get
Internal Occm Demand Signal Items Internal Occm Demand Signal Item Collection Item] - 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
- Availability
Domain string - The name of the availability domain for which you want to request the Oracle Cloud Infrastructure resource.
- Compartment
Id string - The ocid of the compartment or tenancy in which resources are to be listed. This will also be used for authorization purposes.
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Demand
Signal stringCatalog Resource Id - The OCID of the corresponding demand signal catalog resource.
- Demand
Signal stringId - The OCID of the demand signal under which this item will be grouped.
- Demand
Signal stringNamespace - A query parameter to filter the list of demand signal details based on the namespace.
- 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.
- Occ
Customer stringGroup Id - 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.
- Request
Type string - The type of request (DEMAND or RETURN) made against a particular demand signal item.
- Resource
Name string - A query parameter to filter the list of demand signal details based on the resource name.
- Resource
Properties 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.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Target
Compartment stringId - The ocid of the tenancy for which you want to request the Oracle Cloud Infrastructure resource for. This is an optional parameter.
- Time
Needed stringBefore - the date before which you would ideally like the Oracle Cloud Infrastructure resource to be delivered to you.
- Availability
Domain string - The name of the availability domain for which you want to request the Oracle Cloud Infrastructure resource.
- Compartment
Id string - The ocid of the compartment or tenancy in which resources are to be listed. This will also be used for authorization purposes.
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Demand
Signal stringCatalog Resource Id - The OCID of the corresponding demand signal catalog resource.
- Demand
Signal stringId - The OCID of the demand signal under which this item will be grouped.
- Demand
Signal stringNamespace - A query parameter to filter the list of demand signal details based on the namespace.
- 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.
- Occ
Customer stringGroup Id - 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.
- Request
Type string - The type of request (DEMAND or RETURN) made against a particular demand signal item.
- Resource
Name string - A query parameter to filter the list of demand signal details based on the resource name.
- Resource
Properties 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.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Target
Compartment stringId - The ocid of the tenancy for which you want to request the Oracle Cloud Infrastructure resource for. This is an optional parameter.
- Time
Needed stringBefore - the date before which you would ideally like the Oracle Cloud Infrastructure resource to be delivered to you.
- availability
Domain String - The name of the availability domain for which you want to request the Oracle Cloud Infrastructure resource.
- compartment
Id String - The ocid of the compartment or tenancy in which resources are to be listed. This will also be used for authorization purposes.
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- demand
Signal StringCatalog Resource Id - The OCID of the corresponding demand signal catalog resource.
- demand
Signal StringId - The OCID of the demand signal under which this item will be grouped.
- demand
Signal StringNamespace - A query parameter to filter the list of demand signal details based on the namespace.
- 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.
- occ
Customer StringGroup Id - 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.
- request
Type String - The type of request (DEMAND or RETURN) made against a particular demand signal item.
- resource
Name String - A query parameter to filter the list of demand signal details based on the resource name.
- resource
Properties 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.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- target
Compartment StringId - The ocid of the tenancy for which you want to request the Oracle Cloud Infrastructure resource for. This is an optional parameter.
- time
Needed StringBefore - the date before which you would ideally like the Oracle Cloud Infrastructure resource to be delivered to you.
- availability
Domain string - The name of the availability domain for which you want to request the Oracle Cloud Infrastructure resource.
- compartment
Id string - The ocid of the compartment or tenancy in which resources are to be listed. This will also be used for authorization purposes.
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- demand
Signal stringCatalog Resource Id - The OCID of the corresponding demand signal catalog resource.
- demand
Signal stringId - The OCID of the demand signal under which this item will be grouped.
- demand
Signal stringNamespace - A query parameter to filter the list of demand signal details based on the namespace.
- {[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.
- occ
Customer stringGroup Id - 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.
- request
Type string - The type of request (DEMAND or RETURN) made against a particular demand signal item.
- resource
Name string - A query parameter to filter the list of demand signal details based on the resource name.
- resource
Properties {[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.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- target
Compartment stringId - The ocid of the tenancy for which you want to request the Oracle Cloud Infrastructure resource for. This is an optional parameter.
- time
Needed stringBefore - 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.
- 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_ strcatalog_ resource_ id - The OCID of the corresponding demand signal catalog resource.
- demand_
signal_ strid - The OCID of the demand signal under which this item will be grouped.
- demand_
signal_ strnamespace - A query parameter to filter the list of demand signal details based on the namespace.
- 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_ strgroup_ id - 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.
- 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_ strid - The ocid of the tenancy for which you want to request the Oracle Cloud Infrastructure resource for. This is an optional parameter.
- time_
needed_ strbefore - the date before which you would ideally like the Oracle Cloud Infrastructure resource to be delivered to you.
- availability
Domain String - The name of the availability domain for which you want to request the Oracle Cloud Infrastructure resource.
- compartment
Id String - The ocid of the compartment or tenancy in which resources are to be listed. This will also be used for authorization purposes.
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- demand
Signal StringCatalog Resource Id - The OCID of the corresponding demand signal catalog resource.
- demand
Signal StringId - The OCID of the demand signal under which this item will be grouped.
- demand
Signal StringNamespace - A query parameter to filter the list of demand signal details based on the namespace.
- 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.
- occ
Customer StringGroup Id - 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.
- request
Type String - The type of request (DEMAND or RETURN) made against a particular demand signal item.
- resource
Name String - A query parameter to filter the list of demand signal details based on the resource name.
- resource
Properties 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.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- target
Compartment StringId - The ocid of the tenancy for which you want to request the Oracle Cloud Infrastructure resource for. This is an optional parameter.
- time
Needed StringBefore - 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.