google-apis-serviceusage_v1 0.73.0 → 0.74.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: 886e3c69f8cac29d13733298b11864fddf7dbb49fd0d65e067cb72cad4b34b0f
4
- data.tar.gz: 30843c7d7d4096c48a0d38e67d3288d35c7d55ec25f0e7ec8651feb4fcac3517
3
+ metadata.gz: 7005bad75787282656c145d1a8c8e2542d7afa19c9ece3534e7cc9fb05d2d522
4
+ data.tar.gz: ae7f83fa12ddac78884f8352868dd07ca379c0c3d442f31725ab95e6c4d0cc0f
5
5
  SHA512:
6
- metadata.gz: 9927d533914c1a007a106a96103d36e168c6007160ed17ffeb1c80d1e703932b7245a1ca6ea133f443c2cc78ad871339e90108dbfc67c6ef84beefc11ea1f09f
7
- data.tar.gz: 2c841800eafd4adb1ce15ded4500ba11a747b91585faf3ae6ad70a56efce13220e751f401fe3d5e7caec3e9016642dd7b38f20823bb9a822e41a2be49891498c
6
+ metadata.gz: 5f76dbae89e6c4ea2d20dab93eaf5e65bb80717be0bd7bc8d3f0120a966504a1c12a78b934a192a247b83653d99095b7203e86d55aaca55406c9bb093375729d
7
+ data.tar.gz: aab46739394b12e6db0e925494a95829d41863ebb3f69f7a05a3df6653554633b4d779f850c0bb388cfe8dffa10b79d21a76ef9e775bd473cbd431d3e09a1312
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-serviceusage_v1
2
2
 
3
+ ### v0.74.0 (2026-02-15)
4
+
5
+ * Regenerated from discovery document revision 20260210
6
+
3
7
  ### v0.73.0 (2026-01-25)
4
8
 
5
9
  * Regenerated from discovery document revision 20260120
@@ -322,6 +322,11 @@ module Google
322
322
  # @return [String]
323
323
  attr_accessor :kind
324
324
 
325
+ # Optional. Rules of the Configuration.
326
+ # Corresponds to the JSON property `rules`
327
+ # @return [Array<Google::Apis::ServiceusageV1::AspectRule>]
328
+ attr_accessor :rules
329
+
325
330
  # Content of the configuration. The underlying schema should be defined by
326
331
  # Aspect owners as protobuf message under `google/api/configaspects/proto`.
327
332
  # Corresponds to the JSON property `spec`
@@ -335,10 +340,38 @@ module Google
335
340
  # Update properties of this object
336
341
  def update!(**args)
337
342
  @kind = args[:kind] if args.key?(:kind)
343
+ @rules = args[:rules] if args.key?(:rules)
338
344
  @spec = args[:spec] if args.key?(:spec)
339
345
  end
340
346
  end
341
347
 
348
+ # Rule-based configuration for an aspect.
349
+ class AspectRule
350
+ include Google::Apis::Core::Hashable
351
+
352
+ # Required. Rules of the configuration. The underlying schema should be defined
353
+ # by Aspect owners as protobuf message under `google/api/configaspects/proto`.
354
+ # Corresponds to the JSON property `config`
355
+ # @return [Hash<String,Object>]
356
+ attr_accessor :config
357
+
358
+ # Required. Selects the RPC methods to which this rule applies. Refer to
359
+ # selector for syntax details.
360
+ # Corresponds to the JSON property `selector`
361
+ # @return [String]
362
+ attr_accessor :selector
363
+
364
+ def initialize(**args)
365
+ update!(**args)
366
+ end
367
+
368
+ # Update properties of this object
369
+ def update!(**args)
370
+ @config = args[:config] if args.key?(:config)
371
+ @selector = args[:selector] if args.key?(:selector)
372
+ end
373
+ end
374
+
342
375
  # Configuration for an authentication provider, including support for [JSON Web
343
376
  # Token (JWT)](https://tools.ietf.org/html/draft-ietf-oauth-json-web-token-32).
344
377
  class AuthProvider
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ServiceusageV1
18
18
  # Version of the google-apis-serviceusage_v1 gem
19
- GEM_VERSION = "0.73.0"
19
+ GEM_VERSION = "0.74.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 = "20260120"
25
+ REVISION = "20260210"
26
26
  end
27
27
  end
28
28
  end
@@ -76,6 +76,12 @@ module Google
76
76
  include Google::Apis::Core::JsonObjectSupport
77
77
  end
78
78
 
79
+ class AspectRule
80
+ class Representation < Google::Apis::Core::JsonRepresentation; end
81
+
82
+ include Google::Apis::Core::JsonObjectSupport
83
+ end
84
+
79
85
  class AuthProvider
80
86
  class Representation < Google::Apis::Core::JsonRepresentation; end
81
87
 
@@ -957,10 +963,20 @@ module Google
957
963
  # @private
958
964
  class Representation < Google::Apis::Core::JsonRepresentation
959
965
  property :kind, as: 'kind'
966
+ collection :rules, as: 'rules', class: Google::Apis::ServiceusageV1::AspectRule, decorator: Google::Apis::ServiceusageV1::AspectRule::Representation
967
+
960
968
  hash :spec, as: 'spec'
961
969
  end
962
970
  end
963
971
 
972
+ class AspectRule
973
+ # @private
974
+ class Representation < Google::Apis::Core::JsonRepresentation
975
+ hash :config, as: 'config'
976
+ property :selector, as: 'selector'
977
+ end
978
+ end
979
+
964
980
  class AuthProvider
965
981
  # @private
966
982
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-serviceusage_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.73.0
4
+ version: 0.74.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-serviceusage_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-serviceusage_v1/v0.73.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-serviceusage_v1/v0.74.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-serviceusage_v1
62
62
  rdoc_options: []
63
63
  require_paths: