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

oci.CapacityManagement.InternalOccmDemandSignalDelivery

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v3.3.0 published on Thursday, Jul 17, 2025 by Pulumi

    This resource provides the Internal Occm Demand Signal Delivery resource in Oracle Cloud Infrastructure Capacity Management service.

    This is a post API which is used to create a demand signal delivery resource. operationId: CreateInternalOccmDemandSignalDelivery summary: A post call to create a demand signal delivery.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testInternalOccmDemandSignalDelivery = new oci.capacitymanagement.InternalOccmDemandSignalDelivery("test_internal_occm_demand_signal_delivery", {
        acceptedQuantity: internalOccmDemandSignalDeliveryAcceptedQuantity,
        compartmentId: compartmentId,
        demandSignalId: testDemandSignal.id,
        demandSignalItemId: testDemandSignalItem.id,
        occCustomerGroupId: testOccCustomerGroup.id,
        definedTags: {
            "foo-namespace.bar-key": "value",
        },
        freeformTags: {
            "bar-key": "value",
        },
        justification: internalOccmDemandSignalDeliveryJustification,
        notes: internalOccmDemandSignalDeliveryNotes,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_internal_occm_demand_signal_delivery = oci.capacity_management.InternalOccmDemandSignalDelivery("test_internal_occm_demand_signal_delivery",
        accepted_quantity=internal_occm_demand_signal_delivery_accepted_quantity,
        compartment_id=compartment_id,
        demand_signal_id=test_demand_signal["id"],
        demand_signal_item_id=test_demand_signal_item["id"],
        occ_customer_group_id=test_occ_customer_group["id"],
        defined_tags={
            "foo-namespace.bar-key": "value",
        },
        freeform_tags={
            "bar-key": "value",
        },
        justification=internal_occm_demand_signal_delivery_justification,
        notes=internal_occm_demand_signal_delivery_notes)
    
    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.NewInternalOccmDemandSignalDelivery(ctx, "test_internal_occm_demand_signal_delivery", &capacitymanagement.InternalOccmDemandSignalDeliveryArgs{
    			AcceptedQuantity:   pulumi.Any(internalOccmDemandSignalDeliveryAcceptedQuantity),
    			CompartmentId:      pulumi.Any(compartmentId),
    			DemandSignalId:     pulumi.Any(testDemandSignal.Id),
    			DemandSignalItemId: pulumi.Any(testDemandSignalItem.Id),
    			OccCustomerGroupId: pulumi.Any(testOccCustomerGroup.Id),
    			DefinedTags: pulumi.StringMap{
    				"foo-namespace.bar-key": pulumi.String("value"),
    			},
    			FreeformTags: pulumi.StringMap{
    				"bar-key": pulumi.String("value"),
    			},
    			Justification: pulumi.Any(internalOccmDemandSignalDeliveryJustification),
    			Notes:         pulumi.Any(internalOccmDemandSignalDeliveryNotes),
    		})
    		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 testInternalOccmDemandSignalDelivery = new Oci.CapacityManagement.InternalOccmDemandSignalDelivery("test_internal_occm_demand_signal_delivery", new()
        {
            AcceptedQuantity = internalOccmDemandSignalDeliveryAcceptedQuantity,
            CompartmentId = compartmentId,
            DemandSignalId = testDemandSignal.Id,
            DemandSignalItemId = testDemandSignalItem.Id,
            OccCustomerGroupId = testOccCustomerGroup.Id,
            DefinedTags = 
            {
                { "foo-namespace.bar-key", "value" },
            },
            FreeformTags = 
            {
                { "bar-key", "value" },
            },
            Justification = internalOccmDemandSignalDeliveryJustification,
            Notes = internalOccmDemandSignalDeliveryNotes,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.CapacityManagement.InternalOccmDemandSignalDelivery;
    import com.pulumi.oci.CapacityManagement.InternalOccmDemandSignalDeliveryArgs;
    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) {
            var testInternalOccmDemandSignalDelivery = new InternalOccmDemandSignalDelivery("testInternalOccmDemandSignalDelivery", InternalOccmDemandSignalDeliveryArgs.builder()
                .acceptedQuantity(internalOccmDemandSignalDeliveryAcceptedQuantity)
                .compartmentId(compartmentId)
                .demandSignalId(testDemandSignal.id())
                .demandSignalItemId(testDemandSignalItem.id())
                .occCustomerGroupId(testOccCustomerGroup.id())
                .definedTags(Map.of("foo-namespace.bar-key", "value"))
                .freeformTags(Map.of("bar-key", "value"))
                .justification(internalOccmDemandSignalDeliveryJustification)
                .notes(internalOccmDemandSignalDeliveryNotes)
                .build());
    
        }
    }
    
    resources:
      testInternalOccmDemandSignalDelivery:
        type: oci:CapacityManagement:InternalOccmDemandSignalDelivery
        name: test_internal_occm_demand_signal_delivery
        properties:
          acceptedQuantity: ${internalOccmDemandSignalDeliveryAcceptedQuantity}
          compartmentId: ${compartmentId}
          demandSignalId: ${testDemandSignal.id}
          demandSignalItemId: ${testDemandSignalItem.id}
          occCustomerGroupId: ${testOccCustomerGroup.id}
          definedTags:
            foo-namespace.bar-key: value
          freeformTags:
            bar-key: value
          justification: ${internalOccmDemandSignalDeliveryJustification}
          notes: ${internalOccmDemandSignalDeliveryNotes}
    

    Create InternalOccmDemandSignalDelivery Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new InternalOccmDemandSignalDelivery(name: string, args: InternalOccmDemandSignalDeliveryArgs, opts?: CustomResourceOptions);
    @overload
    def InternalOccmDemandSignalDelivery(resource_name: str,
                                         args: InternalOccmDemandSignalDeliveryArgs,
                                         opts: Optional[ResourceOptions] = None)
    
    @overload
    def InternalOccmDemandSignalDelivery(resource_name: str,
                                         opts: Optional[ResourceOptions] = None,
                                         accepted_quantity: Optional[str] = None,
                                         compartment_id: Optional[str] = None,
                                         demand_signal_id: Optional[str] = None,
                                         demand_signal_item_id: Optional[str] = None,
                                         occ_customer_group_id: Optional[str] = None,
                                         defined_tags: Optional[Mapping[str, str]] = None,
                                         freeform_tags: Optional[Mapping[str, str]] = None,
                                         justification: Optional[str] = None,
                                         lifecycle_details: Optional[str] = None,
                                         notes: Optional[str] = None)
    func NewInternalOccmDemandSignalDelivery(ctx *Context, name string, args InternalOccmDemandSignalDeliveryArgs, opts ...ResourceOption) (*InternalOccmDemandSignalDelivery, error)
    public InternalOccmDemandSignalDelivery(string name, InternalOccmDemandSignalDeliveryArgs args, CustomResourceOptions? opts = null)
    public InternalOccmDemandSignalDelivery(String name, InternalOccmDemandSignalDeliveryArgs args)
    public InternalOccmDemandSignalDelivery(String name, InternalOccmDemandSignalDeliveryArgs args, CustomResourceOptions options)
    
    type: oci:CapacityManagement:InternalOccmDemandSignalDelivery
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args InternalOccmDemandSignalDeliveryArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args InternalOccmDemandSignalDeliveryArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args InternalOccmDemandSignalDeliveryArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args InternalOccmDemandSignalDeliveryArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args InternalOccmDemandSignalDeliveryArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var internalOccmDemandSignalDeliveryResource = new Oci.CapacityManagement.InternalOccmDemandSignalDelivery("internalOccmDemandSignalDeliveryResource", new()
    {
        AcceptedQuantity = "string",
        CompartmentId = "string",
        DemandSignalId = "string",
        DemandSignalItemId = "string",
        OccCustomerGroupId = "string",
        DefinedTags = 
        {
            { "string", "string" },
        },
        FreeformTags = 
        {
            { "string", "string" },
        },
        Justification = "string",
        LifecycleDetails = "string",
        Notes = "string",
    });
    
    example, err := capacitymanagement.NewInternalOccmDemandSignalDelivery(ctx, "internalOccmDemandSignalDeliveryResource", &capacitymanagement.InternalOccmDemandSignalDeliveryArgs{
    	AcceptedQuantity:   pulumi.String("string"),
    	CompartmentId:      pulumi.String("string"),
    	DemandSignalId:     pulumi.String("string"),
    	DemandSignalItemId: pulumi.String("string"),
    	OccCustomerGroupId: pulumi.String("string"),
    	DefinedTags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	FreeformTags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Justification:    pulumi.String("string"),
    	LifecycleDetails: pulumi.String("string"),
    	Notes:            pulumi.String("string"),
    })
    
    var internalOccmDemandSignalDeliveryResource = new InternalOccmDemandSignalDelivery("internalOccmDemandSignalDeliveryResource", InternalOccmDemandSignalDeliveryArgs.builder()
        .acceptedQuantity("string")
        .compartmentId("string")
        .demandSignalId("string")
        .demandSignalItemId("string")
        .occCustomerGroupId("string")
        .definedTags(Map.of("string", "string"))
        .freeformTags(Map.of("string", "string"))
        .justification("string")
        .lifecycleDetails("string")
        .notes("string")
        .build());
    
    internal_occm_demand_signal_delivery_resource = oci.capacitymanagement.InternalOccmDemandSignalDelivery("internalOccmDemandSignalDeliveryResource",
        accepted_quantity="string",
        compartment_id="string",
        demand_signal_id="string",
        demand_signal_item_id="string",
        occ_customer_group_id="string",
        defined_tags={
            "string": "string",
        },
        freeform_tags={
            "string": "string",
        },
        justification="string",
        lifecycle_details="string",
        notes="string")
    
    const internalOccmDemandSignalDeliveryResource = new oci.capacitymanagement.InternalOccmDemandSignalDelivery("internalOccmDemandSignalDeliveryResource", {
        acceptedQuantity: "string",
        compartmentId: "string",
        demandSignalId: "string",
        demandSignalItemId: "string",
        occCustomerGroupId: "string",
        definedTags: {
            string: "string",
        },
        freeformTags: {
            string: "string",
        },
        justification: "string",
        lifecycleDetails: "string",
        notes: "string",
    });
    
    type: oci:CapacityManagement:InternalOccmDemandSignalDelivery
    properties:
        acceptedQuantity: string
        compartmentId: string
        definedTags:
            string: string
        demandSignalId: string
        demandSignalItemId: string
        freeformTags:
            string: string
        justification: string
        lifecycleDetails: string
        notes: string
        occCustomerGroupId: string
    

    InternalOccmDemandSignalDelivery Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The InternalOccmDemandSignalDelivery resource accepts the following input properties:

    AcceptedQuantity string
    (Updatable) The quantity of the resource that Oracle Cloud Infrastructure will supply to the customer.
    CompartmentId string
    The OCID of the tenancy from which the demand signal delivery resource is created.
    DemandSignalId string
    The OCID of the demand signal under which this delivery will be grouped.
    DemandSignalItemId string
    The OCID of the demand signal item corresponding to which this delivery is made.
    OccCustomerGroupId string

    The OCID of the corresponding customer group to which this demand signal delivery resource belongs to.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    DefinedTags Dictionary<string, string>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    FreeformTags Dictionary<string, string>
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    Justification string
    (Updatable) This field could be used by Oracle Cloud Infrastructure to communicate the reason for declining the request.
    LifecycleDetails string
    The enum values corresponding to the various states associated with the delivery resource.
    Notes string
    (Updatable) This field acts as a notes section for operators.
    AcceptedQuantity string
    (Updatable) The quantity of the resource that Oracle Cloud Infrastructure will supply to the customer.
    CompartmentId string
    The OCID of the tenancy from which the demand signal delivery resource is created.
    DemandSignalId string
    The OCID of the demand signal under which this delivery will be grouped.
    DemandSignalItemId string
    The OCID of the demand signal item corresponding to which this delivery is made.
    OccCustomerGroupId string

    The OCID of the corresponding customer group to which this demand signal delivery resource belongs to.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    DefinedTags map[string]string
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    FreeformTags map[string]string
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    Justification string
    (Updatable) This field could be used by Oracle Cloud Infrastructure to communicate the reason for declining the request.
    LifecycleDetails string
    The enum values corresponding to the various states associated with the delivery resource.
    Notes string
    (Updatable) This field acts as a notes section for operators.
    acceptedQuantity String
    (Updatable) The quantity of the resource that Oracle Cloud Infrastructure will supply to the customer.
    compartmentId String
    The OCID of the tenancy from which the demand signal delivery resource is created.
    demandSignalId String
    The OCID of the demand signal under which this delivery will be grouped.
    demandSignalItemId String
    The OCID of the demand signal item corresponding to which this delivery is made.
    occCustomerGroupId String

    The OCID of the corresponding customer group to which this demand signal delivery resource belongs to.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    definedTags Map<String,String>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    freeformTags Map<String,String>
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    justification String
    (Updatable) This field could be used by Oracle Cloud Infrastructure to communicate the reason for declining the request.
    lifecycleDetails String
    The enum values corresponding to the various states associated with the delivery resource.
    notes String
    (Updatable) This field acts as a notes section for operators.
    acceptedQuantity string
    (Updatable) The quantity of the resource that Oracle Cloud Infrastructure will supply to the customer.
    compartmentId string
    The OCID of the tenancy from which the demand signal delivery resource is created.
    demandSignalId string
    The OCID of the demand signal under which this delivery will be grouped.
    demandSignalItemId string
    The OCID of the demand signal item corresponding to which this delivery is made.
    occCustomerGroupId string

    The OCID of the corresponding customer group to which this demand signal delivery resource belongs to.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    definedTags {[key: string]: string}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    freeformTags {[key: string]: string}
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    justification string
    (Updatable) This field could be used by Oracle Cloud Infrastructure to communicate the reason for declining the request.
    lifecycleDetails string
    The enum values corresponding to the various states associated with the delivery resource.
    notes string
    (Updatable) This field acts as a notes section for operators.
    accepted_quantity str
    (Updatable) The quantity of the resource that Oracle Cloud Infrastructure will supply to the customer.
    compartment_id str
    The OCID of the tenancy from which the demand signal delivery resource is created.
    demand_signal_id str
    The OCID of the demand signal under which this delivery will be grouped.
    demand_signal_item_id str
    The OCID of the demand signal item corresponding to which this delivery is made.
    occ_customer_group_id str

    The OCID of the corresponding customer group to which this demand signal delivery resource belongs to.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    defined_tags Mapping[str, str]
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    freeform_tags Mapping[str, str]
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    justification str
    (Updatable) This field could be used by Oracle Cloud Infrastructure to communicate the reason for declining the request.
    lifecycle_details str
    The enum values corresponding to the various states associated with the delivery resource.
    notes str
    (Updatable) This field acts as a notes section for operators.
    acceptedQuantity String
    (Updatable) The quantity of the resource that Oracle Cloud Infrastructure will supply to the customer.
    compartmentId String
    The OCID of the tenancy from which the demand signal delivery resource is created.
    demandSignalId String
    The OCID of the demand signal under which this delivery will be grouped.
    demandSignalItemId String
    The OCID of the demand signal item corresponding to which this delivery is made.
    occCustomerGroupId String

    The OCID of the corresponding customer group to which this demand signal delivery resource belongs to.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    definedTags Map<String>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    freeformTags Map<String>
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    justification String
    (Updatable) This field could be used by Oracle Cloud Infrastructure to communicate the reason for declining the request.
    lifecycleDetails String
    The enum values corresponding to the various states associated with the delivery resource.
    notes String
    (Updatable) This field acts as a notes section for operators.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the InternalOccmDemandSignalDelivery resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed 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"}
    TimeDelivered 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.
    Id string
    The provider-assigned unique ID for this managed 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"}
    TimeDelivered 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.
    id String
    The provider-assigned unique ID for this managed 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"}
    timeDelivered 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.
    id string
    The provider-assigned unique ID for this managed 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"}
    timeDelivered 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.
    id str
    The provider-assigned unique ID for this managed 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"}
    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.
    id String
    The provider-assigned unique ID for this managed 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"}
    timeDelivered 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.

    Look up Existing InternalOccmDemandSignalDelivery Resource

    Get an existing InternalOccmDemandSignalDelivery resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: InternalOccmDemandSignalDeliveryState, opts?: CustomResourceOptions): InternalOccmDemandSignalDelivery
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            accepted_quantity: Optional[str] = None,
            compartment_id: Optional[str] = None,
            defined_tags: Optional[Mapping[str, str]] = None,
            demand_signal_id: Optional[str] = None,
            demand_signal_item_id: Optional[str] = None,
            freeform_tags: Optional[Mapping[str, str]] = None,
            justification: Optional[str] = None,
            lifecycle_details: Optional[str] = None,
            notes: Optional[str] = None,
            occ_customer_group_id: Optional[str] = None,
            state: Optional[str] = None,
            system_tags: Optional[Mapping[str, str]] = None,
            time_delivered: Optional[str] = None) -> InternalOccmDemandSignalDelivery
    func GetInternalOccmDemandSignalDelivery(ctx *Context, name string, id IDInput, state *InternalOccmDemandSignalDeliveryState, opts ...ResourceOption) (*InternalOccmDemandSignalDelivery, error)
    public static InternalOccmDemandSignalDelivery Get(string name, Input<string> id, InternalOccmDemandSignalDeliveryState? state, CustomResourceOptions? opts = null)
    public static InternalOccmDemandSignalDelivery get(String name, Output<String> id, InternalOccmDemandSignalDeliveryState state, CustomResourceOptions options)
    resources:  _:    type: oci:CapacityManagement:InternalOccmDemandSignalDelivery    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    AcceptedQuantity string
    (Updatable) The quantity of the resource that Oracle Cloud Infrastructure will supply to the customer.
    CompartmentId string
    The OCID of the tenancy from which the demand signal delivery resource is created.
    DefinedTags Dictionary<string, string>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    DemandSignalId string
    The OCID of the demand signal under which this delivery will be grouped.
    DemandSignalItemId string
    The OCID of the demand signal item corresponding to which this delivery is made.
    FreeformTags Dictionary<string, string>
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    Justification string
    (Updatable) This field could be used by Oracle Cloud Infrastructure to communicate the reason for declining the request.
    LifecycleDetails string
    The enum values corresponding to the various states associated with the delivery resource.
    Notes string
    (Updatable) This field acts as a notes section for operators.
    OccCustomerGroupId string

    The OCID of the corresponding customer group to which this demand signal delivery resource belongs to.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    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"}
    TimeDelivered 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.
    AcceptedQuantity string
    (Updatable) The quantity of the resource that Oracle Cloud Infrastructure will supply to the customer.
    CompartmentId string
    The OCID of the tenancy from which the demand signal delivery resource is created.
    DefinedTags map[string]string
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    DemandSignalId string
    The OCID of the demand signal under which this delivery will be grouped.
    DemandSignalItemId string
    The OCID of the demand signal item corresponding to which this delivery is made.
    FreeformTags map[string]string
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    Justification string
    (Updatable) This field could be used by Oracle Cloud Infrastructure to communicate the reason for declining the request.
    LifecycleDetails string
    The enum values corresponding to the various states associated with the delivery resource.
    Notes string
    (Updatable) This field acts as a notes section for operators.
    OccCustomerGroupId string

    The OCID of the corresponding customer group to which this demand signal delivery resource belongs to.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    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"}
    TimeDelivered 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.
    acceptedQuantity String
    (Updatable) The quantity of the resource that Oracle Cloud Infrastructure will supply to the customer.
    compartmentId String
    The OCID of the tenancy from which the demand signal delivery resource is created.
    definedTags Map<String,String>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    demandSignalId String
    The OCID of the demand signal under which this delivery will be grouped.
    demandSignalItemId String
    The OCID of the demand signal item corresponding to which this delivery is made.
    freeformTags Map<String,String>
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    justification String
    (Updatable) This field could be used by Oracle Cloud Infrastructure to communicate the reason for declining the request.
    lifecycleDetails String
    The enum values corresponding to the various states associated with the delivery resource.
    notes String
    (Updatable) This field acts as a notes section for operators.
    occCustomerGroupId String

    The OCID of the corresponding customer group to which this demand signal delivery resource belongs to.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    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"}
    timeDelivered 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.
    acceptedQuantity string
    (Updatable) The quantity of the resource that Oracle Cloud Infrastructure will supply to the customer.
    compartmentId string
    The OCID of the tenancy from which the demand signal delivery resource is created.
    definedTags {[key: string]: string}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    demandSignalId string
    The OCID of the demand signal under which this delivery will be grouped.
    demandSignalItemId string
    The OCID of the demand signal item corresponding to which this delivery is made.
    freeformTags {[key: string]: string}
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    justification string
    (Updatable) This field could be used by Oracle Cloud Infrastructure to communicate the reason for declining the request.
    lifecycleDetails string
    The enum values corresponding to the various states associated with the delivery resource.
    notes string
    (Updatable) This field acts as a notes section for operators.
    occCustomerGroupId string

    The OCID of the corresponding customer group to which this demand signal delivery resource belongs to.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    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"}
    timeDelivered 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
    (Updatable) The quantity of the resource that Oracle Cloud Infrastructure will supply to the customer.
    compartment_id str
    The OCID of the tenancy from which the demand signal delivery resource is created.
    defined_tags Mapping[str, str]
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    demand_signal_id str
    The OCID of the demand signal under which this delivery will be grouped.
    demand_signal_item_id str
    The OCID of the demand signal item corresponding to which this delivery is made.
    freeform_tags Mapping[str, str]
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    justification str
    (Updatable) This field could be used by Oracle Cloud Infrastructure to communicate the reason for declining the request.
    lifecycle_details str
    The enum values corresponding to the various states associated with the delivery resource.
    notes str
    (Updatable) This field acts as a notes section for operators.
    occ_customer_group_id str

    The OCID of the corresponding customer group to which this demand signal delivery resource belongs to.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    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"}
    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.
    acceptedQuantity String
    (Updatable) The quantity of the resource that Oracle Cloud Infrastructure will supply to the customer.
    compartmentId String
    The OCID of the tenancy from which the demand signal delivery resource is created.
    definedTags Map<String>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    demandSignalId String
    The OCID of the demand signal under which this delivery will be grouped.
    demandSignalItemId String
    The OCID of the demand signal item corresponding to which this delivery is made.
    freeformTags Map<String>
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    justification String
    (Updatable) This field could be used by Oracle Cloud Infrastructure to communicate the reason for declining the request.
    lifecycleDetails String
    The enum values corresponding to the various states associated with the delivery resource.
    notes String
    (Updatable) This field acts as a notes section for operators.
    occCustomerGroupId String

    The OCID of the corresponding customer group to which this demand signal delivery resource belongs to.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    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"}
    timeDelivered 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.

    Import

    InternalOccmDemandSignalDeliveries can be imported using the id, e.g.

    $ pulumi import oci:CapacityManagement/internalOccmDemandSignalDelivery:InternalOccmDemandSignalDelivery test_internal_occm_demand_signal_delivery "internal/occmDemandSignalDeliveries/{occmDemandSignalDeliveryId}"
    

    To learn more about importing existing cloud resources, see Importing resources.

    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