oci.CapacityManagement.InternalOccmDemandSignalDelivery
Explore with Pulumi AI
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:
- Accepted
Quantity string - (Updatable) The quantity of the resource that Oracle Cloud Infrastructure will supply to the customer.
- Compartment
Id string - The OCID of the tenancy from which the demand signal delivery resource is created.
- 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.
- Occ
Customer stringGroup Id 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
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- 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.
- Lifecycle
Details 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 string - (Updatable) The quantity of the resource that Oracle Cloud Infrastructure will supply to the customer.
- Compartment
Id string - The OCID of the tenancy from which the demand signal delivery resource is created.
- 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.
- Occ
Customer stringGroup Id 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
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- 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.
- Lifecycle
Details 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 String - (Updatable) The quantity of the resource that Oracle Cloud Infrastructure will supply to the customer.
- compartment
Id String - The OCID of the tenancy from which the demand signal delivery resource is created.
- 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.
- occ
Customer StringGroup Id 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
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- 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.
- lifecycle
Details 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 string - (Updatable) The quantity of the resource that Oracle Cloud Infrastructure will supply to the customer.
- compartment
Id string - The OCID of the tenancy from which the demand signal delivery resource is created.
- 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.
- occ
Customer stringGroup Id 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
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- {[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.
- lifecycle
Details 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_ 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.
- occ_
customer_ strgroup_ id 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
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- 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.
- accepted
Quantity String - (Updatable) The quantity of the resource that Oracle Cloud Infrastructure will supply to the customer.
- compartment
Id String - The OCID of the tenancy from which the demand signal delivery resource is created.
- 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.
- occ
Customer StringGroup Id 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
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- 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.
- lifecycle
Details 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.
- 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.
- Id string
- The provider-assigned unique ID for this managed resource.
- 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.
- id String
- The provider-assigned unique ID for this managed resource.
- 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.
- id string
- The provider-assigned unique ID for this managed resource.
- 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.
- id str
- The provider-assigned unique ID for this managed resource.
- 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.
- id String
- The provider-assigned unique ID for this managed resource.
- 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.
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.
- Accepted
Quantity string - (Updatable) The quantity of the resource that Oracle Cloud Infrastructure will supply to the customer.
- Compartment
Id string - The OCID of the tenancy from which the demand signal delivery resource is created.
- Dictionary<string, string>
- (Updatable) 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>
- (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.
- Lifecycle
Details 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.
- Occ
Customer stringGroup Id 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.
- 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 - (Updatable) The quantity of the resource that Oracle Cloud Infrastructure will supply to the customer.
- Compartment
Id string - The OCID of the tenancy from which the demand signal delivery resource is created.
- map[string]string
- (Updatable) 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
- (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.
- Lifecycle
Details 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.
- Occ
Customer stringGroup Id 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.
- 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 - (Updatable) The quantity of the resource that Oracle Cloud Infrastructure will supply to the customer.
- compartment
Id String - The OCID of the tenancy from which the demand signal delivery resource is created.
- Map<String,String>
- (Updatable) 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>
- (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.
- lifecycle
Details 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.
- occ
Customer StringGroup Id 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.
- 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 - (Updatable) The quantity of the resource that Oracle Cloud Infrastructure will supply to the customer.
- compartment
Id string - The OCID of the tenancy from which the demand signal delivery resource is created.
- {[key: string]: string}
- (Updatable) 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}
- (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.
- lifecycle
Details 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.
- occ
Customer stringGroup Id 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.
- {[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 - (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.
- 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_ 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]
- (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_ strgroup_ id 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.
- 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 - (Updatable) The quantity of the resource that Oracle Cloud Infrastructure will supply to the customer.
- compartment
Id String - The OCID of the tenancy from which the demand signal delivery resource is created.
- Map<String>
- (Updatable) 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>
- (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.
- lifecycle
Details 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.
- occ
Customer StringGroup Id 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.
- 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.
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.