Oracle Cloud Infrastructure v3.3.0 published on Thursday, Jul 17, 2025 by Pulumi
oci.CapacityManagement.getInternalOccmDemandSignalCatalogResources
Explore with Pulumi AI
This data source provides the list of Internal Occm Demand Signal Catalog Resources in Oracle Cloud Infrastructure Capacity Management service.
This API will list all the resources across all demand signal catalogs for a given namespace and customer group.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testInternalOccmDemandSignalCatalogResources = oci.CapacityManagement.getInternalOccmDemandSignalCatalogResources({
compartmentId: compartmentId,
occCustomerGroupId: testOccCustomerGroup.id,
occmDemandSignalCatalogId: testCatalog.id,
demandSignalNamespace: internalOccmDemandSignalCatalogResourceDemandSignalNamespace,
name: internalOccmDemandSignalCatalogResourceName,
});
import pulumi
import pulumi_oci as oci
test_internal_occm_demand_signal_catalog_resources = oci.CapacityManagement.get_internal_occm_demand_signal_catalog_resources(compartment_id=compartment_id,
occ_customer_group_id=test_occ_customer_group["id"],
occm_demand_signal_catalog_id=test_catalog["id"],
demand_signal_namespace=internal_occm_demand_signal_catalog_resource_demand_signal_namespace,
name=internal_occm_demand_signal_catalog_resource_name)
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.GetInternalOccmDemandSignalCatalogResources(ctx, &capacitymanagement.GetInternalOccmDemandSignalCatalogResourcesArgs{
CompartmentId: compartmentId,
OccCustomerGroupId: testOccCustomerGroup.Id,
OccmDemandSignalCatalogId: testCatalog.Id,
DemandSignalNamespace: pulumi.StringRef(internalOccmDemandSignalCatalogResourceDemandSignalNamespace),
Name: pulumi.StringRef(internalOccmDemandSignalCatalogResourceName),
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() =>
{
var testInternalOccmDemandSignalCatalogResources = Oci.CapacityManagement.GetInternalOccmDemandSignalCatalogResources.Invoke(new()
{
CompartmentId = compartmentId,
OccCustomerGroupId = testOccCustomerGroup.Id,
OccmDemandSignalCatalogId = testCatalog.Id,
DemandSignalNamespace = internalOccmDemandSignalCatalogResourceDemandSignalNamespace,
Name = internalOccmDemandSignalCatalogResourceName,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.CapacityManagement.CapacityManagementFunctions;
import com.pulumi.oci.CapacityManagement.inputs.GetInternalOccmDemandSignalCatalogResourcesArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var testInternalOccmDemandSignalCatalogResources = CapacityManagementFunctions.getInternalOccmDemandSignalCatalogResources(GetInternalOccmDemandSignalCatalogResourcesArgs.builder()
.compartmentId(compartmentId)
.occCustomerGroupId(testOccCustomerGroup.id())
.occmDemandSignalCatalogId(testCatalog.id())
.demandSignalNamespace(internalOccmDemandSignalCatalogResourceDemandSignalNamespace)
.name(internalOccmDemandSignalCatalogResourceName)
.build());
}
}
variables:
testInternalOccmDemandSignalCatalogResources:
fn::invoke:
function: oci:CapacityManagement:getInternalOccmDemandSignalCatalogResources
arguments:
compartmentId: ${compartmentId}
occCustomerGroupId: ${testOccCustomerGroup.id}
occmDemandSignalCatalogId: ${testCatalog.id}
demandSignalNamespace: ${internalOccmDemandSignalCatalogResourceDemandSignalNamespace}
name: ${internalOccmDemandSignalCatalogResourceName}
Using getInternalOccmDemandSignalCatalogResources
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getInternalOccmDemandSignalCatalogResources(args: GetInternalOccmDemandSignalCatalogResourcesArgs, opts?: InvokeOptions): Promise<GetInternalOccmDemandSignalCatalogResourcesResult>
function getInternalOccmDemandSignalCatalogResourcesOutput(args: GetInternalOccmDemandSignalCatalogResourcesOutputArgs, opts?: InvokeOptions): Output<GetInternalOccmDemandSignalCatalogResourcesResult>
def get_internal_occm_demand_signal_catalog_resources(compartment_id: Optional[str] = None,
demand_signal_namespace: Optional[str] = None,
filters: Optional[Sequence[GetInternalOccmDemandSignalCatalogResourcesFilter]] = None,
name: Optional[str] = None,
occ_customer_group_id: Optional[str] = None,
occm_demand_signal_catalog_id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetInternalOccmDemandSignalCatalogResourcesResult
def get_internal_occm_demand_signal_catalog_resources_output(compartment_id: Optional[pulumi.Input[str]] = None,
demand_signal_namespace: Optional[pulumi.Input[str]] = None,
filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetInternalOccmDemandSignalCatalogResourcesFilterArgs]]]] = None,
name: Optional[pulumi.Input[str]] = None,
occ_customer_group_id: Optional[pulumi.Input[str]] = None,
occm_demand_signal_catalog_id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetInternalOccmDemandSignalCatalogResourcesResult]
func GetInternalOccmDemandSignalCatalogResources(ctx *Context, args *GetInternalOccmDemandSignalCatalogResourcesArgs, opts ...InvokeOption) (*GetInternalOccmDemandSignalCatalogResourcesResult, error)
func GetInternalOccmDemandSignalCatalogResourcesOutput(ctx *Context, args *GetInternalOccmDemandSignalCatalogResourcesOutputArgs, opts ...InvokeOption) GetInternalOccmDemandSignalCatalogResourcesResultOutput
> Note: This function is named GetInternalOccmDemandSignalCatalogResources
in the Go SDK.
public static class GetInternalOccmDemandSignalCatalogResources
{
public static Task<GetInternalOccmDemandSignalCatalogResourcesResult> InvokeAsync(GetInternalOccmDemandSignalCatalogResourcesArgs args, InvokeOptions? opts = null)
public static Output<GetInternalOccmDemandSignalCatalogResourcesResult> Invoke(GetInternalOccmDemandSignalCatalogResourcesInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetInternalOccmDemandSignalCatalogResourcesResult> getInternalOccmDemandSignalCatalogResources(GetInternalOccmDemandSignalCatalogResourcesArgs args, InvokeOptions options)
public static Output<GetInternalOccmDemandSignalCatalogResourcesResult> getInternalOccmDemandSignalCatalogResources(GetInternalOccmDemandSignalCatalogResourcesArgs args, InvokeOptions options)
fn::invoke:
function: oci:CapacityManagement/getInternalOccmDemandSignalCatalogResources:getInternalOccmDemandSignalCatalogResources
arguments:
# arguments dictionary
The following arguments are supported:
- Compartment
Id string - The ocid of the compartment or tenancy in which resources are to be listed. This will also be used for authorization purposes.
- Occ
Customer stringGroup Id - The customer group ocid by which we would filter the list.
- Occm
Demand stringSignal Catalog Id - The ocid of demand signal catalog id.
- Demand
Signal stringNamespace - A query parameter to filter the list of demand signal catalog resources based on the namespace.
- Filters
List<Get
Internal Occm Demand Signal Catalog Resources Filter> - Name string
- A query parameter to filter the list of demand signal catalog resource based on the resource name.
- Compartment
Id string - The ocid of the compartment or tenancy in which resources are to be listed. This will also be used for authorization purposes.
- Occ
Customer stringGroup Id - The customer group ocid by which we would filter the list.
- Occm
Demand stringSignal Catalog Id - The ocid of demand signal catalog id.
- Demand
Signal stringNamespace - A query parameter to filter the list of demand signal catalog resources based on the namespace.
- Filters
[]Get
Internal Occm Demand Signal Catalog Resources Filter - Name string
- A query parameter to filter the list of demand signal catalog resource based on the resource name.
- compartment
Id String - The ocid of the compartment or tenancy in which resources are to be listed. This will also be used for authorization purposes.
- occ
Customer StringGroup Id - The customer group ocid by which we would filter the list.
- occm
Demand StringSignal Catalog Id - The ocid of demand signal catalog id.
- demand
Signal StringNamespace - A query parameter to filter the list of demand signal catalog resources based on the namespace.
- filters
List<Get
Internal Occm Demand Signal Catalog Resources Filter> - name String
- A query parameter to filter the list of demand signal catalog resource based on the resource name.
- compartment
Id string - The ocid of the compartment or tenancy in which resources are to be listed. This will also be used for authorization purposes.
- occ
Customer stringGroup Id - The customer group ocid by which we would filter the list.
- occm
Demand stringSignal Catalog Id - The ocid of demand signal catalog id.
- demand
Signal stringNamespace - A query parameter to filter the list of demand signal catalog resources based on the namespace.
- filters
Get
Internal Occm Demand Signal Catalog Resources Filter[] - name string
- A query parameter to filter the list of demand signal catalog resource based on the resource name.
- compartment_
id str - The ocid of the compartment or tenancy in which resources are to be listed. This will also be used for authorization purposes.
- occ_
customer_ strgroup_ id - The customer group ocid by which we would filter the list.
- occm_
demand_ strsignal_ catalog_ id - The ocid of demand signal catalog id.
- demand_
signal_ strnamespace - A query parameter to filter the list of demand signal catalog resources based on the namespace.
- filters
Sequence[Get
Internal Occm Demand Signal Catalog Resources Filter] - name str
- A query parameter to filter the list of demand signal catalog resource based on the resource name.
- compartment
Id String - The ocid of the compartment or tenancy in which resources are to be listed. This will also be used for authorization purposes.
- occ
Customer StringGroup Id - The customer group ocid by which we would filter the list.
- occm
Demand StringSignal Catalog Id - The ocid of demand signal catalog id.
- demand
Signal StringNamespace - A query parameter to filter the list of demand signal catalog resources based on the namespace.
- filters List<Property Map>
- name String
- A query parameter to filter the list of demand signal catalog resource based on the resource name.
getInternalOccmDemandSignalCatalogResources Result
The following output properties are available:
- Compartment
Id string - The OCID of the tenancy from which the request to create the demand signal catalog was made.
- Id string
- The provider-assigned unique ID for this managed resource.
- Internal
Occm List<GetDemand Signal Catalog Resource Collections Internal Occm Demand Signal Catalog Resources Internal Occm Demand Signal Catalog Resource Collection> - The list of internal_occm_demand_signal_catalog_resource_collection.
- Occ
Customer stringGroup Id - The OCID of the customerGroup.
- Occm
Demand stringSignal Catalog Id - This OCID of the demand signal catalog
- Demand
Signal stringNamespace - Filters
List<Get
Internal Occm Demand Signal Catalog Resources Filter> - Name string
- The name of the Oracle Cloud Infrastructure resource that you want to request.
- Compartment
Id string - The OCID of the tenancy from which the request to create the demand signal catalog was made.
- Id string
- The provider-assigned unique ID for this managed resource.
- Internal
Occm []GetDemand Signal Catalog Resource Collections Internal Occm Demand Signal Catalog Resources Internal Occm Demand Signal Catalog Resource Collection - The list of internal_occm_demand_signal_catalog_resource_collection.
- Occ
Customer stringGroup Id - The OCID of the customerGroup.
- Occm
Demand stringSignal Catalog Id - This OCID of the demand signal catalog
- Demand
Signal stringNamespace - Filters
[]Get
Internal Occm Demand Signal Catalog Resources Filter - Name string
- The name of the Oracle Cloud Infrastructure resource that you want to request.
- compartment
Id String - The OCID of the tenancy from which the request to create the demand signal catalog was made.
- id String
- The provider-assigned unique ID for this managed resource.
- internal
Occm List<GetDemand Signal Catalog Resource Collections Internal Occm Demand Signal Catalog Resources Internal Occm Demand Signal Catalog Resource Collection> - The list of internal_occm_demand_signal_catalog_resource_collection.
- occ
Customer StringGroup Id - The OCID of the customerGroup.
- occm
Demand StringSignal Catalog Id - This OCID of the demand signal catalog
- demand
Signal StringNamespace - filters
List<Get
Internal Occm Demand Signal Catalog Resources Filter> - name String
- The name of the Oracle Cloud Infrastructure resource that you want to request.
- compartment
Id string - The OCID of the tenancy from which the request to create the demand signal catalog was made.
- id string
- The provider-assigned unique ID for this managed resource.
- internal
Occm GetDemand Signal Catalog Resource Collections Internal Occm Demand Signal Catalog Resources Internal Occm Demand Signal Catalog Resource Collection[] - The list of internal_occm_demand_signal_catalog_resource_collection.
- occ
Customer stringGroup Id - The OCID of the customerGroup.
- occm
Demand stringSignal Catalog Id - This OCID of the demand signal catalog
- demand
Signal stringNamespace - filters
Get
Internal Occm Demand Signal Catalog Resources Filter[] - name string
- The name of the Oracle Cloud Infrastructure resource that you want to request.
- compartment_
id str - The OCID of the tenancy from which the request to create the demand signal catalog was made.
- id str
- The provider-assigned unique ID for this managed resource.
- internal_
occm_ Sequence[Getdemand_ signal_ catalog_ resource_ collections Internal Occm Demand Signal Catalog Resources Internal Occm Demand Signal Catalog Resource Collection] - The list of internal_occm_demand_signal_catalog_resource_collection.
- occ_
customer_ strgroup_ id - The OCID of the customerGroup.
- occm_
demand_ strsignal_ catalog_ id - This OCID of the demand signal catalog
- demand_
signal_ strnamespace - filters
Sequence[Get
Internal Occm Demand Signal Catalog Resources Filter] - name str
- The name of the Oracle Cloud Infrastructure resource that you want to request.
- compartment
Id String - The OCID of the tenancy from which the request to create the demand signal catalog was made.
- id String
- The provider-assigned unique ID for this managed resource.
- internal
Occm List<Property Map>Demand Signal Catalog Resource Collections - The list of internal_occm_demand_signal_catalog_resource_collection.
- occ
Customer StringGroup Id - The OCID of the customerGroup.
- occm
Demand StringSignal Catalog Id - This OCID of the demand signal catalog
- demand
Signal StringNamespace - filters List<Property Map>
- name String
- The name of the Oracle Cloud Infrastructure resource that you want to request.
Supporting Types
GetInternalOccmDemandSignalCatalogResourcesFilter
GetInternalOccmDemandSignalCatalogResourcesInternalOccmDemandSignalCatalogResourceCollection
- Items
List<Get
Internal Occm Demand Signal Catalog Resources Internal Occm Demand Signal Catalog Resource Collection Item> - An array of items containing detailed information about a resource's property dependecies.
- Items
[]Get
Internal Occm Demand Signal Catalog Resources Internal Occm Demand Signal Catalog Resource Collection Item - An array of items containing detailed information about a resource's property dependecies.
- items
List<Get
Internal Occm Demand Signal Catalog Resources Internal Occm Demand Signal Catalog Resource Collection Item> - An array of items containing detailed information about a resource's property dependecies.
- items
Get
Internal Occm Demand Signal Catalog Resources Internal Occm Demand Signal Catalog Resource Collection Item[] - An array of items containing detailed information about a resource's property dependecies.
- items
Sequence[Get
Internal Occm Demand Signal Catalog Resources Internal Occm Demand Signal Catalog Resource Collection Item] - An array of items containing detailed information about a resource's property dependecies.
- items List<Property Map>
- An array of items containing detailed information about a resource's property dependecies.
GetInternalOccmDemandSignalCatalogResourcesInternalOccmDemandSignalCatalogResourceCollectionItem
- Availability
Domain string - The name of the availability domain for which you want to request the Oracle Cloud Infrastructure resource. This is an optional parameter.
- Compartment
Id string - The ocid of the compartment or tenancy in which resources are to be listed. This will also be used for authorization purposes.
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- 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 OCID of the demand signal catalog resource.
- Name string
- A query parameter to filter the list of demand signal catalog resource based on the resource name.
- Namespace string
- The name of the Oracle Cloud Infrastructure service in consideration for demand signal submission. For example: COMPUTE, NETWORK, GPU etc.
- Occ
Customer stringGroup Id - The customer group ocid by which we would filter the list.
- Occm
Demand stringSignal Catalog Id - The ocid of demand signal catalog id.
- Region string
- The name of region for which you want to request the Oracle Cloud Infrastructure resource. This is an optional parameter.
- Resource
Properties List<GetInternal Occm Demand Signal Catalog Resources Internal Occm Demand Signal Catalog Resource Collection Item Resource Property> - A list containing detailed information about a resource's properties.
- Resource
Property List<GetConstraints Internal Occm Demand Signal Catalog Resources Internal Occm Demand Signal Catalog Resource Collection Item Resource Property Constraint> - A list containing detailed information about a resource's property constraints.
- State string
- The current lifecycle state of the demand signal catalog 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"}
- Target
Compartment stringId - The OCID of the customer tenancy for which this resource will be available for the customer to order against.
- Time
Created string - The time when the demand signal catalog resource was created.
- Time
Updated string - The time when the demand signal catalog resource was last updated.
- Availability
Domain string - The name of the availability domain for which you want to request the Oracle Cloud Infrastructure resource. This is an optional parameter.
- Compartment
Id string - The ocid of the compartment or tenancy in which resources are to be listed. This will also be used for authorization purposes.
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- 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 OCID of the demand signal catalog resource.
- Name string
- A query parameter to filter the list of demand signal catalog resource based on the resource name.
- Namespace string
- The name of the Oracle Cloud Infrastructure service in consideration for demand signal submission. For example: COMPUTE, NETWORK, GPU etc.
- Occ
Customer stringGroup Id - The customer group ocid by which we would filter the list.
- Occm
Demand stringSignal Catalog Id - The ocid of demand signal catalog id.
- Region string
- The name of region for which you want to request the Oracle Cloud Infrastructure resource. This is an optional parameter.
- Resource
Properties []GetInternal Occm Demand Signal Catalog Resources Internal Occm Demand Signal Catalog Resource Collection Item Resource Property - A list containing detailed information about a resource's properties.
- Resource
Property []GetConstraints Internal Occm Demand Signal Catalog Resources Internal Occm Demand Signal Catalog Resource Collection Item Resource Property Constraint - A list containing detailed information about a resource's property constraints.
- State string
- The current lifecycle state of the demand signal catalog 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"}
- Target
Compartment stringId - The OCID of the customer tenancy for which this resource will be available for the customer to order against.
- Time
Created string - The time when the demand signal catalog resource was created.
- Time
Updated string - The time when the demand signal catalog resource was last updated.
- availability
Domain String - The name of the availability domain for which you want to request the Oracle Cloud Infrastructure resource. This is an optional parameter.
- compartment
Id String - The ocid of the compartment or tenancy in which resources are to be listed. This will also be used for authorization purposes.
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- 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 OCID of the demand signal catalog resource.
- name String
- A query parameter to filter the list of demand signal catalog resource based on the resource name.
- namespace String
- The name of the Oracle Cloud Infrastructure service in consideration for demand signal submission. For example: COMPUTE, NETWORK, GPU etc.
- occ
Customer StringGroup Id - The customer group ocid by which we would filter the list.
- occm
Demand StringSignal Catalog Id - The ocid of demand signal catalog id.
- region String
- The name of region for which you want to request the Oracle Cloud Infrastructure resource. This is an optional parameter.
- resource
Properties List<GetInternal Occm Demand Signal Catalog Resources Internal Occm Demand Signal Catalog Resource Collection Item Resource Property> - A list containing detailed information about a resource's properties.
- resource
Property List<GetConstraints Internal Occm Demand Signal Catalog Resources Internal Occm Demand Signal Catalog Resource Collection Item Resource Property Constraint> - A list containing detailed information about a resource's property constraints.
- state String
- The current lifecycle state of the demand signal catalog 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"}
- target
Compartment StringId - The OCID of the customer tenancy for which this resource will be available for the customer to order against.
- time
Created String - The time when the demand signal catalog resource was created.
- time
Updated String - The time when the demand signal catalog resource was last updated.
- availability
Domain string - The name of the availability domain for which you want to request the Oracle Cloud Infrastructure resource. This is an optional parameter.
- compartment
Id string - The ocid of the compartment or tenancy in which resources are to be listed. This will also be used for authorization purposes.
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- {[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 OCID of the demand signal catalog resource.
- name string
- A query parameter to filter the list of demand signal catalog resource based on the resource name.
- namespace string
- The name of the Oracle Cloud Infrastructure service in consideration for demand signal submission. For example: COMPUTE, NETWORK, GPU etc.
- occ
Customer stringGroup Id - The customer group ocid by which we would filter the list.
- occm
Demand stringSignal Catalog Id - The ocid of demand signal catalog id.
- region string
- The name of region for which you want to request the Oracle Cloud Infrastructure resource. This is an optional parameter.
- resource
Properties GetInternal Occm Demand Signal Catalog Resources Internal Occm Demand Signal Catalog Resource Collection Item Resource Property[] - A list containing detailed information about a resource's properties.
- resource
Property GetConstraints Internal Occm Demand Signal Catalog Resources Internal Occm Demand Signal Catalog Resource Collection Item Resource Property Constraint[] - A list containing detailed information about a resource's property constraints.
- state string
- The current lifecycle state of the demand signal catalog 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"}
- target
Compartment stringId - The OCID of the customer tenancy for which this resource will be available for the customer to order against.
- time
Created string - The time when the demand signal catalog resource was created.
- time
Updated string - The time when the demand signal catalog resource was last updated.
- availability_
domain str - The name of the availability domain for which you want to request the Oracle Cloud Infrastructure resource. This is an optional parameter.
- compartment_
id str - The ocid of the compartment or tenancy in which resources are to be listed. This will also be used for authorization purposes.
- Mapping[str, str]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- 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 OCID of the demand signal catalog resource.
- name str
- A query parameter to filter the list of demand signal catalog resource based on the resource name.
- namespace str
- The name of the Oracle Cloud Infrastructure service in consideration for demand signal submission. For example: COMPUTE, NETWORK, GPU etc.
- occ_
customer_ strgroup_ id - The customer group ocid by which we would filter the list.
- occm_
demand_ strsignal_ catalog_ id - The ocid of demand signal catalog id.
- region str
- The name of region for which you want to request the Oracle Cloud Infrastructure resource. This is an optional parameter.
- resource_
properties Sequence[GetInternal Occm Demand Signal Catalog Resources Internal Occm Demand Signal Catalog Resource Collection Item Resource Property] - A list containing detailed information about a resource's properties.
- resource_
property_ Sequence[Getconstraints Internal Occm Demand Signal Catalog Resources Internal Occm Demand Signal Catalog Resource Collection Item Resource Property Constraint] - A list containing detailed information about a resource's property constraints.
- state str
- The current lifecycle state of the demand signal catalog 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"}
- target_
compartment_ strid - The OCID of the customer tenancy for which this resource will be available for the customer to order against.
- time_
created str - The time when the demand signal catalog resource was created.
- time_
updated str - The time when the demand signal catalog resource was last updated.
- availability
Domain String - The name of the availability domain for which you want to request the Oracle Cloud Infrastructure resource. This is an optional parameter.
- compartment
Id String - The ocid of the compartment or tenancy in which resources are to be listed. This will also be used for authorization purposes.
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- 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 OCID of the demand signal catalog resource.
- name String
- A query parameter to filter the list of demand signal catalog resource based on the resource name.
- namespace String
- The name of the Oracle Cloud Infrastructure service in consideration for demand signal submission. For example: COMPUTE, NETWORK, GPU etc.
- occ
Customer StringGroup Id - The customer group ocid by which we would filter the list.
- occm
Demand StringSignal Catalog Id - The ocid of demand signal catalog id.
- region String
- The name of region for which you want to request the Oracle Cloud Infrastructure resource. This is an optional parameter.
- resource
Properties List<Property Map> - A list containing detailed information about a resource's properties.
- resource
Property List<Property Map>Constraints - A list containing detailed information about a resource's property constraints.
- state String
- The current lifecycle state of the demand signal catalog resource.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- target
Compartment StringId - The OCID of the customer tenancy for which this resource will be available for the customer to order against.
- time
Created String - The time when the demand signal catalog resource was created.
- time
Updated String - The time when the demand signal catalog resource was last updated.
GetInternalOccmDemandSignalCatalogResourcesInternalOccmDemandSignalCatalogResourceCollectionItemResourceProperty
- Items
List<Get
Internal Occm Demand Signal Catalog Resources Internal Occm Demand Signal Catalog Resource Collection Item Resource Property Item> - An array of items containing detailed information about a resource's property dependecies.
- Items
[]Get
Internal Occm Demand Signal Catalog Resources Internal Occm Demand Signal Catalog Resource Collection Item Resource Property Item - An array of items containing detailed information about a resource's property dependecies.
- items
List<Get
Internal Occm Demand Signal Catalog Resources Internal Occm Demand Signal Catalog Resource Collection Item Resource Property Item> - An array of items containing detailed information about a resource's property dependecies.
- items
Get
Internal Occm Demand Signal Catalog Resources Internal Occm Demand Signal Catalog Resource Collection Item Resource Property Item[] - An array of items containing detailed information about a resource's property dependecies.
- items
Sequence[Get
Internal Occm Demand Signal Catalog Resources Internal Occm Demand Signal Catalog Resource Collection Item Resource Property Item] - An array of items containing detailed information about a resource's property dependecies.
- items List<Property Map>
- An array of items containing detailed information about a resource's property dependecies.
GetInternalOccmDemandSignalCatalogResourcesInternalOccmDemandSignalCatalogResourceCollectionItemResourcePropertyConstraint
- Items
List<Get
Internal Occm Demand Signal Catalog Resources Internal Occm Demand Signal Catalog Resource Collection Item Resource Property Constraint Item> - An array of items containing detailed information about a resource's property dependecies.
- Items
[]Get
Internal Occm Demand Signal Catalog Resources Internal Occm Demand Signal Catalog Resource Collection Item Resource Property Constraint Item - An array of items containing detailed information about a resource's property dependecies.
- items
List<Get
Internal Occm Demand Signal Catalog Resources Internal Occm Demand Signal Catalog Resource Collection Item Resource Property Constraint Item> - An array of items containing detailed information about a resource's property dependecies.
- items
Get
Internal Occm Demand Signal Catalog Resources Internal Occm Demand Signal Catalog Resource Collection Item Resource Property Constraint Item[] - An array of items containing detailed information about a resource's property dependecies.
- items
Sequence[Get
Internal Occm Demand Signal Catalog Resources Internal Occm Demand Signal Catalog Resource Collection Item Resource Property Constraint Item] - An array of items containing detailed information about a resource's property dependecies.
- items List<Property Map>
- An array of items containing detailed information about a resource's property dependecies.
GetInternalOccmDemandSignalCatalogResourcesInternalOccmDemandSignalCatalogResourceCollectionItemResourcePropertyConstraintItem
- Constraint
Name string - The name of demand signal resource's property constraint.
- Constraint
Value string - The value of demand signal resource's property constraint.
- Constraint
Name string - The name of demand signal resource's property constraint.
- Constraint
Value string - The value of demand signal resource's property constraint.
- constraint
Name String - The name of demand signal resource's property constraint.
- constraint
Value String - The value of demand signal resource's property constraint.
- constraint
Name string - The name of demand signal resource's property constraint.
- constraint
Value string - The value of demand signal resource's property constraint.
- constraint_
name str - The name of demand signal resource's property constraint.
- constraint_
value str - The value of demand signal resource's property constraint.
- constraint
Name String - The name of demand signal resource's property constraint.
- constraint
Value String - The value of demand signal resource's property constraint.
GetInternalOccmDemandSignalCatalogResourcesInternalOccmDemandSignalCatalogResourceCollectionItemResourcePropertyItem
- Is
Editable bool - This will indicate if demand signal resource's property is editable.
- Property
Max stringValue - The maximum value of demand signal resource's property. This is an optional parameter.
- Property
Min stringValue - The minimum value of demand signal resource's property. This is an optional parameter.
- Property
Name string - The name of demand signal resource's property.
- Property
Options List<GetInternal Occm Demand Signal Catalog Resources Internal Occm Demand Signal Catalog Resource Collection Item Resource Property Item Property Option> - Predefined options for demand signal resource's property. This is an optional parameter.
- Property
Unit string - Unit for demand signal resource's property.
- Property
Value string - Default value of demand signal resource's property.
- Is
Editable bool - This will indicate if demand signal resource's property is editable.
- Property
Max stringValue - The maximum value of demand signal resource's property. This is an optional parameter.
- Property
Min stringValue - The minimum value of demand signal resource's property. This is an optional parameter.
- Property
Name string - The name of demand signal resource's property.
- Property
Options []GetInternal Occm Demand Signal Catalog Resources Internal Occm Demand Signal Catalog Resource Collection Item Resource Property Item Property Option - Predefined options for demand signal resource's property. This is an optional parameter.
- Property
Unit string - Unit for demand signal resource's property.
- Property
Value string - Default value of demand signal resource's property.
- is
Editable Boolean - This will indicate if demand signal resource's property is editable.
- property
Max StringValue - The maximum value of demand signal resource's property. This is an optional parameter.
- property
Min StringValue - The minimum value of demand signal resource's property. This is an optional parameter.
- property
Name String - The name of demand signal resource's property.
- property
Options List<GetInternal Occm Demand Signal Catalog Resources Internal Occm Demand Signal Catalog Resource Collection Item Resource Property Item Property Option> - Predefined options for demand signal resource's property. This is an optional parameter.
- property
Unit String - Unit for demand signal resource's property.
- property
Value String - Default value of demand signal resource's property.
- is
Editable boolean - This will indicate if demand signal resource's property is editable.
- property
Max stringValue - The maximum value of demand signal resource's property. This is an optional parameter.
- property
Min stringValue - The minimum value of demand signal resource's property. This is an optional parameter.
- property
Name string - The name of demand signal resource's property.
- property
Options GetInternal Occm Demand Signal Catalog Resources Internal Occm Demand Signal Catalog Resource Collection Item Resource Property Item Property Option[] - Predefined options for demand signal resource's property. This is an optional parameter.
- property
Unit string - Unit for demand signal resource's property.
- property
Value string - Default value of demand signal resource's property.
- is_
editable bool - This will indicate if demand signal resource's property is editable.
- property_
max_ strvalue - The maximum value of demand signal resource's property. This is an optional parameter.
- property_
min_ strvalue - The minimum value of demand signal resource's property. This is an optional parameter.
- property_
name str - The name of demand signal resource's property.
- property_
options Sequence[GetInternal Occm Demand Signal Catalog Resources Internal Occm Demand Signal Catalog Resource Collection Item Resource Property Item Property Option] - Predefined options for demand signal resource's property. This is an optional parameter.
- property_
unit str - Unit for demand signal resource's property.
- property_
value str - Default value of demand signal resource's property.
- is
Editable Boolean - This will indicate if demand signal resource's property is editable.
- property
Max StringValue - The maximum value of demand signal resource's property. This is an optional parameter.
- property
Min StringValue - The minimum value of demand signal resource's property. This is an optional parameter.
- property
Name String - The name of demand signal resource's property.
- property
Options List<Property Map> - Predefined options for demand signal resource's property. This is an optional parameter.
- property
Unit String - Unit for demand signal resource's property.
- property
Value String - Default value of demand signal resource's property.
GetInternalOccmDemandSignalCatalogResourcesInternalOccmDemandSignalCatalogResourceCollectionItemResourcePropertyItemPropertyOption
- Option
Key string - key of a property option like memoryValue, ocpuValue.
- Option
Value string - value of a property option like 64, 2 fastconnect etc.
- Option
Key string - key of a property option like memoryValue, ocpuValue.
- Option
Value string - value of a property option like 64, 2 fastconnect etc.
- option
Key String - key of a property option like memoryValue, ocpuValue.
- option
Value String - value of a property option like 64, 2 fastconnect etc.
- option
Key string - key of a property option like memoryValue, ocpuValue.
- option
Value string - value of a property option like 64, 2 fastconnect etc.
- option_
key str - key of a property option like memoryValue, ocpuValue.
- option_
value str - value of a property option like 64, 2 fastconnect etc.
- option
Key String - key of a property option like memoryValue, ocpuValue.
- option
Value String - value of a property option like 64, 2 fastconnect etc.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.