com.pulumi.azurenative.migrate.enums.AzureOfferCode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-native Show documentation
Show all versions of azure-native Show documentation
A native Pulumi package for creating and managing Azure 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.azurenative.migrate.enums;
import com.pulumi.core.annotations.EnumType;
import java.lang.String;
import java.util.Objects;
import java.util.StringJoiner;
/**
* Azure Offer Code.
*
*/
@EnumType
public enum AzureOfferCode {
Unknown("Unknown"),
Msazr0003P("MSAZR0003P"),
Msazr0044P("MSAZR0044P"),
Msazr0059P("MSAZR0059P"),
Msazr0060P("MSAZR0060P"),
Msazr0062P("MSAZR0062P"),
Msazr0063P("MSAZR0063P"),
Msazr0064P("MSAZR0064P"),
Msazr0029P("MSAZR0029P"),
Msazr0022P("MSAZR0022P"),
Msazr0023P("MSAZR0023P"),
Msazr0148P("MSAZR0148P"),
Msazr0025P("MSAZR0025P"),
Msazr0036P("MSAZR0036P"),
Msazr0120P("MSAZR0120P"),
Msazr0121P("MSAZR0121P"),
Msazr0122P("MSAZR0122P"),
Msazr0123P("MSAZR0123P"),
Msazr0124P("MSAZR0124P"),
Msazr0125P("MSAZR0125P"),
Msazr0126P("MSAZR0126P"),
Msazr0127P("MSAZR0127P"),
Msazr0128P("MSAZR0128P"),
Msazr0129P("MSAZR0129P"),
Msazr0130P("MSAZR0130P"),
Msazr0111P("MSAZR0111P"),
Msazr0144P("MSAZR0144P"),
Msazr0149P("MSAZR0149P"),
Msmcazr0044P("MSMCAZR0044P"),
Msmcazr0059P("MSMCAZR0059P"),
Msmcazr0060P("MSMCAZR0060P"),
Msmcazr0063P("MSMCAZR0063P"),
Msmcazr0120P("MSMCAZR0120P"),
Msmcazr0121P("MSMCAZR0121P"),
Msmcazr0125P("MSMCAZR0125P"),
Msmcazr0128P("MSMCAZR0128P"),
Msazrde0003P("MSAZRDE0003P"),
Msazrde0044P("MSAZRDE0044P"),
Msazrusgov0003P("MSAZRUSGOV0003P"),
EA("EA"),
Msazr0243P("MSAZR0243P"),
SavingsPlan1Year("SavingsPlan1Year"),
SavingsPlan3Year("SavingsPlan3Year");
private final String value;
AzureOfferCode(String value) {
this.value = Objects.requireNonNull(value);
}
@EnumType.Converter
public String getValue() {
return this.value;
}
@Override
public java.lang.String toString() {
return new StringJoiner(", ", "AzureOfferCode[", "]")
.add("value='" + this.value + "'")
.toString();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy