google-apis-servicecontrol_v1 0.45.0 → 0.47.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: 521bc3bedb98595e76473706579276b36a28b3a4f1e67fa6e532ae73a3a104e6
4
- data.tar.gz: 100d8f7f452ecd8fce68ae3ad0e964f4b0095ee0016c10de5ec7177416c6ec8c
3
+ metadata.gz: ecf66068a787cc1da1d2209aa9d26943b0b2db1bb4e93627a519b5a7be2f5168
4
+ data.tar.gz: 29252c714faf867b736e10da87614091bddf03f86e0def2c4d1ad6c49f77f071
5
5
  SHA512:
6
- metadata.gz: b5400a4119f954f63709728c601bcfc9c1a7596e190ae7225f7caeab9b56f04d67eb18682e2ea97952b5661c18484b8b32cb01a0798cfdc7abd81a772d05a1d7
7
- data.tar.gz: 4289b9b410648d873fdda10bfe1dee92c3dd5e2dd71429fc6859a5479007e00fd96c3c05009b6161f388134ab90525ec0d48aaf56dfc7251030118c27c64e24a
6
+ metadata.gz: 9b55bc7a241d3916bb992ed807d899bda0542d73a24692c51bb34d38dc8a1417c774300bf7d489458097079a2c4898df30c3f09dfef6fcfdf22cea14c3fd6f4f
7
+ data.tar.gz: dd00a7936735ded4ad5b4121e0a783ec250492685805a105adc86982227d4356271e7c1f1e3a6e02bd805768f0522766479eda0dbe99b2528121b787c9fc79ae
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-servicecontrol_v1
2
2
 
3
+ ### v0.47.0 (2026-05-17)
4
+
5
+ * Regenerated from discovery document revision 20260428
6
+
7
+ ### v0.46.0 (2026-01-18)
8
+
9
+ * Regenerated from discovery document revision 20251229
10
+
3
11
  ### v0.45.0 (2025-12-14)
4
12
 
5
13
  * Regenerated from discovery document revision 20251125
@@ -187,6 +187,14 @@ module Google
187
187
  class AuditLog
188
188
  include Google::Apis::Core::Hashable
189
189
 
190
+ # The API version identifier of the operation that uses interface based
191
+ # versioning (IBV). For example, `"2026-01-01-preview"`. The version identifier
192
+ # generally follows the format of [variant_]date[_decorator]. It should not be
193
+ # parsed because the exact format varies across services.
194
+ # Corresponds to the JSON property `apiVersionIdentifier`
195
+ # @return [String]
196
+ attr_accessor :api_version_identifier
197
+
190
198
  # Authentication information for the operation.
191
199
  # Corresponds to the JSON property `authenticationInfo`
192
200
  # @return [Google::Apis::ServicecontrolV1::AuthenticationInfo]
@@ -296,6 +304,7 @@ module Google
296
304
 
297
305
  # Update properties of this object
298
306
  def update!(**args)
307
+ @api_version_identifier = args[:api_version_identifier] if args.key?(:api_version_identifier)
299
308
  @authentication_info = args[:authentication_info] if args.key?(:authentication_info)
300
309
  @authorization_info = args[:authorization_info] if args.key?(:authorization_info)
301
310
  @metadata = args[:metadata] if args.key?(:metadata)
@@ -1779,6 +1788,11 @@ module Google
1779
1788
  # @return [Hash<String,Fixnum>]
1780
1789
  attr_accessor :quota_consumed
1781
1790
 
1791
+ # Output only. Indicates the state of the quota extraction.
1792
+ # Corresponds to the JSON property `quotaExtractionState`
1793
+ # @return [String]
1794
+ attr_accessor :quota_extraction_state
1795
+
1782
1796
  # Quota metrics to indicate the usage. Depending on the check request, one or
1783
1797
  # more of the following metrics will be included: 1. For rate quota, per quota
1784
1798
  # group or per quota metric incremental usage will be specified using the
@@ -1800,6 +1814,7 @@ module Google
1800
1814
  def update!(**args)
1801
1815
  @limit_exceeded = args[:limit_exceeded] if args.key?(:limit_exceeded)
1802
1816
  @quota_consumed = args[:quota_consumed] if args.key?(:quota_consumed)
1817
+ @quota_extraction_state = args[:quota_extraction_state] if args.key?(:quota_extraction_state)
1803
1818
  @quota_metrics = args[:quota_metrics] if args.key?(:quota_metrics)
1804
1819
  end
1805
1820
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ServicecontrolV1
18
18
  # Version of the google-apis-servicecontrol_v1 gem
19
- GEM_VERSION = "0.45.0"
19
+ GEM_VERSION = "0.47.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20251125"
25
+ REVISION = "20260428"
26
26
  end
27
27
  end
28
28
  end
@@ -428,6 +428,7 @@ module Google
428
428
  class AuditLog
429
429
  # @private
430
430
  class Representation < Google::Apis::Core::JsonRepresentation
431
+ property :api_version_identifier, as: 'apiVersionIdentifier'
431
432
  property :authentication_info, as: 'authenticationInfo', class: Google::Apis::ServicecontrolV1::AuthenticationInfo, decorator: Google::Apis::ServicecontrolV1::AuthenticationInfo::Representation
432
433
 
433
434
  collection :authorization_info, as: 'authorizationInfo', class: Google::Apis::ServicecontrolV1::AuthorizationInfo, decorator: Google::Apis::ServicecontrolV1::AuthorizationInfo::Representation
@@ -794,6 +795,7 @@ module Google
794
795
  class Representation < Google::Apis::Core::JsonRepresentation
795
796
  collection :limit_exceeded, as: 'limitExceeded'
796
797
  hash :quota_consumed, as: 'quotaConsumed'
798
+ property :quota_extraction_state, as: 'quotaExtractionState'
797
799
  collection :quota_metrics, as: 'quotaMetrics', class: Google::Apis::ServicecontrolV1::MetricValueSet, decorator: Google::Apis::ServicecontrolV1::MetricValueSet::Representation
798
800
 
799
801
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-servicecontrol_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.45.0
4
+ version: 0.47.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-servicecontrol_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-servicecontrol_v1/v0.45.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-servicecontrol_v1/v0.47.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-servicecontrol_v1
62
62
  rdoc_options: []
63
63
  require_paths: