google-apis-servicecontrol_v2 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: 2788ba9d845915bca79fa65e485b748f1cb4b9a6dd8c03ed655919f449a47d5b
4
- data.tar.gz: 0fd37298b8a1ab00d53ec842a9b15d6d4cbc30878bd030c2a680adc2ed4858fb
3
+ metadata.gz: 8e0d293844c0a0b859680a3424f4a26eda0e827a5551abcc3177b7a14a30ed49
4
+ data.tar.gz: cbb91ed025b103b7d866ab1ee5eb81ac6873befda3f72efc1f161c9d0d63c658
5
5
  SHA512:
6
- metadata.gz: 925795e23472cb0a9b93808ab086956c5f0aba1a68e081775b367fb6e55006f9f8c6bb12494fb76ef622482180d74704df811a00d4687c4549880b6bc8f87560
7
- data.tar.gz: 7f332ea95edf0ae1c21289d2a35d4188fd5170aa77e121355f13494c62971bcfce9e7aa994452f5e77951d0a629128bd2ca6a2537349dec8843407309af232bc
6
+ metadata.gz: 8d08d1e24dff7d7dc9b9c072342093d699c1a7e23baf32f823656387f434b623f83fd53bfa7351454a04a35ae8a85aa905cebf20d399aba988b0a55c0bcbf6e0
7
+ data.tar.gz: dd61ee7f0b65a96de46a6b12a1159ff41ad439a03cbd5431d84bf28251eb6b6781cf42fd30ec44587baf19a29dec86577d3c0181bcf7d4335efc1ede16eed54b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-servicecontrol_v2
2
2
 
3
+ ### v0.47.0 (2026-05-10)
4
+
5
+ * Regenerated from discovery document revision 20260428
6
+
7
+ ### v0.46.0 (2025-12-14)
8
+
9
+ * Regenerated from discovery document revision 20251125
10
+
3
11
  ### v0.45.0 (2025-09-07)
4
12
 
5
13
  * Regenerated from discovery document revision 20250820
@@ -158,6 +158,14 @@ module Google
158
158
  class AuditLog
159
159
  include Google::Apis::Core::Hashable
160
160
 
161
+ # The API version identifier of the operation that uses interface based
162
+ # versioning (IBV). For example, `"2026-01-01-preview"`. The version identifier
163
+ # generally follows the format of [variant_]date[_decorator]. It should not be
164
+ # parsed because the exact format varies across services.
165
+ # Corresponds to the JSON property `apiVersionIdentifier`
166
+ # @return [String]
167
+ attr_accessor :api_version_identifier
168
+
161
169
  # Authentication information for the operation.
162
170
  # Corresponds to the JSON property `authenticationInfo`
163
171
  # @return [Google::Apis::ServicecontrolV2::AuthenticationInfo]
@@ -267,6 +275,7 @@ module Google
267
275
 
268
276
  # Update properties of this object
269
277
  def update!(**args)
278
+ @api_version_identifier = args[:api_version_identifier] if args.key?(:api_version_identifier)
270
279
  @authentication_info = args[:authentication_info] if args.key?(:authentication_info)
271
280
  @authorization_info = args[:authorization_info] if args.key?(:authorization_info)
272
281
  @metadata = args[:metadata] if args.key?(:metadata)
@@ -1814,6 +1823,13 @@ module Google
1814
1823
  # @return [String]
1815
1824
  attr_accessor :constraint
1816
1825
 
1826
+ # Optional. Provides extra information for the specific violated constraint. See
1827
+ # the constraint's documentation to determine if this field is populated and
1828
+ # what the structure of the message should be.
1829
+ # Corresponds to the JSON property `constraintViolationInfo`
1830
+ # @return [Hash<String,Object>]
1831
+ attr_accessor :constraint_violation_info
1832
+
1817
1833
  # Optional. Error message that policy is indicating.
1818
1834
  # Corresponds to the JSON property `errorMessage`
1819
1835
  # @return [String]
@@ -1832,6 +1848,7 @@ module Google
1832
1848
  def update!(**args)
1833
1849
  @checked_value = args[:checked_value] if args.key?(:checked_value)
1834
1850
  @constraint = args[:constraint] if args.key?(:constraint)
1851
+ @constraint_violation_info = args[:constraint_violation_info] if args.key?(:constraint_violation_info)
1835
1852
  @error_message = args[:error_message] if args.key?(:error_message)
1836
1853
  @policy_type = args[:policy_type] if args.key?(:policy_type)
1837
1854
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ServicecontrolV2
18
18
  # Version of the google-apis-servicecontrol_v2 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 = "20250820"
25
+ REVISION = "20260428"
26
26
  end
27
27
  end
28
28
  end
@@ -260,6 +260,7 @@ module Google
260
260
  class AuditLog
261
261
  # @private
262
262
  class Representation < Google::Apis::Core::JsonRepresentation
263
+ property :api_version_identifier, as: 'apiVersionIdentifier'
263
264
  property :authentication_info, as: 'authenticationInfo', class: Google::Apis::ServicecontrolV2::AuthenticationInfo, decorator: Google::Apis::ServicecontrolV2::AuthenticationInfo::Representation
264
265
 
265
266
  collection :authorization_info, as: 'authorizationInfo', class: Google::Apis::ServicecontrolV2::AuthorizationInfo, decorator: Google::Apis::ServicecontrolV2::AuthorizationInfo::Representation
@@ -632,6 +633,7 @@ module Google
632
633
  class Representation < Google::Apis::Core::JsonRepresentation
633
634
  property :checked_value, as: 'checkedValue'
634
635
  property :constraint, as: 'constraint'
636
+ hash :constraint_violation_info, as: 'constraintViolationInfo'
635
637
  property :error_message, as: 'errorMessage'
636
638
  property :policy_type, as: 'policyType'
637
639
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-servicecontrol_v2
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_v2/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-servicecontrol_v2/v0.45.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-servicecontrol_v2/v0.47.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-servicecontrol_v2
62
62
  rdoc_options: []
63
63
  require_paths: