ionoscloud.k8s.getClusters
Explore with Pulumi AI
The k8s_clusters data source can be used to search for and return existing kubernetes clusters based on filters used.
Example Usage
By Name
import * as pulumi from "@pulumi/pulumi";
import * as ionoscloud from "@pulumi/ionoscloud";
const example = ionoscloud.k8s.getClusters({
filters: [{
name: "name",
value: "k8sClusterExample",
}],
});
import pulumi
import pulumi_ionoscloud as ionoscloud
example = ionoscloud.k8s.get_clusters(filters=[{
"name": "name",
"value": "k8sClusterExample",
}])
package main
import (
"github.com/ionos-cloud/pulumi-ionoscloud/sdk/go/ionoscloud/k8s"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := k8s.GetClusters(ctx, &k8s.GetClustersArgs{
Filters: []k8s.GetClustersFilter{
{
Name: "name",
Value: "k8sClusterExample",
},
},
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Ionoscloud = Pulumi.Ionoscloud;
return await Deployment.RunAsync(() =>
{
var example = Ionoscloud.K8s.GetClusters.Invoke(new()
{
Filters = new[]
{
new Ionoscloud.K8s.Inputs.GetClustersFilterInputArgs
{
Name = "name",
Value = "k8sClusterExample",
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.ionoscloud.k8s.K8sFunctions;
import com.pulumi.ionoscloud.k8s.inputs.GetClustersArgs;
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 example = K8sFunctions.getClusters(GetClustersArgs.builder()
.filters(GetClustersFilterArgs.builder()
.name("name")
.value("k8sClusterExample")
.build())
.build());
}
}
variables:
example:
fn::invoke:
function: ionoscloud:k8s:getClusters
arguments:
filters:
- name: name
value: k8sClusterExample
By Name and k8s version Family
import * as pulumi from "@pulumi/pulumi";
import * as ionoscloud from "@pulumi/ionoscloud";
const example2 = ionoscloud.k8s.getClusters({
filters: [
{
name: "name",
value: "k8sClusterExample",
},
{
name: "k8s_version",
value: "1.27",
},
],
});
import pulumi
import pulumi_ionoscloud as ionoscloud
example2 = ionoscloud.k8s.get_clusters(filters=[
{
"name": "name",
"value": "k8sClusterExample",
},
{
"name": "k8s_version",
"value": "1.27",
},
])
package main
import (
"github.com/ionos-cloud/pulumi-ionoscloud/sdk/go/ionoscloud/k8s"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := k8s.GetClusters(ctx, &k8s.GetClustersArgs{
Filters: []k8s.GetClustersFilter{
{
Name: "name",
Value: "k8sClusterExample",
},
{
Name: "k8s_version",
Value: "1.27",
},
},
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Ionoscloud = Pulumi.Ionoscloud;
return await Deployment.RunAsync(() =>
{
var example2 = Ionoscloud.K8s.GetClusters.Invoke(new()
{
Filters = new[]
{
new Ionoscloud.K8s.Inputs.GetClustersFilterInputArgs
{
Name = "name",
Value = "k8sClusterExample",
},
new Ionoscloud.K8s.Inputs.GetClustersFilterInputArgs
{
Name = "k8s_version",
Value = "1.27",
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.ionoscloud.k8s.K8sFunctions;
import com.pulumi.ionoscloud.k8s.inputs.GetClustersArgs;
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 example2 = K8sFunctions.getClusters(GetClustersArgs.builder()
.filters(
GetClustersFilterArgs.builder()
.name("name")
.value("k8sClusterExample")
.build(),
GetClustersFilterArgs.builder()
.name("k8s_version")
.value("1.27")
.build())
.build());
}
}
variables:
example2:
fn::invoke:
function: ionoscloud:k8s:getClusters
arguments:
filters:
- name: name
value: k8sClusterExample
- name: k8s_version
value: '1.27'
Retrieve private clusters only, by Name and Cluster State
import * as pulumi from "@pulumi/pulumi";
import * as ionoscloud from "@pulumi/ionoscloud";
const example = ionoscloud.compute.getServers({
filters: [
{
name: "name",
value: "k8sClusterExample",
},
{
name: "state",
value: "ACTIVE",
},
{
name: "public",
value: "false",
},
],
});
import pulumi
import pulumi_ionoscloud as ionoscloud
example = ionoscloud.compute.get_servers(filters=[
{
"name": "name",
"value": "k8sClusterExample",
},
{
"name": "state",
"value": "ACTIVE",
},
{
"name": "public",
"value": "false",
},
])
package main
import (
"github.com/ionos-cloud/pulumi-ionoscloud/sdk/go/ionoscloud/compute"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := compute.GetServers(ctx, &compute.GetServersArgs{
Filters: []compute.GetServersFilter{
{
Name: "name",
Value: "k8sClusterExample",
},
{
Name: "state",
Value: "ACTIVE",
},
{
Name: "public",
Value: "false",
},
},
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Ionoscloud = Pulumi.Ionoscloud;
return await Deployment.RunAsync(() =>
{
var example = Ionoscloud.Compute.GetServers.Invoke(new()
{
Filters = new[]
{
new Ionoscloud.Compute.Inputs.GetServersFilterInputArgs
{
Name = "name",
Value = "k8sClusterExample",
},
new Ionoscloud.Compute.Inputs.GetServersFilterInputArgs
{
Name = "state",
Value = "ACTIVE",
},
new Ionoscloud.Compute.Inputs.GetServersFilterInputArgs
{
Name = "public",
Value = "false",
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.ionoscloud.compute.ComputeFunctions;
import com.pulumi.ionoscloud.compute.inputs.GetServersArgs;
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 example = ComputeFunctions.getServers(GetServersArgs.builder()
.filters(
GetServersFilterArgs.builder()
.name("name")
.value("k8sClusterExample")
.build(),
GetServersFilterArgs.builder()
.name("state")
.value("ACTIVE")
.build(),
GetServersFilterArgs.builder()
.name("public")
.value("false")
.build())
.build());
}
}
variables:
example:
fn::invoke:
function: ionoscloud:compute:getServers
arguments:
filters:
- name: name
value: k8sClusterExample
- name: state
value: ACTIVE
- name: public
value: 'false'
Using getClusters
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 getClusters(args: GetClustersArgs, opts?: InvokeOptions): Promise<GetClustersResult>
function getClustersOutput(args: GetClustersOutputArgs, opts?: InvokeOptions): Output<GetClustersResult>
def get_clusters(filters: Optional[Sequence[GetClustersFilter]] = None,
opts: Optional[InvokeOptions] = None) -> GetClustersResult
def get_clusters_output(filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetClustersFilterArgs]]]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetClustersResult]
func GetClusters(ctx *Context, args *GetClustersArgs, opts ...InvokeOption) (*GetClustersResult, error)
func GetClustersOutput(ctx *Context, args *GetClustersOutputArgs, opts ...InvokeOption) GetClustersResultOutput
> Note: This function is named GetClusters
in the Go SDK.
public static class GetClusters
{
public static Task<GetClustersResult> InvokeAsync(GetClustersArgs args, InvokeOptions? opts = null)
public static Output<GetClustersResult> Invoke(GetClustersInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetClustersResult> getClusters(GetClustersArgs args, InvokeOptions options)
public static Output<GetClustersResult> getClusters(GetClustersArgs args, InvokeOptions options)
fn::invoke:
function: ionoscloud:k8s/getClusters:getClusters
arguments:
# arguments dictionary
The following arguments are supported:
- Filters
List<Ionoscloud.
Get Clusters Filter> One or more property name - value pairs to be used in filtering the cluster list by the specified attributes. You can use most of the top level fields from the k8s_cluster resource except those containing other nested structures such as
maintenance_window
orconfig
.NOTE: Filtering uses partial matching for all types of values. Searching for a cluster using
name:testCluster
will find all clusters who have thetestCluster
substring in their name. This also applies to values for properties that would normally be boolean or numerical.
- Filters
[]Get
Clusters Filter One or more property name - value pairs to be used in filtering the cluster list by the specified attributes. You can use most of the top level fields from the k8s_cluster resource except those containing other nested structures such as
maintenance_window
orconfig
.NOTE: Filtering uses partial matching for all types of values. Searching for a cluster using
name:testCluster
will find all clusters who have thetestCluster
substring in their name. This also applies to values for properties that would normally be boolean or numerical.
- filters
List<Get
Clusters Filter> One or more property name - value pairs to be used in filtering the cluster list by the specified attributes. You can use most of the top level fields from the k8s_cluster resource except those containing other nested structures such as
maintenance_window
orconfig
.NOTE: Filtering uses partial matching for all types of values. Searching for a cluster using
name:testCluster
will find all clusters who have thetestCluster
substring in their name. This also applies to values for properties that would normally be boolean or numerical.
- filters
Get
Clusters Filter[] One or more property name - value pairs to be used in filtering the cluster list by the specified attributes. You can use most of the top level fields from the k8s_cluster resource except those containing other nested structures such as
maintenance_window
orconfig
.NOTE: Filtering uses partial matching for all types of values. Searching for a cluster using
name:testCluster
will find all clusters who have thetestCluster
substring in their name. This also applies to values for properties that would normally be boolean or numerical.
- filters
Sequence[Get
Clusters Filter] One or more property name - value pairs to be used in filtering the cluster list by the specified attributes. You can use most of the top level fields from the k8s_cluster resource except those containing other nested structures such as
maintenance_window
orconfig
.NOTE: Filtering uses partial matching for all types of values. Searching for a cluster using
name:testCluster
will find all clusters who have thetestCluster
substring in their name. This also applies to values for properties that would normally be boolean or numerical.
- filters List<Property Map>
One or more property name - value pairs to be used in filtering the cluster list by the specified attributes. You can use most of the top level fields from the k8s_cluster resource except those containing other nested structures such as
maintenance_window
orconfig
.NOTE: Filtering uses partial matching for all types of values. Searching for a cluster using
name:testCluster
will find all clusters who have thetestCluster
substring in their name. This also applies to values for properties that would normally be boolean or numerical.
getClusters Result
The following output properties are available:
- Clusters
List<Ionoscloud.
Get Clusters Cluster> - list of Kubernetes clusters that match the provided filters. The elements of this list are structurally identical to the
k8s_cluster
datasource, which is limited to retrieving only 1 cluster in a single query. - Entries int
- indicates the number of clusters found and added to the list after the query has been performed with the specified filters. For a full reference of all the attributes returned, check out documentation
- Id string
- The provider-assigned unique ID for this managed resource.
- Filters
List<Ionoscloud.
Get Clusters Filter>
- Clusters
[]Get
Clusters Cluster - list of Kubernetes clusters that match the provided filters. The elements of this list are structurally identical to the
k8s_cluster
datasource, which is limited to retrieving only 1 cluster in a single query. - Entries int
- indicates the number of clusters found and added to the list after the query has been performed with the specified filters. For a full reference of all the attributes returned, check out documentation
- Id string
- The provider-assigned unique ID for this managed resource.
- Filters
[]Get
Clusters Filter
- clusters
List<Get
Clusters Cluster> - list of Kubernetes clusters that match the provided filters. The elements of this list are structurally identical to the
k8s_cluster
datasource, which is limited to retrieving only 1 cluster in a single query. - entries Integer
- indicates the number of clusters found and added to the list after the query has been performed with the specified filters. For a full reference of all the attributes returned, check out documentation
- id String
- The provider-assigned unique ID for this managed resource.
- filters
List<Get
Clusters Filter>
- clusters
Get
Clusters Cluster[] - list of Kubernetes clusters that match the provided filters. The elements of this list are structurally identical to the
k8s_cluster
datasource, which is limited to retrieving only 1 cluster in a single query. - entries number
- indicates the number of clusters found and added to the list after the query has been performed with the specified filters. For a full reference of all the attributes returned, check out documentation
- id string
- The provider-assigned unique ID for this managed resource.
- filters
Get
Clusters Filter[]
- clusters
Sequence[Get
Clusters Cluster] - list of Kubernetes clusters that match the provided filters. The elements of this list are structurally identical to the
k8s_cluster
datasource, which is limited to retrieving only 1 cluster in a single query. - entries int
- indicates the number of clusters found and added to the list after the query has been performed with the specified filters. For a full reference of all the attributes returned, check out documentation
- id str
- The provider-assigned unique ID for this managed resource.
- filters
Sequence[Get
Clusters Filter]
- clusters List<Property Map>
- list of Kubernetes clusters that match the provided filters. The elements of this list are structurally identical to the
k8s_cluster
datasource, which is limited to retrieving only 1 cluster in a single query. - entries Number
- indicates the number of clusters found and added to the list after the query has been performed with the specified filters. For a full reference of all the attributes returned, check out documentation
- id String
- The provider-assigned unique ID for this managed resource.
- filters List<Property Map>
Supporting Types
GetClustersCluster
- Api
Subnet List<string>Allow Lists - Access to the K8s API server is restricted to these CIDRs. Cluster-internal traffic is not affected by this restriction. If no allowlist is specified, access is not restricted. If an IP without subnet mask is provided, the default value will be used: 32 for IPv4 and 128 for IPv6.
- Available
Upgrade List<string>Versions - A list of available versions for upgrading the cluster
- Ca
Crt string - Configs
List<Ionoscloud.
Get Clusters Cluster Config> - Id string
- K8s
Version string - Kube
Config string - Location string
- Maintenance
Windows List<Ionoscloud.Get Clusters Cluster Maintenance Window> - A maintenance window comprise of a day of the week and a time for maintenance to be allowed
- Name string
- Nat
Gateway stringIp - The NAT gateway IP of the cluster if the cluster is private.
- Node
Pools List<string> - Node
Subnet string - The node subnet of the cluster, if the cluster is private.
- Public bool
- The indicator if the cluster is public or private.
- S3Buckets
List<Ionoscloud.
Get Clusters Cluster S3Bucket> - List of Object Storage bucket configured for K8s usage. For now it contains only an Object Storage bucket used to store K8s API audit logs.
- Server string
- State string
- User
Tokens Dictionary<string, string> - Viable
Node List<string>Pool Versions - A list of versions that may be used for node pools under this cluster
- Api
Subnet []stringAllow Lists - Access to the K8s API server is restricted to these CIDRs. Cluster-internal traffic is not affected by this restriction. If no allowlist is specified, access is not restricted. If an IP without subnet mask is provided, the default value will be used: 32 for IPv4 and 128 for IPv6.
- Available
Upgrade []stringVersions - A list of available versions for upgrading the cluster
- Ca
Crt string - Configs
[]Get
Clusters Cluster Config - Id string
- K8s
Version string - Kube
Config string - Location string
- Maintenance
Windows []GetClusters Cluster Maintenance Window - A maintenance window comprise of a day of the week and a time for maintenance to be allowed
- Name string
- Nat
Gateway stringIp - The NAT gateway IP of the cluster if the cluster is private.
- Node
Pools []string - Node
Subnet string - The node subnet of the cluster, if the cluster is private.
- Public bool
- The indicator if the cluster is public or private.
- S3Buckets
[]Get
Clusters Cluster S3Bucket - List of Object Storage bucket configured for K8s usage. For now it contains only an Object Storage bucket used to store K8s API audit logs.
- Server string
- State string
- User
Tokens map[string]string - Viable
Node []stringPool Versions - A list of versions that may be used for node pools under this cluster
- api
Subnet List<String>Allow Lists - Access to the K8s API server is restricted to these CIDRs. Cluster-internal traffic is not affected by this restriction. If no allowlist is specified, access is not restricted. If an IP without subnet mask is provided, the default value will be used: 32 for IPv4 and 128 for IPv6.
- available
Upgrade List<String>Versions - A list of available versions for upgrading the cluster
- ca
Crt String - configs
List<Get
Clusters Cluster Config> - id String
- k8s
Version String - kube
Config String - location String
- maintenance
Windows List<GetClusters Cluster Maintenance Window> - A maintenance window comprise of a day of the week and a time for maintenance to be allowed
- name String
- nat
Gateway StringIp - The NAT gateway IP of the cluster if the cluster is private.
- node
Pools List<String> - node
Subnet String - The node subnet of the cluster, if the cluster is private.
- public_ Boolean
- The indicator if the cluster is public or private.
- s3Buckets
List<Get
Clusters Cluster S3Bucket> - List of Object Storage bucket configured for K8s usage. For now it contains only an Object Storage bucket used to store K8s API audit logs.
- server String
- state String
- user
Tokens Map<String,String> - viable
Node List<String>Pool Versions - A list of versions that may be used for node pools under this cluster
- api
Subnet string[]Allow Lists - Access to the K8s API server is restricted to these CIDRs. Cluster-internal traffic is not affected by this restriction. If no allowlist is specified, access is not restricted. If an IP without subnet mask is provided, the default value will be used: 32 for IPv4 and 128 for IPv6.
- available
Upgrade string[]Versions - A list of available versions for upgrading the cluster
- ca
Crt string - configs
Get
Clusters Cluster Config[] - id string
- k8s
Version string - kube
Config string - location string
- maintenance
Windows GetClusters Cluster Maintenance Window[] - A maintenance window comprise of a day of the week and a time for maintenance to be allowed
- name string
- nat
Gateway stringIp - The NAT gateway IP of the cluster if the cluster is private.
- node
Pools string[] - node
Subnet string - The node subnet of the cluster, if the cluster is private.
- public boolean
- The indicator if the cluster is public or private.
- s3Buckets
Get
Clusters Cluster S3Bucket[] - List of Object Storage bucket configured for K8s usage. For now it contains only an Object Storage bucket used to store K8s API audit logs.
- server string
- state string
- user
Tokens {[key: string]: string} - viable
Node string[]Pool Versions - A list of versions that may be used for node pools under this cluster
- api_
subnet_ Sequence[str]allow_ lists - Access to the K8s API server is restricted to these CIDRs. Cluster-internal traffic is not affected by this restriction. If no allowlist is specified, access is not restricted. If an IP without subnet mask is provided, the default value will be used: 32 for IPv4 and 128 for IPv6.
- available_
upgrade_ Sequence[str]versions - A list of available versions for upgrading the cluster
- ca_
crt str - configs
Sequence[Get
Clusters Cluster Config] - id str
- k8s_
version str - kube_
config str - location str
- maintenance_
windows Sequence[GetClusters Cluster Maintenance Window] - A maintenance window comprise of a day of the week and a time for maintenance to be allowed
- name str
- nat_
gateway_ strip - The NAT gateway IP of the cluster if the cluster is private.
- node_
pools Sequence[str] - node_
subnet str - The node subnet of the cluster, if the cluster is private.
- public bool
- The indicator if the cluster is public or private.
- s3_
buckets Sequence[GetClusters Cluster S3Bucket] - List of Object Storage bucket configured for K8s usage. For now it contains only an Object Storage bucket used to store K8s API audit logs.
- server str
- state str
- user_
tokens Mapping[str, str] - viable_
node_ Sequence[str]pool_ versions - A list of versions that may be used for node pools under this cluster
- api
Subnet List<String>Allow Lists - Access to the K8s API server is restricted to these CIDRs. Cluster-internal traffic is not affected by this restriction. If no allowlist is specified, access is not restricted. If an IP without subnet mask is provided, the default value will be used: 32 for IPv4 and 128 for IPv6.
- available
Upgrade List<String>Versions - A list of available versions for upgrading the cluster
- ca
Crt String - configs List<Property Map>
- id String
- k8s
Version String - kube
Config String - location String
- maintenance
Windows List<Property Map> - A maintenance window comprise of a day of the week and a time for maintenance to be allowed
- name String
- nat
Gateway StringIp - The NAT gateway IP of the cluster if the cluster is private.
- node
Pools List<String> - node
Subnet String - The node subnet of the cluster, if the cluster is private.
- public Boolean
- The indicator if the cluster is public or private.
- s3Buckets List<Property Map>
- List of Object Storage bucket configured for K8s usage. For now it contains only an Object Storage bucket used to store K8s API audit logs.
- server String
- state String
- user
Tokens Map<String> - viable
Node List<String>Pool Versions - A list of versions that may be used for node pools under this cluster
GetClustersClusterConfig
- Api
Version string - Clusters
List<Ionoscloud.
Get Clusters Cluster Config Cluster> - list of Kubernetes clusters that match the provided filters. The elements of this list are structurally identical to the
k8s_cluster
datasource, which is limited to retrieving only 1 cluster in a single query. - Contexts
List<Ionoscloud.
Get Clusters Cluster Config Context> - Current
Context string - Kind string
- Users
List<Ionoscloud.
Get Clusters Cluster Config User>
- Api
Version string - Clusters
[]Get
Clusters Cluster Config Cluster - list of Kubernetes clusters that match the provided filters. The elements of this list are structurally identical to the
k8s_cluster
datasource, which is limited to retrieving only 1 cluster in a single query. - Contexts
[]Get
Clusters Cluster Config Context - Current
Context string - Kind string
- Users
[]Get
Clusters Cluster Config User
- api
Version String - clusters
List<Get
Clusters Cluster Config Cluster> - list of Kubernetes clusters that match the provided filters. The elements of this list are structurally identical to the
k8s_cluster
datasource, which is limited to retrieving only 1 cluster in a single query. - contexts
List<Get
Clusters Cluster Config Context> - current
Context String - kind String
- users
List<Get
Clusters Cluster Config User>
- api
Version string - clusters
Get
Clusters Cluster Config Cluster[] - list of Kubernetes clusters that match the provided filters. The elements of this list are structurally identical to the
k8s_cluster
datasource, which is limited to retrieving only 1 cluster in a single query. - contexts
Get
Clusters Cluster Config Context[] - current
Context string - kind string
- users
Get
Clusters Cluster Config User[]
- api_
version str - clusters
Sequence[Get
Clusters Cluster Config Cluster] - list of Kubernetes clusters that match the provided filters. The elements of this list are structurally identical to the
k8s_cluster
datasource, which is limited to retrieving only 1 cluster in a single query. - contexts
Sequence[Get
Clusters Cluster Config Context] - current_
context str - kind str
- users
Sequence[Get
Clusters Cluster Config User]
- api
Version String - clusters List<Property Map>
- list of Kubernetes clusters that match the provided filters. The elements of this list are structurally identical to the
k8s_cluster
datasource, which is limited to retrieving only 1 cluster in a single query. - contexts List<Property Map>
- current
Context String - kind String
- users List<Property Map>
GetClustersClusterConfigCluster
GetClustersClusterConfigContext
GetClustersClusterConfigUser
GetClustersClusterMaintenanceWindow
- Day
Of stringThe Week - Day of the week when maintenance is allowed
- Time string
- A clock time in the day when maintenance is allowed
- Day
Of stringThe Week - Day of the week when maintenance is allowed
- Time string
- A clock time in the day when maintenance is allowed
- day
Of StringThe Week - Day of the week when maintenance is allowed
- time String
- A clock time in the day when maintenance is allowed
- day
Of stringThe Week - Day of the week when maintenance is allowed
- time string
- A clock time in the day when maintenance is allowed
- day_
of_ strthe_ week - Day of the week when maintenance is allowed
- time str
- A clock time in the day when maintenance is allowed
- day
Of StringThe Week - Day of the week when maintenance is allowed
- time String
- A clock time in the day when maintenance is allowed
GetClustersClusterS3Bucket
- Name string
- Name of the Object Storage bucket
- Name string
- Name of the Object Storage bucket
- name String
- Name of the Object Storage bucket
- name string
- Name of the Object Storage bucket
- name str
- Name of the Object Storage bucket
- name String
- Name of the Object Storage bucket
GetClustersFilter
Package Details
- Repository
- ionoscloud ionos-cloud/pulumi-ionoscloud
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
ionoscloud
Terraform Provider.