google-cloud-bigquery-migration-v2 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.yardopts +12 -0
- data/AUTHENTICATION.md +149 -0
- data/LICENSE.md +201 -0
- data/README.md +139 -0
- data/lib/google/cloud/bigquery/migration/v2/migration_entities_pb.rb +89 -0
- data/lib/google/cloud/bigquery/migration/v2/migration_error_details_pb.rb +39 -0
- data/lib/google/cloud/bigquery/migration/v2/migration_metrics_pb.rb +52 -0
- data/lib/google/cloud/bigquery/migration/v2/migration_service/client.rb +1016 -0
- data/lib/google/cloud/bigquery/migration/v2/migration_service/credentials.rb +49 -0
- data/lib/google/cloud/bigquery/migration/v2/migration_service/paths.rb +92 -0
- data/lib/google/cloud/bigquery/migration/v2/migration_service.rb +51 -0
- data/lib/google/cloud/bigquery/migration/v2/migration_service_pb.rb +76 -0
- data/lib/google/cloud/bigquery/migration/v2/migration_service_services_pb.rb +62 -0
- data/lib/google/cloud/bigquery/migration/v2/translation_config_pb.rb +127 -0
- data/lib/google/cloud/bigquery/migration/v2/version.rb +30 -0
- data/lib/google/cloud/bigquery/migration/v2.rb +42 -0
- data/lib/google-cloud-bigquery-migration-v2.rb +21 -0
- data/proto_docs/README.md +4 -0
- data/proto_docs/google/api/distribution.rb +225 -0
- data/proto_docs/google/api/field_behavior.rb +71 -0
- data/proto_docs/google/api/label.rb +49 -0
- data/proto_docs/google/api/launch_stage.rb +71 -0
- data/proto_docs/google/api/metric.rb +276 -0
- data/proto_docs/google/api/resource.rb +222 -0
- data/proto_docs/google/cloud/bigquery/migration/v2/migration_entities.rb +220 -0
- data/proto_docs/google/cloud/bigquery/migration/v2/migration_error_details.rb +72 -0
- data/proto_docs/google/cloud/bigquery/migration/v2/migration_metrics.rb +119 -0
- data/proto_docs/google/cloud/bigquery/migration/v2/migration_service.rb +166 -0
- data/proto_docs/google/cloud/bigquery/migration/v2/translation_config.rb +275 -0
- data/proto_docs/google/protobuf/any.rb +141 -0
- data/proto_docs/google/protobuf/duration.rb +98 -0
- data/proto_docs/google/protobuf/empty.rb +36 -0
- data/proto_docs/google/protobuf/field_mask.rb +229 -0
- data/proto_docs/google/protobuf/timestamp.rb +129 -0
- data/proto_docs/google/rpc/error_details.rb +297 -0
- metadata +227 -0
@@ -0,0 +1,225 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2022 Google LLC
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
18
|
+
|
19
|
+
|
20
|
+
module Google
|
21
|
+
module Api
|
22
|
+
# `Distribution` contains summary statistics for a population of values. It
|
23
|
+
# optionally contains a histogram representing the distribution of those values
|
24
|
+
# across a set of buckets.
|
25
|
+
#
|
26
|
+
# The summary statistics are the count, mean, sum of the squared deviation from
|
27
|
+
# the mean, the minimum, and the maximum of the set of population of values.
|
28
|
+
# The histogram is based on a sequence of buckets and gives a count of values
|
29
|
+
# that fall into each bucket. The boundaries of the buckets are given either
|
30
|
+
# explicitly or by formulas for buckets of fixed or exponentially increasing
|
31
|
+
# widths.
|
32
|
+
#
|
33
|
+
# Although it is not forbidden, it is generally a bad idea to include
|
34
|
+
# non-finite values (infinities or NaNs) in the population of values, as this
|
35
|
+
# will render the `mean` and `sum_of_squared_deviation` fields meaningless.
|
36
|
+
# @!attribute [rw] count
|
37
|
+
# @return [::Integer]
|
38
|
+
# The number of values in the population. Must be non-negative. This value
|
39
|
+
# must equal the sum of the values in `bucket_counts` if a histogram is
|
40
|
+
# provided.
|
41
|
+
# @!attribute [rw] mean
|
42
|
+
# @return [::Float]
|
43
|
+
# The arithmetic mean of the values in the population. If `count` is zero
|
44
|
+
# then this field must be zero.
|
45
|
+
# @!attribute [rw] sum_of_squared_deviation
|
46
|
+
# @return [::Float]
|
47
|
+
# The sum of squared deviations from the mean of the values in the
|
48
|
+
# population. For values x_i this is:
|
49
|
+
#
|
50
|
+
# Sum[i=1..n]((x_i - mean)^2)
|
51
|
+
#
|
52
|
+
# Knuth, "The Art of Computer Programming", Vol. 2, page 232, 3rd edition
|
53
|
+
# describes Welford's method for accumulating this sum in one pass.
|
54
|
+
#
|
55
|
+
# If `count` is zero then this field must be zero.
|
56
|
+
# @!attribute [rw] range
|
57
|
+
# @return [::Google::Api::Distribution::Range]
|
58
|
+
# If specified, contains the range of the population values. The field
|
59
|
+
# must not be present if the `count` is zero.
|
60
|
+
# @!attribute [rw] bucket_options
|
61
|
+
# @return [::Google::Api::Distribution::BucketOptions]
|
62
|
+
# Defines the histogram bucket boundaries. If the distribution does not
|
63
|
+
# contain a histogram, then omit this field.
|
64
|
+
# @!attribute [rw] bucket_counts
|
65
|
+
# @return [::Array<::Integer>]
|
66
|
+
# The number of values in each bucket of the histogram, as described in
|
67
|
+
# `bucket_options`. If the distribution does not have a histogram, then omit
|
68
|
+
# this field. If there is a histogram, then the sum of the values in
|
69
|
+
# `bucket_counts` must equal the value in the `count` field of the
|
70
|
+
# distribution.
|
71
|
+
#
|
72
|
+
# If present, `bucket_counts` should contain N values, where N is the number
|
73
|
+
# of buckets specified in `bucket_options`. If you supply fewer than N
|
74
|
+
# values, the remaining values are assumed to be 0.
|
75
|
+
#
|
76
|
+
# The order of the values in `bucket_counts` follows the bucket numbering
|
77
|
+
# schemes described for the three bucket types. The first value must be the
|
78
|
+
# count for the underflow bucket (number 0). The next N-2 values are the
|
79
|
+
# counts for the finite buckets (number 1 through N-2). The N'th value in
|
80
|
+
# `bucket_counts` is the count for the overflow bucket (number N-1).
|
81
|
+
# @!attribute [rw] exemplars
|
82
|
+
# @return [::Array<::Google::Api::Distribution::Exemplar>]
|
83
|
+
# Must be in increasing order of `value` field.
|
84
|
+
class Distribution
|
85
|
+
include ::Google::Protobuf::MessageExts
|
86
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
87
|
+
|
88
|
+
# The range of the population values.
|
89
|
+
# @!attribute [rw] min
|
90
|
+
# @return [::Float]
|
91
|
+
# The minimum of the population values.
|
92
|
+
# @!attribute [rw] max
|
93
|
+
# @return [::Float]
|
94
|
+
# The maximum of the population values.
|
95
|
+
class Range
|
96
|
+
include ::Google::Protobuf::MessageExts
|
97
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
98
|
+
end
|
99
|
+
|
100
|
+
# `BucketOptions` describes the bucket boundaries used to create a histogram
|
101
|
+
# for the distribution. The buckets can be in a linear sequence, an
|
102
|
+
# exponential sequence, or each bucket can be specified explicitly.
|
103
|
+
# `BucketOptions` does not include the number of values in each bucket.
|
104
|
+
#
|
105
|
+
# A bucket has an inclusive lower bound and exclusive upper bound for the
|
106
|
+
# values that are counted for that bucket. The upper bound of a bucket must
|
107
|
+
# be strictly greater than the lower bound. The sequence of N buckets for a
|
108
|
+
# distribution consists of an underflow bucket (number 0), zero or more
|
109
|
+
# finite buckets (number 1 through N - 2) and an overflow bucket (number N -
|
110
|
+
# 1). The buckets are contiguous: the lower bound of bucket i (i > 0) is the
|
111
|
+
# same as the upper bound of bucket i - 1. The buckets span the whole range
|
112
|
+
# of finite values: lower bound of the underflow bucket is -infinity and the
|
113
|
+
# upper bound of the overflow bucket is +infinity. The finite buckets are
|
114
|
+
# so-called because both bounds are finite.
|
115
|
+
# @!attribute [rw] linear_buckets
|
116
|
+
# @return [::Google::Api::Distribution::BucketOptions::Linear]
|
117
|
+
# The linear bucket.
|
118
|
+
# @!attribute [rw] exponential_buckets
|
119
|
+
# @return [::Google::Api::Distribution::BucketOptions::Exponential]
|
120
|
+
# The exponential buckets.
|
121
|
+
# @!attribute [rw] explicit_buckets
|
122
|
+
# @return [::Google::Api::Distribution::BucketOptions::Explicit]
|
123
|
+
# The explicit buckets.
|
124
|
+
class BucketOptions
|
125
|
+
include ::Google::Protobuf::MessageExts
|
126
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
127
|
+
|
128
|
+
# Specifies a linear sequence of buckets that all have the same width
|
129
|
+
# (except overflow and underflow). Each bucket represents a constant
|
130
|
+
# absolute uncertainty on the specific value in the bucket.
|
131
|
+
#
|
132
|
+
# There are `num_finite_buckets + 2` (= N) buckets. Bucket `i` has the
|
133
|
+
# following boundaries:
|
134
|
+
#
|
135
|
+
# Upper bound (0 <= i < N-1): offset + (width * i).
|
136
|
+
# Lower bound (1 <= i < N): offset + (width * (i - 1)).
|
137
|
+
# @!attribute [rw] num_finite_buckets
|
138
|
+
# @return [::Integer]
|
139
|
+
# Must be greater than 0.
|
140
|
+
# @!attribute [rw] width
|
141
|
+
# @return [::Float]
|
142
|
+
# Must be greater than 0.
|
143
|
+
# @!attribute [rw] offset
|
144
|
+
# @return [::Float]
|
145
|
+
# Lower bound of the first bucket.
|
146
|
+
class Linear
|
147
|
+
include ::Google::Protobuf::MessageExts
|
148
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
149
|
+
end
|
150
|
+
|
151
|
+
# Specifies an exponential sequence of buckets that have a width that is
|
152
|
+
# proportional to the value of the lower bound. Each bucket represents a
|
153
|
+
# constant relative uncertainty on a specific value in the bucket.
|
154
|
+
#
|
155
|
+
# There are `num_finite_buckets + 2` (= N) buckets. Bucket `i` has the
|
156
|
+
# following boundaries:
|
157
|
+
#
|
158
|
+
# Upper bound (0 <= i < N-1): scale * (growth_factor ^ i).
|
159
|
+
# Lower bound (1 <= i < N): scale * (growth_factor ^ (i - 1)).
|
160
|
+
# @!attribute [rw] num_finite_buckets
|
161
|
+
# @return [::Integer]
|
162
|
+
# Must be greater than 0.
|
163
|
+
# @!attribute [rw] growth_factor
|
164
|
+
# @return [::Float]
|
165
|
+
# Must be greater than 1.
|
166
|
+
# @!attribute [rw] scale
|
167
|
+
# @return [::Float]
|
168
|
+
# Must be greater than 0.
|
169
|
+
class Exponential
|
170
|
+
include ::Google::Protobuf::MessageExts
|
171
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
172
|
+
end
|
173
|
+
|
174
|
+
# Specifies a set of buckets with arbitrary widths.
|
175
|
+
#
|
176
|
+
# There are `size(bounds) + 1` (= N) buckets. Bucket `i` has the following
|
177
|
+
# boundaries:
|
178
|
+
#
|
179
|
+
# Upper bound (0 <= i < N-1): bounds[i]
|
180
|
+
# Lower bound (1 <= i < N); bounds[i - 1]
|
181
|
+
#
|
182
|
+
# The `bounds` field must contain at least one element. If `bounds` has
|
183
|
+
# only one element, then there are no finite buckets, and that single
|
184
|
+
# element is the common boundary of the overflow and underflow buckets.
|
185
|
+
# @!attribute [rw] bounds
|
186
|
+
# @return [::Array<::Float>]
|
187
|
+
# The values must be monotonically increasing.
|
188
|
+
class Explicit
|
189
|
+
include ::Google::Protobuf::MessageExts
|
190
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
191
|
+
end
|
192
|
+
end
|
193
|
+
|
194
|
+
# Exemplars are example points that may be used to annotate aggregated
|
195
|
+
# distribution values. They are metadata that gives information about a
|
196
|
+
# particular value added to a Distribution bucket, such as a trace ID that
|
197
|
+
# was active when a value was added. They may contain further information,
|
198
|
+
# such as a example values and timestamps, origin, etc.
|
199
|
+
# @!attribute [rw] value
|
200
|
+
# @return [::Float]
|
201
|
+
# Value of the exemplar point. This value determines to which bucket the
|
202
|
+
# exemplar belongs.
|
203
|
+
# @!attribute [rw] timestamp
|
204
|
+
# @return [::Google::Protobuf::Timestamp]
|
205
|
+
# The observation (sampling) time of the above value.
|
206
|
+
# @!attribute [rw] attachments
|
207
|
+
# @return [::Array<::Google::Protobuf::Any>]
|
208
|
+
# Contextual information about the example value. Examples are:
|
209
|
+
#
|
210
|
+
# Trace: type.googleapis.com/google.monitoring.v3.SpanContext
|
211
|
+
#
|
212
|
+
# Literal string: type.googleapis.com/google.protobuf.StringValue
|
213
|
+
#
|
214
|
+
# Labels dropped during aggregation:
|
215
|
+
# type.googleapis.com/google.monitoring.v3.DroppedLabels
|
216
|
+
#
|
217
|
+
# There may be only a single attachment of any given message type in a
|
218
|
+
# single exemplar, and this is enforced by the system.
|
219
|
+
class Exemplar
|
220
|
+
include ::Google::Protobuf::MessageExts
|
221
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
222
|
+
end
|
223
|
+
end
|
224
|
+
end
|
225
|
+
end
|
@@ -0,0 +1,71 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2022 Google LLC
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
18
|
+
|
19
|
+
|
20
|
+
module Google
|
21
|
+
module Api
|
22
|
+
# An indicator of the behavior of a given field (for example, that a field
|
23
|
+
# is required in requests, or given as output but ignored as input).
|
24
|
+
# This **does not** change the behavior in protocol buffers itself; it only
|
25
|
+
# denotes the behavior and may affect how API tooling handles the field.
|
26
|
+
#
|
27
|
+
# Note: This enum **may** receive new values in the future.
|
28
|
+
module FieldBehavior
|
29
|
+
# Conventional default for enums. Do not use this.
|
30
|
+
FIELD_BEHAVIOR_UNSPECIFIED = 0
|
31
|
+
|
32
|
+
# Specifically denotes a field as optional.
|
33
|
+
# While all fields in protocol buffers are optional, this may be specified
|
34
|
+
# for emphasis if appropriate.
|
35
|
+
OPTIONAL = 1
|
36
|
+
|
37
|
+
# Denotes a field as required.
|
38
|
+
# This indicates that the field **must** be provided as part of the request,
|
39
|
+
# and failure to do so will cause an error (usually `INVALID_ARGUMENT`).
|
40
|
+
REQUIRED = 2
|
41
|
+
|
42
|
+
# Denotes a field as output only.
|
43
|
+
# This indicates that the field is provided in responses, but including the
|
44
|
+
# field in a request does nothing (the server *must* ignore it and
|
45
|
+
# *must not* throw an error as a result of the field's presence).
|
46
|
+
OUTPUT_ONLY = 3
|
47
|
+
|
48
|
+
# Denotes a field as input only.
|
49
|
+
# This indicates that the field is provided in requests, and the
|
50
|
+
# corresponding field is not included in output.
|
51
|
+
INPUT_ONLY = 4
|
52
|
+
|
53
|
+
# Denotes a field as immutable.
|
54
|
+
# This indicates that the field may be set once in a request to create a
|
55
|
+
# resource, but may not be changed thereafter.
|
56
|
+
IMMUTABLE = 5
|
57
|
+
|
58
|
+
# Denotes that a (repeated) field is an unordered list.
|
59
|
+
# This indicates that the service may provide the elements of the list
|
60
|
+
# in any arbitrary order, rather than the order the user originally
|
61
|
+
# provided. Additionally, the list's order may or may not be stable.
|
62
|
+
UNORDERED_LIST = 6
|
63
|
+
|
64
|
+
# Denotes that this field returns a non-empty default value if not set.
|
65
|
+
# This indicates that if the user provides the empty value in a request,
|
66
|
+
# a non-empty value will be returned. The user will not be aware of what
|
67
|
+
# non-empty value to expect.
|
68
|
+
NON_EMPTY_DEFAULT = 7
|
69
|
+
end
|
70
|
+
end
|
71
|
+
end
|
@@ -0,0 +1,49 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2022 Google LLC
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
18
|
+
|
19
|
+
|
20
|
+
module Google
|
21
|
+
module Api
|
22
|
+
# A description of a label.
|
23
|
+
# @!attribute [rw] key
|
24
|
+
# @return [::String]
|
25
|
+
# The label key.
|
26
|
+
# @!attribute [rw] value_type
|
27
|
+
# @return [::Google::Api::LabelDescriptor::ValueType]
|
28
|
+
# The type of data that can be assigned to the label.
|
29
|
+
# @!attribute [rw] description
|
30
|
+
# @return [::String]
|
31
|
+
# A human-readable description for the label.
|
32
|
+
class LabelDescriptor
|
33
|
+
include ::Google::Protobuf::MessageExts
|
34
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
35
|
+
|
36
|
+
# Value types that can be used as label values.
|
37
|
+
module ValueType
|
38
|
+
# A variable-length string. This is the default.
|
39
|
+
STRING = 0
|
40
|
+
|
41
|
+
# Boolean; true or false.
|
42
|
+
BOOL = 1
|
43
|
+
|
44
|
+
# A 64-bit signed integer.
|
45
|
+
INT64 = 2
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
@@ -0,0 +1,71 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2022 Google LLC
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
18
|
+
|
19
|
+
|
20
|
+
module Google
|
21
|
+
module Api
|
22
|
+
# The launch stage as defined by [Google Cloud Platform
|
23
|
+
# Launch Stages](http://cloud.google.com/terms/launch-stages).
|
24
|
+
module LaunchStage
|
25
|
+
# Do not use this default value.
|
26
|
+
LAUNCH_STAGE_UNSPECIFIED = 0
|
27
|
+
|
28
|
+
# The feature is not yet implemented. Users can not use it.
|
29
|
+
UNIMPLEMENTED = 6
|
30
|
+
|
31
|
+
# Prelaunch features are hidden from users and are only visible internally.
|
32
|
+
PRELAUNCH = 7
|
33
|
+
|
34
|
+
# Early Access features are limited to a closed group of testers. To use
|
35
|
+
# these features, you must sign up in advance and sign a Trusted Tester
|
36
|
+
# agreement (which includes confidentiality provisions). These features may
|
37
|
+
# be unstable, changed in backward-incompatible ways, and are not
|
38
|
+
# guaranteed to be released.
|
39
|
+
EARLY_ACCESS = 1
|
40
|
+
|
41
|
+
# Alpha is a limited availability test for releases before they are cleared
|
42
|
+
# for widespread use. By Alpha, all significant design issues are resolved
|
43
|
+
# and we are in the process of verifying functionality. Alpha customers
|
44
|
+
# need to apply for access, agree to applicable terms, and have their
|
45
|
+
# projects allowlisted. Alpha releases don’t have to be feature complete,
|
46
|
+
# no SLAs are provided, and there are no technical support obligations, but
|
47
|
+
# they will be far enough along that customers can actually use them in
|
48
|
+
# test environments or for limited-use tests -- just like they would in
|
49
|
+
# normal production cases.
|
50
|
+
ALPHA = 2
|
51
|
+
|
52
|
+
# Beta is the point at which we are ready to open a release for any
|
53
|
+
# customer to use. There are no SLA or technical support obligations in a
|
54
|
+
# Beta release. Products will be complete from a feature perspective, but
|
55
|
+
# may have some open outstanding issues. Beta releases are suitable for
|
56
|
+
# limited production use cases.
|
57
|
+
BETA = 3
|
58
|
+
|
59
|
+
# GA features are open to all developers and are considered stable and
|
60
|
+
# fully qualified for production use.
|
61
|
+
GA = 4
|
62
|
+
|
63
|
+
# Deprecated features are scheduled to be shut down and removed. For more
|
64
|
+
# information, see the “Deprecation Policy” section of our [Terms of
|
65
|
+
# Service](https://cloud.google.com/terms/)
|
66
|
+
# and the [Google Cloud Platform Subject to the Deprecation
|
67
|
+
# Policy](https://cloud.google.com/terms/deprecation) documentation.
|
68
|
+
DEPRECATED = 5
|
69
|
+
end
|
70
|
+
end
|
71
|
+
end
|