1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. ClusterPlacementGroups
  5. getClusterPlacementGroups
Oracle Cloud Infrastructure v2.4.0 published on Thursday, Jul 25, 2024 by Pulumi

oci.ClusterPlacementGroups.getClusterPlacementGroups

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v2.4.0 published on Thursday, Jul 25, 2024 by Pulumi

    This data source provides the list of Cluster Placement Groups in Oracle Cloud Infrastructure Cluster Placement Groups service.

    Gets a list of all cluster placement groups in the specified compartment.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testClusterPlacementGroups = oci.ClusterPlacementGroups.getClusterPlacementGroups({
        ad: clusterPlacementGroupAd,
        compartmentId: compartmentId,
        compartmentIdInSubtree: clusterPlacementGroupCompartmentIdInSubtree,
        id: clusterPlacementGroupId,
        name: clusterPlacementGroupName,
        state: clusterPlacementGroupState,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_cluster_placement_groups = oci.ClusterPlacementGroups.get_cluster_placement_groups(ad=cluster_placement_group_ad,
        compartment_id=compartment_id,
        compartment_id_in_subtree=cluster_placement_group_compartment_id_in_subtree,
        id=cluster_placement_group_id,
        name=cluster_placement_group_name,
        state=cluster_placement_group_state)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/ClusterPlacementGroups"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := ClusterPlacementGroups.GetClusterPlacementGroups(ctx, &clusterplacementgroups.GetClusterPlacementGroupsArgs{
    			Ad:                     pulumi.StringRef(clusterPlacementGroupAd),
    			CompartmentId:          pulumi.StringRef(compartmentId),
    			CompartmentIdInSubtree: pulumi.BoolRef(clusterPlacementGroupCompartmentIdInSubtree),
    			Id:                     pulumi.StringRef(clusterPlacementGroupId),
    			Name:                   pulumi.StringRef(clusterPlacementGroupName),
    			State:                  pulumi.StringRef(clusterPlacementGroupState),
    		}, 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 testClusterPlacementGroups = Oci.ClusterPlacementGroups.GetClusterPlacementGroups.Invoke(new()
        {
            Ad = clusterPlacementGroupAd,
            CompartmentId = compartmentId,
            CompartmentIdInSubtree = clusterPlacementGroupCompartmentIdInSubtree,
            Id = clusterPlacementGroupId,
            Name = clusterPlacementGroupName,
            State = clusterPlacementGroupState,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.ClusterPlacementGroups.ClusterPlacementGroupsFunctions;
    import com.pulumi.oci.ClusterPlacementGroups.inputs.GetClusterPlacementGroupsArgs;
    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 testClusterPlacementGroups = ClusterPlacementGroupsFunctions.getClusterPlacementGroups(GetClusterPlacementGroupsArgs.builder()
                .ad(clusterPlacementGroupAd)
                .compartmentId(compartmentId)
                .compartmentIdInSubtree(clusterPlacementGroupCompartmentIdInSubtree)
                .id(clusterPlacementGroupId)
                .name(clusterPlacementGroupName)
                .state(clusterPlacementGroupState)
                .build());
    
        }
    }
    
    variables:
      testClusterPlacementGroups:
        fn::invoke:
          Function: oci:ClusterPlacementGroups:getClusterPlacementGroups
          Arguments:
            ad: ${clusterPlacementGroupAd}
            compartmentId: ${compartmentId}
            compartmentIdInSubtree: ${clusterPlacementGroupCompartmentIdInSubtree}
            id: ${clusterPlacementGroupId}
            name: ${clusterPlacementGroupName}
            state: ${clusterPlacementGroupState}
    

    Using getClusterPlacementGroups

    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 getClusterPlacementGroups(args: GetClusterPlacementGroupsArgs, opts?: InvokeOptions): Promise<GetClusterPlacementGroupsResult>
    function getClusterPlacementGroupsOutput(args: GetClusterPlacementGroupsOutputArgs, opts?: InvokeOptions): Output<GetClusterPlacementGroupsResult>
    def get_cluster_placement_groups(ad: Optional[str] = None,
                                     compartment_id: Optional[str] = None,
                                     compartment_id_in_subtree: Optional[bool] = None,
                                     filters: Optional[Sequence[_clusterplacementgroups.GetClusterPlacementGroupsFilter]] = None,
                                     id: Optional[str] = None,
                                     name: Optional[str] = None,
                                     state: Optional[str] = None,
                                     opts: Optional[InvokeOptions] = None) -> GetClusterPlacementGroupsResult
    def get_cluster_placement_groups_output(ad: Optional[pulumi.Input[str]] = None,
                                     compartment_id: Optional[pulumi.Input[str]] = None,
                                     compartment_id_in_subtree: Optional[pulumi.Input[bool]] = None,
                                     filters: Optional[pulumi.Input[Sequence[pulumi.Input[_clusterplacementgroups.GetClusterPlacementGroupsFilterArgs]]]] = None,
                                     id: Optional[pulumi.Input[str]] = None,
                                     name: Optional[pulumi.Input[str]] = None,
                                     state: Optional[pulumi.Input[str]] = None,
                                     opts: Optional[InvokeOptions] = None) -> Output[GetClusterPlacementGroupsResult]
    func GetClusterPlacementGroups(ctx *Context, args *GetClusterPlacementGroupsArgs, opts ...InvokeOption) (*GetClusterPlacementGroupsResult, error)
    func GetClusterPlacementGroupsOutput(ctx *Context, args *GetClusterPlacementGroupsOutputArgs, opts ...InvokeOption) GetClusterPlacementGroupsResultOutput

    > Note: This function is named GetClusterPlacementGroups in the Go SDK.

    public static class GetClusterPlacementGroups 
    {
        public static Task<GetClusterPlacementGroupsResult> InvokeAsync(GetClusterPlacementGroupsArgs args, InvokeOptions? opts = null)
        public static Output<GetClusterPlacementGroupsResult> Invoke(GetClusterPlacementGroupsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetClusterPlacementGroupsResult> getClusterPlacementGroups(GetClusterPlacementGroupsArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: oci:ClusterPlacementGroups/getClusterPlacementGroups:getClusterPlacementGroups
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Ad string
    A filter to return only the resources that match the specified availability domain.
    CompartmentId string
    A filter to return only the resources that match the specified compartment OCID.
    CompartmentIdInSubtree bool
    When set to true, cluster placement groups in all compartments under the specified compartment are returned. The default is set to false.
    Filters List<GetClusterPlacementGroupsFilter>
    Id string
    A filter to return only the resources that match the specified unique cluster placement group identifier.
    Name string
    A filter to return only the resources that match the entire display name specified.
    State string
    A filter to return only the resources that match the specified lifecycle state.
    Ad string
    A filter to return only the resources that match the specified availability domain.
    CompartmentId string
    A filter to return only the resources that match the specified compartment OCID.
    CompartmentIdInSubtree bool
    When set to true, cluster placement groups in all compartments under the specified compartment are returned. The default is set to false.
    Filters []GetClusterPlacementGroupsFilter
    Id string
    A filter to return only the resources that match the specified unique cluster placement group identifier.
    Name string
    A filter to return only the resources that match the entire display name specified.
    State string
    A filter to return only the resources that match the specified lifecycle state.
    ad String
    A filter to return only the resources that match the specified availability domain.
    compartmentId String
    A filter to return only the resources that match the specified compartment OCID.
    compartmentIdInSubtree Boolean
    When set to true, cluster placement groups in all compartments under the specified compartment are returned. The default is set to false.
    filters List<GetFilter>
    id String
    A filter to return only the resources that match the specified unique cluster placement group identifier.
    name String
    A filter to return only the resources that match the entire display name specified.
    state String
    A filter to return only the resources that match the specified lifecycle state.
    ad string
    A filter to return only the resources that match the specified availability domain.
    compartmentId string
    A filter to return only the resources that match the specified compartment OCID.
    compartmentIdInSubtree boolean
    When set to true, cluster placement groups in all compartments under the specified compartment are returned. The default is set to false.
    filters GetClusterPlacementGroupsFilter[]
    id string
    A filter to return only the resources that match the specified unique cluster placement group identifier.
    name string
    A filter to return only the resources that match the entire display name specified.
    state string
    A filter to return only the resources that match the specified lifecycle state.
    ad str
    A filter to return only the resources that match the specified availability domain.
    compartment_id str
    A filter to return only the resources that match the specified compartment OCID.
    compartment_id_in_subtree bool
    When set to true, cluster placement groups in all compartments under the specified compartment are returned. The default is set to false.
    filters Sequence[clusterplacementgroups.GetClusterPlacementGroupsFilter]
    id str
    A filter to return only the resources that match the specified unique cluster placement group identifier.
    name str
    A filter to return only the resources that match the entire display name specified.
    state str
    A filter to return only the resources that match the specified lifecycle state.
    ad String
    A filter to return only the resources that match the specified availability domain.
    compartmentId String
    A filter to return only the resources that match the specified compartment OCID.
    compartmentIdInSubtree Boolean
    When set to true, cluster placement groups in all compartments under the specified compartment are returned. The default is set to false.
    filters List<Property Map>
    id String
    A filter to return only the resources that match the specified unique cluster placement group identifier.
    name String
    A filter to return only the resources that match the entire display name specified.
    state String
    A filter to return only the resources that match the specified lifecycle state.

    getClusterPlacementGroups Result

    The following output properties are available:

    ClusterPlacementGroupCollections List<GetClusterPlacementGroupsClusterPlacementGroupCollection>
    The list of cluster_placement_group_collection.
    Ad string
    CompartmentId string
    The OCID of the compartment that contains the cluster placement group.
    CompartmentIdInSubtree bool
    Filters List<GetClusterPlacementGroupsFilter>
    Id string
    The OCID of the cluster placement group.
    Name string
    The user-friendly name of the cluster placement group. The display name for a cluster placement must be unique and you cannot change it. Avoid entering confidential information.
    State string
    The current state of the ClusterPlacementGroup.
    ClusterPlacementGroupCollections []GetClusterPlacementGroupsClusterPlacementGroupCollection
    The list of cluster_placement_group_collection.
    Ad string
    CompartmentId string
    The OCID of the compartment that contains the cluster placement group.
    CompartmentIdInSubtree bool
    Filters []GetClusterPlacementGroupsFilter
    Id string
    The OCID of the cluster placement group.
    Name string
    The user-friendly name of the cluster placement group. The display name for a cluster placement must be unique and you cannot change it. Avoid entering confidential information.
    State string
    The current state of the ClusterPlacementGroup.
    clusterPlacementGroupCollections List<GetClusterPlacementGroupCollection>
    The list of cluster_placement_group_collection.
    ad String
    compartmentId String
    The OCID of the compartment that contains the cluster placement group.
    compartmentIdInSubtree Boolean
    filters List<GetFilter>
    id String
    The OCID of the cluster placement group.
    name String
    The user-friendly name of the cluster placement group. The display name for a cluster placement must be unique and you cannot change it. Avoid entering confidential information.
    state String
    The current state of the ClusterPlacementGroup.
    clusterPlacementGroupCollections GetClusterPlacementGroupsClusterPlacementGroupCollection[]
    The list of cluster_placement_group_collection.
    ad string
    compartmentId string
    The OCID of the compartment that contains the cluster placement group.
    compartmentIdInSubtree boolean
    filters GetClusterPlacementGroupsFilter[]
    id string
    The OCID of the cluster placement group.
    name string
    The user-friendly name of the cluster placement group. The display name for a cluster placement must be unique and you cannot change it. Avoid entering confidential information.
    state string
    The current state of the ClusterPlacementGroup.
    cluster_placement_group_collections Sequence[clusterplacementgroups.GetClusterPlacementGroupsClusterPlacementGroupCollection]
    The list of cluster_placement_group_collection.
    ad str
    compartment_id str
    The OCID of the compartment that contains the cluster placement group.
    compartment_id_in_subtree bool
    filters Sequence[clusterplacementgroups.GetClusterPlacementGroupsFilter]
    id str
    The OCID of the cluster placement group.
    name str
    The user-friendly name of the cluster placement group. The display name for a cluster placement must be unique and you cannot change it. Avoid entering confidential information.
    state str
    The current state of the ClusterPlacementGroup.
    clusterPlacementGroupCollections List<Property Map>
    The list of cluster_placement_group_collection.
    ad String
    compartmentId String
    The OCID of the compartment that contains the cluster placement group.
    compartmentIdInSubtree Boolean
    filters List<Property Map>
    id String
    The OCID of the cluster placement group.
    name String
    The user-friendly name of the cluster placement group. The display name for a cluster placement must be unique and you cannot change it. Avoid entering confidential information.
    state String
    The current state of the ClusterPlacementGroup.

    Supporting Types

    GetClusterPlacementGroupsClusterPlacementGroupCollection

    items List<Property Map>
    The supported resources.

    GetClusterPlacementGroupsClusterPlacementGroupCollectionItem

    AvailabilityDomain string
    The availability domain of the cluster placement group.
    Capabilities List<GetClusterPlacementGroupsClusterPlacementGroupCollectionItemCapability>
    A list of resources that you can create in a cluster placement group.
    ClusterPlacementGroupType string
    The type of cluster placement group.
    CompartmentId string
    A filter to return only the resources that match the specified compartment OCID.
    DefinedTags Dictionary<string, object>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    Description string
    A description of the cluster placement group.
    FreeformTags Dictionary<string, object>
    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
    A filter to return only the resources that match the specified unique cluster placement group identifier.
    LifecycleDetails string
    A message describing the current state in more detail. For example, lifecycle details for a resource in a Failed state might include information to act on.
    Name string
    A filter to return only the resources that match the entire display name specified.
    OpcDryRun bool
    PlacementInstructions List<GetClusterPlacementGroupsClusterPlacementGroupCollectionItemPlacementInstruction>
    Details that inform cluster placement group provisioning.
    State string
    A filter to return only the resources that match the specified lifecycle state.
    SystemTags Dictionary<string, object>
    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 the cluster placement group was created, expressed in RFC 3339 timestamp format.
    TimeUpdated string
    The time the cluster placement group was updated, expressed in RFC 3339 timestamp format.
    AvailabilityDomain string
    The availability domain of the cluster placement group.
    Capabilities []GetClusterPlacementGroupsClusterPlacementGroupCollectionItemCapability
    A list of resources that you can create in a cluster placement group.
    ClusterPlacementGroupType string
    The type of cluster placement group.
    CompartmentId string
    A filter to return only the resources that match the specified compartment OCID.
    DefinedTags map[string]interface{}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    Description string
    A description of the cluster placement group.
    FreeformTags map[string]interface{}
    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
    A filter to return only the resources that match the specified unique cluster placement group identifier.
    LifecycleDetails string
    A message describing the current state in more detail. For example, lifecycle details for a resource in a Failed state might include information to act on.
    Name string
    A filter to return only the resources that match the entire display name specified.
    OpcDryRun bool
    PlacementInstructions []GetClusterPlacementGroupsClusterPlacementGroupCollectionItemPlacementInstruction
    Details that inform cluster placement group provisioning.
    State string
    A filter to return only the resources that match the specified lifecycle state.
    SystemTags map[string]interface{}
    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 the cluster placement group was created, expressed in RFC 3339 timestamp format.
    TimeUpdated string
    The time the cluster placement group was updated, expressed in RFC 3339 timestamp format.
    availabilityDomain String
    The availability domain of the cluster placement group.
    capabilities List<GetClusterPlacementGroupCollectionItemCapability>
    A list of resources that you can create in a cluster placement group.
    clusterPlacementGroupType String
    The type of cluster placement group.
    compartmentId String
    A filter to return only the resources that match the specified compartment OCID.
    definedTags Map<String,Object>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description String
    A description of the cluster placement group.
    freeformTags Map<String,Object>
    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
    A filter to return only the resources that match the specified unique cluster placement group identifier.
    lifecycleDetails String
    A message describing the current state in more detail. For example, lifecycle details for a resource in a Failed state might include information to act on.
    name String
    A filter to return only the resources that match the entire display name specified.
    opcDryRun Boolean
    placementInstructions List<GetClusterPlacementGroupCollectionItemPlacementInstruction>
    Details that inform cluster placement group provisioning.
    state String
    A filter to return only the resources that match the specified lifecycle state.
    systemTags Map<String,Object>
    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 the cluster placement group was created, expressed in RFC 3339 timestamp format.
    timeUpdated String
    The time the cluster placement group was updated, expressed in RFC 3339 timestamp format.
    availabilityDomain string
    The availability domain of the cluster placement group.
    capabilities GetClusterPlacementGroupsClusterPlacementGroupCollectionItemCapability[]
    A list of resources that you can create in a cluster placement group.
    clusterPlacementGroupType string
    The type of cluster placement group.
    compartmentId string
    A filter to return only the resources that match the specified compartment OCID.
    definedTags {[key: string]: any}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description string
    A description of the cluster placement group.
    freeformTags {[key: string]: any}
    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
    A filter to return only the resources that match the specified unique cluster placement group identifier.
    lifecycleDetails string
    A message describing the current state in more detail. For example, lifecycle details for a resource in a Failed state might include information to act on.
    name string
    A filter to return only the resources that match the entire display name specified.
    opcDryRun boolean
    placementInstructions GetClusterPlacementGroupsClusterPlacementGroupCollectionItemPlacementInstruction[]
    Details that inform cluster placement group provisioning.
    state string
    A filter to return only the resources that match the specified lifecycle state.
    systemTags {[key: string]: any}
    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 the cluster placement group was created, expressed in RFC 3339 timestamp format.
    timeUpdated string
    The time the cluster placement group was updated, expressed in RFC 3339 timestamp format.
    availability_domain str
    The availability domain of the cluster placement group.
    capabilities Sequence[clusterplacementgroups.GetClusterPlacementGroupsClusterPlacementGroupCollectionItemCapability]
    A list of resources that you can create in a cluster placement group.
    cluster_placement_group_type str
    The type of cluster placement group.
    compartment_id str
    A filter to return only the resources that match the specified compartment OCID.
    defined_tags Mapping[str, Any]
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description str
    A description of the cluster placement group.
    freeform_tags Mapping[str, Any]
    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
    A filter to return only the resources that match the specified unique cluster placement group identifier.
    lifecycle_details str
    A message describing the current state in more detail. For example, lifecycle details for a resource in a Failed state might include information to act on.
    name str
    A filter to return only the resources that match the entire display name specified.
    opc_dry_run bool
    placement_instructions Sequence[clusterplacementgroups.GetClusterPlacementGroupsClusterPlacementGroupCollectionItemPlacementInstruction]
    Details that inform cluster placement group provisioning.
    state str
    A filter to return only the resources that match the specified lifecycle state.
    system_tags Mapping[str, Any]
    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 the cluster placement group was created, expressed in RFC 3339 timestamp format.
    time_updated str
    The time the cluster placement group was updated, expressed in RFC 3339 timestamp format.
    availabilityDomain String
    The availability domain of the cluster placement group.
    capabilities List<Property Map>
    A list of resources that you can create in a cluster placement group.
    clusterPlacementGroupType String
    The type of cluster placement group.
    compartmentId String
    A filter to return only the resources that match the specified compartment OCID.
    definedTags Map<Any>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description String
    A description of the cluster placement group.
    freeformTags Map<Any>
    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
    A filter to return only the resources that match the specified unique cluster placement group identifier.
    lifecycleDetails String
    A message describing the current state in more detail. For example, lifecycle details for a resource in a Failed state might include information to act on.
    name String
    A filter to return only the resources that match the entire display name specified.
    opcDryRun Boolean
    placementInstructions List<Property Map>
    Details that inform cluster placement group provisioning.
    state String
    A filter to return only the resources that match the specified lifecycle state.
    systemTags Map<Any>
    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 the cluster placement group was created, expressed in RFC 3339 timestamp format.
    timeUpdated String
    The time the cluster placement group was updated, expressed in RFC 3339 timestamp format.

    GetClusterPlacementGroupsClusterPlacementGroupCollectionItemCapability

    items List<Property Map>
    The supported resources.

    GetClusterPlacementGroupsClusterPlacementGroupCollectionItemCapabilityItem

    Name string
    A filter to return only the resources that match the entire display name specified.
    Service string
    The service that the resource is part of.
    Name string
    A filter to return only the resources that match the entire display name specified.
    Service string
    The service that the resource is part of.
    name String
    A filter to return only the resources that match the entire display name specified.
    service String
    The service that the resource is part of.
    name string
    A filter to return only the resources that match the entire display name specified.
    service string
    The service that the resource is part of.
    name str
    A filter to return only the resources that match the entire display name specified.
    service str
    The service that the resource is part of.
    name String
    A filter to return only the resources that match the entire display name specified.
    service String
    The service that the resource is part of.

    GetClusterPlacementGroupsClusterPlacementGroupCollectionItemPlacementInstruction

    Type string
    The type of placement instruction.
    Value string
    The value of the token designated for placement of the cluster placement group upon creation.
    Type string
    The type of placement instruction.
    Value string
    The value of the token designated for placement of the cluster placement group upon creation.
    type String
    The type of placement instruction.
    value String
    The value of the token designated for placement of the cluster placement group upon creation.
    type string
    The type of placement instruction.
    value string
    The value of the token designated for placement of the cluster placement group upon creation.
    type str
    The type of placement instruction.
    value str
    The value of the token designated for placement of the cluster placement group upon creation.
    type String
    The type of placement instruction.
    value String
    The value of the token designated for placement of the cluster placement group upon creation.

    GetClusterPlacementGroupsFilter

    Name string
    A filter to return only the resources that match the entire display name specified.
    Values List<string>
    Regex bool
    Name string
    A filter to return only the resources that match the entire display name specified.
    Values []string
    Regex bool
    name String
    A filter to return only the resources that match the entire display name specified.
    values List<String>
    regex Boolean
    name string
    A filter to return only the resources that match the entire display name specified.
    values string[]
    regex boolean
    name str
    A filter to return only the resources that match the entire display name specified.
    values Sequence[str]
    regex bool
    name String
    A filter to return only the resources that match the entire display name specified.
    values List<String>
    regex Boolean

    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 v2.4.0 published on Thursday, Jul 25, 2024 by Pulumi