1// Copyright 2019 Google LLC.
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7//     http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14//
15
16syntax = "proto3";
17
18package google.api;
19
20option go_package = "google.golang.org/genproto/googleapis/api;api";
21option java_multiple_files = true;
22option java_outer_classname = "LaunchStageProto";
23option java_package = "com.google.api";
24option objc_class_prefix = "GAPI";
25
26// The launch stage as defined by [Google Cloud Platform
27// Launch Stages](http://cloud.google.com/terms/launch-stages).
28enum LaunchStage {
29  // Do not use this default value.
30  LAUNCH_STAGE_UNSPECIFIED = 0;
31
32  // Early Access features are limited to a closed group of testers. To use
33  // these features, you must sign up in advance and sign a Trusted Tester
34  // agreement (which includes confidentiality provisions). These features may
35  // be unstable, changed in backward-incompatible ways, and are not
36  // guaranteed to be released.
37  EARLY_ACCESS = 1;
38
39  // Alpha is a limited availability test for releases before they are cleared
40  // for widespread use. By Alpha, all significant design issues are resolved
41  // and we are in the process of verifying functionality. Alpha customers
42  // need to apply for access, agree to applicable terms, and have their
43  // projects whitelisted. Alpha releases don’t have to be feature complete,
44  // no SLAs are provided, and there are no technical support obligations, but
45  // they will be far enough along that customers can actually use them in
46  // test environments or for limited-use tests -- just like they would in
47  // normal production cases.
48  ALPHA = 2;
49
50  // Beta is the point at which we are ready to open a release for any
51  // customer to use. There are no SLA or technical support obligations in a
52  // Beta release. Products will be complete from a feature perspective, but
53  // may have some open outstanding issues. Beta releases are suitable for
54  // limited production use cases.
55  BETA = 3;
56
57  // GA features are open to all developers and are considered stable and
58  // fully qualified for production use.
59  GA = 4;
60
61  // Deprecated features are scheduled to be shut down and removed. For more
62  // information, see the “Deprecation Policy” section of our [Terms of
63  // Service](https://cloud.google.com/terms/)
64  // and the [Google Cloud Platform Subject to the Deprecation
65  // Policy](https://cloud.google.com/terms/deprecation) documentation.
66  DEPRECATED = 5;
67}
68