com.pulumi.googlenative.container.v1.outputs.WorkloadIdentityConfigResponse Maven / Gradle / Ivy
// *** 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.googlenative.container.v1.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class WorkloadIdentityConfigResponse {
/**
* @return The workload pool to attach all Kubernetes service accounts to.
*
*/
private String workloadPool;
private WorkloadIdentityConfigResponse() {}
/**
* @return The workload pool to attach all Kubernetes service accounts to.
*
*/
public String workloadPool() {
return this.workloadPool;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(WorkloadIdentityConfigResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String workloadPool;
public Builder() {}
public Builder(WorkloadIdentityConfigResponse defaults) {
Objects.requireNonNull(defaults);
this.workloadPool = defaults.workloadPool;
}
@CustomType.Setter
public Builder workloadPool(String workloadPool) {
this.workloadPool = Objects.requireNonNull(workloadPool);
return this;
}
public WorkloadIdentityConfigResponse build() {
final var o = new WorkloadIdentityConfigResponse();
o.workloadPool = workloadPool;
return o;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy