Oracle Cloud Infrastructure v3.3.0 published on Thursday, Jul 17, 2025 by Pulumi
oci.CapacityManagement.getInternalOccmDemandSignalDeliveries
Explore with Pulumi AI
This data source provides the list of Internal Occm Demand Signal Deliveries in Oracle Cloud Infrastructure Capacity Management service.
This GET call is used to list all demand signal delivery resources within the customer group passed as a query parameter.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testInternalOccmDemandSignalDeliveries = oci.CapacityManagement.getInternalOccmDemandSignalDeliveries({
compartmentId: compartmentId,
occCustomerGroupId: testOccCustomerGroup.id,
id: internalOccmDemandSignalDeliveryId,
occmDemandSignalItemId: testOccmDemandSignalItem.id,
});
import pulumi
import pulumi_oci as oci
test_internal_occm_demand_signal_deliveries = oci.CapacityManagement.get_internal_occm_demand_signal_deliveries(compartment_id=compartment_id,
occ_customer_group_id=test_occ_customer_group["id"],
id=internal_occm_demand_signal_delivery_id,
occm_demand_signal_item_id=test_occm_demand_signal_item["id"])
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.GetInternalOccmDemandSignalDeliveries(ctx, &capacitymanagement.GetInternalOccmDemandSignalDeliveriesArgs{
CompartmentId: compartmentId,
OccCustomerGroupId: testOccCustomerGroup.Id,
Id: pulumi.StringRef(internalOccmDemandSignalDeliveryId),
OccmDemandSignalItemId: pulumi.StringRef(testOccmDemandSignalItem.Id),
}, 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 testInternalOccmDemandSignalDeliveries = Oci.CapacityManagement.GetInternalOccmDemandSignalDeliveries.Invoke(new()
{
CompartmentId = compartmentId,
OccCustomerGroupId = testOccCustomerGroup.Id,
Id = internalOccmDemandSignalDeliveryId,
OccmDemandSignalItemId = testOccmDemandSignalItem.Id,
});
});
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.GetInternalOccmDemandSignalDeliveriesArgs;
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 testInternalOccmDemandSignalDeliveries = CapacityManagementFunctions.getInternalOccmDemandSignalDeliveries(GetInternalOccmDemandSignalDeliveriesArgs.builder()
.compartmentId(compartmentId)
.occCustomerGroupId(testOccCustomerGroup.id())
.id(internalOccmDemandSignalDeliveryId)
.occmDemandSignalItemId(testOccmDemandSignalItem.id())
.build());
}
}
variables:
testInternalOccmDemandSignalDeliveries:
fn::invoke:
function: oci:CapacityManagement:getInternalOccmDemandSignalDeliveries
arguments:
compartmentId: ${compartmentId}
occCustomerGroupId: ${testOccCustomerGroup.id}
id: ${internalOccmDemandSignalDeliveryId}
occmDemandSignalItemId: ${testOccmDemandSignalItem.id}
Using getInternalOccmDemandSignalDeliveries
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 getInternalOccmDemandSignalDeliveries(args: GetInternalOccmDemandSignalDeliveriesArgs, opts?: InvokeOptions): Promise<GetInternalOccmDemandSignalDeliveriesResult>
function getInternalOccmDemandSignalDeliveriesOutput(args: GetInternalOccmDemandSignalDeliveriesOutputArgs, opts?: InvokeOptions): Output<GetInternalOccmDemandSignalDeliveriesResult>
def get_internal_occm_demand_signal_deliveries(compartment_id: Optional[str] = None,
filters: Optional[Sequence[GetInternalOccmDemandSignalDeliveriesFilter]] = None,
id: Optional[str] = None,
occ_customer_group_id: Optional[str] = None,
occm_demand_signal_item_id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetInternalOccmDemandSignalDeliveriesResult
def get_internal_occm_demand_signal_deliveries_output(compartment_id: Optional[pulumi.Input[str]] = None,
filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetInternalOccmDemandSignalDeliveriesFilterArgs]]]] = None,
id: Optional[pulumi.Input[str]] = None,
occ_customer_group_id: Optional[pulumi.Input[str]] = None,
occm_demand_signal_item_id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetInternalOccmDemandSignalDeliveriesResult]
func GetInternalOccmDemandSignalDeliveries(ctx *Context, args *GetInternalOccmDemandSignalDeliveriesArgs, opts ...InvokeOption) (*GetInternalOccmDemandSignalDeliveriesResult, error)
func GetInternalOccmDemandSignalDeliveriesOutput(ctx *Context, args *GetInternalOccmDemandSignalDeliveriesOutputArgs, opts ...InvokeOption) GetInternalOccmDemandSignalDeliveriesResultOutput
> Note: This function is named GetInternalOccmDemandSignalDeliveries
in the Go SDK.
public static class GetInternalOccmDemandSignalDeliveries
{
public static Task<GetInternalOccmDemandSignalDeliveriesResult> InvokeAsync(GetInternalOccmDemandSignalDeliveriesArgs args, InvokeOptions? opts = null)
public static Output<GetInternalOccmDemandSignalDeliveriesResult> Invoke(GetInternalOccmDemandSignalDeliveriesInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetInternalOccmDemandSignalDeliveriesResult> getInternalOccmDemandSignalDeliveries(GetInternalOccmDemandSignalDeliveriesArgs args, InvokeOptions options)
public static Output<GetInternalOccmDemandSignalDeliveriesResult> getInternalOccmDemandSignalDeliveries(GetInternalOccmDemandSignalDeliveriesArgs args, InvokeOptions options)
fn::invoke:
function: oci:CapacityManagement/getInternalOccmDemandSignalDeliveries:getInternalOccmDemandSignalDeliveries
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.
- Filters
List<Get
Internal Occm Demand Signal Deliveries Filter> - Id string
- A query parameter to filter the list of demand signals based on it's OCID.
- Occm
Demand stringSignal Item Id - A query parameter to filter the list of demand signal items based on it's OCID.
- 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.
- Filters
[]Get
Internal Occm Demand Signal Deliveries Filter - Id string
- A query parameter to filter the list of demand signals based on it's OCID.
- Occm
Demand stringSignal Item Id - A query parameter to filter the list of demand signal items based on it's OCID.
- 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.
- filters
List<Get
Internal Occm Demand Signal Deliveries Filter> - id String
- A query parameter to filter the list of demand signals based on it's OCID.
- occm
Demand StringSignal Item Id - A query parameter to filter the list of demand signal items based on it's OCID.
- 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.
- filters
Get
Internal Occm Demand Signal Deliveries Filter[] - id string
- A query parameter to filter the list of demand signals based on it's OCID.
- occm
Demand stringSignal Item Id - A query parameter to filter the list of demand signal items based on it's OCID.
- 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.
- filters
Sequence[Get
Internal Occm Demand Signal Deliveries Filter] - id str
- A query parameter to filter the list of demand signals based on it's OCID.
- occm_
demand_ strsignal_ item_ id - A query parameter to filter the list of demand signal items based on it's OCID.
- 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.
- filters List<Property Map>
- id String
- A query parameter to filter the list of demand signals based on it's OCID.
- occm
Demand StringSignal Item Id - A query parameter to filter the list of demand signal items based on it's OCID.
getInternalOccmDemandSignalDeliveries Result
The following output properties are available:
- Compartment
Id string - The OCID of the tenancy from which the demand signal delivery resource is created.
- Internal
Occm List<GetDemand Signal Delivery Collections Internal Occm Demand Signal Deliveries Internal Occm Demand Signal Delivery Collection> - The list of internal_occm_demand_signal_delivery_collection.
- Occ
Customer stringGroup Id - The OCID of the corresponding customer group to which this demand signal delivery resource belongs to.
- Filters
List<Get
Internal Occm Demand Signal Deliveries Filter> - Id string
- The OCID of this demand signal delivery resource.
- Occm
Demand stringSignal Item Id
- Compartment
Id string - The OCID of the tenancy from which the demand signal delivery resource is created.
- Internal
Occm []GetDemand Signal Delivery Collections Internal Occm Demand Signal Deliveries Internal Occm Demand Signal Delivery Collection - The list of internal_occm_demand_signal_delivery_collection.
- Occ
Customer stringGroup Id - The OCID of the corresponding customer group to which this demand signal delivery resource belongs to.
- Filters
[]Get
Internal Occm Demand Signal Deliveries Filter - Id string
- The OCID of this demand signal delivery resource.
- Occm
Demand stringSignal Item Id
- compartment
Id String - The OCID of the tenancy from which the demand signal delivery resource is created.
- internal
Occm List<GetDemand Signal Delivery Collections Internal Occm Demand Signal Deliveries Internal Occm Demand Signal Delivery Collection> - The list of internal_occm_demand_signal_delivery_collection.
- occ
Customer StringGroup Id - The OCID of the corresponding customer group to which this demand signal delivery resource belongs to.
- filters
List<Get
Internal Occm Demand Signal Deliveries Filter> - id String
- The OCID of this demand signal delivery resource.
- occm
Demand StringSignal Item Id
- compartment
Id string - The OCID of the tenancy from which the demand signal delivery resource is created.
- internal
Occm GetDemand Signal Delivery Collections Internal Occm Demand Signal Deliveries Internal Occm Demand Signal Delivery Collection[] - The list of internal_occm_demand_signal_delivery_collection.
- occ
Customer stringGroup Id - The OCID of the corresponding customer group to which this demand signal delivery resource belongs to.
- filters
Get
Internal Occm Demand Signal Deliveries Filter[] - id string
- The OCID of this demand signal delivery resource.
- occm
Demand stringSignal Item Id
- compartment_
id str - The OCID of the tenancy from which the demand signal delivery resource is created.
- internal_
occm_ Sequence[Getdemand_ signal_ delivery_ collections Internal Occm Demand Signal Deliveries Internal Occm Demand Signal Delivery Collection] - The list of internal_occm_demand_signal_delivery_collection.
- occ_
customer_ strgroup_ id - The OCID of the corresponding customer group to which this demand signal delivery resource belongs to.
- filters
Sequence[Get
Internal Occm Demand Signal Deliveries Filter] - id str
- The OCID of this demand signal delivery resource.
- occm_
demand_ strsignal_ item_ id
- compartment
Id String - The OCID of the tenancy from which the demand signal delivery resource is created.
- internal
Occm List<Property Map>Demand Signal Delivery Collections - The list of internal_occm_demand_signal_delivery_collection.
- occ
Customer StringGroup Id - The OCID of the corresponding customer group to which this demand signal delivery resource belongs to.
- filters List<Property Map>
- id String
- The OCID of this demand signal delivery resource.
- occm
Demand StringSignal Item Id
Supporting Types
GetInternalOccmDemandSignalDeliveriesFilter
GetInternalOccmDemandSignalDeliveriesInternalOccmDemandSignalDeliveryCollection
GetInternalOccmDemandSignalDeliveriesInternalOccmDemandSignalDeliveryCollectionItem
- Accepted
Quantity string - The quantity of the resource that Oracle Cloud Infrastructure will supply to the customer.
- 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 stringId - The OCID of the demand signal under which this delivery will be grouped.
- Demand
Signal stringItem Id - The OCID of the demand signal item corresponding to which this delivery is made.
- 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
- A query parameter to filter the list of demand signals based on it's OCID.
- Justification string
- This field could be used by Oracle Cloud Infrastructure to communicate the reason for accepting or declining the request.
- Lifecycle
Details string - The enum values corresponding to the various states associated with the delivery resource.
- Notes string
- This field acts as a notes section for operators.
- Occ
Customer stringGroup Id - The customer group ocid by which we would filter the list.
- State string
- The current lifecycle state of the resource.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Delivered string - The date on which the Oracle Cloud Infrastructure delivered the resource to the customers. The default value for this will be the corresponding demand signal item resource's need by date.
- Accepted
Quantity string - The quantity of the resource that Oracle Cloud Infrastructure will supply to the customer.
- 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 stringId - The OCID of the demand signal under which this delivery will be grouped.
- Demand
Signal stringItem Id - The OCID of the demand signal item corresponding to which this delivery is made.
- 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
- A query parameter to filter the list of demand signals based on it's OCID.
- Justification string
- This field could be used by Oracle Cloud Infrastructure to communicate the reason for accepting or declining the request.
- Lifecycle
Details string - The enum values corresponding to the various states associated with the delivery resource.
- Notes string
- This field acts as a notes section for operators.
- Occ
Customer stringGroup Id - The customer group ocid by which we would filter the list.
- State string
- The current lifecycle state of the resource.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Delivered string - The date on which the Oracle Cloud Infrastructure delivered the resource to the customers. The default value for this will be the corresponding demand signal item resource's need by date.
- accepted
Quantity String - The quantity of the resource that Oracle Cloud Infrastructure will supply to the customer.
- 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 StringId - The OCID of the demand signal under which this delivery will be grouped.
- demand
Signal StringItem Id - The OCID of the demand signal item corresponding to which this delivery is made.
- 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
- A query parameter to filter the list of demand signals based on it's OCID.
- justification String
- This field could be used by Oracle Cloud Infrastructure to communicate the reason for accepting or declining the request.
- lifecycle
Details String - The enum values corresponding to the various states associated with the delivery resource.
- notes String
- This field acts as a notes section for operators.
- occ
Customer StringGroup Id - The customer group ocid by which we would filter the list.
- state String
- The current lifecycle state of the resource.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Delivered String - The date on which the Oracle Cloud Infrastructure delivered the resource to the customers. The default value for this will be the corresponding demand signal item resource's need by date.
- accepted
Quantity string - The quantity of the resource that Oracle Cloud Infrastructure will supply to the customer.
- 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 stringId - The OCID of the demand signal under which this delivery will be grouped.
- demand
Signal stringItem Id - The OCID of the demand signal item corresponding to which this delivery is made.
- {[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
- A query parameter to filter the list of demand signals based on it's OCID.
- justification string
- This field could be used by Oracle Cloud Infrastructure to communicate the reason for accepting or declining the request.
- lifecycle
Details string - The enum values corresponding to the various states associated with the delivery resource.
- notes string
- This field acts as a notes section for operators.
- occ
Customer stringGroup Id - The customer group ocid by which we would filter the list.
- state string
- The current lifecycle state of the resource.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Delivered string - The date on which the Oracle Cloud Infrastructure delivered the resource to the customers. The default value for this will be the corresponding demand signal item resource's need by date.
- accepted_
quantity str - The quantity of the resource that Oracle Cloud Infrastructure will supply to the customer.
- 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_ strid - The OCID of the demand signal under which this delivery will be grouped.
- demand_
signal_ stritem_ id - The OCID of the demand signal item corresponding to which this delivery is made.
- 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
- A query parameter to filter the list of demand signals based on it's OCID.
- justification str
- This field could be used by Oracle Cloud Infrastructure to communicate the reason for accepting or declining the request.
- lifecycle_
details str - The enum values corresponding to the various states associated with the delivery resource.
- notes str
- This field acts as a notes section for operators.
- occ_
customer_ strgroup_ id - The customer group ocid by which we would filter the list.
- state str
- The current lifecycle state of the resource.
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time_
delivered str - The date on which the Oracle Cloud Infrastructure delivered the resource to the customers. The default value for this will be the corresponding demand signal item resource's need by date.
- accepted
Quantity String - The quantity of the resource that Oracle Cloud Infrastructure will supply to the customer.
- 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 StringId - The OCID of the demand signal under which this delivery will be grouped.
- demand
Signal StringItem Id - The OCID of the demand signal item corresponding to which this delivery is made.
- 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
- A query parameter to filter the list of demand signals based on it's OCID.
- justification String
- This field could be used by Oracle Cloud Infrastructure to communicate the reason for accepting or declining the request.
- lifecycle
Details String - The enum values corresponding to the various states associated with the delivery resource.
- notes String
- This field acts as a notes section for operators.
- occ
Customer StringGroup Id - The customer group ocid by which we would filter the list.
- state String
- The current lifecycle state of the resource.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Delivered String - The date on which the Oracle Cloud Infrastructure delivered the resource to the customers. The default value for this will be the corresponding demand signal item resource's need by date.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.