com.pulumi.googlenative.gkehub.v1alpha.enums.MultiClusterIngressFeatureSpecBilling 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.v1alpha.enums;
import com.pulumi.core.annotations.EnumType;
import java.lang.String;
import java.util.Objects;
import java.util.StringJoiner;
/**
* Deprecated: This field will be ignored and should not be set. Customer's billing structure.
*
*/
@EnumType
public enum MultiClusterIngressFeatureSpecBilling {
/**
* Unknown
*
*/
BillingUnspecified("BILLING_UNSPECIFIED"),
/**
* User pays a fee per-endpoint.
*
*/
PayAsYouGo("PAY_AS_YOU_GO"),
/**
* User is paying for Anthos as a whole.
*
*/
AnthosLicense("ANTHOS_LICENSE");
private final String value;
MultiClusterIngressFeatureSpecBilling(String value) {
this.value = Objects.requireNonNull(value);
}
@EnumType.Converter
public String getValue() {
return this.value;
}
@Override
public String toString() {
return new StringJoiner(", ", "MultiClusterIngressFeatureSpecBilling[", "]")
.add("value='" + this.value + "'")
.toString();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy