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

oci.CapacityManagement.InternalOccmDemandSignal

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

    This is a internal PUT API which shall be used to update the metadata of the demand signal.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testInternalOccmDemandSignal = new oci.capacitymanagement.InternalOccmDemandSignal("test_internal_occm_demand_signal", {
        occmDemandSignalId: testOccmDemandSignal.id,
        lifecycleDetails: internalOccmDemandSignalLifecycleDetails,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_internal_occm_demand_signal = oci.capacity_management.InternalOccmDemandSignal("test_internal_occm_demand_signal",
        occm_demand_signal_id=test_occm_demand_signal["id"],
        lifecycle_details=internal_occm_demand_signal_lifecycle_details)
    
    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.NewInternalOccmDemandSignal(ctx, "test_internal_occm_demand_signal", &capacitymanagement.InternalOccmDemandSignalArgs{
    			OccmDemandSignalId: pulumi.Any(testOccmDemandSignal.Id),
    			LifecycleDetails:   pulumi.Any(internalOccmDemandSignalLifecycleDetails),
    		})
    		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 testInternalOccmDemandSignal = new Oci.CapacityManagement.InternalOccmDemandSignal("test_internal_occm_demand_signal", new()
        {
            OccmDemandSignalId = testOccmDemandSignal.Id,
            LifecycleDetails = internalOccmDemandSignalLifecycleDetails,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.CapacityManagement.InternalOccmDemandSignal;
    import com.pulumi.oci.CapacityManagement.InternalOccmDemandSignalArgs;
    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 testInternalOccmDemandSignal = new InternalOccmDemandSignal("testInternalOccmDemandSignal", InternalOccmDemandSignalArgs.builder()
                .occmDemandSignalId(testOccmDemandSignal.id())
                .lifecycleDetails(internalOccmDemandSignalLifecycleDetails)
                .build());
    
        }
    }
    
    resources:
      testInternalOccmDemandSignal:
        type: oci:CapacityManagement:InternalOccmDemandSignal
        name: test_internal_occm_demand_signal
        properties:
          occmDemandSignalId: ${testOccmDemandSignal.id}
          lifecycleDetails: ${internalOccmDemandSignalLifecycleDetails}
    

    Create InternalOccmDemandSignal Resource

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

    Constructor syntax

    new InternalOccmDemandSignal(name: string, args: InternalOccmDemandSignalArgs, opts?: CustomResourceOptions);
    @overload
    def InternalOccmDemandSignal(resource_name: str,
                                 args: InternalOccmDemandSignalArgs,
                                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def InternalOccmDemandSignal(resource_name: str,
                                 opts: Optional[ResourceOptions] = None,
                                 occm_demand_signal_id: Optional[str] = None,
                                 lifecycle_details: Optional[str] = None)
    func NewInternalOccmDemandSignal(ctx *Context, name string, args InternalOccmDemandSignalArgs, opts ...ResourceOption) (*InternalOccmDemandSignal, error)
    public InternalOccmDemandSignal(string name, InternalOccmDemandSignalArgs args, CustomResourceOptions? opts = null)
    public InternalOccmDemandSignal(String name, InternalOccmDemandSignalArgs args)
    public InternalOccmDemandSignal(String name, InternalOccmDemandSignalArgs args, CustomResourceOptions options)
    
    type: oci:CapacityManagement:InternalOccmDemandSignal
    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 InternalOccmDemandSignalArgs
    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 InternalOccmDemandSignalArgs
    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 InternalOccmDemandSignalArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args InternalOccmDemandSignalArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args InternalOccmDemandSignalArgs
    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 internalOccmDemandSignalResource = new Oci.CapacityManagement.InternalOccmDemandSignal("internalOccmDemandSignalResource", new()
    {
        OccmDemandSignalId = "string",
        LifecycleDetails = "string",
    });
    
    example, err := capacitymanagement.NewInternalOccmDemandSignal(ctx, "internalOccmDemandSignalResource", &capacitymanagement.InternalOccmDemandSignalArgs{
    	OccmDemandSignalId: pulumi.String("string"),
    	LifecycleDetails:   pulumi.String("string"),
    })
    
    var internalOccmDemandSignalResource = new InternalOccmDemandSignal("internalOccmDemandSignalResource", InternalOccmDemandSignalArgs.builder()
        .occmDemandSignalId("string")
        .lifecycleDetails("string")
        .build());
    
    internal_occm_demand_signal_resource = oci.capacitymanagement.InternalOccmDemandSignal("internalOccmDemandSignalResource",
        occm_demand_signal_id="string",
        lifecycle_details="string")
    
    const internalOccmDemandSignalResource = new oci.capacitymanagement.InternalOccmDemandSignal("internalOccmDemandSignalResource", {
        occmDemandSignalId: "string",
        lifecycleDetails: "string",
    });
    
    type: oci:CapacityManagement:InternalOccmDemandSignal
    properties:
        lifecycleDetails: string
        occmDemandSignalId: string
    

    InternalOccmDemandSignal 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 InternalOccmDemandSignal resource accepts the following input properties:

    OccmDemandSignalId string

    The OCID of the demand signal.

    ** 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

    LifecycleDetails string

    (Updatable) The subset of demand signal states available for operators for updating the demand signal.

    IN_PROGRESS > Transitions the demand signal to IN_PROGRESS state. REJECTED > Transitions the demand signal to REJECTED state. COMPLETED > This will transition the demand signal to COMPLETED state.

    OccmDemandSignalId string

    The OCID of the demand signal.

    ** 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

    LifecycleDetails string

    (Updatable) The subset of demand signal states available for operators for updating the demand signal.

    IN_PROGRESS > Transitions the demand signal to IN_PROGRESS state. REJECTED > Transitions the demand signal to REJECTED state. COMPLETED > This will transition the demand signal to COMPLETED state.

    occmDemandSignalId String

    The OCID of the demand signal.

    ** 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

    lifecycleDetails String

    (Updatable) The subset of demand signal states available for operators for updating the demand signal.

    IN_PROGRESS > Transitions the demand signal to IN_PROGRESS state. REJECTED > Transitions the demand signal to REJECTED state. COMPLETED > This will transition the demand signal to COMPLETED state.

    occmDemandSignalId string

    The OCID of the demand signal.

    ** 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

    lifecycleDetails string

    (Updatable) The subset of demand signal states available for operators for updating the demand signal.

    IN_PROGRESS > Transitions the demand signal to IN_PROGRESS state. REJECTED > Transitions the demand signal to REJECTED state. COMPLETED > This will transition the demand signal to COMPLETED state.

    occm_demand_signal_id str

    The OCID of the demand signal.

    ** 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

    lifecycle_details str

    (Updatable) The subset of demand signal states available for operators for updating the demand signal.

    IN_PROGRESS > Transitions the demand signal to IN_PROGRESS state. REJECTED > Transitions the demand signal to REJECTED state. COMPLETED > This will transition the demand signal to COMPLETED state.

    occmDemandSignalId String

    The OCID of the demand signal.

    ** 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

    lifecycleDetails String

    (Updatable) The subset of demand signal states available for operators for updating the demand signal.

    IN_PROGRESS > Transitions the demand signal to IN_PROGRESS state. REJECTED > Transitions the demand signal to REJECTED state. COMPLETED > This will transition the demand signal to COMPLETED state.

    Outputs

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

    CompartmentId string
    The OCID of the tenancy from which the request to create the demand signal was made.
    DefinedTags Dictionary<string, string>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    Description string
    A short description about the demand signal.
    DisplayName string
    The display name of the demand signal.
    FreeformTags Dictionary<string, string>
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    Id string
    The provider-assigned unique ID for this managed resource.
    OccCustomerGroupId string
    The OCID of the customer group in which the demand signal is created.
    State string
    The current lifecycle state of the demand signal.
    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"}
    TimeCreated string
    The time when the demand signal was created.
    TimeUpdated string
    The time when the demand signal was last updated.
    CompartmentId string
    The OCID of the tenancy from which the request to create the demand signal was made.
    DefinedTags map[string]string
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    Description string
    A short description about the demand signal.
    DisplayName string
    The display name of the demand signal.
    FreeformTags map[string]string
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    Id string
    The provider-assigned unique ID for this managed resource.
    OccCustomerGroupId string
    The OCID of the customer group in which the demand signal is created.
    State string
    The current lifecycle state of the demand signal.
    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"}
    TimeCreated string
    The time when the demand signal was created.
    TimeUpdated string
    The time when the demand signal was last updated.
    compartmentId String
    The OCID of the tenancy from which the request to create the demand signal was made.
    definedTags Map<String,String>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description String
    A short description about the demand signal.
    displayName String
    The display name of the demand signal.
    freeformTags Map<String,String>
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    id String
    The provider-assigned unique ID for this managed resource.
    occCustomerGroupId String
    The OCID of the customer group in which the demand signal is created.
    state String
    The current lifecycle state of the demand signal.
    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"}
    timeCreated String
    The time when the demand signal was created.
    timeUpdated String
    The time when the demand signal was last updated.
    compartmentId string
    The OCID of the tenancy from which the request to create the demand signal was made.
    definedTags {[key: string]: string}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description string
    A short description about the demand signal.
    displayName string
    The display name of the demand signal.
    freeformTags {[key: string]: string}
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    id string
    The provider-assigned unique ID for this managed resource.
    occCustomerGroupId string
    The OCID of the customer group in which the demand signal is created.
    state string
    The current lifecycle state of the demand signal.
    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"}
    timeCreated string
    The time when the demand signal was created.
    timeUpdated string
    The time when the demand signal was last updated.
    compartment_id str
    The OCID of the tenancy from which the request to create the demand signal was made.
    defined_tags Mapping[str, str]
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description str
    A short description about the demand signal.
    display_name str
    The display name of the demand signal.
    freeform_tags Mapping[str, str]
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    id str
    The provider-assigned unique ID for this managed resource.
    occ_customer_group_id str
    The OCID of the customer group in which the demand signal is created.
    state str
    The current lifecycle state of the demand signal.
    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_created str
    The time when the demand signal was created.
    time_updated str
    The time when the demand signal was last updated.
    compartmentId String
    The OCID of the tenancy from which the request to create the demand signal was made.
    definedTags Map<String>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description String
    A short description about the demand signal.
    displayName String
    The display name of the demand signal.
    freeformTags Map<String>
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    id String
    The provider-assigned unique ID for this managed resource.
    occCustomerGroupId String
    The OCID of the customer group in which the demand signal is created.
    state String
    The current lifecycle state of the demand signal.
    systemTags Map<String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The time when the demand signal was created.
    timeUpdated String
    The time when the demand signal was last updated.

    Look up Existing InternalOccmDemandSignal Resource

    Get an existing InternalOccmDemandSignal 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?: InternalOccmDemandSignalState, opts?: CustomResourceOptions): InternalOccmDemandSignal
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            compartment_id: Optional[str] = None,
            defined_tags: Optional[Mapping[str, str]] = None,
            description: Optional[str] = None,
            display_name: Optional[str] = None,
            freeform_tags: Optional[Mapping[str, str]] = None,
            lifecycle_details: Optional[str] = None,
            occ_customer_group_id: Optional[str] = None,
            occm_demand_signal_id: Optional[str] = None,
            state: Optional[str] = None,
            system_tags: Optional[Mapping[str, str]] = None,
            time_created: Optional[str] = None,
            time_updated: Optional[str] = None) -> InternalOccmDemandSignal
    func GetInternalOccmDemandSignal(ctx *Context, name string, id IDInput, state *InternalOccmDemandSignalState, opts ...ResourceOption) (*InternalOccmDemandSignal, error)
    public static InternalOccmDemandSignal Get(string name, Input<string> id, InternalOccmDemandSignalState? state, CustomResourceOptions? opts = null)
    public static InternalOccmDemandSignal get(String name, Output<String> id, InternalOccmDemandSignalState state, CustomResourceOptions options)
    resources:  _:    type: oci:CapacityManagement:InternalOccmDemandSignal    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:
    CompartmentId string
    The OCID of the tenancy from which the request to create the demand signal was made.
    DefinedTags Dictionary<string, string>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    Description string
    A short description about the demand signal.
    DisplayName string
    The display name of the demand signal.
    FreeformTags Dictionary<string, string>
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    LifecycleDetails string

    (Updatable) The subset of demand signal states available for operators for updating the demand signal.

    IN_PROGRESS > Transitions the demand signal to IN_PROGRESS state. REJECTED > Transitions the demand signal to REJECTED state. COMPLETED > This will transition the demand signal to COMPLETED state.

    OccCustomerGroupId string
    The OCID of the customer group in which the demand signal is created.
    OccmDemandSignalId string

    The OCID of the demand signal.

    ** 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 demand signal.
    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"}
    TimeCreated string
    The time when the demand signal was created.
    TimeUpdated string
    The time when the demand signal was last updated.
    CompartmentId string
    The OCID of the tenancy from which the request to create the demand signal was made.
    DefinedTags map[string]string
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    Description string
    A short description about the demand signal.
    DisplayName string
    The display name of the demand signal.
    FreeformTags map[string]string
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    LifecycleDetails string

    (Updatable) The subset of demand signal states available for operators for updating the demand signal.

    IN_PROGRESS > Transitions the demand signal to IN_PROGRESS state. REJECTED > Transitions the demand signal to REJECTED state. COMPLETED > This will transition the demand signal to COMPLETED state.

    OccCustomerGroupId string
    The OCID of the customer group in which the demand signal is created.
    OccmDemandSignalId string

    The OCID of the demand signal.

    ** 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 demand signal.
    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"}
    TimeCreated string
    The time when the demand signal was created.
    TimeUpdated string
    The time when the demand signal was last updated.
    compartmentId String
    The OCID of the tenancy from which the request to create the demand signal was made.
    definedTags Map<String,String>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description String
    A short description about the demand signal.
    displayName String
    The display name of the demand signal.
    freeformTags Map<String,String>
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    lifecycleDetails String

    (Updatable) The subset of demand signal states available for operators for updating the demand signal.

    IN_PROGRESS > Transitions the demand signal to IN_PROGRESS state. REJECTED > Transitions the demand signal to REJECTED state. COMPLETED > This will transition the demand signal to COMPLETED state.

    occCustomerGroupId String
    The OCID of the customer group in which the demand signal is created.
    occmDemandSignalId String

    The OCID of the demand signal.

    ** 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 demand signal.
    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"}
    timeCreated String
    The time when the demand signal was created.
    timeUpdated String
    The time when the demand signal was last updated.
    compartmentId string
    The OCID of the tenancy from which the request to create the demand signal was made.
    definedTags {[key: string]: string}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description string
    A short description about the demand signal.
    displayName string
    The display name of the demand signal.
    freeformTags {[key: string]: string}
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    lifecycleDetails string

    (Updatable) The subset of demand signal states available for operators for updating the demand signal.

    IN_PROGRESS > Transitions the demand signal to IN_PROGRESS state. REJECTED > Transitions the demand signal to REJECTED state. COMPLETED > This will transition the demand signal to COMPLETED state.

    occCustomerGroupId string
    The OCID of the customer group in which the demand signal is created.
    occmDemandSignalId string

    The OCID of the demand signal.

    ** 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 demand signal.
    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"}
    timeCreated string
    The time when the demand signal was created.
    timeUpdated string
    The time when the demand signal was last updated.
    compartment_id str
    The OCID of the tenancy from which the request to create the demand signal was made.
    defined_tags Mapping[str, str]
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description str
    A short description about the demand signal.
    display_name str
    The display name of the demand signal.
    freeform_tags Mapping[str, str]
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    lifecycle_details str

    (Updatable) The subset of demand signal states available for operators for updating the demand signal.

    IN_PROGRESS > Transitions the demand signal to IN_PROGRESS state. REJECTED > Transitions the demand signal to REJECTED state. COMPLETED > This will transition the demand signal to COMPLETED state.

    occ_customer_group_id str
    The OCID of the customer group in which the demand signal is created.
    occm_demand_signal_id str

    The OCID of the demand signal.

    ** 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 demand signal.
    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_created str
    The time when the demand signal was created.
    time_updated str
    The time when the demand signal was last updated.
    compartmentId String
    The OCID of the tenancy from which the request to create the demand signal was made.
    definedTags Map<String>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description String
    A short description about the demand signal.
    displayName String
    The display name of the demand signal.
    freeformTags Map<String>
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    lifecycleDetails String

    (Updatable) The subset of demand signal states available for operators for updating the demand signal.

    IN_PROGRESS > Transitions the demand signal to IN_PROGRESS state. REJECTED > Transitions the demand signal to REJECTED state. COMPLETED > This will transition the demand signal to COMPLETED state.

    occCustomerGroupId String
    The OCID of the customer group in which the demand signal is created.
    occmDemandSignalId String

    The OCID of the demand signal.

    ** 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 demand signal.
    systemTags Map<String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The time when the demand signal was created.
    timeUpdated String
    The time when the demand signal was last updated.

    Import

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

    $ pulumi import oci:CapacityManagement/internalOccmDemandSignal:InternalOccmDemandSignal test_internal_occm_demand_signal "internal/occmDemandSignals/{occmDemandSignalId}"
    

    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