com.pulumi.googlenative.gkehub.v1beta.outputs.MultiClusterIngressFeatureSpecResponse 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.gkehub.v1beta.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class MultiClusterIngressFeatureSpecResponse {
/**
* @return Deprecated: This field will be ignored and should not be set. Customer's billing structure.
*
* @deprecated
* Deprecated: This field will be ignored and should not be set. Customer's billing structure.
*
*/
@Deprecated /* Deprecated: This field will be ignored and should not be set. Customer's billing structure. */
private String billing;
/**
* @return Fully-qualified Membership name which hosts the MultiClusterIngress CRD. Example: `projects/foo-proj/locations/global/memberships/bar`
*
*/
private String configMembership;
private MultiClusterIngressFeatureSpecResponse() {}
/**
* @return Deprecated: This field will be ignored and should not be set. Customer's billing structure.
*
* @deprecated
* Deprecated: This field will be ignored and should not be set. Customer's billing structure.
*
*/
@Deprecated /* Deprecated: This field will be ignored and should not be set. Customer's billing structure. */
public String billing() {
return this.billing;
}
/**
* @return Fully-qualified Membership name which hosts the MultiClusterIngress CRD. Example: `projects/foo-proj/locations/global/memberships/bar`
*
*/
public String configMembership() {
return this.configMembership;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(MultiClusterIngressFeatureSpecResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String billing;
private String configMembership;
public Builder() {}
public Builder(MultiClusterIngressFeatureSpecResponse defaults) {
Objects.requireNonNull(defaults);
this.billing = defaults.billing;
this.configMembership = defaults.configMembership;
}
@CustomType.Setter
public Builder billing(String billing) {
this.billing = Objects.requireNonNull(billing);
return this;
}
@CustomType.Setter
public Builder configMembership(String configMembership) {
this.configMembership = Objects.requireNonNull(configMembership);
return this;
}
public MultiClusterIngressFeatureSpecResponse build() {
final var o = new MultiClusterIngressFeatureSpecResponse();
o.billing = billing;
o.configMembership = configMembership;
return o;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy