google-cloud-vm_migration-v1 2.0.0 → 2.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ff61abcc4c3e19b96a8f3de804dedd6a80b5d0123d5cd7364e4ce0d5d77996a3
|
4
|
+
data.tar.gz: '078f1e87e7a4badae2f9de541465229ad7c056274882fcfbb0b16979259348cc'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0db85ef20d1e232a1dc9747baf1730dea36b0b4666a87bc7a6cfc50c095a99e155d62998283fa43992a00f7a1f69339db794fb83ee93e882654637bd67fb4dfb
|
7
|
+
data.tar.gz: eda2fa6c5079d0356857ee80225fb8187b4d7f03f7c2a703e0811b99c7436a49a5668ab6ffb8a67217eb328bd61dca96e1ea0f8c41b61776b0c04e85e5c08afd
|
@@ -221,6 +221,12 @@ module Google
|
|
221
221
|
# Pythonic which are included in `protobuf>=5.29.x`. This feature will be
|
222
222
|
# enabled by default 1 month after launching the feature in preview
|
223
223
|
# packages.
|
224
|
+
# @!attribute [rw] unversioned_package_disabled
|
225
|
+
# @return [::Boolean]
|
226
|
+
# Disables generation of an unversioned Python package for this client
|
227
|
+
# library. This means that the module names will need to be versioned in
|
228
|
+
# import statements. For example `import google.cloud.library_v2` instead
|
229
|
+
# of `import google.cloud.library`.
|
224
230
|
class ExperimentalFeatures
|
225
231
|
include ::Google::Protobuf::MessageExts
|
226
232
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -150,9 +150,83 @@ module Google
|
|
150
150
|
#
|
151
151
|
# For example: "Service disabled" or "Daily Limit for read operations
|
152
152
|
# exceeded".
|
153
|
+
# @!attribute [rw] api_service
|
154
|
+
# @return [::String]
|
155
|
+
# The API Service from which the `QuotaFailure.Violation` orginates. In
|
156
|
+
# some cases, Quota issues originate from an API Service other than the one
|
157
|
+
# that was called. In other words, a dependency of the called API Service
|
158
|
+
# could be the cause of the `QuotaFailure`, and this field would have the
|
159
|
+
# dependency API service name.
|
160
|
+
#
|
161
|
+
# For example, if the called API is Kubernetes Engine API
|
162
|
+
# (container.googleapis.com), and a quota violation occurs in the
|
163
|
+
# Kubernetes Engine API itself, this field would be
|
164
|
+
# "container.googleapis.com". On the other hand, if the quota violation
|
165
|
+
# occurs when the Kubernetes Engine API creates VMs in the Compute Engine
|
166
|
+
# API (compute.googleapis.com), this field would be
|
167
|
+
# "compute.googleapis.com".
|
168
|
+
# @!attribute [rw] quota_metric
|
169
|
+
# @return [::String]
|
170
|
+
# The metric of the violated quota. A quota metric is a named counter to
|
171
|
+
# measure usage, such as API requests or CPUs. When an activity occurs in a
|
172
|
+
# service, such as Virtual Machine allocation, one or more quota metrics
|
173
|
+
# may be affected.
|
174
|
+
#
|
175
|
+
# For example, "compute.googleapis.com/cpus_per_vm_family",
|
176
|
+
# "storage.googleapis.com/internet_egress_bandwidth".
|
177
|
+
# @!attribute [rw] quota_id
|
178
|
+
# @return [::String]
|
179
|
+
# The id of the violated quota. Also know as "limit name", this is the
|
180
|
+
# unique identifier of a quota in the context of an API service.
|
181
|
+
#
|
182
|
+
# For example, "CPUS-PER-VM-FAMILY-per-project-region".
|
183
|
+
# @!attribute [rw] quota_dimensions
|
184
|
+
# @return [::Google::Protobuf::Map{::String => ::String}]
|
185
|
+
# The dimensions of the violated quota. Every non-global quota is enforced
|
186
|
+
# on a set of dimensions. While quota metric defines what to count, the
|
187
|
+
# dimensions specify for what aspects the counter should be increased.
|
188
|
+
#
|
189
|
+
# For example, the quota "CPUs per region per VM family" enforces a limit
|
190
|
+
# on the metric "compute.googleapis.com/cpus_per_vm_family" on dimensions
|
191
|
+
# "region" and "vm_family". And if the violation occurred in region
|
192
|
+
# "us-central1" and for VM family "n1", the quota_dimensions would be,
|
193
|
+
#
|
194
|
+
# {
|
195
|
+
# "region": "us-central1",
|
196
|
+
# "vm_family": "n1",
|
197
|
+
# }
|
198
|
+
#
|
199
|
+
# When a quota is enforced globally, the quota_dimensions would always be
|
200
|
+
# empty.
|
201
|
+
# @!attribute [rw] quota_value
|
202
|
+
# @return [::Integer]
|
203
|
+
# The enforced quota value at the time of the `QuotaFailure`.
|
204
|
+
#
|
205
|
+
# For example, if the enforced quota value at the time of the
|
206
|
+
# `QuotaFailure` on the number of CPUs is "10", then the value of this
|
207
|
+
# field would reflect this quantity.
|
208
|
+
# @!attribute [rw] future_quota_value
|
209
|
+
# @return [::Integer]
|
210
|
+
# The new quota value being rolled out at the time of the violation. At the
|
211
|
+
# completion of the rollout, this value will be enforced in place of
|
212
|
+
# quota_value. If no rollout is in progress at the time of the violation,
|
213
|
+
# this field is not set.
|
214
|
+
#
|
215
|
+
# For example, if at the time of the violation a rollout is in progress
|
216
|
+
# changing the number of CPUs quota from 10 to 20, 20 would be the value of
|
217
|
+
# this field.
|
153
218
|
class Violation
|
154
219
|
include ::Google::Protobuf::MessageExts
|
155
220
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
221
|
+
|
222
|
+
# @!attribute [rw] key
|
223
|
+
# @return [::String]
|
224
|
+
# @!attribute [rw] value
|
225
|
+
# @return [::String]
|
226
|
+
class QuotaDimensionsEntry
|
227
|
+
include ::Google::Protobuf::MessageExts
|
228
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
229
|
+
end
|
156
230
|
end
|
157
231
|
end
|
158
232
|
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-vm_migration-v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-
|
10
|
+
date: 2025-04-21 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: gapic-common
|
@@ -146,7 +146,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
146
146
|
- !ruby/object:Gem::Version
|
147
147
|
version: '0'
|
148
148
|
requirements: []
|
149
|
-
rubygems_version: 3.6.
|
149
|
+
rubygems_version: 3.6.5
|
150
150
|
specification_version: 4
|
151
151
|
summary: Use the Migrate to Virtual Machines API to programmatically migrate workloads.
|
152
152
|
test_files: []
|