com.pulumi.alicloud.cs.inputs.GetManagedKubernetesClustersPlainArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alicloud Show documentation
Show all versions of alicloud Show documentation
A Pulumi package for creating and managing AliCloud resources.
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.alicloud.cs.inputs;
import com.pulumi.core.annotations.Import;
import java.lang.Boolean;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class GetManagedKubernetesClustersPlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetManagedKubernetesClustersPlainArgs Empty = new GetManagedKubernetesClustersPlainArgs();
@Import(name="enableDetails")
private @Nullable Boolean enableDetails;
public Optional enableDetails() {
return Optional.ofNullable(this.enableDetails);
}
/**
* Cluster IDs to filter.
*
*/
@Import(name="ids")
private @Nullable List ids;
/**
* @return Cluster IDs to filter.
*
*/
public Optional> ids() {
return Optional.ofNullable(this.ids);
}
/**
* The path prefix of kube config. You could store kube config in a specified directory by specifying this field, like `~/.kube/managed`, then it will be named with `~/.kube/managed-clusterID-kubeconfig`. From version 1.187.0+, kube_config will not export kube_config if this field is not set.
*
*/
@Import(name="kubeConfigFilePrefix")
private @Nullable String kubeConfigFilePrefix;
/**
* @return The path prefix of kube config. You could store kube config in a specified directory by specifying this field, like `~/.kube/managed`, then it will be named with `~/.kube/managed-clusterID-kubeconfig`. From version 1.187.0+, kube_config will not export kube_config if this field is not set.
*
*/
public Optional kubeConfigFilePrefix() {
return Optional.ofNullable(this.kubeConfigFilePrefix);
}
/**
* A regex string to filter results by cluster name.
*
*/
@Import(name="nameRegex")
private @Nullable String nameRegex;
/**
* @return A regex string to filter results by cluster name.
*
*/
public Optional nameRegex() {
return Optional.ofNullable(this.nameRegex);
}
/**
* File name where to save data source results (after running `pulumi preview`).
*
*/
@Import(name="outputFile")
private @Nullable String outputFile;
/**
* @return File name where to save data source results (after running `pulumi preview`).
*
*/
public Optional outputFile() {
return Optional.ofNullable(this.outputFile);
}
private GetManagedKubernetesClustersPlainArgs() {}
private GetManagedKubernetesClustersPlainArgs(GetManagedKubernetesClustersPlainArgs $) {
this.enableDetails = $.enableDetails;
this.ids = $.ids;
this.kubeConfigFilePrefix = $.kubeConfigFilePrefix;
this.nameRegex = $.nameRegex;
this.outputFile = $.outputFile;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetManagedKubernetesClustersPlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetManagedKubernetesClustersPlainArgs $;
public Builder() {
$ = new GetManagedKubernetesClustersPlainArgs();
}
public Builder(GetManagedKubernetesClustersPlainArgs defaults) {
$ = new GetManagedKubernetesClustersPlainArgs(Objects.requireNonNull(defaults));
}
public Builder enableDetails(@Nullable Boolean enableDetails) {
$.enableDetails = enableDetails;
return this;
}
/**
* @param ids Cluster IDs to filter.
*
* @return builder
*
*/
public Builder ids(@Nullable List ids) {
$.ids = ids;
return this;
}
/**
* @param ids Cluster IDs to filter.
*
* @return builder
*
*/
public Builder ids(String... ids) {
return ids(List.of(ids));
}
/**
* @param kubeConfigFilePrefix The path prefix of kube config. You could store kube config in a specified directory by specifying this field, like `~/.kube/managed`, then it will be named with `~/.kube/managed-clusterID-kubeconfig`. From version 1.187.0+, kube_config will not export kube_config if this field is not set.
*
* @return builder
*
*/
public Builder kubeConfigFilePrefix(@Nullable String kubeConfigFilePrefix) {
$.kubeConfigFilePrefix = kubeConfigFilePrefix;
return this;
}
/**
* @param nameRegex A regex string to filter results by cluster name.
*
* @return builder
*
*/
public Builder nameRegex(@Nullable String nameRegex) {
$.nameRegex = nameRegex;
return this;
}
/**
* @param outputFile File name where to save data source results (after running `pulumi preview`).
*
* @return builder
*
*/
public Builder outputFile(@Nullable String outputFile) {
$.outputFile = outputFile;
return this;
}
public GetManagedKubernetesClustersPlainArgs build() {
return $;
}
}
}