1. Packages
  2. Packages
  3. Gcore Provider
  4. API Docs
  5. getCloudGpuVirtualClusters
Viewing docs for gcore 2.0.0-alpha.11
published on Wednesday, Jul 1, 2026 by g-core
Viewing docs for gcore 2.0.0-alpha.11
published on Wednesday, Jul 1, 2026 by g-core

    GPU virtual clusters provide managed virtual GPU servers with auto-scaling for parallel computation workloads.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as gcore from "@pulumi/gcore";
    
    const exampleCloudGpuVirtualClusters = gcore.getCloudGpuVirtualClusters({
        projectId: 1,
        regionId: 7,
        createdAt: {
            gt: "2019-12-27T18:11:19.117Z",
            gte: "2019-12-27T18:11:19.117Z",
            lt: "2019-12-27T18:11:19.117Z",
            lte: "2019-12-27T18:11:19.117Z",
        },
        flavor: {
            contains: ["string"],
            exacts: ["string"],
            prefixes: ["string"],
            suffixes: ["string"],
        },
        ids: ["1aaaab48-10d0-46d9-80cc-85209284ceb4"],
        name: {
            contains: ["string"],
            exacts: ["string"],
            prefixes: ["string"],
            suffixes: ["string"],
        },
        serversCount: {
            gt: 0,
            gte: 0,
            lt: 0,
            lte: 0,
        },
        tagKey: {
            contains: ["string"],
            exacts: ["string"],
            prefixes: ["string"],
            suffixes: ["string"],
        },
        tagValue: {
            contains: ["string"],
            exacts: ["string"],
            prefixes: ["string"],
            suffixes: ["string"],
        },
        tags: {
            env: "prod",
        },
        updatedAt: {
            gt: "2019-12-27T18:11:19.117Z",
            gte: "2019-12-27T18:11:19.117Z",
            lt: "2019-12-27T18:11:19.117Z",
            lte: "2019-12-27T18:11:19.117Z",
        },
    });
    
    import pulumi
    import pulumi_gcore as gcore
    
    example_cloud_gpu_virtual_clusters = gcore.get_cloud_gpu_virtual_clusters(project_id=1,
        region_id=7,
        created_at={
            "gt": "2019-12-27T18:11:19.117Z",
            "gte": "2019-12-27T18:11:19.117Z",
            "lt": "2019-12-27T18:11:19.117Z",
            "lte": "2019-12-27T18:11:19.117Z",
        },
        flavor={
            "contains": ["string"],
            "exacts": ["string"],
            "prefixes": ["string"],
            "suffixes": ["string"],
        },
        ids=["1aaaab48-10d0-46d9-80cc-85209284ceb4"],
        name={
            "contains": ["string"],
            "exacts": ["string"],
            "prefixes": ["string"],
            "suffixes": ["string"],
        },
        servers_count={
            "gt": 0,
            "gte": 0,
            "lt": 0,
            "lte": 0,
        },
        tag_key={
            "contains": ["string"],
            "exacts": ["string"],
            "prefixes": ["string"],
            "suffixes": ["string"],
        },
        tag_value={
            "contains": ["string"],
            "exacts": ["string"],
            "prefixes": ["string"],
            "suffixes": ["string"],
        },
        tags={
            "env": "prod",
        },
        updated_at={
            "gt": "2019-12-27T18:11:19.117Z",
            "gte": "2019-12-27T18:11:19.117Z",
            "lt": "2019-12-27T18:11:19.117Z",
            "lte": "2019-12-27T18:11:19.117Z",
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/gcore/v2/gcore"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := gcore.GetCloudGpuVirtualClusters(ctx, &gcore.GetCloudGpuVirtualClustersArgs{
    			ProjectId: pulumi.Float64Ref(1),
    			RegionId:  pulumi.Float64Ref(7),
    			CreatedAt: gcore.GetCloudGpuVirtualClustersCreatedAt{
    				Gt:  pulumi.StringRef("2019-12-27T18:11:19.117Z"),
    				Gte: pulumi.StringRef("2019-12-27T18:11:19.117Z"),
    				Lt:  pulumi.StringRef("2019-12-27T18:11:19.117Z"),
    				Lte: pulumi.StringRef("2019-12-27T18:11:19.117Z"),
    			},
    			Flavor: gcore.GetCloudGpuVirtualClustersFlavor{
    				Contains: []string{
    					"string",
    				},
    				Exacts: []string{
    					"string",
    				},
    				Prefixes: []string{
    					"string",
    				},
    				Suffixes: []string{
    					"string",
    				},
    			},
    			Ids: []string{
    				"1aaaab48-10d0-46d9-80cc-85209284ceb4",
    			},
    			Name: gcore.GetCloudGpuVirtualClustersName{
    				Contains: []string{
    					"string",
    				},
    				Exacts: []string{
    					"string",
    				},
    				Prefixes: []string{
    					"string",
    				},
    				Suffixes: []string{
    					"string",
    				},
    			},
    			ServersCount: gcore.GetCloudGpuVirtualClustersServersCount{
    				Gt:  pulumi.Float64Ref(0),
    				Gte: pulumi.Float64Ref(0),
    				Lt:  pulumi.Float64Ref(0),
    				Lte: pulumi.Float64Ref(0),
    			},
    			TagKey: gcore.GetCloudGpuVirtualClustersTagKey{
    				Contains: []string{
    					"string",
    				},
    				Exacts: []string{
    					"string",
    				},
    				Prefixes: []string{
    					"string",
    				},
    				Suffixes: []string{
    					"string",
    				},
    			},
    			TagValue: gcore.GetCloudGpuVirtualClustersTagValue{
    				Contains: []string{
    					"string",
    				},
    				Exacts: []string{
    					"string",
    				},
    				Prefixes: []string{
    					"string",
    				},
    				Suffixes: []string{
    					"string",
    				},
    			},
    			Tags: map[string]interface{}{
    				"env": "prod",
    			},
    			UpdatedAt: gcore.GetCloudGpuVirtualClustersUpdatedAt{
    				Gt:  pulumi.StringRef("2019-12-27T18:11:19.117Z"),
    				Gte: pulumi.StringRef("2019-12-27T18:11:19.117Z"),
    				Lt:  pulumi.StringRef("2019-12-27T18:11:19.117Z"),
    				Lte: pulumi.StringRef("2019-12-27T18:11:19.117Z"),
    			},
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Gcore = Pulumi.Gcore;
    
    return await Deployment.RunAsync(() => 
    {
        var exampleCloudGpuVirtualClusters = Gcore.GetCloudGpuVirtualClusters.Invoke(new()
        {
            ProjectId = 1,
            RegionId = 7,
            CreatedAt = new Gcore.Inputs.GetCloudGpuVirtualClustersCreatedAtInputArgs
            {
                Gt = "2019-12-27T18:11:19.117Z",
                Gte = "2019-12-27T18:11:19.117Z",
                Lt = "2019-12-27T18:11:19.117Z",
                Lte = "2019-12-27T18:11:19.117Z",
            },
            Flavor = new Gcore.Inputs.GetCloudGpuVirtualClustersFlavorInputArgs
            {
                Contains = new[]
                {
                    "string",
                },
                Exacts = new[]
                {
                    "string",
                },
                Prefixes = new[]
                {
                    "string",
                },
                Suffixes = new[]
                {
                    "string",
                },
            },
            Ids = new[]
            {
                "1aaaab48-10d0-46d9-80cc-85209284ceb4",
            },
            Name = new Gcore.Inputs.GetCloudGpuVirtualClustersNameInputArgs
            {
                Contains = new[]
                {
                    "string",
                },
                Exacts = new[]
                {
                    "string",
                },
                Prefixes = new[]
                {
                    "string",
                },
                Suffixes = new[]
                {
                    "string",
                },
            },
            ServersCount = new Gcore.Inputs.GetCloudGpuVirtualClustersServersCountInputArgs
            {
                Gt = 0,
                Gte = 0,
                Lt = 0,
                Lte = 0,
            },
            TagKey = new Gcore.Inputs.GetCloudGpuVirtualClustersTagKeyInputArgs
            {
                Contains = new[]
                {
                    "string",
                },
                Exacts = new[]
                {
                    "string",
                },
                Prefixes = new[]
                {
                    "string",
                },
                Suffixes = new[]
                {
                    "string",
                },
            },
            TagValue = new Gcore.Inputs.GetCloudGpuVirtualClustersTagValueInputArgs
            {
                Contains = new[]
                {
                    "string",
                },
                Exacts = new[]
                {
                    "string",
                },
                Prefixes = new[]
                {
                    "string",
                },
                Suffixes = new[]
                {
                    "string",
                },
            },
            Tags = 
            {
                { "env", "prod" },
            },
            UpdatedAt = new Gcore.Inputs.GetCloudGpuVirtualClustersUpdatedAtInputArgs
            {
                Gt = "2019-12-27T18:11:19.117Z",
                Gte = "2019-12-27T18:11:19.117Z",
                Lt = "2019-12-27T18:11:19.117Z",
                Lte = "2019-12-27T18:11:19.117Z",
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.gcore.GcoreFunctions;
    import com.pulumi.gcore.inputs.GetCloudGpuVirtualClustersArgs;
    import com.pulumi.gcore.inputs.GetCloudGpuVirtualClustersCreatedAtArgs;
    import com.pulumi.gcore.inputs.GetCloudGpuVirtualClustersFlavorArgs;
    import com.pulumi.gcore.inputs.GetCloudGpuVirtualClustersNameArgs;
    import com.pulumi.gcore.inputs.GetCloudGpuVirtualClustersServersCountArgs;
    import com.pulumi.gcore.inputs.GetCloudGpuVirtualClustersTagKeyArgs;
    import com.pulumi.gcore.inputs.GetCloudGpuVirtualClustersTagValueArgs;
    import com.pulumi.gcore.inputs.GetCloudGpuVirtualClustersUpdatedAtArgs;
    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 exampleCloudGpuVirtualClusters = GcoreFunctions.getCloudGpuVirtualClusters(GetCloudGpuVirtualClustersArgs.builder()
                .projectId(1)
                .regionId(7)
                .createdAt(GetCloudGpuVirtualClustersCreatedAtArgs.builder()
                    .gt("2019-12-27T18:11:19.117Z")
                    .gte("2019-12-27T18:11:19.117Z")
                    .lt("2019-12-27T18:11:19.117Z")
                    .lte("2019-12-27T18:11:19.117Z")
                    .build())
                .flavor(GetCloudGpuVirtualClustersFlavorArgs.builder()
                    .contains("string")
                    .exacts("string")
                    .prefixes("string")
                    .suffixes("string")
                    .build())
                .ids("1aaaab48-10d0-46d9-80cc-85209284ceb4")
                .name(GetCloudGpuVirtualClustersNameArgs.builder()
                    .contains("string")
                    .exacts("string")
                    .prefixes("string")
                    .suffixes("string")
                    .build())
                .serversCount(GetCloudGpuVirtualClustersServersCountArgs.builder()
                    .gt(0)
                    .gte(0)
                    .lt(0)
                    .lte(0)
                    .build())
                .tagKey(GetCloudGpuVirtualClustersTagKeyArgs.builder()
                    .contains("string")
                    .exacts("string")
                    .prefixes("string")
                    .suffixes("string")
                    .build())
                .tagValue(GetCloudGpuVirtualClustersTagValueArgs.builder()
                    .contains("string")
                    .exacts("string")
                    .prefixes("string")
                    .suffixes("string")
                    .build())
                .tags(Map.of("env", "prod"))
                .updatedAt(GetCloudGpuVirtualClustersUpdatedAtArgs.builder()
                    .gt("2019-12-27T18:11:19.117Z")
                    .gte("2019-12-27T18:11:19.117Z")
                    .lt("2019-12-27T18:11:19.117Z")
                    .lte("2019-12-27T18:11:19.117Z")
                    .build())
                .build());
    
        }
    }
    
    variables:
      exampleCloudGpuVirtualClusters:
        fn::invoke:
          function: gcore:getCloudGpuVirtualClusters
          arguments:
            projectId: 1
            regionId: 7
            createdAt:
              gt: 2019-12-27T18:11:19.117Z
              gte: 2019-12-27T18:11:19.117Z
              lt: 2019-12-27T18:11:19.117Z
              lte: 2019-12-27T18:11:19.117Z
            flavor:
              contains:
                - string
              exacts:
                - string
              prefixes:
                - string
              suffixes:
                - string
            ids:
              - 1aaaab48-10d0-46d9-80cc-85209284ceb4
            name:
              contains:
                - string
              exacts:
                - string
              prefixes:
                - string
              suffixes:
                - string
            serversCount:
              gt: 0
              gte: 0
              lt: 0
              lte: 0
            tagKey:
              contains:
                - string
              exacts:
                - string
              prefixes:
                - string
              suffixes:
                - string
            tagValue:
              contains:
                - string
              exacts:
                - string
              prefixes:
                - string
              suffixes:
                - string
            tags:
              env: prod
            updatedAt:
              gt: 2019-12-27T18:11:19.117Z
              gte: 2019-12-27T18:11:19.117Z
              lt: 2019-12-27T18:11:19.117Z
              lte: 2019-12-27T18:11:19.117Z
    
    Example coming soon!
    

    Using getCloudGpuVirtualClusters

    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 getCloudGpuVirtualClusters(args: GetCloudGpuVirtualClustersArgs, opts?: InvokeOptions): Promise<GetCloudGpuVirtualClustersResult>
    function getCloudGpuVirtualClustersOutput(args: GetCloudGpuVirtualClustersOutputArgs, opts?: InvokeOptions): Output<GetCloudGpuVirtualClustersResult>
    def get_cloud_gpu_virtual_clusters(created_at: Optional[GetCloudGpuVirtualClustersCreatedAt] = None,
                                       flavor: Optional[GetCloudGpuVirtualClustersFlavor] = None,
                                       ids: Optional[Sequence[str]] = None,
                                       max_items: Optional[float] = None,
                                       name: Optional[GetCloudGpuVirtualClustersName] = None,
                                       project_id: Optional[float] = None,
                                       region_id: Optional[float] = None,
                                       servers_count: Optional[GetCloudGpuVirtualClustersServersCount] = None,
                                       tag_key: Optional[GetCloudGpuVirtualClustersTagKey] = None,
                                       tag_value: Optional[GetCloudGpuVirtualClustersTagValue] = None,
                                       tags: Optional[Mapping[str, str]] = None,
                                       updated_at: Optional[GetCloudGpuVirtualClustersUpdatedAt] = None,
                                       opts: Optional[InvokeOptions] = None) -> GetCloudGpuVirtualClustersResult
    def get_cloud_gpu_virtual_clusters_output(created_at: pulumi.Input[Optional[GetCloudGpuVirtualClustersCreatedAtArgs]] = None,
                                       flavor: pulumi.Input[Optional[GetCloudGpuVirtualClustersFlavorArgs]] = None,
                                       ids: pulumi.Input[Optional[Sequence[pulumi.Input[str]]]] = None,
                                       max_items: pulumi.Input[Optional[float]] = None,
                                       name: pulumi.Input[Optional[GetCloudGpuVirtualClustersNameArgs]] = None,
                                       project_id: pulumi.Input[Optional[float]] = None,
                                       region_id: pulumi.Input[Optional[float]] = None,
                                       servers_count: pulumi.Input[Optional[GetCloudGpuVirtualClustersServersCountArgs]] = None,
                                       tag_key: pulumi.Input[Optional[GetCloudGpuVirtualClustersTagKeyArgs]] = None,
                                       tag_value: pulumi.Input[Optional[GetCloudGpuVirtualClustersTagValueArgs]] = None,
                                       tags: pulumi.Input[Optional[Mapping[str, pulumi.Input[str]]]] = None,
                                       updated_at: pulumi.Input[Optional[GetCloudGpuVirtualClustersUpdatedAtArgs]] = None,
                                       opts: Optional[InvokeOptions] = None) -> Output[GetCloudGpuVirtualClustersResult]
    func GetCloudGpuVirtualClusters(ctx *Context, args *GetCloudGpuVirtualClustersArgs, opts ...InvokeOption) (*GetCloudGpuVirtualClustersResult, error)
    func GetCloudGpuVirtualClustersOutput(ctx *Context, args *GetCloudGpuVirtualClustersOutputArgs, opts ...InvokeOption) GetCloudGpuVirtualClustersResultOutput

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

    public static class GetCloudGpuVirtualClusters 
    {
        public static Task<GetCloudGpuVirtualClustersResult> InvokeAsync(GetCloudGpuVirtualClustersArgs args, InvokeOptions? opts = null)
        public static Output<GetCloudGpuVirtualClustersResult> Invoke(GetCloudGpuVirtualClustersInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetCloudGpuVirtualClustersResult> getCloudGpuVirtualClusters(GetCloudGpuVirtualClustersArgs args, InvokeOptions options)
    public static Output<GetCloudGpuVirtualClustersResult> getCloudGpuVirtualClusters(GetCloudGpuVirtualClustersArgs args, InvokeOptions options)
    
    fn::invoke:
      function: gcore:index/getCloudGpuVirtualClusters:getCloudGpuVirtualClusters
      arguments:
        # arguments dictionary
    data "gcore_getcloudgpuvirtualclusters" "name" {
        # arguments
    }

    The following arguments are supported:

    CreatedAt GetCloudGpuVirtualClustersCreatedAt
    Filter by creation time (UTC), e.g. created_at[gte]=2026-01-01T00:00:00Z.
    Flavor GetCloudGpuVirtualClustersFlavor
    Filter by flavor (case-insensitive), e.g. flavor[prefix]=g3-, flavor[exact]=g3-ai-32-192-1500-l40s-48-1.
    Ids List<string>
    Return only clusters with these IDs, e.g. ids=<id1>&ids=<id2>.
    MaxItems double
    Max items to fetch, default: 1000
    Name GetCloudGpuVirtualClustersName
    Filter by name (case-insensitive), e.g. name[contains]=gpu, name[prefix]=prod-.
    ProjectId double
    Project ID
    RegionId double
    Region ID
    ServersCount GetCloudGpuVirtualClustersServersCount
    Filter by node count, e.g. servers_count[gte]=2, servers_count[gte]=2&servers_count[lt]=8.
    TagKey GetCloudGpuVirtualClustersTagKey
    Filter by tag key regardless of value, e.g. tag_key[contains]=team.
    TagValue GetCloudGpuVirtualClustersTagValue
    Filter by tag value regardless of key, e.g. tag_value[prefix]=prod.
    Tags Dictionary<string, string>
    Filter by exact tag key-value pairs, e.g. tags[env]=prod&tags[team]=core. Pairs are ANDed; values match case-insensitively.
    UpdatedAt GetCloudGpuVirtualClustersUpdatedAt
    Filter by last-change time (UTC), e.g. updated_at[gte]=2026-06-01T00:00:00Z.
    CreatedAt GetCloudGpuVirtualClustersCreatedAt
    Filter by creation time (UTC), e.g. created_at[gte]=2026-01-01T00:00:00Z.
    Flavor GetCloudGpuVirtualClustersFlavor
    Filter by flavor (case-insensitive), e.g. flavor[prefix]=g3-, flavor[exact]=g3-ai-32-192-1500-l40s-48-1.
    Ids []string
    Return only clusters with these IDs, e.g. ids=<id1>&ids=<id2>.
    MaxItems float64
    Max items to fetch, default: 1000
    Name GetCloudGpuVirtualClustersName
    Filter by name (case-insensitive), e.g. name[contains]=gpu, name[prefix]=prod-.
    ProjectId float64
    Project ID
    RegionId float64
    Region ID
    ServersCount GetCloudGpuVirtualClustersServersCount
    Filter by node count, e.g. servers_count[gte]=2, servers_count[gte]=2&servers_count[lt]=8.
    TagKey GetCloudGpuVirtualClustersTagKey
    Filter by tag key regardless of value, e.g. tag_key[contains]=team.
    TagValue GetCloudGpuVirtualClustersTagValue
    Filter by tag value regardless of key, e.g. tag_value[prefix]=prod.
    Tags map[string]string
    Filter by exact tag key-value pairs, e.g. tags[env]=prod&tags[team]=core. Pairs are ANDed; values match case-insensitively.
    UpdatedAt GetCloudGpuVirtualClustersUpdatedAt
    Filter by last-change time (UTC), e.g. updated_at[gte]=2026-06-01T00:00:00Z.
    created_at object
    Filter by creation time (UTC), e.g. created_at[gte]=2026-01-01T00:00:00Z.
    flavor object
    Filter by flavor (case-insensitive), e.g. flavor[prefix]=g3-, flavor[exact]=g3-ai-32-192-1500-l40s-48-1.
    ids list(string)
    Return only clusters with these IDs, e.g. ids=<id1>&ids=<id2>.
    max_items number
    Max items to fetch, default: 1000
    name object
    Filter by name (case-insensitive), e.g. name[contains]=gpu, name[prefix]=prod-.
    project_id number
    Project ID
    region_id number
    Region ID
    servers_count object
    Filter by node count, e.g. servers_count[gte]=2, servers_count[gte]=2&servers_count[lt]=8.
    tag_key object
    Filter by tag key regardless of value, e.g. tag_key[contains]=team.
    tag_value object
    Filter by tag value regardless of key, e.g. tag_value[prefix]=prod.
    tags map(string)
    Filter by exact tag key-value pairs, e.g. tags[env]=prod&tags[team]=core. Pairs are ANDed; values match case-insensitively.
    updated_at object
    Filter by last-change time (UTC), e.g. updated_at[gte]=2026-06-01T00:00:00Z.
    createdAt GetCloudGpuVirtualClustersCreatedAt
    Filter by creation time (UTC), e.g. created_at[gte]=2026-01-01T00:00:00Z.
    flavor GetCloudGpuVirtualClustersFlavor
    Filter by flavor (case-insensitive), e.g. flavor[prefix]=g3-, flavor[exact]=g3-ai-32-192-1500-l40s-48-1.
    ids List<String>
    Return only clusters with these IDs, e.g. ids=<id1>&ids=<id2>.
    maxItems Double
    Max items to fetch, default: 1000
    name GetCloudGpuVirtualClustersName
    Filter by name (case-insensitive), e.g. name[contains]=gpu, name[prefix]=prod-.
    projectId Double
    Project ID
    regionId Double
    Region ID
    serversCount GetCloudGpuVirtualClustersServersCount
    Filter by node count, e.g. servers_count[gte]=2, servers_count[gte]=2&servers_count[lt]=8.
    tagKey GetCloudGpuVirtualClustersTagKey
    Filter by tag key regardless of value, e.g. tag_key[contains]=team.
    tagValue GetCloudGpuVirtualClustersTagValue
    Filter by tag value regardless of key, e.g. tag_value[prefix]=prod.
    tags Map<String,String>
    Filter by exact tag key-value pairs, e.g. tags[env]=prod&tags[team]=core. Pairs are ANDed; values match case-insensitively.
    updatedAt GetCloudGpuVirtualClustersUpdatedAt
    Filter by last-change time (UTC), e.g. updated_at[gte]=2026-06-01T00:00:00Z.
    createdAt GetCloudGpuVirtualClustersCreatedAt
    Filter by creation time (UTC), e.g. created_at[gte]=2026-01-01T00:00:00Z.
    flavor GetCloudGpuVirtualClustersFlavor
    Filter by flavor (case-insensitive), e.g. flavor[prefix]=g3-, flavor[exact]=g3-ai-32-192-1500-l40s-48-1.
    ids string[]
    Return only clusters with these IDs, e.g. ids=<id1>&ids=<id2>.
    maxItems number
    Max items to fetch, default: 1000
    name GetCloudGpuVirtualClustersName
    Filter by name (case-insensitive), e.g. name[contains]=gpu, name[prefix]=prod-.
    projectId number
    Project ID
    regionId number
    Region ID
    serversCount GetCloudGpuVirtualClustersServersCount
    Filter by node count, e.g. servers_count[gte]=2, servers_count[gte]=2&servers_count[lt]=8.
    tagKey GetCloudGpuVirtualClustersTagKey
    Filter by tag key regardless of value, e.g. tag_key[contains]=team.
    tagValue GetCloudGpuVirtualClustersTagValue
    Filter by tag value regardless of key, e.g. tag_value[prefix]=prod.
    tags {[key: string]: string}
    Filter by exact tag key-value pairs, e.g. tags[env]=prod&tags[team]=core. Pairs are ANDed; values match case-insensitively.
    updatedAt GetCloudGpuVirtualClustersUpdatedAt
    Filter by last-change time (UTC), e.g. updated_at[gte]=2026-06-01T00:00:00Z.
    created_at GetCloudGpuVirtualClustersCreatedAt
    Filter by creation time (UTC), e.g. created_at[gte]=2026-01-01T00:00:00Z.
    flavor GetCloudGpuVirtualClustersFlavor
    Filter by flavor (case-insensitive), e.g. flavor[prefix]=g3-, flavor[exact]=g3-ai-32-192-1500-l40s-48-1.
    ids Sequence[str]
    Return only clusters with these IDs, e.g. ids=<id1>&ids=<id2>.
    max_items float
    Max items to fetch, default: 1000
    name GetCloudGpuVirtualClustersName
    Filter by name (case-insensitive), e.g. name[contains]=gpu, name[prefix]=prod-.
    project_id float
    Project ID
    region_id float
    Region ID
    servers_count GetCloudGpuVirtualClustersServersCount
    Filter by node count, e.g. servers_count[gte]=2, servers_count[gte]=2&servers_count[lt]=8.
    tag_key GetCloudGpuVirtualClustersTagKey
    Filter by tag key regardless of value, e.g. tag_key[contains]=team.
    tag_value GetCloudGpuVirtualClustersTagValue
    Filter by tag value regardless of key, e.g. tag_value[prefix]=prod.
    tags Mapping[str, str]
    Filter by exact tag key-value pairs, e.g. tags[env]=prod&tags[team]=core. Pairs are ANDed; values match case-insensitively.
    updated_at GetCloudGpuVirtualClustersUpdatedAt
    Filter by last-change time (UTC), e.g. updated_at[gte]=2026-06-01T00:00:00Z.
    createdAt Property Map
    Filter by creation time (UTC), e.g. created_at[gte]=2026-01-01T00:00:00Z.
    flavor Property Map
    Filter by flavor (case-insensitive), e.g. flavor[prefix]=g3-, flavor[exact]=g3-ai-32-192-1500-l40s-48-1.
    ids List<String>
    Return only clusters with these IDs, e.g. ids=<id1>&ids=<id2>.
    maxItems Number
    Max items to fetch, default: 1000
    name Property Map
    Filter by name (case-insensitive), e.g. name[contains]=gpu, name[prefix]=prod-.
    projectId Number
    Project ID
    regionId Number
    Region ID
    serversCount Property Map
    Filter by node count, e.g. servers_count[gte]=2, servers_count[gte]=2&servers_count[lt]=8.
    tagKey Property Map
    Filter by tag key regardless of value, e.g. tag_key[contains]=team.
    tagValue Property Map
    Filter by tag value regardless of key, e.g. tag_value[prefix]=prod.
    tags Map<String>
    Filter by exact tag key-value pairs, e.g. tags[env]=prod&tags[team]=core. Pairs are ANDed; values match case-insensitively.
    updatedAt Property Map
    Filter by last-change time (UTC), e.g. updated_at[gte]=2026-06-01T00:00:00Z.

    getCloudGpuVirtualClusters Result

    The following output properties are available:

    Id string
    The provider-assigned unique ID for this managed resource.
    Items List<GetCloudGpuVirtualClustersItem>
    The items returned by the data source
    CreatedAt GetCloudGpuVirtualClustersCreatedAt
    Filter by creation time (UTC), e.g. created_at[gte]=2026-01-01T00:00:00Z.
    Flavor GetCloudGpuVirtualClustersFlavor
    Filter by flavor (case-insensitive), e.g. flavor[prefix]=g3-, flavor[exact]=g3-ai-32-192-1500-l40s-48-1.
    Ids List<string>
    Return only clusters with these IDs, e.g. ids=<id1>&ids=<id2>.
    MaxItems double
    Max items to fetch, default: 1000
    Name GetCloudGpuVirtualClustersName
    Filter by name (case-insensitive), e.g. name[contains]=gpu, name[prefix]=prod-.
    ProjectId double
    Project ID
    RegionId double
    Region ID
    ServersCount GetCloudGpuVirtualClustersServersCount
    Filter by node count, e.g. servers_count[gte]=2, servers_count[gte]=2&servers_count[lt]=8.
    TagKey GetCloudGpuVirtualClustersTagKey
    Filter by tag key regardless of value, e.g. tag_key[contains]=team.
    TagValue GetCloudGpuVirtualClustersTagValue
    Filter by tag value regardless of key, e.g. tag_value[prefix]=prod.
    Tags Dictionary<string, string>
    Filter by exact tag key-value pairs, e.g. tags[env]=prod&tags[team]=core. Pairs are ANDed; values match case-insensitively.
    UpdatedAt GetCloudGpuVirtualClustersUpdatedAt
    Filter by last-change time (UTC), e.g. updated_at[gte]=2026-06-01T00:00:00Z.
    Id string
    The provider-assigned unique ID for this managed resource.
    Items []GetCloudGpuVirtualClustersItem
    The items returned by the data source
    CreatedAt GetCloudGpuVirtualClustersCreatedAt
    Filter by creation time (UTC), e.g. created_at[gte]=2026-01-01T00:00:00Z.
    Flavor GetCloudGpuVirtualClustersFlavor
    Filter by flavor (case-insensitive), e.g. flavor[prefix]=g3-, flavor[exact]=g3-ai-32-192-1500-l40s-48-1.
    Ids []string
    Return only clusters with these IDs, e.g. ids=<id1>&ids=<id2>.
    MaxItems float64
    Max items to fetch, default: 1000
    Name GetCloudGpuVirtualClustersName
    Filter by name (case-insensitive), e.g. name[contains]=gpu, name[prefix]=prod-.
    ProjectId float64
    Project ID
    RegionId float64
    Region ID
    ServersCount GetCloudGpuVirtualClustersServersCount
    Filter by node count, e.g. servers_count[gte]=2, servers_count[gte]=2&servers_count[lt]=8.
    TagKey GetCloudGpuVirtualClustersTagKey
    Filter by tag key regardless of value, e.g. tag_key[contains]=team.
    TagValue GetCloudGpuVirtualClustersTagValue
    Filter by tag value regardless of key, e.g. tag_value[prefix]=prod.
    Tags map[string]string
    Filter by exact tag key-value pairs, e.g. tags[env]=prod&tags[team]=core. Pairs are ANDed; values match case-insensitively.
    UpdatedAt GetCloudGpuVirtualClustersUpdatedAt
    Filter by last-change time (UTC), e.g. updated_at[gte]=2026-06-01T00:00:00Z.
    id string
    The provider-assigned unique ID for this managed resource.
    items list(object)
    The items returned by the data source
    created_at object
    Filter by creation time (UTC), e.g. created_at[gte]=2026-01-01T00:00:00Z.
    flavor object
    Filter by flavor (case-insensitive), e.g. flavor[prefix]=g3-, flavor[exact]=g3-ai-32-192-1500-l40s-48-1.
    ids list(string)
    Return only clusters with these IDs, e.g. ids=<id1>&ids=<id2>.
    max_items number
    Max items to fetch, default: 1000
    name object
    Filter by name (case-insensitive), e.g. name[contains]=gpu, name[prefix]=prod-.
    project_id number
    Project ID
    region_id number
    Region ID
    servers_count object
    Filter by node count, e.g. servers_count[gte]=2, servers_count[gte]=2&servers_count[lt]=8.
    tag_key object
    Filter by tag key regardless of value, e.g. tag_key[contains]=team.
    tag_value object
    Filter by tag value regardless of key, e.g. tag_value[prefix]=prod.
    tags map(string)
    Filter by exact tag key-value pairs, e.g. tags[env]=prod&tags[team]=core. Pairs are ANDed; values match case-insensitively.
    updated_at object
    Filter by last-change time (UTC), e.g. updated_at[gte]=2026-06-01T00:00:00Z.
    id String
    The provider-assigned unique ID for this managed resource.
    items List<GetCloudGpuVirtualClustersItem>
    The items returned by the data source
    createdAt GetCloudGpuVirtualClustersCreatedAt
    Filter by creation time (UTC), e.g. created_at[gte]=2026-01-01T00:00:00Z.
    flavor GetCloudGpuVirtualClustersFlavor
    Filter by flavor (case-insensitive), e.g. flavor[prefix]=g3-, flavor[exact]=g3-ai-32-192-1500-l40s-48-1.
    ids List<String>
    Return only clusters with these IDs, e.g. ids=<id1>&ids=<id2>.
    maxItems Double
    Max items to fetch, default: 1000
    name GetCloudGpuVirtualClustersName
    Filter by name (case-insensitive), e.g. name[contains]=gpu, name[prefix]=prod-.
    projectId Double
    Project ID
    regionId Double
    Region ID
    serversCount GetCloudGpuVirtualClustersServersCount
    Filter by node count, e.g. servers_count[gte]=2, servers_count[gte]=2&servers_count[lt]=8.
    tagKey GetCloudGpuVirtualClustersTagKey
    Filter by tag key regardless of value, e.g. tag_key[contains]=team.
    tagValue GetCloudGpuVirtualClustersTagValue
    Filter by tag value regardless of key, e.g. tag_value[prefix]=prod.
    tags Map<String,String>
    Filter by exact tag key-value pairs, e.g. tags[env]=prod&tags[team]=core. Pairs are ANDed; values match case-insensitively.
    updatedAt GetCloudGpuVirtualClustersUpdatedAt
    Filter by last-change time (UTC), e.g. updated_at[gte]=2026-06-01T00:00:00Z.
    id string
    The provider-assigned unique ID for this managed resource.
    items GetCloudGpuVirtualClustersItem[]
    The items returned by the data source
    createdAt GetCloudGpuVirtualClustersCreatedAt
    Filter by creation time (UTC), e.g. created_at[gte]=2026-01-01T00:00:00Z.
    flavor GetCloudGpuVirtualClustersFlavor
    Filter by flavor (case-insensitive), e.g. flavor[prefix]=g3-, flavor[exact]=g3-ai-32-192-1500-l40s-48-1.
    ids string[]
    Return only clusters with these IDs, e.g. ids=<id1>&ids=<id2>.
    maxItems number
    Max items to fetch, default: 1000
    name GetCloudGpuVirtualClustersName
    Filter by name (case-insensitive), e.g. name[contains]=gpu, name[prefix]=prod-.
    projectId number
    Project ID
    regionId number
    Region ID
    serversCount GetCloudGpuVirtualClustersServersCount
    Filter by node count, e.g. servers_count[gte]=2, servers_count[gte]=2&servers_count[lt]=8.
    tagKey GetCloudGpuVirtualClustersTagKey
    Filter by tag key regardless of value, e.g. tag_key[contains]=team.
    tagValue GetCloudGpuVirtualClustersTagValue
    Filter by tag value regardless of key, e.g. tag_value[prefix]=prod.
    tags {[key: string]: string}
    Filter by exact tag key-value pairs, e.g. tags[env]=prod&tags[team]=core. Pairs are ANDed; values match case-insensitively.
    updatedAt GetCloudGpuVirtualClustersUpdatedAt
    Filter by last-change time (UTC), e.g. updated_at[gte]=2026-06-01T00:00:00Z.
    id str
    The provider-assigned unique ID for this managed resource.
    items Sequence[GetCloudGpuVirtualClustersItem]
    The items returned by the data source
    created_at GetCloudGpuVirtualClustersCreatedAt
    Filter by creation time (UTC), e.g. created_at[gte]=2026-01-01T00:00:00Z.
    flavor GetCloudGpuVirtualClustersFlavor
    Filter by flavor (case-insensitive), e.g. flavor[prefix]=g3-, flavor[exact]=g3-ai-32-192-1500-l40s-48-1.
    ids Sequence[str]
    Return only clusters with these IDs, e.g. ids=<id1>&ids=<id2>.
    max_items float
    Max items to fetch, default: 1000
    name GetCloudGpuVirtualClustersName
    Filter by name (case-insensitive), e.g. name[contains]=gpu, name[prefix]=prod-.
    project_id float
    Project ID
    region_id float
    Region ID
    servers_count GetCloudGpuVirtualClustersServersCount
    Filter by node count, e.g. servers_count[gte]=2, servers_count[gte]=2&servers_count[lt]=8.
    tag_key GetCloudGpuVirtualClustersTagKey
    Filter by tag key regardless of value, e.g. tag_key[contains]=team.
    tag_value GetCloudGpuVirtualClustersTagValue
    Filter by tag value regardless of key, e.g. tag_value[prefix]=prod.
    tags Mapping[str, str]
    Filter by exact tag key-value pairs, e.g. tags[env]=prod&tags[team]=core. Pairs are ANDed; values match case-insensitively.
    updated_at GetCloudGpuVirtualClustersUpdatedAt
    Filter by last-change time (UTC), e.g. updated_at[gte]=2026-06-01T00:00:00Z.
    id String
    The provider-assigned unique ID for this managed resource.
    items List<Property Map>
    The items returned by the data source
    createdAt Property Map
    Filter by creation time (UTC), e.g. created_at[gte]=2026-01-01T00:00:00Z.
    flavor Property Map
    Filter by flavor (case-insensitive), e.g. flavor[prefix]=g3-, flavor[exact]=g3-ai-32-192-1500-l40s-48-1.
    ids List<String>
    Return only clusters with these IDs, e.g. ids=<id1>&ids=<id2>.
    maxItems Number
    Max items to fetch, default: 1000
    name Property Map
    Filter by name (case-insensitive), e.g. name[contains]=gpu, name[prefix]=prod-.
    projectId Number
    Project ID
    regionId Number
    Region ID
    serversCount Property Map
    Filter by node count, e.g. servers_count[gte]=2, servers_count[gte]=2&servers_count[lt]=8.
    tagKey Property Map
    Filter by tag key regardless of value, e.g. tag_key[contains]=team.
    tagValue Property Map
    Filter by tag value regardless of key, e.g. tag_value[prefix]=prod.
    tags Map<String>
    Filter by exact tag key-value pairs, e.g. tags[env]=prod&tags[team]=core. Pairs are ANDed; values match case-insensitively.
    updatedAt Property Map
    Filter by last-change time (UTC), e.g. updated_at[gte]=2026-06-01T00:00:00Z.

    Supporting Types

    GetCloudGpuVirtualClustersCreatedAt

    Gt string
    Strictly after this timestamp, e.g. [gt]=2026-01-01T00:00:00Z.
    Gte string
    At or after this timestamp (inclusive), e.g. [gte]=2026-01-01T00:00:00Z.
    Lt string
    Strictly before this timestamp, e.g. [lt]=2026-02-01T00:00:00Z.
    Lte string
    At or before this timestamp (inclusive), e.g. [lte]=2026-02-01T00:00:00Z.
    Gt string
    Strictly after this timestamp, e.g. [gt]=2026-01-01T00:00:00Z.
    Gte string
    At or after this timestamp (inclusive), e.g. [gte]=2026-01-01T00:00:00Z.
    Lt string
    Strictly before this timestamp, e.g. [lt]=2026-02-01T00:00:00Z.
    Lte string
    At or before this timestamp (inclusive), e.g. [lte]=2026-02-01T00:00:00Z.
    gt string
    Strictly after this timestamp, e.g. [gt]=2026-01-01T00:00:00Z.
    gte string
    At or after this timestamp (inclusive), e.g. [gte]=2026-01-01T00:00:00Z.
    lt string
    Strictly before this timestamp, e.g. [lt]=2026-02-01T00:00:00Z.
    lte string
    At or before this timestamp (inclusive), e.g. [lte]=2026-02-01T00:00:00Z.
    gt String
    Strictly after this timestamp, e.g. [gt]=2026-01-01T00:00:00Z.
    gte String
    At or after this timestamp (inclusive), e.g. [gte]=2026-01-01T00:00:00Z.
    lt String
    Strictly before this timestamp, e.g. [lt]=2026-02-01T00:00:00Z.
    lte String
    At or before this timestamp (inclusive), e.g. [lte]=2026-02-01T00:00:00Z.
    gt string
    Strictly after this timestamp, e.g. [gt]=2026-01-01T00:00:00Z.
    gte string
    At or after this timestamp (inclusive), e.g. [gte]=2026-01-01T00:00:00Z.
    lt string
    Strictly before this timestamp, e.g. [lt]=2026-02-01T00:00:00Z.
    lte string
    At or before this timestamp (inclusive), e.g. [lte]=2026-02-01T00:00:00Z.
    gt str
    Strictly after this timestamp, e.g. [gt]=2026-01-01T00:00:00Z.
    gte str
    At or after this timestamp (inclusive), e.g. [gte]=2026-01-01T00:00:00Z.
    lt str
    Strictly before this timestamp, e.g. [lt]=2026-02-01T00:00:00Z.
    lte str
    At or before this timestamp (inclusive), e.g. [lte]=2026-02-01T00:00:00Z.
    gt String
    Strictly after this timestamp, e.g. [gt]=2026-01-01T00:00:00Z.
    gte String
    At or after this timestamp (inclusive), e.g. [gte]=2026-01-01T00:00:00Z.
    lt String
    Strictly before this timestamp, e.g. [lt]=2026-02-01T00:00:00Z.
    lte String
    At or before this timestamp (inclusive), e.g. [lte]=2026-02-01T00:00:00Z.

    GetCloudGpuVirtualClustersFlavor

    Contains List<string>
    Case-insensitive substring, e.g. [contains]=web. Repeat the key to match any substring.
    Exacts List<string>
    Case-insensitive exact match, e.g. [exact]=web-1. Repeat the key to match any of several.
    Prefixes List<string>
    Case-insensitive starts-with, e.g. [prefix]=prod-. Repeat the key to match any prefix.
    Suffixes List<string>
    Case-insensitive ends-with, e.g. [suffix]=-db. Repeat the key to match any suffix.
    Contains []string
    Case-insensitive substring, e.g. [contains]=web. Repeat the key to match any substring.
    Exacts []string
    Case-insensitive exact match, e.g. [exact]=web-1. Repeat the key to match any of several.
    Prefixes []string
    Case-insensitive starts-with, e.g. [prefix]=prod-. Repeat the key to match any prefix.
    Suffixes []string
    Case-insensitive ends-with, e.g. [suffix]=-db. Repeat the key to match any suffix.
    contains list(string)
    Case-insensitive substring, e.g. [contains]=web. Repeat the key to match any substring.
    exacts list(string)
    Case-insensitive exact match, e.g. [exact]=web-1. Repeat the key to match any of several.
    prefixes list(string)
    Case-insensitive starts-with, e.g. [prefix]=prod-. Repeat the key to match any prefix.
    suffixes list(string)
    Case-insensitive ends-with, e.g. [suffix]=-db. Repeat the key to match any suffix.
    contains List<String>
    Case-insensitive substring, e.g. [contains]=web. Repeat the key to match any substring.
    exacts List<String>
    Case-insensitive exact match, e.g. [exact]=web-1. Repeat the key to match any of several.
    prefixes List<String>
    Case-insensitive starts-with, e.g. [prefix]=prod-. Repeat the key to match any prefix.
    suffixes List<String>
    Case-insensitive ends-with, e.g. [suffix]=-db. Repeat the key to match any suffix.
    contains string[]
    Case-insensitive substring, e.g. [contains]=web. Repeat the key to match any substring.
    exacts string[]
    Case-insensitive exact match, e.g. [exact]=web-1. Repeat the key to match any of several.
    prefixes string[]
    Case-insensitive starts-with, e.g. [prefix]=prod-. Repeat the key to match any prefix.
    suffixes string[]
    Case-insensitive ends-with, e.g. [suffix]=-db. Repeat the key to match any suffix.
    contains Sequence[str]
    Case-insensitive substring, e.g. [contains]=web. Repeat the key to match any substring.
    exacts Sequence[str]
    Case-insensitive exact match, e.g. [exact]=web-1. Repeat the key to match any of several.
    prefixes Sequence[str]
    Case-insensitive starts-with, e.g. [prefix]=prod-. Repeat the key to match any prefix.
    suffixes Sequence[str]
    Case-insensitive ends-with, e.g. [suffix]=-db. Repeat the key to match any suffix.
    contains List<String>
    Case-insensitive substring, e.g. [contains]=web. Repeat the key to match any substring.
    exacts List<String>
    Case-insensitive exact match, e.g. [exact]=web-1. Repeat the key to match any of several.
    prefixes List<String>
    Case-insensitive starts-with, e.g. [prefix]=prod-. Repeat the key to match any prefix.
    suffixes List<String>
    Case-insensitive ends-with, e.g. [suffix]=-db. Repeat the key to match any suffix.

    GetCloudGpuVirtualClustersItem

    CreatedAt string
    Cluster creation date time
    Flavor string
    Cluster flavor name
    HasPendingChanges bool
    True if any server in the cluster has pending (not yet applied) settings changes
    Id string
    Cluster unique identifier
    Name string
    Cluster name
    ServersCount double
    Cluster servers count
    ServersIds List<string>
    List of cluster nodes
    ServersSettings GetCloudGpuVirtualClustersItemServersSettings
    Status string
    Cluster status Available values: "active", "creating", "degraded", "deleting", "error", "rebooting", "rebuilding", "resizing", "shutoff".
    Tags List<GetCloudGpuVirtualClustersItemTag>
    List of key-value tags associated with the resource. A tag is a key-value pair that can be associated with a resource, enabling efficient filtering and grouping for better organization and management. Some tags are read-only and cannot be modified by the user. Tags are also integrated with cost reports, allowing cost data to be filtered based on tag keys or values.
    UpdatedAt string
    Cluster update date time
    CreatedAt string
    Cluster creation date time
    Flavor string
    Cluster flavor name
    HasPendingChanges bool
    True if any server in the cluster has pending (not yet applied) settings changes
    Id string
    Cluster unique identifier
    Name string
    Cluster name
    ServersCount float64
    Cluster servers count
    ServersIds []string
    List of cluster nodes
    ServersSettings GetCloudGpuVirtualClustersItemServersSettings
    Status string
    Cluster status Available values: "active", "creating", "degraded", "deleting", "error", "rebooting", "rebuilding", "resizing", "shutoff".
    Tags []GetCloudGpuVirtualClustersItemTag
    List of key-value tags associated with the resource. A tag is a key-value pair that can be associated with a resource, enabling efficient filtering and grouping for better organization and management. Some tags are read-only and cannot be modified by the user. Tags are also integrated with cost reports, allowing cost data to be filtered based on tag keys or values.
    UpdatedAt string
    Cluster update date time
    created_at string
    Cluster creation date time
    flavor string
    Cluster flavor name
    has_pending_changes bool
    True if any server in the cluster has pending (not yet applied) settings changes
    id string
    Cluster unique identifier
    name string
    Cluster name
    servers_count number
    Cluster servers count
    servers_ids list(string)
    List of cluster nodes
    servers_settings object
    status string
    Cluster status Available values: "active", "creating", "degraded", "deleting", "error", "rebooting", "rebuilding", "resizing", "shutoff".
    tags list(object)
    List of key-value tags associated with the resource. A tag is a key-value pair that can be associated with a resource, enabling efficient filtering and grouping for better organization and management. Some tags are read-only and cannot be modified by the user. Tags are also integrated with cost reports, allowing cost data to be filtered based on tag keys or values.
    updated_at string
    Cluster update date time
    createdAt String
    Cluster creation date time
    flavor String
    Cluster flavor name
    hasPendingChanges Boolean
    True if any server in the cluster has pending (not yet applied) settings changes
    id String
    Cluster unique identifier
    name String
    Cluster name
    serversCount Double
    Cluster servers count
    serversIds List<String>
    List of cluster nodes
    serversSettings GetCloudGpuVirtualClustersItemServersSettings
    status String
    Cluster status Available values: "active", "creating", "degraded", "deleting", "error", "rebooting", "rebuilding", "resizing", "shutoff".
    tags List<GetCloudGpuVirtualClustersItemTag>
    List of key-value tags associated with the resource. A tag is a key-value pair that can be associated with a resource, enabling efficient filtering and grouping for better organization and management. Some tags are read-only and cannot be modified by the user. Tags are also integrated with cost reports, allowing cost data to be filtered based on tag keys or values.
    updatedAt String
    Cluster update date time
    createdAt string
    Cluster creation date time
    flavor string
    Cluster flavor name
    hasPendingChanges boolean
    True if any server in the cluster has pending (not yet applied) settings changes
    id string
    Cluster unique identifier
    name string
    Cluster name
    serversCount number
    Cluster servers count
    serversIds string[]
    List of cluster nodes
    serversSettings GetCloudGpuVirtualClustersItemServersSettings
    status string
    Cluster status Available values: "active", "creating", "degraded", "deleting", "error", "rebooting", "rebuilding", "resizing", "shutoff".
    tags GetCloudGpuVirtualClustersItemTag[]
    List of key-value tags associated with the resource. A tag is a key-value pair that can be associated with a resource, enabling efficient filtering and grouping for better organization and management. Some tags are read-only and cannot be modified by the user. Tags are also integrated with cost reports, allowing cost data to be filtered based on tag keys or values.
    updatedAt string
    Cluster update date time
    created_at str
    Cluster creation date time
    flavor str
    Cluster flavor name
    has_pending_changes bool
    True if any server in the cluster has pending (not yet applied) settings changes
    id str
    Cluster unique identifier
    name str
    Cluster name
    servers_count float
    Cluster servers count
    servers_ids Sequence[str]
    List of cluster nodes
    servers_settings GetCloudGpuVirtualClustersItemServersSettings
    status str
    Cluster status Available values: "active", "creating", "degraded", "deleting", "error", "rebooting", "rebuilding", "resizing", "shutoff".
    tags Sequence[GetCloudGpuVirtualClustersItemTag]
    List of key-value tags associated with the resource. A tag is a key-value pair that can be associated with a resource, enabling efficient filtering and grouping for better organization and management. Some tags are read-only and cannot be modified by the user. Tags are also integrated with cost reports, allowing cost data to be filtered based on tag keys or values.
    updated_at str
    Cluster update date time
    createdAt String
    Cluster creation date time
    flavor String
    Cluster flavor name
    hasPendingChanges Boolean
    True if any server in the cluster has pending (not yet applied) settings changes
    id String
    Cluster unique identifier
    name String
    Cluster name
    serversCount Number
    Cluster servers count
    serversIds List<String>
    List of cluster nodes
    serversSettings Property Map
    status String
    Cluster status Available values: "active", "creating", "degraded", "deleting", "error", "rebooting", "rebuilding", "resizing", "shutoff".
    tags List<Property Map>
    List of key-value tags associated with the resource. A tag is a key-value pair that can be associated with a resource, enabling efficient filtering and grouping for better organization and management. Some tags are read-only and cannot be modified by the user. Tags are also integrated with cost reports, allowing cost data to be filtered based on tag keys or values.
    updatedAt String
    Cluster update date time

    GetCloudGpuVirtualClustersItemServersSettings

    FileShares List<GetCloudGpuVirtualClustersItemServersSettingsFileShare>
    List of file shares mounted across the cluster.
    Interfaces List<GetCloudGpuVirtualClustersItemServersSettingsInterface>
    SecurityGroups List<GetCloudGpuVirtualClustersItemServersSettingsSecurityGroup>
    Deprecated. Deduplicated union of security groups across all interfaces; the actual assignment may differ per interface. Use interfaces[].security_groups for the authoritative per-interface list.

    Deprecated: Deprecated

    SshKeyName string
    SSH key name
    UserData string
    Optional custom user data
    Volumes List<GetCloudGpuVirtualClustersItemServersSettingsVolume>
    List of volumes
    FileShares []GetCloudGpuVirtualClustersItemServersSettingsFileShare
    List of file shares mounted across the cluster.
    Interfaces []GetCloudGpuVirtualClustersItemServersSettingsInterface
    SecurityGroups []GetCloudGpuVirtualClustersItemServersSettingsSecurityGroup
    Deprecated. Deduplicated union of security groups across all interfaces; the actual assignment may differ per interface. Use interfaces[].security_groups for the authoritative per-interface list.

    Deprecated: Deprecated

    SshKeyName string
    SSH key name
    UserData string
    Optional custom user data
    Volumes []GetCloudGpuVirtualClustersItemServersSettingsVolume
    List of volumes
    file_shares list(object)
    List of file shares mounted across the cluster.
    interfaces list(object)
    security_groups list(object)
    Deprecated. Deduplicated union of security groups across all interfaces; the actual assignment may differ per interface. Use interfaces[].security_groups for the authoritative per-interface list.

    Deprecated: Deprecated

    ssh_key_name string
    SSH key name
    user_data string
    Optional custom user data
    volumes list(object)
    List of volumes
    fileShares List<GetCloudGpuVirtualClustersItemServersSettingsFileShare>
    List of file shares mounted across the cluster.
    interfaces List<GetCloudGpuVirtualClustersItemServersSettingsInterface>
    securityGroups List<GetCloudGpuVirtualClustersItemServersSettingsSecurityGroup>
    Deprecated. Deduplicated union of security groups across all interfaces; the actual assignment may differ per interface. Use interfaces[].security_groups for the authoritative per-interface list.

    Deprecated: Deprecated

    sshKeyName String
    SSH key name
    userData String
    Optional custom user data
    volumes List<GetCloudGpuVirtualClustersItemServersSettingsVolume>
    List of volumes
    fileShares GetCloudGpuVirtualClustersItemServersSettingsFileShare[]
    List of file shares mounted across the cluster.
    interfaces GetCloudGpuVirtualClustersItemServersSettingsInterface[]
    securityGroups GetCloudGpuVirtualClustersItemServersSettingsSecurityGroup[]
    Deprecated. Deduplicated union of security groups across all interfaces; the actual assignment may differ per interface. Use interfaces[].security_groups for the authoritative per-interface list.

    Deprecated: Deprecated

    sshKeyName string
    SSH key name
    userData string
    Optional custom user data
    volumes GetCloudGpuVirtualClustersItemServersSettingsVolume[]
    List of volumes
    file_shares Sequence[GetCloudGpuVirtualClustersItemServersSettingsFileShare]
    List of file shares mounted across the cluster.
    interfaces Sequence[GetCloudGpuVirtualClustersItemServersSettingsInterface]
    security_groups Sequence[GetCloudGpuVirtualClustersItemServersSettingsSecurityGroup]
    Deprecated. Deduplicated union of security groups across all interfaces; the actual assignment may differ per interface. Use interfaces[].security_groups for the authoritative per-interface list.

    Deprecated: Deprecated

    ssh_key_name str
    SSH key name
    user_data str
    Optional custom user data
    volumes Sequence[GetCloudGpuVirtualClustersItemServersSettingsVolume]
    List of volumes
    fileShares List<Property Map>
    List of file shares mounted across the cluster.
    interfaces List<Property Map>
    securityGroups List<Property Map>
    Deprecated. Deduplicated union of security groups across all interfaces; the actual assignment may differ per interface. Use interfaces[].security_groups for the authoritative per-interface list.

    Deprecated: Deprecated

    sshKeyName String
    SSH key name
    userData String
    Optional custom user data
    volumes List<Property Map>
    List of volumes

    GetCloudGpuVirtualClustersItemServersSettingsFileShare

    Id string
    Unique identifier of the file share in UUID format.
    MountPath string
    Absolute mount path inside the system where the file share will be mounted.
    Id string
    Unique identifier of the file share in UUID format.
    MountPath string
    Absolute mount path inside the system where the file share will be mounted.
    id string
    Unique identifier of the file share in UUID format.
    mount_path string
    Absolute mount path inside the system where the file share will be mounted.
    id String
    Unique identifier of the file share in UUID format.
    mountPath String
    Absolute mount path inside the system where the file share will be mounted.
    id string
    Unique identifier of the file share in UUID format.
    mountPath string
    Absolute mount path inside the system where the file share will be mounted.
    id str
    Unique identifier of the file share in UUID format.
    mount_path str
    Absolute mount path inside the system where the file share will be mounted.
    id String
    Unique identifier of the file share in UUID format.
    mountPath String
    Absolute mount path inside the system where the file share will be mounted.

    GetCloudGpuVirtualClustersItemServersSettingsInterface

    FloatingIp GetCloudGpuVirtualClustersItemServersSettingsInterfaceFloatingIp
    Floating IP config for this subnet attachment
    IpAddress string
    Fixed IP address
    IpFamily string
    Which subnets should be selected: IPv4, IPv6, or use dual stack. Available values: "dual", "ipv4", "ipv6".
    Name string
    Interface name
    NetworkId string
    Network ID the subnet belongs to. Port will be plugged in this network
    SecurityGroups List<GetCloudGpuVirtualClustersItemServersSettingsInterfaceSecurityGroup>
    Resolved security groups applied to this interface.
    SubnetId string
    Port is assigned an IP address from this subnet
    Type string
    Available values: "external", "subnet", "any_subnet".
    FloatingIp GetCloudGpuVirtualClustersItemServersSettingsInterfaceFloatingIp
    Floating IP config for this subnet attachment
    IpAddress string
    Fixed IP address
    IpFamily string
    Which subnets should be selected: IPv4, IPv6, or use dual stack. Available values: "dual", "ipv4", "ipv6".
    Name string
    Interface name
    NetworkId string
    Network ID the subnet belongs to. Port will be plugged in this network
    SecurityGroups []GetCloudGpuVirtualClustersItemServersSettingsInterfaceSecurityGroup
    Resolved security groups applied to this interface.
    SubnetId string
    Port is assigned an IP address from this subnet
    Type string
    Available values: "external", "subnet", "any_subnet".
    floating_ip object
    Floating IP config for this subnet attachment
    ip_address string
    Fixed IP address
    ip_family string
    Which subnets should be selected: IPv4, IPv6, or use dual stack. Available values: "dual", "ipv4", "ipv6".
    name string
    Interface name
    network_id string
    Network ID the subnet belongs to. Port will be plugged in this network
    security_groups list(object)
    Resolved security groups applied to this interface.
    subnet_id string
    Port is assigned an IP address from this subnet
    type string
    Available values: "external", "subnet", "any_subnet".
    floatingIp GetCloudGpuVirtualClustersItemServersSettingsInterfaceFloatingIp
    Floating IP config for this subnet attachment
    ipAddress String
    Fixed IP address
    ipFamily String
    Which subnets should be selected: IPv4, IPv6, or use dual stack. Available values: "dual", "ipv4", "ipv6".
    name String
    Interface name
    networkId String
    Network ID the subnet belongs to. Port will be plugged in this network
    securityGroups List<GetCloudGpuVirtualClustersItemServersSettingsInterfaceSecurityGroup>
    Resolved security groups applied to this interface.
    subnetId String
    Port is assigned an IP address from this subnet
    type String
    Available values: "external", "subnet", "any_subnet".
    floatingIp GetCloudGpuVirtualClustersItemServersSettingsInterfaceFloatingIp
    Floating IP config for this subnet attachment
    ipAddress string
    Fixed IP address
    ipFamily string
    Which subnets should be selected: IPv4, IPv6, or use dual stack. Available values: "dual", "ipv4", "ipv6".
    name string
    Interface name
    networkId string
    Network ID the subnet belongs to. Port will be plugged in this network
    securityGroups GetCloudGpuVirtualClustersItemServersSettingsInterfaceSecurityGroup[]
    Resolved security groups applied to this interface.
    subnetId string
    Port is assigned an IP address from this subnet
    type string
    Available values: "external", "subnet", "any_subnet".
    floating_ip GetCloudGpuVirtualClustersItemServersSettingsInterfaceFloatingIp
    Floating IP config for this subnet attachment
    ip_address str
    Fixed IP address
    ip_family str
    Which subnets should be selected: IPv4, IPv6, or use dual stack. Available values: "dual", "ipv4", "ipv6".
    name str
    Interface name
    network_id str
    Network ID the subnet belongs to. Port will be plugged in this network
    security_groups Sequence[GetCloudGpuVirtualClustersItemServersSettingsInterfaceSecurityGroup]
    Resolved security groups applied to this interface.
    subnet_id str
    Port is assigned an IP address from this subnet
    type str
    Available values: "external", "subnet", "any_subnet".
    floatingIp Property Map
    Floating IP config for this subnet attachment
    ipAddress String
    Fixed IP address
    ipFamily String
    Which subnets should be selected: IPv4, IPv6, or use dual stack. Available values: "dual", "ipv4", "ipv6".
    name String
    Interface name
    networkId String
    Network ID the subnet belongs to. Port will be plugged in this network
    securityGroups List<Property Map>
    Resolved security groups applied to this interface.
    subnetId String
    Port is assigned an IP address from this subnet
    type String
    Available values: "external", "subnet", "any_subnet".

    GetCloudGpuVirtualClustersItemServersSettingsInterfaceFloatingIp

    Source string
    Available values: "new".
    Source string
    Available values: "new".
    source string
    Available values: "new".
    source String
    Available values: "new".
    source string
    Available values: "new".
    source str
    Available values: "new".
    source String
    Available values: "new".

    GetCloudGpuVirtualClustersItemServersSettingsInterfaceSecurityGroup

    Id string
    Security group ID
    Name string
    Security group name
    Id string
    Security group ID
    Name string
    Security group name
    id string
    Security group ID
    name string
    Security group name
    id String
    Security group ID
    name String
    Security group name
    id string
    Security group ID
    name string
    Security group name
    id str
    Security group ID
    name str
    Security group name
    id String
    Security group ID
    name String
    Security group name

    GetCloudGpuVirtualClustersItemServersSettingsSecurityGroup

    Id string
    Security group ID
    Name string
    Security group name
    Id string
    Security group ID
    Name string
    Security group name
    id string
    Security group ID
    name string
    Security group name
    id String
    Security group ID
    name String
    Security group name
    id string
    Security group ID
    name string
    Security group name
    id str
    Security group ID
    name str
    Security group name
    id String
    Security group ID
    name String
    Security group name

    GetCloudGpuVirtualClustersItemServersSettingsVolume

    BootIndex double
    Boot index of the volume
    DeleteOnTermination bool
    Flag indicating whether the volume is deleted on instance termination
    ImageId string
    Image ID for the volume
    Name string
    Volume name
    Size double
    Volume size in GiB
    Tags List<GetCloudGpuVirtualClustersItemServersSettingsVolumeTag>
    List of key-value tags associated with the resource. A tag is a key-value pair that can be associated with a resource, enabling efficient filtering and grouping for better organization and management. Some tags are read-only and cannot be modified by the user. Tags are also integrated with cost reports, allowing cost data to be filtered based on tag keys or values.
    Type string
    Volume type Available values: "cold", "ssdhiiops", "ssdlocal", "ssd_lowlatency", "standard", "ultra".
    BootIndex float64
    Boot index of the volume
    DeleteOnTermination bool
    Flag indicating whether the volume is deleted on instance termination
    ImageId string
    Image ID for the volume
    Name string
    Volume name
    Size float64
    Volume size in GiB
    Tags []GetCloudGpuVirtualClustersItemServersSettingsVolumeTag
    List of key-value tags associated with the resource. A tag is a key-value pair that can be associated with a resource, enabling efficient filtering and grouping for better organization and management. Some tags are read-only and cannot be modified by the user. Tags are also integrated with cost reports, allowing cost data to be filtered based on tag keys or values.
    Type string
    Volume type Available values: "cold", "ssdhiiops", "ssdlocal", "ssd_lowlatency", "standard", "ultra".
    boot_index number
    Boot index of the volume
    delete_on_termination bool
    Flag indicating whether the volume is deleted on instance termination
    image_id string
    Image ID for the volume
    name string
    Volume name
    size number
    Volume size in GiB
    tags list(object)
    List of key-value tags associated with the resource. A tag is a key-value pair that can be associated with a resource, enabling efficient filtering and grouping for better organization and management. Some tags are read-only and cannot be modified by the user. Tags are also integrated with cost reports, allowing cost data to be filtered based on tag keys or values.
    type string
    Volume type Available values: "cold", "ssdhiiops", "ssdlocal", "ssd_lowlatency", "standard", "ultra".
    bootIndex Double
    Boot index of the volume
    deleteOnTermination Boolean
    Flag indicating whether the volume is deleted on instance termination
    imageId String
    Image ID for the volume
    name String
    Volume name
    size Double
    Volume size in GiB
    tags List<GetCloudGpuVirtualClustersItemServersSettingsVolumeTag>
    List of key-value tags associated with the resource. A tag is a key-value pair that can be associated with a resource, enabling efficient filtering and grouping for better organization and management. Some tags are read-only and cannot be modified by the user. Tags are also integrated with cost reports, allowing cost data to be filtered based on tag keys or values.
    type String
    Volume type Available values: "cold", "ssdhiiops", "ssdlocal", "ssd_lowlatency", "standard", "ultra".
    bootIndex number
    Boot index of the volume
    deleteOnTermination boolean
    Flag indicating whether the volume is deleted on instance termination
    imageId string
    Image ID for the volume
    name string
    Volume name
    size number
    Volume size in GiB
    tags GetCloudGpuVirtualClustersItemServersSettingsVolumeTag[]
    List of key-value tags associated with the resource. A tag is a key-value pair that can be associated with a resource, enabling efficient filtering and grouping for better organization and management. Some tags are read-only and cannot be modified by the user. Tags are also integrated with cost reports, allowing cost data to be filtered based on tag keys or values.
    type string
    Volume type Available values: "cold", "ssdhiiops", "ssdlocal", "ssd_lowlatency", "standard", "ultra".
    boot_index float
    Boot index of the volume
    delete_on_termination bool
    Flag indicating whether the volume is deleted on instance termination
    image_id str
    Image ID for the volume
    name str
    Volume name
    size float
    Volume size in GiB
    tags Sequence[GetCloudGpuVirtualClustersItemServersSettingsVolumeTag]
    List of key-value tags associated with the resource. A tag is a key-value pair that can be associated with a resource, enabling efficient filtering and grouping for better organization and management. Some tags are read-only and cannot be modified by the user. Tags are also integrated with cost reports, allowing cost data to be filtered based on tag keys or values.
    type str
    Volume type Available values: "cold", "ssdhiiops", "ssdlocal", "ssd_lowlatency", "standard", "ultra".
    bootIndex Number
    Boot index of the volume
    deleteOnTermination Boolean
    Flag indicating whether the volume is deleted on instance termination
    imageId String
    Image ID for the volume
    name String
    Volume name
    size Number
    Volume size in GiB
    tags List<Property Map>
    List of key-value tags associated with the resource. A tag is a key-value pair that can be associated with a resource, enabling efficient filtering and grouping for better organization and management. Some tags are read-only and cannot be modified by the user. Tags are also integrated with cost reports, allowing cost data to be filtered based on tag keys or values.
    type String
    Volume type Available values: "cold", "ssdhiiops", "ssdlocal", "ssd_lowlatency", "standard", "ultra".

    GetCloudGpuVirtualClustersItemServersSettingsVolumeTag

    Key string
    Tag key. Maximum 255 characters. Cannot contain spaces, tabs, newlines, empty string or '=' character.
    ReadOnly bool
    If true, the tag is read-only and cannot be modified by the user
    Value string
    Tag value. Maximum 255 characters. Cannot contain spaces, tabs, newlines, empty string or '=' character.
    Key string
    Tag key. Maximum 255 characters. Cannot contain spaces, tabs, newlines, empty string or '=' character.
    ReadOnly bool
    If true, the tag is read-only and cannot be modified by the user
    Value string
    Tag value. Maximum 255 characters. Cannot contain spaces, tabs, newlines, empty string or '=' character.
    key string
    Tag key. Maximum 255 characters. Cannot contain spaces, tabs, newlines, empty string or '=' character.
    read_only bool
    If true, the tag is read-only and cannot be modified by the user
    value string
    Tag value. Maximum 255 characters. Cannot contain spaces, tabs, newlines, empty string or '=' character.
    key String
    Tag key. Maximum 255 characters. Cannot contain spaces, tabs, newlines, empty string or '=' character.
    readOnly Boolean
    If true, the tag is read-only and cannot be modified by the user
    value String
    Tag value. Maximum 255 characters. Cannot contain spaces, tabs, newlines, empty string or '=' character.
    key string
    Tag key. Maximum 255 characters. Cannot contain spaces, tabs, newlines, empty string or '=' character.
    readOnly boolean
    If true, the tag is read-only and cannot be modified by the user
    value string
    Tag value. Maximum 255 characters. Cannot contain spaces, tabs, newlines, empty string or '=' character.
    key str
    Tag key. Maximum 255 characters. Cannot contain spaces, tabs, newlines, empty string or '=' character.
    read_only bool
    If true, the tag is read-only and cannot be modified by the user
    value str
    Tag value. Maximum 255 characters. Cannot contain spaces, tabs, newlines, empty string or '=' character.
    key String
    Tag key. Maximum 255 characters. Cannot contain spaces, tabs, newlines, empty string or '=' character.
    readOnly Boolean
    If true, the tag is read-only and cannot be modified by the user
    value String
    Tag value. Maximum 255 characters. Cannot contain spaces, tabs, newlines, empty string or '=' character.

    GetCloudGpuVirtualClustersItemTag

    Key string
    Tag key. Maximum 255 characters. Cannot contain spaces, tabs, newlines, empty string or '=' character.
    ReadOnly bool
    If true, the tag is read-only and cannot be modified by the user
    Value string
    Tag value. Maximum 255 characters. Cannot contain spaces, tabs, newlines, empty string or '=' character.
    Key string
    Tag key. Maximum 255 characters. Cannot contain spaces, tabs, newlines, empty string or '=' character.
    ReadOnly bool
    If true, the tag is read-only and cannot be modified by the user
    Value string
    Tag value. Maximum 255 characters. Cannot contain spaces, tabs, newlines, empty string or '=' character.
    key string
    Tag key. Maximum 255 characters. Cannot contain spaces, tabs, newlines, empty string or '=' character.
    read_only bool
    If true, the tag is read-only and cannot be modified by the user
    value string
    Tag value. Maximum 255 characters. Cannot contain spaces, tabs, newlines, empty string or '=' character.
    key String
    Tag key. Maximum 255 characters. Cannot contain spaces, tabs, newlines, empty string or '=' character.
    readOnly Boolean
    If true, the tag is read-only and cannot be modified by the user
    value String
    Tag value. Maximum 255 characters. Cannot contain spaces, tabs, newlines, empty string or '=' character.
    key string
    Tag key. Maximum 255 characters. Cannot contain spaces, tabs, newlines, empty string or '=' character.
    readOnly boolean
    If true, the tag is read-only and cannot be modified by the user
    value string
    Tag value. Maximum 255 characters. Cannot contain spaces, tabs, newlines, empty string or '=' character.
    key str
    Tag key. Maximum 255 characters. Cannot contain spaces, tabs, newlines, empty string or '=' character.
    read_only bool
    If true, the tag is read-only and cannot be modified by the user
    value str
    Tag value. Maximum 255 characters. Cannot contain spaces, tabs, newlines, empty string or '=' character.
    key String
    Tag key. Maximum 255 characters. Cannot contain spaces, tabs, newlines, empty string or '=' character.
    readOnly Boolean
    If true, the tag is read-only and cannot be modified by the user
    value String
    Tag value. Maximum 255 characters. Cannot contain spaces, tabs, newlines, empty string or '=' character.

    GetCloudGpuVirtualClustersName

    Contains List<string>
    Case-insensitive substring, e.g. [contains]=web. Repeat the key to match any substring.
    Exacts List<string>
    Case-insensitive exact match, e.g. [exact]=web-1. Repeat the key to match any of several.
    Prefixes List<string>
    Case-insensitive starts-with, e.g. [prefix]=prod-. Repeat the key to match any prefix.
    Suffixes List<string>
    Case-insensitive ends-with, e.g. [suffix]=-db. Repeat the key to match any suffix.
    Contains []string
    Case-insensitive substring, e.g. [contains]=web. Repeat the key to match any substring.
    Exacts []string
    Case-insensitive exact match, e.g. [exact]=web-1. Repeat the key to match any of several.
    Prefixes []string
    Case-insensitive starts-with, e.g. [prefix]=prod-. Repeat the key to match any prefix.
    Suffixes []string
    Case-insensitive ends-with, e.g. [suffix]=-db. Repeat the key to match any suffix.
    contains list(string)
    Case-insensitive substring, e.g. [contains]=web. Repeat the key to match any substring.
    exacts list(string)
    Case-insensitive exact match, e.g. [exact]=web-1. Repeat the key to match any of several.
    prefixes list(string)
    Case-insensitive starts-with, e.g. [prefix]=prod-. Repeat the key to match any prefix.
    suffixes list(string)
    Case-insensitive ends-with, e.g. [suffix]=-db. Repeat the key to match any suffix.
    contains List<String>
    Case-insensitive substring, e.g. [contains]=web. Repeat the key to match any substring.
    exacts List<String>
    Case-insensitive exact match, e.g. [exact]=web-1. Repeat the key to match any of several.
    prefixes List<String>
    Case-insensitive starts-with, e.g. [prefix]=prod-. Repeat the key to match any prefix.
    suffixes List<String>
    Case-insensitive ends-with, e.g. [suffix]=-db. Repeat the key to match any suffix.
    contains string[]
    Case-insensitive substring, e.g. [contains]=web. Repeat the key to match any substring.
    exacts string[]
    Case-insensitive exact match, e.g. [exact]=web-1. Repeat the key to match any of several.
    prefixes string[]
    Case-insensitive starts-with, e.g. [prefix]=prod-. Repeat the key to match any prefix.
    suffixes string[]
    Case-insensitive ends-with, e.g. [suffix]=-db. Repeat the key to match any suffix.
    contains Sequence[str]
    Case-insensitive substring, e.g. [contains]=web. Repeat the key to match any substring.
    exacts Sequence[str]
    Case-insensitive exact match, e.g. [exact]=web-1. Repeat the key to match any of several.
    prefixes Sequence[str]
    Case-insensitive starts-with, e.g. [prefix]=prod-. Repeat the key to match any prefix.
    suffixes Sequence[str]
    Case-insensitive ends-with, e.g. [suffix]=-db. Repeat the key to match any suffix.
    contains List<String>
    Case-insensitive substring, e.g. [contains]=web. Repeat the key to match any substring.
    exacts List<String>
    Case-insensitive exact match, e.g. [exact]=web-1. Repeat the key to match any of several.
    prefixes List<String>
    Case-insensitive starts-with, e.g. [prefix]=prod-. Repeat the key to match any prefix.
    suffixes List<String>
    Case-insensitive ends-with, e.g. [suffix]=-db. Repeat the key to match any suffix.

    GetCloudGpuVirtualClustersServersCount

    Gt double
    Strictly greater than, e.g. [gt]=1.
    Gte double
    Greater than or equal, e.g. [gte]=2.
    Lt double
    Strictly less than, e.g. [lt]=8.
    Lte double
    Less than or equal, e.g. [lte]=4.
    Gt float64
    Strictly greater than, e.g. [gt]=1.
    Gte float64
    Greater than or equal, e.g. [gte]=2.
    Lt float64
    Strictly less than, e.g. [lt]=8.
    Lte float64
    Less than or equal, e.g. [lte]=4.
    gt number
    Strictly greater than, e.g. [gt]=1.
    gte number
    Greater than or equal, e.g. [gte]=2.
    lt number
    Strictly less than, e.g. [lt]=8.
    lte number
    Less than or equal, e.g. [lte]=4.
    gt Double
    Strictly greater than, e.g. [gt]=1.
    gte Double
    Greater than or equal, e.g. [gte]=2.
    lt Double
    Strictly less than, e.g. [lt]=8.
    lte Double
    Less than or equal, e.g. [lte]=4.
    gt number
    Strictly greater than, e.g. [gt]=1.
    gte number
    Greater than or equal, e.g. [gte]=2.
    lt number
    Strictly less than, e.g. [lt]=8.
    lte number
    Less than or equal, e.g. [lte]=4.
    gt float
    Strictly greater than, e.g. [gt]=1.
    gte float
    Greater than or equal, e.g. [gte]=2.
    lt float
    Strictly less than, e.g. [lt]=8.
    lte float
    Less than or equal, e.g. [lte]=4.
    gt Number
    Strictly greater than, e.g. [gt]=1.
    gte Number
    Greater than or equal, e.g. [gte]=2.
    lt Number
    Strictly less than, e.g. [lt]=8.
    lte Number
    Less than or equal, e.g. [lte]=4.

    GetCloudGpuVirtualClustersTagKey

    Contains List<string>
    Case-insensitive substring, e.g. [contains]=web. Repeat the key to match any substring.
    Exacts List<string>
    Case-insensitive exact match, e.g. [exact]=web-1. Repeat the key to match any of several.
    Prefixes List<string>
    Case-insensitive starts-with, e.g. [prefix]=prod-. Repeat the key to match any prefix.
    Suffixes List<string>
    Case-insensitive ends-with, e.g. [suffix]=-db. Repeat the key to match any suffix.
    Contains []string
    Case-insensitive substring, e.g. [contains]=web. Repeat the key to match any substring.
    Exacts []string
    Case-insensitive exact match, e.g. [exact]=web-1. Repeat the key to match any of several.
    Prefixes []string
    Case-insensitive starts-with, e.g. [prefix]=prod-. Repeat the key to match any prefix.
    Suffixes []string
    Case-insensitive ends-with, e.g. [suffix]=-db. Repeat the key to match any suffix.
    contains list(string)
    Case-insensitive substring, e.g. [contains]=web. Repeat the key to match any substring.
    exacts list(string)
    Case-insensitive exact match, e.g. [exact]=web-1. Repeat the key to match any of several.
    prefixes list(string)
    Case-insensitive starts-with, e.g. [prefix]=prod-. Repeat the key to match any prefix.
    suffixes list(string)
    Case-insensitive ends-with, e.g. [suffix]=-db. Repeat the key to match any suffix.
    contains List<String>
    Case-insensitive substring, e.g. [contains]=web. Repeat the key to match any substring.
    exacts List<String>
    Case-insensitive exact match, e.g. [exact]=web-1. Repeat the key to match any of several.
    prefixes List<String>
    Case-insensitive starts-with, e.g. [prefix]=prod-. Repeat the key to match any prefix.
    suffixes List<String>
    Case-insensitive ends-with, e.g. [suffix]=-db. Repeat the key to match any suffix.
    contains string[]
    Case-insensitive substring, e.g. [contains]=web. Repeat the key to match any substring.
    exacts string[]
    Case-insensitive exact match, e.g. [exact]=web-1. Repeat the key to match any of several.
    prefixes string[]
    Case-insensitive starts-with, e.g. [prefix]=prod-. Repeat the key to match any prefix.
    suffixes string[]
    Case-insensitive ends-with, e.g. [suffix]=-db. Repeat the key to match any suffix.
    contains Sequence[str]
    Case-insensitive substring, e.g. [contains]=web. Repeat the key to match any substring.
    exacts Sequence[str]
    Case-insensitive exact match, e.g. [exact]=web-1. Repeat the key to match any of several.
    prefixes Sequence[str]
    Case-insensitive starts-with, e.g. [prefix]=prod-. Repeat the key to match any prefix.
    suffixes Sequence[str]
    Case-insensitive ends-with, e.g. [suffix]=-db. Repeat the key to match any suffix.
    contains List<String>
    Case-insensitive substring, e.g. [contains]=web. Repeat the key to match any substring.
    exacts List<String>
    Case-insensitive exact match, e.g. [exact]=web-1. Repeat the key to match any of several.
    prefixes List<String>
    Case-insensitive starts-with, e.g. [prefix]=prod-. Repeat the key to match any prefix.
    suffixes List<String>
    Case-insensitive ends-with, e.g. [suffix]=-db. Repeat the key to match any suffix.

    GetCloudGpuVirtualClustersTagValue

    Contains List<string>
    Case-insensitive substring, e.g. [contains]=web. Repeat the key to match any substring.
    Exacts List<string>
    Case-insensitive exact match, e.g. [exact]=web-1. Repeat the key to match any of several.
    Prefixes List<string>
    Case-insensitive starts-with, e.g. [prefix]=prod-. Repeat the key to match any prefix.
    Suffixes List<string>
    Case-insensitive ends-with, e.g. [suffix]=-db. Repeat the key to match any suffix.
    Contains []string
    Case-insensitive substring, e.g. [contains]=web. Repeat the key to match any substring.
    Exacts []string
    Case-insensitive exact match, e.g. [exact]=web-1. Repeat the key to match any of several.
    Prefixes []string
    Case-insensitive starts-with, e.g. [prefix]=prod-. Repeat the key to match any prefix.
    Suffixes []string
    Case-insensitive ends-with, e.g. [suffix]=-db. Repeat the key to match any suffix.
    contains list(string)
    Case-insensitive substring, e.g. [contains]=web. Repeat the key to match any substring.
    exacts list(string)
    Case-insensitive exact match, e.g. [exact]=web-1. Repeat the key to match any of several.
    prefixes list(string)
    Case-insensitive starts-with, e.g. [prefix]=prod-. Repeat the key to match any prefix.
    suffixes list(string)
    Case-insensitive ends-with, e.g. [suffix]=-db. Repeat the key to match any suffix.
    contains List<String>
    Case-insensitive substring, e.g. [contains]=web. Repeat the key to match any substring.
    exacts List<String>
    Case-insensitive exact match, e.g. [exact]=web-1. Repeat the key to match any of several.
    prefixes List<String>
    Case-insensitive starts-with, e.g. [prefix]=prod-. Repeat the key to match any prefix.
    suffixes List<String>
    Case-insensitive ends-with, e.g. [suffix]=-db. Repeat the key to match any suffix.
    contains string[]
    Case-insensitive substring, e.g. [contains]=web. Repeat the key to match any substring.
    exacts string[]
    Case-insensitive exact match, e.g. [exact]=web-1. Repeat the key to match any of several.
    prefixes string[]
    Case-insensitive starts-with, e.g. [prefix]=prod-. Repeat the key to match any prefix.
    suffixes string[]
    Case-insensitive ends-with, e.g. [suffix]=-db. Repeat the key to match any suffix.
    contains Sequence[str]
    Case-insensitive substring, e.g. [contains]=web. Repeat the key to match any substring.
    exacts Sequence[str]
    Case-insensitive exact match, e.g. [exact]=web-1. Repeat the key to match any of several.
    prefixes Sequence[str]
    Case-insensitive starts-with, e.g. [prefix]=prod-. Repeat the key to match any prefix.
    suffixes Sequence[str]
    Case-insensitive ends-with, e.g. [suffix]=-db. Repeat the key to match any suffix.
    contains List<String>
    Case-insensitive substring, e.g. [contains]=web. Repeat the key to match any substring.
    exacts List<String>
    Case-insensitive exact match, e.g. [exact]=web-1. Repeat the key to match any of several.
    prefixes List<String>
    Case-insensitive starts-with, e.g. [prefix]=prod-. Repeat the key to match any prefix.
    suffixes List<String>
    Case-insensitive ends-with, e.g. [suffix]=-db. Repeat the key to match any suffix.

    GetCloudGpuVirtualClustersUpdatedAt

    Gt string
    Strictly after this timestamp, e.g. [gt]=2026-01-01T00:00:00Z.
    Gte string
    At or after this timestamp (inclusive), e.g. [gte]=2026-01-01T00:00:00Z.
    Lt string
    Strictly before this timestamp, e.g. [lt]=2026-02-01T00:00:00Z.
    Lte string
    At or before this timestamp (inclusive), e.g. [lte]=2026-02-01T00:00:00Z.
    Gt string
    Strictly after this timestamp, e.g. [gt]=2026-01-01T00:00:00Z.
    Gte string
    At or after this timestamp (inclusive), e.g. [gte]=2026-01-01T00:00:00Z.
    Lt string
    Strictly before this timestamp, e.g. [lt]=2026-02-01T00:00:00Z.
    Lte string
    At or before this timestamp (inclusive), e.g. [lte]=2026-02-01T00:00:00Z.
    gt string
    Strictly after this timestamp, e.g. [gt]=2026-01-01T00:00:00Z.
    gte string
    At or after this timestamp (inclusive), e.g. [gte]=2026-01-01T00:00:00Z.
    lt string
    Strictly before this timestamp, e.g. [lt]=2026-02-01T00:00:00Z.
    lte string
    At or before this timestamp (inclusive), e.g. [lte]=2026-02-01T00:00:00Z.
    gt String
    Strictly after this timestamp, e.g. [gt]=2026-01-01T00:00:00Z.
    gte String
    At or after this timestamp (inclusive), e.g. [gte]=2026-01-01T00:00:00Z.
    lt String
    Strictly before this timestamp, e.g. [lt]=2026-02-01T00:00:00Z.
    lte String
    At or before this timestamp (inclusive), e.g. [lte]=2026-02-01T00:00:00Z.
    gt string
    Strictly after this timestamp, e.g. [gt]=2026-01-01T00:00:00Z.
    gte string
    At or after this timestamp (inclusive), e.g. [gte]=2026-01-01T00:00:00Z.
    lt string
    Strictly before this timestamp, e.g. [lt]=2026-02-01T00:00:00Z.
    lte string
    At or before this timestamp (inclusive), e.g. [lte]=2026-02-01T00:00:00Z.
    gt str
    Strictly after this timestamp, e.g. [gt]=2026-01-01T00:00:00Z.
    gte str
    At or after this timestamp (inclusive), e.g. [gte]=2026-01-01T00:00:00Z.
    lt str
    Strictly before this timestamp, e.g. [lt]=2026-02-01T00:00:00Z.
    lte str
    At or before this timestamp (inclusive), e.g. [lte]=2026-02-01T00:00:00Z.
    gt String
    Strictly after this timestamp, e.g. [gt]=2026-01-01T00:00:00Z.
    gte String
    At or after this timestamp (inclusive), e.g. [gte]=2026-01-01T00:00:00Z.
    lt String
    Strictly before this timestamp, e.g. [lt]=2026-02-01T00:00:00Z.
    lte String
    At or before this timestamp (inclusive), e.g. [lte]=2026-02-01T00:00:00Z.

    Package Details

    Repository
    gcore g-core/terraform-provider-gcore
    License
    Notes
    This Pulumi package is based on the gcore Terraform Provider.
    Viewing docs for gcore 2.0.0-alpha.11
    published on Wednesday, Jul 1, 2026 by g-core

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial