oci.CapacityManagement.InternalOccmDemandSignal
Explore with Pulumi AI
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:
- Occm
Demand stringSignal Id 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 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 stringSignal Id 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 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 StringSignal Id 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 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 stringSignal Id 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 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_ strsignal_ id 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.
- occm
Demand StringSignal Id 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 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:
- Compartment
Id string - The OCID of the tenancy from which the request to create the demand signal was made.
- 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.
- Display
Name string - The display name of the demand signal.
- 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.
- Occ
Customer stringGroup Id - The OCID of the customer group in which the demand signal is created.
- State string
- The current lifecycle state of the demand signal.
- 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
Created string - The time when the demand signal was created.
- Time
Updated string - The time when the demand signal was last updated.
- Compartment
Id string - The OCID of the tenancy from which the request to create the demand signal was made.
- 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.
- Display
Name string - The display name of the demand signal.
- 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.
- Occ
Customer stringGroup Id - The OCID of the customer group in which the demand signal is created.
- State string
- The current lifecycle state of the demand signal.
- 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
Created string - The time when the demand signal was created.
- Time
Updated string - The time when the demand signal was last updated.
- compartment
Id String - The OCID of the tenancy from which the request to create the demand signal was made.
- 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.
- display
Name String - The display name of the demand signal.
- 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.
- occ
Customer StringGroup Id - The OCID of the customer group in which the demand signal is created.
- state String
- The current lifecycle state of the demand signal.
- 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
Created String - The time when the demand signal was created.
- time
Updated String - The time when the demand signal was last updated.
- compartment
Id string - The OCID of the tenancy from which the request to create the demand signal was made.
- {[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.
- display
Name string - The display name of the demand signal.
- {[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.
- occ
Customer stringGroup Id - The OCID of the customer group in which the demand signal is created.
- state string
- The current lifecycle state of the demand signal.
- {[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
Created string - The time when the demand signal was created.
- time
Updated 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.
- 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.
- 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_ strgroup_ id - The OCID of the customer group in which the demand signal is created.
- state str
- The current lifecycle state of the demand signal.
- 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.
- compartment
Id String - The OCID of the tenancy from which the request to create the demand signal was made.
- 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.
- display
Name String - The display name of the demand signal.
- 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.
- occ
Customer StringGroup Id - The OCID of the customer group in which the demand signal is created.
- state String
- The current lifecycle state of the demand signal.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The time when the demand signal was created.
- time
Updated 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.
- Compartment
Id string - The OCID of the tenancy from which the request to create the demand signal was made.
- 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.
- Display
Name string - The display name of the demand signal.
- 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"}
- Lifecycle
Details 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.
- Occ
Customer stringGroup Id - The OCID of the customer group in which the demand signal is created.
- Occm
Demand stringSignal Id 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.
- 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
Created string - The time when the demand signal was created.
- Time
Updated string - The time when the demand signal was last updated.
- Compartment
Id string - The OCID of the tenancy from which the request to create the demand signal was made.
- 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.
- Display
Name string - The display name of the demand signal.
- 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"}
- Lifecycle
Details 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.
- Occ
Customer stringGroup Id - The OCID of the customer group in which the demand signal is created.
- Occm
Demand stringSignal Id 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.
- 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
Created string - The time when the demand signal was created.
- Time
Updated string - The time when the demand signal was last updated.
- compartment
Id String - The OCID of the tenancy from which the request to create the demand signal was made.
- 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.
- display
Name String - The display name of the demand signal.
- 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"}
- lifecycle
Details 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.
- occ
Customer StringGroup Id - The OCID of the customer group in which the demand signal is created.
- occm
Demand StringSignal Id 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.
- 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
Created String - The time when the demand signal was created.
- time
Updated String - The time when the demand signal was last updated.
- compartment
Id string - The OCID of the tenancy from which the request to create the demand signal was made.
- {[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.
- display
Name string - The display name of the demand signal.
- {[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"}
- lifecycle
Details 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.
- occ
Customer stringGroup Id - The OCID of the customer group in which the demand signal is created.
- occm
Demand stringSignal Id 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.
- {[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
Created string - The time when the demand signal was created.
- time
Updated 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.
- 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.
- 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_ strgroup_ id - The OCID of the customer group in which the demand signal is created.
- occm_
demand_ strsignal_ id 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.
- 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.
- compartment
Id String - The OCID of the tenancy from which the request to create the demand signal was made.
- 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.
- display
Name String - The display name of the demand signal.
- 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"}
- lifecycle
Details 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.
- occ
Customer StringGroup Id - The OCID of the customer group in which the demand signal is created.
- occm
Demand StringSignal Id 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.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The time when the demand signal was created.
- time
Updated 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.