google-cloud-network_connectivity-v1 1.4.0 → 1.5.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: 18b3cd8ecb5d4494a015296c14e3d9fd73828ceafa8861987e1bb0641893dfb1
4
- data.tar.gz: e38e840e35698818f53c24fc129ea7b6db85a95efd66f1abdf478a4cb686da6c
3
+ metadata.gz: 066fa8f7eeb5f4a4fe0fe1ec51f69a349dd10702d45662f8252708cae4756f2f
4
+ data.tar.gz: c640cb2afaec611eeacf378bb8b2f30ab33d3249475eeb365d9282dfaa37b784
5
5
  SHA512:
6
- metadata.gz: f4f694c6dd7b123a82220d57ed0864ee590075744b5924de6b5e2dfbbf08818259136b9f45e5fa333076d9354f280fe1b4ee90e8094dc908fe08835b85d85319
7
- data.tar.gz: 9cc9a57a74535ef3c887bf757002b228b10932cd22d275e83c50c52302d4a2ef1e460f8754e31b5e60caf3447dd2703a3e9f165c4c514c855db7c124d5461888
6
+ metadata.gz: d054cf9372864fc6d2c1e2beaa53a38151cbcc80051942376d2cacacb43e0b0f0d1618cd04f21fe5685e16d4d2056e82dcf142766765b1303e2bc2e6da8f08d8
7
+ data.tar.gz: b4af183b4bff851882429957ae35afc8775b43fbc2c76e5e53f3801abff86bc1b1a9388bfa1c1333b22cb30aa5ac61bc880f696f608ed0bae0e786d04ff55a9c
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module NetworkConnectivity
23
23
  module V1
24
- VERSION = "1.4.0"
24
+ VERSION = "1.5.0"
25
25
  end
26
26
  end
27
27
  end
@@ -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-network_connectivity-v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.0
4
+ version: 1.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-03-25 00:00:00.000000000 Z
10
+ date: 2025-04-21 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: gapic-common