Viewing docs for gcore 2.0.0-alpha.11
published on Wednesday, Jul 1, 2026 by g-core
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
published on Wednesday, Jul 1, 2026 by g-core
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as gcore from "@pulumi/gcore";
const exampleCloudGpuBaremetalClusters = gcore.getCloudGpuBaremetalClusters({
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"],
imageIds: ["8363acee-eb5d-475a-89b5-bd011d1e3c28"],
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_baremetal_clusters = gcore.get_cloud_gpu_baremetal_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"],
image_ids=["8363acee-eb5d-475a-89b5-bd011d1e3c28"],
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.GetCloudGpuBaremetalClusters(ctx, &gcore.GetCloudGpuBaremetalClustersArgs{
ProjectId: pulumi.Float64Ref(1),
RegionId: pulumi.Float64Ref(7),
CreatedAt: gcore.GetCloudGpuBaremetalClustersCreatedAt{
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.GetCloudGpuBaremetalClustersFlavor{
Contains: []string{
"string",
},
Exacts: []string{
"string",
},
Prefixes: []string{
"string",
},
Suffixes: []string{
"string",
},
},
Ids: []string{
"1aaaab48-10d0-46d9-80cc-85209284ceb4",
},
ImageIds: []string{
"8363acee-eb5d-475a-89b5-bd011d1e3c28",
},
Name: gcore.GetCloudGpuBaremetalClustersName{
Contains: []string{
"string",
},
Exacts: []string{
"string",
},
Prefixes: []string{
"string",
},
Suffixes: []string{
"string",
},
},
ServersCount: gcore.GetCloudGpuBaremetalClustersServersCount{
Gt: pulumi.Float64Ref(0),
Gte: pulumi.Float64Ref(0),
Lt: pulumi.Float64Ref(0),
Lte: pulumi.Float64Ref(0),
},
TagKey: gcore.GetCloudGpuBaremetalClustersTagKey{
Contains: []string{
"string",
},
Exacts: []string{
"string",
},
Prefixes: []string{
"string",
},
Suffixes: []string{
"string",
},
},
TagValue: gcore.GetCloudGpuBaremetalClustersTagValue{
Contains: []string{
"string",
},
Exacts: []string{
"string",
},
Prefixes: []string{
"string",
},
Suffixes: []string{
"string",
},
},
Tags: map[string]interface{}{
"env": "prod",
},
UpdatedAt: gcore.GetCloudGpuBaremetalClustersUpdatedAt{
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 exampleCloudGpuBaremetalClusters = Gcore.GetCloudGpuBaremetalClusters.Invoke(new()
{
ProjectId = 1,
RegionId = 7,
CreatedAt = new Gcore.Inputs.GetCloudGpuBaremetalClustersCreatedAtInputArgs
{
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.GetCloudGpuBaremetalClustersFlavorInputArgs
{
Contains = new[]
{
"string",
},
Exacts = new[]
{
"string",
},
Prefixes = new[]
{
"string",
},
Suffixes = new[]
{
"string",
},
},
Ids = new[]
{
"1aaaab48-10d0-46d9-80cc-85209284ceb4",
},
ImageIds = new[]
{
"8363acee-eb5d-475a-89b5-bd011d1e3c28",
},
Name = new Gcore.Inputs.GetCloudGpuBaremetalClustersNameInputArgs
{
Contains = new[]
{
"string",
},
Exacts = new[]
{
"string",
},
Prefixes = new[]
{
"string",
},
Suffixes = new[]
{
"string",
},
},
ServersCount = new Gcore.Inputs.GetCloudGpuBaremetalClustersServersCountInputArgs
{
Gt = 0,
Gte = 0,
Lt = 0,
Lte = 0,
},
TagKey = new Gcore.Inputs.GetCloudGpuBaremetalClustersTagKeyInputArgs
{
Contains = new[]
{
"string",
},
Exacts = new[]
{
"string",
},
Prefixes = new[]
{
"string",
},
Suffixes = new[]
{
"string",
},
},
TagValue = new Gcore.Inputs.GetCloudGpuBaremetalClustersTagValueInputArgs
{
Contains = new[]
{
"string",
},
Exacts = new[]
{
"string",
},
Prefixes = new[]
{
"string",
},
Suffixes = new[]
{
"string",
},
},
Tags =
{
{ "env", "prod" },
},
UpdatedAt = new Gcore.Inputs.GetCloudGpuBaremetalClustersUpdatedAtInputArgs
{
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.GetCloudGpuBaremetalClustersArgs;
import com.pulumi.gcore.inputs.GetCloudGpuBaremetalClustersCreatedAtArgs;
import com.pulumi.gcore.inputs.GetCloudGpuBaremetalClustersFlavorArgs;
import com.pulumi.gcore.inputs.GetCloudGpuBaremetalClustersNameArgs;
import com.pulumi.gcore.inputs.GetCloudGpuBaremetalClustersServersCountArgs;
import com.pulumi.gcore.inputs.GetCloudGpuBaremetalClustersTagKeyArgs;
import com.pulumi.gcore.inputs.GetCloudGpuBaremetalClustersTagValueArgs;
import com.pulumi.gcore.inputs.GetCloudGpuBaremetalClustersUpdatedAtArgs;
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 exampleCloudGpuBaremetalClusters = GcoreFunctions.getCloudGpuBaremetalClusters(GetCloudGpuBaremetalClustersArgs.builder()
.projectId(1)
.regionId(7)
.createdAt(GetCloudGpuBaremetalClustersCreatedAtArgs.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(GetCloudGpuBaremetalClustersFlavorArgs.builder()
.contains("string")
.exacts("string")
.prefixes("string")
.suffixes("string")
.build())
.ids("1aaaab48-10d0-46d9-80cc-85209284ceb4")
.imageIds("8363acee-eb5d-475a-89b5-bd011d1e3c28")
.name(GetCloudGpuBaremetalClustersNameArgs.builder()
.contains("string")
.exacts("string")
.prefixes("string")
.suffixes("string")
.build())
.serversCount(GetCloudGpuBaremetalClustersServersCountArgs.builder()
.gt(0)
.gte(0)
.lt(0)
.lte(0)
.build())
.tagKey(GetCloudGpuBaremetalClustersTagKeyArgs.builder()
.contains("string")
.exacts("string")
.prefixes("string")
.suffixes("string")
.build())
.tagValue(GetCloudGpuBaremetalClustersTagValueArgs.builder()
.contains("string")
.exacts("string")
.prefixes("string")
.suffixes("string")
.build())
.tags(Map.of("env", "prod"))
.updatedAt(GetCloudGpuBaremetalClustersUpdatedAtArgs.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:
exampleCloudGpuBaremetalClusters:
fn::invoke:
function: gcore:getCloudGpuBaremetalClusters
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
imageIds:
- 8363acee-eb5d-475a-89b5-bd011d1e3c28
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 getCloudGpuBaremetalClusters
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 getCloudGpuBaremetalClusters(args: GetCloudGpuBaremetalClustersArgs, opts?: InvokeOptions): Promise<GetCloudGpuBaremetalClustersResult>
function getCloudGpuBaremetalClustersOutput(args: GetCloudGpuBaremetalClustersOutputArgs, opts?: InvokeOptions): Output<GetCloudGpuBaremetalClustersResult>def get_cloud_gpu_baremetal_clusters(created_at: Optional[GetCloudGpuBaremetalClustersCreatedAt] = None,
flavor: Optional[GetCloudGpuBaremetalClustersFlavor] = None,
ids: Optional[Sequence[str]] = None,
image_ids: Optional[Sequence[str]] = None,
managed_bies: Optional[Sequence[str]] = None,
max_items: Optional[float] = None,
name: Optional[GetCloudGpuBaremetalClustersName] = None,
project_id: Optional[float] = None,
region_id: Optional[float] = None,
servers_count: Optional[GetCloudGpuBaremetalClustersServersCount] = None,
tag_key: Optional[GetCloudGpuBaremetalClustersTagKey] = None,
tag_value: Optional[GetCloudGpuBaremetalClustersTagValue] = None,
tags: Optional[Mapping[str, str]] = None,
updated_at: Optional[GetCloudGpuBaremetalClustersUpdatedAt] = None,
opts: Optional[InvokeOptions] = None) -> GetCloudGpuBaremetalClustersResult
def get_cloud_gpu_baremetal_clusters_output(created_at: pulumi.Input[Optional[GetCloudGpuBaremetalClustersCreatedAtArgs]] = None,
flavor: pulumi.Input[Optional[GetCloudGpuBaremetalClustersFlavorArgs]] = None,
ids: pulumi.Input[Optional[Sequence[pulumi.Input[str]]]] = None,
image_ids: pulumi.Input[Optional[Sequence[pulumi.Input[str]]]] = None,
managed_bies: pulumi.Input[Optional[Sequence[pulumi.Input[str]]]] = None,
max_items: pulumi.Input[Optional[float]] = None,
name: pulumi.Input[Optional[GetCloudGpuBaremetalClustersNameArgs]] = None,
project_id: pulumi.Input[Optional[float]] = None,
region_id: pulumi.Input[Optional[float]] = None,
servers_count: pulumi.Input[Optional[GetCloudGpuBaremetalClustersServersCountArgs]] = None,
tag_key: pulumi.Input[Optional[GetCloudGpuBaremetalClustersTagKeyArgs]] = None,
tag_value: pulumi.Input[Optional[GetCloudGpuBaremetalClustersTagValueArgs]] = None,
tags: pulumi.Input[Optional[Mapping[str, pulumi.Input[str]]]] = None,
updated_at: pulumi.Input[Optional[GetCloudGpuBaremetalClustersUpdatedAtArgs]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetCloudGpuBaremetalClustersResult]func GetCloudGpuBaremetalClusters(ctx *Context, args *GetCloudGpuBaremetalClustersArgs, opts ...InvokeOption) (*GetCloudGpuBaremetalClustersResult, error)
func GetCloudGpuBaremetalClustersOutput(ctx *Context, args *GetCloudGpuBaremetalClustersOutputArgs, opts ...InvokeOption) GetCloudGpuBaremetalClustersResultOutput> Note: This function is named GetCloudGpuBaremetalClusters in the Go SDK.
public static class GetCloudGpuBaremetalClusters
{
public static Task<GetCloudGpuBaremetalClustersResult> InvokeAsync(GetCloudGpuBaremetalClustersArgs args, InvokeOptions? opts = null)
public static Output<GetCloudGpuBaremetalClustersResult> Invoke(GetCloudGpuBaremetalClustersInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetCloudGpuBaremetalClustersResult> getCloudGpuBaremetalClusters(GetCloudGpuBaremetalClustersArgs args, InvokeOptions options)
public static Output<GetCloudGpuBaremetalClustersResult> getCloudGpuBaremetalClusters(GetCloudGpuBaremetalClustersArgs args, InvokeOptions options)
fn::invoke:
function: gcore:index/getCloudGpuBaremetalClusters:getCloudGpuBaremetalClusters
arguments:
# arguments dictionarydata "gcore_getcloudgpubaremetalclusters" "name" {
# arguments
}The following arguments are supported:
- Created
At GetCloud Gpu Baremetal Clusters Created At - Filter by creation time (UTC), e.g.
created_at[gte]=2026-01-01T00:00:00Z. - Flavor
Get
Cloud Gpu Baremetal Clusters Flavor - Filter by flavor (case-insensitive), e.g.
flavor[prefix]=bm3-,flavor[exact]=bm3-ai-1xlarge-h100-80-8. - Ids List<string>
- Return only clusters with these IDs, e.g.
ids=<id1>&ids=<id2>. - Image
Ids List<string> - Return only clusters built from these source image IDs, e.g.
image_ids=<id1>&image_ids=<id2>. - Managed
Bies List<string> - Filter by who manages the cluster:
user(default) ork8s(Managed Kubernetes). Pass both to include all, e.g.managed_by=user&managed_by=k8s. - Max
Items double - Max items to fetch, default: 1000
- Name
Get
Cloud Gpu Baremetal Clusters Name - Filter by name (case-insensitive), e.g.
name[contains]=gpu,name[prefix]=prod-. - Project
Id double - Project ID
- Region
Id double - Region ID
- Servers
Count GetCloud Gpu Baremetal Clusters Servers Count - Filter by node count, e.g.
servers_count[gte]=2,servers_count[gte]=2&servers_count[lt]=8. - Tag
Key GetCloud Gpu Baremetal Clusters Tag Key - Filter by tag key regardless of value, e.g.
tag_key[contains]=team. - Tag
Value GetCloud Gpu Baremetal Clusters Tag Value - Filter by tag value regardless of key, e.g.
tag_value[prefix]=prod. - 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. - Updated
At GetCloud Gpu Baremetal Clusters Updated At - Filter by last-change time (UTC), e.g.
updated_at[gte]=2026-06-01T00:00:00Z.
- Created
At GetCloud Gpu Baremetal Clusters Created At - Filter by creation time (UTC), e.g.
created_at[gte]=2026-01-01T00:00:00Z. - Flavor
Get
Cloud Gpu Baremetal Clusters Flavor - Filter by flavor (case-insensitive), e.g.
flavor[prefix]=bm3-,flavor[exact]=bm3-ai-1xlarge-h100-80-8. - Ids []string
- Return only clusters with these IDs, e.g.
ids=<id1>&ids=<id2>. - Image
Ids []string - Return only clusters built from these source image IDs, e.g.
image_ids=<id1>&image_ids=<id2>. - Managed
Bies []string - Filter by who manages the cluster:
user(default) ork8s(Managed Kubernetes). Pass both to include all, e.g.managed_by=user&managed_by=k8s. - Max
Items float64 - Max items to fetch, default: 1000
- Name
Get
Cloud Gpu Baremetal Clusters Name - Filter by name (case-insensitive), e.g.
name[contains]=gpu,name[prefix]=prod-. - Project
Id float64 - Project ID
- Region
Id float64 - Region ID
- Servers
Count GetCloud Gpu Baremetal Clusters Servers Count - Filter by node count, e.g.
servers_count[gte]=2,servers_count[gte]=2&servers_count[lt]=8. - Tag
Key GetCloud Gpu Baremetal Clusters Tag Key - Filter by tag key regardless of value, e.g.
tag_key[contains]=team. - Tag
Value GetCloud Gpu Baremetal Clusters Tag Value - Filter by tag value regardless of key, e.g.
tag_value[prefix]=prod. - 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. - Updated
At GetCloud Gpu Baremetal Clusters Updated At - 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]=bm3-,flavor[exact]=bm3-ai-1xlarge-h100-80-8. - ids list(string)
- Return only clusters with these IDs, e.g.
ids=<id1>&ids=<id2>. - image_
ids list(string) - Return only clusters built from these source image IDs, e.g.
image_ids=<id1>&image_ids=<id2>. - managed_
bies list(string) - Filter by who manages the cluster:
user(default) ork8s(Managed Kubernetes). Pass both to include all, e.g.managed_by=user&managed_by=k8s. - 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. - 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.
- created
At GetCloud Gpu Baremetal Clusters Created At - Filter by creation time (UTC), e.g.
created_at[gte]=2026-01-01T00:00:00Z. - flavor
Get
Cloud Gpu Baremetal Clusters Flavor - Filter by flavor (case-insensitive), e.g.
flavor[prefix]=bm3-,flavor[exact]=bm3-ai-1xlarge-h100-80-8. - ids List<String>
- Return only clusters with these IDs, e.g.
ids=<id1>&ids=<id2>. - image
Ids List<String> - Return only clusters built from these source image IDs, e.g.
image_ids=<id1>&image_ids=<id2>. - managed
Bies List<String> - Filter by who manages the cluster:
user(default) ork8s(Managed Kubernetes). Pass both to include all, e.g.managed_by=user&managed_by=k8s. - max
Items Double - Max items to fetch, default: 1000
- name
Get
Cloud Gpu Baremetal Clusters Name - Filter by name (case-insensitive), e.g.
name[contains]=gpu,name[prefix]=prod-. - project
Id Double - Project ID
- region
Id Double - Region ID
- servers
Count GetCloud Gpu Baremetal Clusters Servers Count - Filter by node count, e.g.
servers_count[gte]=2,servers_count[gte]=2&servers_count[lt]=8. - tag
Key GetCloud Gpu Baremetal Clusters Tag Key - Filter by tag key regardless of value, e.g.
tag_key[contains]=team. - tag
Value GetCloud Gpu Baremetal Clusters Tag Value - Filter by tag value regardless of key, e.g.
tag_value[prefix]=prod. - 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. - updated
At GetCloud Gpu Baremetal Clusters Updated At - Filter by last-change time (UTC), e.g.
updated_at[gte]=2026-06-01T00:00:00Z.
- created
At GetCloud Gpu Baremetal Clusters Created At - Filter by creation time (UTC), e.g.
created_at[gte]=2026-01-01T00:00:00Z. - flavor
Get
Cloud Gpu Baremetal Clusters Flavor - Filter by flavor (case-insensitive), e.g.
flavor[prefix]=bm3-,flavor[exact]=bm3-ai-1xlarge-h100-80-8. - ids string[]
- Return only clusters with these IDs, e.g.
ids=<id1>&ids=<id2>. - image
Ids string[] - Return only clusters built from these source image IDs, e.g.
image_ids=<id1>&image_ids=<id2>. - managed
Bies string[] - Filter by who manages the cluster:
user(default) ork8s(Managed Kubernetes). Pass both to include all, e.g.managed_by=user&managed_by=k8s. - max
Items number - Max items to fetch, default: 1000
- name
Get
Cloud Gpu Baremetal Clusters Name - 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 GetCloud Gpu Baremetal Clusters Servers Count - Filter by node count, e.g.
servers_count[gte]=2,servers_count[gte]=2&servers_count[lt]=8. - tag
Key GetCloud Gpu Baremetal Clusters Tag Key - Filter by tag key regardless of value, e.g.
tag_key[contains]=team. - tag
Value GetCloud Gpu Baremetal Clusters Tag Value - Filter by tag value regardless of key, e.g.
tag_value[prefix]=prod. - {[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. - updated
At GetCloud Gpu Baremetal Clusters Updated At - Filter by last-change time (UTC), e.g.
updated_at[gte]=2026-06-01T00:00:00Z.
- created_
at GetCloud Gpu Baremetal Clusters Created At - Filter by creation time (UTC), e.g.
created_at[gte]=2026-01-01T00:00:00Z. - flavor
Get
Cloud Gpu Baremetal Clusters Flavor - Filter by flavor (case-insensitive), e.g.
flavor[prefix]=bm3-,flavor[exact]=bm3-ai-1xlarge-h100-80-8. - ids Sequence[str]
- Return only clusters with these IDs, e.g.
ids=<id1>&ids=<id2>. - image_
ids Sequence[str] - Return only clusters built from these source image IDs, e.g.
image_ids=<id1>&image_ids=<id2>. - managed_
bies Sequence[str] - Filter by who manages the cluster:
user(default) ork8s(Managed Kubernetes). Pass both to include all, e.g.managed_by=user&managed_by=k8s. - max_
items float - Max items to fetch, default: 1000
- name
Get
Cloud Gpu Baremetal Clusters Name - 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 GetCloud Gpu Baremetal Clusters Servers Count - Filter by node count, e.g.
servers_count[gte]=2,servers_count[gte]=2&servers_count[lt]=8. - tag_
key GetCloud Gpu Baremetal Clusters Tag Key - Filter by tag key regardless of value, e.g.
tag_key[contains]=team. - tag_
value GetCloud Gpu Baremetal Clusters Tag Value - Filter by tag value regardless of key, e.g.
tag_value[prefix]=prod. - 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 GetCloud Gpu Baremetal Clusters Updated At - Filter by last-change time (UTC), e.g.
updated_at[gte]=2026-06-01T00:00:00Z.
- created
At 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]=bm3-,flavor[exact]=bm3-ai-1xlarge-h100-80-8. - ids List<String>
- Return only clusters with these IDs, e.g.
ids=<id1>&ids=<id2>. - image
Ids List<String> - Return only clusters built from these source image IDs, e.g.
image_ids=<id1>&image_ids=<id2>. - managed
Bies List<String> - Filter by who manages the cluster:
user(default) ork8s(Managed Kubernetes). Pass both to include all, e.g.managed_by=user&managed_by=k8s. - max
Items Number - Max items to fetch, default: 1000
- name Property Map
- 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 Property Map - Filter by node count, e.g.
servers_count[gte]=2,servers_count[gte]=2&servers_count[lt]=8. - tag
Key Property Map - Filter by tag key regardless of value, e.g.
tag_key[contains]=team. - tag
Value Property Map - Filter by tag value regardless of key, e.g.
tag_value[prefix]=prod. - 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 Property Map - Filter by last-change time (UTC), e.g.
updated_at[gte]=2026-06-01T00:00:00Z.
getCloudGpuBaremetalClusters Result
The following output properties are available:
- Id string
- The provider-assigned unique ID for this managed resource.
- Items
List<Get
Cloud Gpu Baremetal Clusters Item> - The items returned by the data source
- Managed
Bies List<string> - Filter by who manages the cluster:
user(default) ork8s(Managed Kubernetes). Pass both to include all, e.g.managed_by=user&managed_by=k8s. - Created
At GetCloud Gpu Baremetal Clusters Created At - Filter by creation time (UTC), e.g.
created_at[gte]=2026-01-01T00:00:00Z. - Flavor
Get
Cloud Gpu Baremetal Clusters Flavor - Filter by flavor (case-insensitive), e.g.
flavor[prefix]=bm3-,flavor[exact]=bm3-ai-1xlarge-h100-80-8. - Ids List<string>
- Return only clusters with these IDs, e.g.
ids=<id1>&ids=<id2>. - Image
Ids List<string> - Return only clusters built from these source image IDs, e.g.
image_ids=<id1>&image_ids=<id2>. - Max
Items double - Max items to fetch, default: 1000
- Name
Get
Cloud Gpu Baremetal Clusters Name - Filter by name (case-insensitive), e.g.
name[contains]=gpu,name[prefix]=prod-. - Project
Id double - Project ID
- Region
Id double - Region ID
- Servers
Count GetCloud Gpu Baremetal Clusters Servers Count - Filter by node count, e.g.
servers_count[gte]=2,servers_count[gte]=2&servers_count[lt]=8. - Tag
Key GetCloud Gpu Baremetal Clusters Tag Key - Filter by tag key regardless of value, e.g.
tag_key[contains]=team. - Tag
Value GetCloud Gpu Baremetal Clusters Tag Value - Filter by tag value regardless of key, e.g.
tag_value[prefix]=prod. - 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. - Updated
At GetCloud Gpu Baremetal Clusters Updated At - 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
[]Get
Cloud Gpu Baremetal Clusters Item - The items returned by the data source
- Managed
Bies []string - Filter by who manages the cluster:
user(default) ork8s(Managed Kubernetes). Pass both to include all, e.g.managed_by=user&managed_by=k8s. - Created
At GetCloud Gpu Baremetal Clusters Created At - Filter by creation time (UTC), e.g.
created_at[gte]=2026-01-01T00:00:00Z. - Flavor
Get
Cloud Gpu Baremetal Clusters Flavor - Filter by flavor (case-insensitive), e.g.
flavor[prefix]=bm3-,flavor[exact]=bm3-ai-1xlarge-h100-80-8. - Ids []string
- Return only clusters with these IDs, e.g.
ids=<id1>&ids=<id2>. - Image
Ids []string - Return only clusters built from these source image IDs, e.g.
image_ids=<id1>&image_ids=<id2>. - Max
Items float64 - Max items to fetch, default: 1000
- Name
Get
Cloud Gpu Baremetal Clusters Name - Filter by name (case-insensitive), e.g.
name[contains]=gpu,name[prefix]=prod-. - Project
Id float64 - Project ID
- Region
Id float64 - Region ID
- Servers
Count GetCloud Gpu Baremetal Clusters Servers Count - Filter by node count, e.g.
servers_count[gte]=2,servers_count[gte]=2&servers_count[lt]=8. - Tag
Key GetCloud Gpu Baremetal Clusters Tag Key - Filter by tag key regardless of value, e.g.
tag_key[contains]=team. - Tag
Value GetCloud Gpu Baremetal Clusters Tag Value - Filter by tag value regardless of key, e.g.
tag_value[prefix]=prod. - 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. - Updated
At GetCloud Gpu Baremetal Clusters Updated At - 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
- managed_
bies list(string) - Filter by who manages the cluster:
user(default) ork8s(Managed Kubernetes). Pass both to include all, e.g.managed_by=user&managed_by=k8s. - 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]=bm3-,flavor[exact]=bm3-ai-1xlarge-h100-80-8. - ids list(string)
- Return only clusters with these IDs, e.g.
ids=<id1>&ids=<id2>. - image_
ids list(string) - Return only clusters built from these source image IDs, e.g.
image_ids=<id1>&image_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. - 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<Get
Cloud Gpu Baremetal Clusters Item> - The items returned by the data source
- managed
Bies List<String> - Filter by who manages the cluster:
user(default) ork8s(Managed Kubernetes). Pass both to include all, e.g.managed_by=user&managed_by=k8s. - created
At GetCloud Gpu Baremetal Clusters Created At - Filter by creation time (UTC), e.g.
created_at[gte]=2026-01-01T00:00:00Z. - flavor
Get
Cloud Gpu Baremetal Clusters Flavor - Filter by flavor (case-insensitive), e.g.
flavor[prefix]=bm3-,flavor[exact]=bm3-ai-1xlarge-h100-80-8. - ids List<String>
- Return only clusters with these IDs, e.g.
ids=<id1>&ids=<id2>. - image
Ids List<String> - Return only clusters built from these source image IDs, e.g.
image_ids=<id1>&image_ids=<id2>. - max
Items Double - Max items to fetch, default: 1000
- name
Get
Cloud Gpu Baremetal Clusters Name - Filter by name (case-insensitive), e.g.
name[contains]=gpu,name[prefix]=prod-. - project
Id Double - Project ID
- region
Id Double - Region ID
- servers
Count GetCloud Gpu Baremetal Clusters Servers Count - Filter by node count, e.g.
servers_count[gte]=2,servers_count[gte]=2&servers_count[lt]=8. - tag
Key GetCloud Gpu Baremetal Clusters Tag Key - Filter by tag key regardless of value, e.g.
tag_key[contains]=team. - tag
Value GetCloud Gpu Baremetal Clusters Tag Value - Filter by tag value regardless of key, e.g.
tag_value[prefix]=prod. - 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. - updated
At GetCloud Gpu Baremetal Clusters Updated At - 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
Get
Cloud Gpu Baremetal Clusters Item[] - The items returned by the data source
- managed
Bies string[] - Filter by who manages the cluster:
user(default) ork8s(Managed Kubernetes). Pass both to include all, e.g.managed_by=user&managed_by=k8s. - created
At GetCloud Gpu Baremetal Clusters Created At - Filter by creation time (UTC), e.g.
created_at[gte]=2026-01-01T00:00:00Z. - flavor
Get
Cloud Gpu Baremetal Clusters Flavor - Filter by flavor (case-insensitive), e.g.
flavor[prefix]=bm3-,flavor[exact]=bm3-ai-1xlarge-h100-80-8. - ids string[]
- Return only clusters with these IDs, e.g.
ids=<id1>&ids=<id2>. - image
Ids string[] - Return only clusters built from these source image IDs, e.g.
image_ids=<id1>&image_ids=<id2>. - max
Items number - Max items to fetch, default: 1000
- name
Get
Cloud Gpu Baremetal Clusters Name - 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 GetCloud Gpu Baremetal Clusters Servers Count - Filter by node count, e.g.
servers_count[gte]=2,servers_count[gte]=2&servers_count[lt]=8. - tag
Key GetCloud Gpu Baremetal Clusters Tag Key - Filter by tag key regardless of value, e.g.
tag_key[contains]=team. - tag
Value GetCloud Gpu Baremetal Clusters Tag Value - Filter by tag value regardless of key, e.g.
tag_value[prefix]=prod. - {[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. - updated
At GetCloud Gpu Baremetal Clusters Updated At - 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[Get
Cloud Gpu Baremetal Clusters Item] - The items returned by the data source
- managed_
bies Sequence[str] - Filter by who manages the cluster:
user(default) ork8s(Managed Kubernetes). Pass both to include all, e.g.managed_by=user&managed_by=k8s. - created_
at GetCloud Gpu Baremetal Clusters Created At - Filter by creation time (UTC), e.g.
created_at[gte]=2026-01-01T00:00:00Z. - flavor
Get
Cloud Gpu Baremetal Clusters Flavor - Filter by flavor (case-insensitive), e.g.
flavor[prefix]=bm3-,flavor[exact]=bm3-ai-1xlarge-h100-80-8. - ids Sequence[str]
- Return only clusters with these IDs, e.g.
ids=<id1>&ids=<id2>. - image_
ids Sequence[str] - Return only clusters built from these source image IDs, e.g.
image_ids=<id1>&image_ids=<id2>. - max_
items float - Max items to fetch, default: 1000
- name
Get
Cloud Gpu Baremetal Clusters Name - 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 GetCloud Gpu Baremetal Clusters Servers Count - Filter by node count, e.g.
servers_count[gte]=2,servers_count[gte]=2&servers_count[lt]=8. - tag_
key GetCloud Gpu Baremetal Clusters Tag Key - Filter by tag key regardless of value, e.g.
tag_key[contains]=team. - tag_
value GetCloud Gpu Baremetal Clusters Tag Value - Filter by tag value regardless of key, e.g.
tag_value[prefix]=prod. - 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 GetCloud Gpu Baremetal Clusters Updated At - 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
- managed
Bies List<String> - Filter by who manages the cluster:
user(default) ork8s(Managed Kubernetes). Pass both to include all, e.g.managed_by=user&managed_by=k8s. - created
At 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]=bm3-,flavor[exact]=bm3-ai-1xlarge-h100-80-8. - ids List<String>
- Return only clusters with these IDs, e.g.
ids=<id1>&ids=<id2>. - image
Ids List<String> - Return only clusters built from these source image IDs, e.g.
image_ids=<id1>&image_ids=<id2>. - max
Items Number - Max items to fetch, default: 1000
- name Property Map
- 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 Property Map - Filter by node count, e.g.
servers_count[gte]=2,servers_count[gte]=2&servers_count[lt]=8. - tag
Key Property Map - Filter by tag key regardless of value, e.g.
tag_key[contains]=team. - tag
Value Property Map - Filter by tag value regardless of key, e.g.
tag_value[prefix]=prod. - 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 Property Map - Filter by last-change time (UTC), e.g.
updated_at[gte]=2026-06-01T00:00:00Z.
Supporting Types
GetCloudGpuBaremetalClustersCreatedAt
- 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 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.
GetCloudGpuBaremetalClustersFlavor
- 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.
GetCloudGpuBaremetalClustersItem
- Created
At string - Cluster creation date time
- Flavor string
- Cluster flavor name
- Has
Pending boolChanges - True if any server in the cluster has pending (not yet applied) settings changes
- Id string
- Cluster unique identifier
- Image
Id string - Image ID
- Managed
By string - User type managing the resource Available values: "k8s", "user".
- Name string
- Cluster name
- Servers
Count double - Cluster servers count
- Servers
Ids List<string> - List of cluster nodes
- Servers
Settings GetCloud Gpu Baremetal Clusters Item Servers Settings - Status string
- Cluster status Available values: "active", "creating", "degraded", "deleting", "error", "rebooting", "rebuilding", "resizing", "shutoff".
-
List<Get
Cloud Gpu Baremetal Clusters Item Tag> - 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
- Created
At string - Cluster creation date time
- Flavor string
- Cluster flavor name
- Has
Pending boolChanges - True if any server in the cluster has pending (not yet applied) settings changes
- Id string
- Cluster unique identifier
- Image
Id string - Image ID
- Managed
By string - User type managing the resource Available values: "k8s", "user".
- Name string
- Cluster name
- Servers
Count float64 - Cluster servers count
- Servers
Ids []string - List of cluster nodes
- Servers
Settings GetCloud Gpu Baremetal Clusters Item Servers Settings - Status string
- Cluster status Available values: "active", "creating", "degraded", "deleting", "error", "rebooting", "rebuilding", "resizing", "shutoff".
-
[]Get
Cloud Gpu Baremetal Clusters Item Tag - 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
- created_
at string - Cluster creation date time
- flavor string
- Cluster flavor name
- has_
pending_ boolchanges - True if any server in the cluster has pending (not yet applied) settings changes
- id string
- Cluster unique identifier
- image_
id string - Image ID
- managed_
by string - User type managing the resource Available values: "k8s", "user".
- 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".
- 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
- created
At String - Cluster creation date time
- flavor String
- Cluster flavor name
- has
Pending BooleanChanges - True if any server in the cluster has pending (not yet applied) settings changes
- id String
- Cluster unique identifier
- image
Id String - Image ID
- managed
By String - User type managing the resource Available values: "k8s", "user".
- name String
- Cluster name
- servers
Count Double - Cluster servers count
- servers
Ids List<String> - List of cluster nodes
- servers
Settings GetCloud Gpu Baremetal Clusters Item Servers Settings - status String
- Cluster status Available values: "active", "creating", "degraded", "deleting", "error", "rebooting", "rebuilding", "resizing", "shutoff".
-
List<Get
Cloud Gpu Baremetal Clusters Item Tag> - 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
- created
At string - Cluster creation date time
- flavor string
- Cluster flavor name
- has
Pending booleanChanges - True if any server in the cluster has pending (not yet applied) settings changes
- id string
- Cluster unique identifier
- image
Id string - Image ID
- managed
By string - User type managing the resource Available values: "k8s", "user".
- name string
- Cluster name
- servers
Count number - Cluster servers count
- servers
Ids string[] - List of cluster nodes
- servers
Settings GetCloud Gpu Baremetal Clusters Item Servers Settings - status string
- Cluster status Available values: "active", "creating", "degraded", "deleting", "error", "rebooting", "rebuilding", "resizing", "shutoff".
-
Get
Cloud Gpu Baremetal Clusters Item Tag[] - 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
- created_
at str - Cluster creation date time
- flavor str
- Cluster flavor name
- has_
pending_ boolchanges - True if any server in the cluster has pending (not yet applied) settings changes
- id str
- Cluster unique identifier
- image_
id str - Image ID
- managed_
by str - User type managing the resource Available values: "k8s", "user".
- name str
- Cluster name
- servers_
count float - Cluster servers count
- servers_
ids Sequence[str] - List of cluster nodes
- servers_
settings GetCloud Gpu Baremetal Clusters Item Servers Settings - status str
- Cluster status Available values: "active", "creating", "degraded", "deleting", "error", "rebooting", "rebuilding", "resizing", "shutoff".
-
Sequence[Get
Cloud Gpu Baremetal Clusters Item Tag] - 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
- created
At String - Cluster creation date time
- flavor String
- Cluster flavor name
- has
Pending BooleanChanges - True if any server in the cluster has pending (not yet applied) settings changes
- id String
- Cluster unique identifier
- image
Id String - Image ID
- managed
By String - User type managing the resource Available values: "k8s", "user".
- name String
- Cluster name
- servers
Count Number - Cluster servers count
- servers
Ids List<String> - List of cluster nodes
- servers
Settings Property Map - status String
- Cluster status Available values: "active", "creating", "degraded", "deleting", "error", "rebooting", "rebuilding", "resizing", "shutoff".
- 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.
- updated
At String - Cluster update date time
GetCloudGpuBaremetalClustersItemServersSettings
-
List<Get
Cloud Gpu Baremetal Clusters Item Servers Settings File Share> - List of file shares mounted across the cluster.
- Interfaces
List<Get
Cloud Gpu Baremetal Clusters Item Servers Settings Interface> - Security
Groups List<GetCloud Gpu Baremetal Clusters Item Servers Settings Security Group> - Deprecated. Deduplicated union of security groups across all interfaces; the actual assignment may differ per interface. Use
interfaces[].security_groupsfor the authoritative per-interface list. - Ssh
Key stringName - SSH key name
- User
Data string - Optional custom user data
-
[]Get
Cloud Gpu Baremetal Clusters Item Servers Settings File Share - List of file shares mounted across the cluster.
- Interfaces
[]Get
Cloud Gpu Baremetal Clusters Item Servers Settings Interface - Security
Groups []GetCloud Gpu Baremetal Clusters Item Servers Settings Security Group - Deprecated. Deduplicated union of security groups across all interfaces; the actual assignment may differ per interface. Use
interfaces[].security_groupsfor the authoritative per-interface list. - Ssh
Key stringName - SSH key name
- User
Data string - Optional custom user data
- 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_groupsfor the authoritative per-interface list. - ssh_
key_ stringname - SSH key name
- user_
data string - Optional custom user data
-
List<Get
Cloud Gpu Baremetal Clusters Item Servers Settings File Share> - List of file shares mounted across the cluster.
- interfaces
List<Get
Cloud Gpu Baremetal Clusters Item Servers Settings Interface> - security
Groups List<GetCloud Gpu Baremetal Clusters Item Servers Settings Security Group> - Deprecated. Deduplicated union of security groups across all interfaces; the actual assignment may differ per interface. Use
interfaces[].security_groupsfor the authoritative per-interface list. - ssh
Key StringName - SSH key name
- user
Data String - Optional custom user data
-
Get
Cloud Gpu Baremetal Clusters Item Servers Settings File Share[] - List of file shares mounted across the cluster.
- interfaces
Get
Cloud Gpu Baremetal Clusters Item Servers Settings Interface[] - security
Groups GetCloud Gpu Baremetal Clusters Item Servers Settings Security Group[] - Deprecated. Deduplicated union of security groups across all interfaces; the actual assignment may differ per interface. Use
interfaces[].security_groupsfor the authoritative per-interface list. - ssh
Key stringName - SSH key name
- user
Data string - Optional custom user data
-
Sequence[Get
Cloud Gpu Baremetal Clusters Item Servers Settings File Share] - List of file shares mounted across the cluster.
- interfaces
Sequence[Get
Cloud Gpu Baremetal Clusters Item Servers Settings Interface] - security_
groups Sequence[GetCloud Gpu Baremetal Clusters Item Servers Settings Security Group] - Deprecated. Deduplicated union of security groups across all interfaces; the actual assignment may differ per interface. Use
interfaces[].security_groupsfor the authoritative per-interface list. - ssh_
key_ strname - SSH key name
- user_
data str - Optional custom user data
- List<Property Map>
- List of file shares mounted across the cluster.
- interfaces List<Property Map>
- security
Groups List<Property Map> - Deprecated. Deduplicated union of security groups across all interfaces; the actual assignment may differ per interface. Use
interfaces[].security_groupsfor the authoritative per-interface list. - ssh
Key StringName - SSH key name
- user
Data String - Optional custom user data
GetCloudGpuBaremetalClustersItemServersSettingsFileShare
- 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 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.
GetCloudGpuBaremetalClustersItemServersSettingsInterface
- Floating
Ip GetCloud Gpu Baremetal Clusters Item Servers Settings Interface Floating Ip - 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<GetCloud Gpu Baremetal Clusters Item Servers Settings Interface Security Group> - 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".
- Floating
Ip GetCloud Gpu Baremetal Clusters Item Servers Settings Interface Floating Ip - 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 []GetCloud Gpu Baremetal Clusters Item Servers Settings Interface Security Group - 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".
- 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".
- floating
Ip GetCloud Gpu Baremetal Clusters Item Servers Settings Interface Floating Ip - 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<GetCloud Gpu Baremetal Clusters Item Servers Settings Interface Security Group> - 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".
- floating
Ip GetCloud Gpu Baremetal Clusters Item Servers Settings Interface Floating Ip - 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 GetCloud Gpu Baremetal Clusters Item Servers Settings Interface Security Group[] - 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".
- floating_
ip GetCloud Gpu Baremetal Clusters Item Servers Settings Interface Floating Ip - 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[GetCloud Gpu Baremetal Clusters Item Servers Settings Interface Security Group] - 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".
- floating
Ip Property Map - 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<Property Map> - 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".
GetCloudGpuBaremetalClustersItemServersSettingsInterfaceFloatingIp
- 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".
GetCloudGpuBaremetalClustersItemServersSettingsInterfaceSecurityGroup
GetCloudGpuBaremetalClustersItemServersSettingsSecurityGroup
GetCloudGpuBaremetalClustersItemTag
- 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.
- 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.
- 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.
- read
Only 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.
- read
Only 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.
- read
Only 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.
GetCloudGpuBaremetalClustersName
- 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.
GetCloudGpuBaremetalClustersServersCount
GetCloudGpuBaremetalClustersTagKey
- 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.
GetCloudGpuBaremetalClustersTagValue
- 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.
GetCloudGpuBaremetalClustersUpdatedAt
- 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 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
gcoreTerraform Provider.
Viewing docs for gcore 2.0.0-alpha.11
published on Wednesday, Jul 1, 2026 by g-core
published on Wednesday, Jul 1, 2026 by g-core