Package com.google.api
Enum Class LaunchStage
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite
,Serializable
,Comparable<LaunchStage>
,Constable
The launch stage as defined by [Google Cloud Platform Launch Stages](https://cloud.google.com/terms/launch-stages).Protobuf enum
google.api.LaunchStage
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionAlpha is a limited availability test for releases before they are cleared for widespread use.Beta is the point at which we are ready to open a release for any customer to use.Deprecated features are scheduled to be shut down and removed.Early Access features are limited to a closed group of testers.GA features are open to all developers and are considered stable and fully qualified for production use.Do not use this default value.Prelaunch features are hidden from users and are only visible internally.The feature is not yet implemented. -
Field Summary
Modifier and TypeFieldDescriptionstatic final int
Alpha is a limited availability test for releases before they are cleared for widespread use.static final int
Beta is the point at which we are ready to open a release for any customer to use.static final int
Deprecated features are scheduled to be shut down and removed.static final int
Early Access features are limited to a closed group of testers.static final int
GA features are open to all developers and are considered stable and fully qualified for production use.static final int
Do not use this default value.static final int
Prelaunch features are hidden from users and are only visible internally.static final int
The feature is not yet implemented. -
Method Summary
Modifier and TypeMethodDescriptionstatic LaunchStage
forNumber
(int value) final int
static com.google.protobuf.Internal.EnumLiteMap<LaunchStage>
static com.google.protobuf.Internal.EnumVerifier
static LaunchStage
valueOf
(int value) Deprecated.static LaunchStage
Returns the enum constant of this class with the specified name.static LaunchStage[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
LAUNCH_STAGE_UNSPECIFIED
Do not use this default value.
LAUNCH_STAGE_UNSPECIFIED = 0;
-
UNIMPLEMENTED
The feature is not yet implemented. Users can not use it.
UNIMPLEMENTED = 6;
-
PRELAUNCH
Prelaunch features are hidden from users and are only visible internally.
PRELAUNCH = 7;
-
EARLY_ACCESS
Early Access features are limited to a closed group of testers. To use these features, you must sign up in advance and sign a Trusted Tester agreement (which includes confidentiality provisions). These features may be unstable, changed in backward-incompatible ways, and are not guaranteed to be released.
EARLY_ACCESS = 1;
-
ALPHA
Alpha is a limited availability test for releases before they are cleared for widespread use. By Alpha, all significant design issues are resolved and we are in the process of verifying functionality. Alpha customers need to apply for access, agree to applicable terms, and have their projects allowlisted. Alpha releases don't have to be feature complete, no SLAs are provided, and there are no technical support obligations, but they will be far enough along that customers can actually use them in test environments or for limited-use tests -- just like they would in normal production cases.
ALPHA = 2;
-
BETA
Beta is the point at which we are ready to open a release for any customer to use. There are no SLA or technical support obligations in a Beta release. Products will be complete from a feature perspective, but may have some open outstanding issues. Beta releases are suitable for limited production use cases.
BETA = 3;
-
GA
GA features are open to all developers and are considered stable and fully qualified for production use.
GA = 4;
-
DEPRECATED
Deprecated features are scheduled to be shut down and removed. For more information, see the "Deprecation Policy" section of our [Terms of Service](https://cloud.google.com/terms/) and the [Google Cloud Platform Subject to the Deprecation Policy](https://cloud.google.com/terms/deprecation) documentation.
DEPRECATED = 5;
-
UNRECOGNIZED
-
-
Field Details
-
LAUNCH_STAGE_UNSPECIFIED_VALUE
public static final int LAUNCH_STAGE_UNSPECIFIED_VALUEDo not use this default value.
LAUNCH_STAGE_UNSPECIFIED = 0;
- See Also:
-
UNIMPLEMENTED_VALUE
public static final int UNIMPLEMENTED_VALUEThe feature is not yet implemented. Users can not use it.
UNIMPLEMENTED = 6;
- See Also:
-
PRELAUNCH_VALUE
public static final int PRELAUNCH_VALUEPrelaunch features are hidden from users and are only visible internally.
PRELAUNCH = 7;
- See Also:
-
EARLY_ACCESS_VALUE
public static final int EARLY_ACCESS_VALUEEarly Access features are limited to a closed group of testers. To use these features, you must sign up in advance and sign a Trusted Tester agreement (which includes confidentiality provisions). These features may be unstable, changed in backward-incompatible ways, and are not guaranteed to be released.
EARLY_ACCESS = 1;
- See Also:
-
ALPHA_VALUE
public static final int ALPHA_VALUEAlpha is a limited availability test for releases before they are cleared for widespread use. By Alpha, all significant design issues are resolved and we are in the process of verifying functionality. Alpha customers need to apply for access, agree to applicable terms, and have their projects allowlisted. Alpha releases don't have to be feature complete, no SLAs are provided, and there are no technical support obligations, but they will be far enough along that customers can actually use them in test environments or for limited-use tests -- just like they would in normal production cases.
ALPHA = 2;
- See Also:
-
BETA_VALUE
public static final int BETA_VALUEBeta is the point at which we are ready to open a release for any customer to use. There are no SLA or technical support obligations in a Beta release. Products will be complete from a feature perspective, but may have some open outstanding issues. Beta releases are suitable for limited production use cases.
BETA = 3;
- See Also:
-
GA_VALUE
public static final int GA_VALUEGA features are open to all developers and are considered stable and fully qualified for production use.
GA = 4;
- See Also:
-
DEPRECATED_VALUE
public static final int DEPRECATED_VALUEDeprecated features are scheduled to be shut down and removed. For more information, see the "Deprecation Policy" section of our [Terms of Service](https://cloud.google.com/terms/) and the [Google Cloud Platform Subject to the Deprecation Policy](https://cloud.google.com/terms/deprecation) documentation.
DEPRECATED = 5;
- See Also:
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
getNumber
public final int getNumber()- Specified by:
getNumber
in interfacecom.google.protobuf.Internal.EnumLite
-
valueOf
Deprecated.Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
value
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
forNumber
-
internalGetValueMap
-
internalGetVerifier
public static com.google.protobuf.Internal.EnumVerifier internalGetVerifier()
-