google-apis-serviceusage_v1beta1 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: b451b0a0dd0097be30ca133b492ee2f253d0ef183c4a4c743c16c324de1b836b
4
- data.tar.gz: 0c07cc98d25d89219daf6ba6f2f352023ad57f1e647a49cae7b6d122d0ffbb6d
3
+ metadata.gz: 1d5bfba10d64fa7074e02ef933f551cf4f96cf136864e16d78881885aa173824
4
+ data.tar.gz: 157e8eee329aba0c8a68bd3ea6e8d35d8b94acbab5ec3031c534edabff9683ba
5
5
  SHA512:
6
- metadata.gz: e3448ce4a2c6916ba4ba3cd5df2f6a4cbac05f821ce3c95705546d7d1d02de94ee97d6cde56cf75c8fc8837af5c7eafecd494da3f80daad8a5a6c4459a234a41
7
- data.tar.gz: 3584a8321b11bb171c849ef9b7d76dac14235297f1a6bac6b16705a9d7df55be01d8ee45f742cf87e6c101ad47c2f4d469a20ca34347e027b8726e717b70a66b
6
+ metadata.gz: 7a28cab2eebf566a30e1d83f34ed3a02b831b7a15eddcee4d80e58d294c2799b1f3cb131cd2b2f4366314c33c65ec7303edd1761c779a0de01ffdaf7249eb509
7
+ data.tar.gz: d64b42b810016f9d8d162293c4dc31f004ad1742a019c9f58391ae24f4b1390c6035d2e58db228232bbb252c8bc3f78ba8a146893f5ec1150f938d37fa3146a6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-serviceusage_v1beta1
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::ServiceusageV1beta1::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 ServiceusageV1beta1
18
18
  # Version of the google-apis-serviceusage_v1beta1 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
 
@@ -1023,10 +1029,20 @@ module Google
1023
1029
  # @private
1024
1030
  class Representation < Google::Apis::Core::JsonRepresentation
1025
1031
  property :kind, as: 'kind'
1032
+ collection :rules, as: 'rules', class: Google::Apis::ServiceusageV1beta1::AspectRule, decorator: Google::Apis::ServiceusageV1beta1::AspectRule::Representation
1033
+
1026
1034
  hash :spec, as: 'spec'
1027
1035
  end
1028
1036
  end
1029
1037
 
1038
+ class AspectRule
1039
+ # @private
1040
+ class Representation < Google::Apis::Core::JsonRepresentation
1041
+ hash :config, as: 'config'
1042
+ property :selector, as: 'selector'
1043
+ end
1044
+ end
1045
+
1030
1046
  class AuthProvider
1031
1047
  # @private
1032
1048
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-serviceusage_v1beta1
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_v1beta1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-serviceusage_v1beta1/v0.73.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-serviceusage_v1beta1/v0.74.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-serviceusage_v1beta1
62
62
  rdoc_options: []
63
63
  require_paths: