google-apis-serviceusage_v1beta1 0.70.0 → 0.72.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: 2a3270e76c0c6bd3d4d41b52ff30319e6cd85b1336ffe45d656e8607f9e109d6
4
- data.tar.gz: 17f21e64adae009dd974a31fbdb8446a1bae52a0f1a5eb87325a918287a7333c
3
+ metadata.gz: 2089676caaa0a65a335d323fd02f7abb28cbe3feb6e3a2bba4855dced5240588
4
+ data.tar.gz: b8840e70a46a37e91ad58cfcb7a489b299efe4f9b4f18a673e420cad859e75da
5
5
  SHA512:
6
- metadata.gz: 57a5bdc34f8dbfbea79dafa9873a5b46f5f48ecb0e0d73659decf15589c0b27aab32569d9fe1025e68271c60ecc5f83db3d73a4d7f7338cf933de5acf4954662
7
- data.tar.gz: b303756f3b337ce7c9031e79cbf029514b33c4dd51cc98565843171c43586b732f96ea3ba879e738f1e32793921541be583e31f6596ea62fc6a0c652656a40dc
6
+ metadata.gz: e885a0cabb118293608097212da1eda69eea5ca19ac46ee3f79c2650baa826ac04b71f9405bb41273a05ced67374eb81546283f54900844d6c46f9149bff07ae
7
+ data.tar.gz: 85476eba1c6310967a72e28f147c7b5e81e4632574f9b759d3d7f7619a9bf36825b253384f817664d6b4372ac1f12a831cd7e07abffe8b4af49c6422a9e9a9be
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-serviceusage_v1beta1
2
2
 
3
+ ### v0.72.0 (2026-01-18)
4
+
5
+ * Regenerated from discovery document revision 20260109
6
+
7
+ ### v0.71.0 (2025-11-02)
8
+
9
+ * Regenerated from discovery document revision 20251021
10
+
3
11
  ### v0.70.0 (2025-09-28)
4
12
 
5
13
  * Regenerated from discovery document revision 20250919
@@ -1263,6 +1263,36 @@ module Google
1263
1263
  end
1264
1264
  end
1265
1265
 
1266
+ # Content Security Policy contains the content security related policy of a
1267
+ # resource.
1268
+ class ContentSecurityPolicy
1269
+ include Google::Apis::Core::Hashable
1270
+
1271
+ # ContentSecurity defines the content security related fields of a MCP policy.
1272
+ # Corresponds to the JSON property `mcpContentSecurity`
1273
+ # @return [Google::Apis::ServiceusageV1beta1::ContentSecurity]
1274
+ attr_accessor :mcp_content_security
1275
+
1276
+ # Output only. The resource name of the policy. Only the `default` policy is
1277
+ # supported. We allow the following formats: `projects/`PROJECT_NUMBER`/
1278
+ # contentSecurityPolicies/default`, `projects/`PROJECT_ID`/
1279
+ # contentSecurityPolicies/default`, We only support project level content
1280
+ # security policy for now.
1281
+ # Corresponds to the JSON property `name`
1282
+ # @return [String]
1283
+ attr_accessor :name
1284
+
1285
+ def initialize(**args)
1286
+ update!(**args)
1287
+ end
1288
+
1289
+ # Update properties of this object
1290
+ def update!(**args)
1291
+ @mcp_content_security = args[:mcp_content_security] if args.key?(:mcp_content_security)
1292
+ @name = args[:name] if args.key?(:name)
1293
+ end
1294
+ end
1295
+
1266
1296
  # ContentSecurityProvider contains the name of content security provider.
1267
1297
  class ContentSecurityProvider
1268
1298
  include Google::Apis::Core::Hashable
@@ -1372,9 +1402,9 @@ module Google
1372
1402
  class Control
1373
1403
  include Google::Apis::Core::Hashable
1374
1404
 
1375
- # The service controller environment to use. If empty, no control plane feature (
1376
- # like quota and billing) will be enabled. The recommended value for most
1377
- # services is servicecontrol.googleapis.com
1405
+ # The service controller environment to use. If empty, no control plane features
1406
+ # (like quota and billing) will be enabled. The recommended value for most
1407
+ # services is servicecontrol.googleapis.com.
1378
1408
  # Corresponds to the JSON property `environment`
1379
1409
  # @return [String]
1380
1410
  attr_accessor :environment
@@ -3060,14 +3090,6 @@ module Google
3060
3090
  class GoogleApiServiceusageV2betaConsumerPolicy
3061
3091
  include Google::Apis::Core::Hashable
3062
3092
 
3063
- # Optional. Annotations is an unstructured key-value map stored with a policy
3064
- # that may be set by external tools to store and retrieve arbitrary metadata.
3065
- # They are not queryable and should be preserved when modifying objects. [AIP-
3066
- # 128](https://google.aip.dev/128#annotations)
3067
- # Corresponds to the JSON property `annotations`
3068
- # @return [Hash<String,String>]
3069
- attr_accessor :annotations
3070
-
3071
3093
  # Output only. The time the policy was created. For singleton policies, this is
3072
3094
  # the first touch of the policy.
3073
3095
  # Corresponds to the JSON property `createTime`
@@ -3105,7 +3127,6 @@ module Google
3105
3127
 
3106
3128
  # Update properties of this object
3107
3129
  def update!(**args)
3108
- @annotations = args[:annotations] if args.key?(:annotations)
3109
3130
  @create_time = args[:create_time] if args.key?(:create_time)
3110
3131
  @enable_rules = args[:enable_rules] if args.key?(:enable_rules)
3111
3132
  @etag = args[:etag] if args.key?(:etag)
@@ -3168,6 +3189,94 @@ module Google
3168
3189
  end
3169
3190
  end
3170
3191
 
3192
+ # McpEnableRule contains MCP enablement related rules.
3193
+ class GoogleApiServiceusageV2betaMcpEnableRule
3194
+ include Google::Apis::Core::Hashable
3195
+
3196
+ # List of enabled MCP services.
3197
+ # Corresponds to the JSON property `mcpServices`
3198
+ # @return [Array<Google::Apis::ServiceusageV1beta1::GoogleApiServiceusageV2betaMcpService>]
3199
+ attr_accessor :mcp_services
3200
+
3201
+ def initialize(**args)
3202
+ update!(**args)
3203
+ end
3204
+
3205
+ # Update properties of this object
3206
+ def update!(**args)
3207
+ @mcp_services = args[:mcp_services] if args.key?(:mcp_services)
3208
+ end
3209
+ end
3210
+
3211
+ # MCP Consumer Policy is a set of rules that define MCP related policy for a
3212
+ # cloud resource hierarchy.
3213
+ class GoogleApiServiceusageV2betaMcpPolicy
3214
+ include Google::Apis::Core::Hashable
3215
+
3216
+ # Output only. The time the policy was created. For singleton policies (such as
3217
+ # the `default` policy), this is the first touch of the policy.
3218
+ # Corresponds to the JSON property `createTime`
3219
+ # @return [String]
3220
+ attr_accessor :create_time
3221
+
3222
+ # An opaque tag indicating the current version of the policy, used for
3223
+ # concurrency control.
3224
+ # Corresponds to the JSON property `etag`
3225
+ # @return [String]
3226
+ attr_accessor :etag
3227
+
3228
+ # McpEnableRules contains MCP enablement related rules.
3229
+ # Corresponds to the JSON property `mcpEnableRules`
3230
+ # @return [Array<Google::Apis::ServiceusageV1beta1::GoogleApiServiceusageV2betaMcpEnableRule>]
3231
+ attr_accessor :mcp_enable_rules
3232
+
3233
+ # Output only. The resource name of the policy. Only the `default` policy is
3234
+ # supported. We allow the following formats: `projects/`PROJECT_NUMBER`/
3235
+ # mcpPolicies/default`, `projects/`PROJECT_ID`/mcpPolicies/default`, `folders/`
3236
+ # FOLDER_ID`/mcpPolicies/default`, `organizations/`ORG_ID`/mcpPolicies/default`.
3237
+ # Corresponds to the JSON property `name`
3238
+ # @return [String]
3239
+ attr_accessor :name
3240
+
3241
+ # Output only. The time the policy was last updated.
3242
+ # Corresponds to the JSON property `updateTime`
3243
+ # @return [String]
3244
+ attr_accessor :update_time
3245
+
3246
+ def initialize(**args)
3247
+ update!(**args)
3248
+ end
3249
+
3250
+ # Update properties of this object
3251
+ def update!(**args)
3252
+ @create_time = args[:create_time] if args.key?(:create_time)
3253
+ @etag = args[:etag] if args.key?(:etag)
3254
+ @mcp_enable_rules = args[:mcp_enable_rules] if args.key?(:mcp_enable_rules)
3255
+ @name = args[:name] if args.key?(:name)
3256
+ @update_time = args[:update_time] if args.key?(:update_time)
3257
+ end
3258
+ end
3259
+
3260
+ # McpService contains the service names that are enabled for MCP.
3261
+ class GoogleApiServiceusageV2betaMcpService
3262
+ include Google::Apis::Core::Hashable
3263
+
3264
+ # The names of the services that are enabled for MCP. Example: `services/library-
3265
+ # example.googleapis.com`
3266
+ # Corresponds to the JSON property `service`
3267
+ # @return [String]
3268
+ attr_accessor :service
3269
+
3270
+ def initialize(**args)
3271
+ update!(**args)
3272
+ end
3273
+
3274
+ # Update properties of this object
3275
+ def update!(**args)
3276
+ @service = args[:service] if args.key?(:service)
3277
+ end
3278
+ end
3279
+
3171
3280
  # Metadata for the `UpdateConsumerPolicy` method.
3172
3281
  class GoogleApiServiceusageV2betaUpdateConsumerPolicyMetadata
3173
3282
  include Google::Apis::Core::Hashable
@@ -3181,6 +3290,19 @@ module Google
3181
3290
  end
3182
3291
  end
3183
3292
 
3293
+ # Metadata for the `UpdateMcpPolicy` method.
3294
+ class GoogleApiServiceusageV2betaUpdateMcpPolicyMetadata
3295
+ include Google::Apis::Core::Hashable
3296
+
3297
+ def initialize(**args)
3298
+ update!(**args)
3299
+ end
3300
+
3301
+ # Update properties of this object
3302
+ def update!(**args)
3303
+ end
3304
+ end
3305
+
3184
3306
  # Defines the HTTP configuration for an API service. It contains a list of
3185
3307
  # HttpRule, each specifying the mapping of an RPC method to one or more HTTP
3186
3308
  # REST API methods.
@@ -3848,6 +3970,14 @@ module Google
3848
3970
  # @return [Array<Google::Apis::ServiceusageV1beta1::Operation>]
3849
3971
  attr_accessor :operations
3850
3972
 
3973
+ # Unordered list. Unreachable resources. Populated when the request sets `
3974
+ # ListOperationsRequest.return_partial_success` and reads across collections.
3975
+ # For example, when attempting to list all resources across all supported
3976
+ # locations.
3977
+ # Corresponds to the JSON property `unreachable`
3978
+ # @return [Array<String>]
3979
+ attr_accessor :unreachable
3980
+
3851
3981
  def initialize(**args)
3852
3982
  update!(**args)
3853
3983
  end
@@ -3856,6 +3986,7 @@ module Google
3856
3986
  def update!(**args)
3857
3987
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
3858
3988
  @operations = args[:operations] if args.key?(:operations)
3989
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
3859
3990
  end
3860
3991
  end
3861
3992
 
@@ -4065,11 +4196,6 @@ module Google
4065
4196
  class McpPolicy
4066
4197
  include Google::Apis::Core::Hashable
4067
4198
 
4068
- # ContentSecurity defines the content security related fields of a MCP policy.
4069
- # Corresponds to the JSON property `contentSecurity`
4070
- # @return [Google::Apis::ServiceusageV1beta1::ContentSecurity]
4071
- attr_accessor :content_security
4072
-
4073
4199
  # Output only. The time the policy was created. For singleton policies (such as
4074
4200
  # the `default` policy), this is the first touch of the policy.
4075
4201
  # Corresponds to the JSON property `createTime`
@@ -4106,7 +4232,6 @@ module Google
4106
4232
 
4107
4233
  # Update properties of this object
4108
4234
  def update!(**args)
4109
- @content_security = args[:content_security] if args.key?(:content_security)
4110
4235
  @create_time = args[:create_time] if args.key?(:create_time)
4111
4236
  @etag = args[:etag] if args.key?(:etag)
4112
4237
  @mcp_enable_rules = args[:mcp_enable_rules] if args.key?(:mcp_enable_rules)
@@ -6032,6 +6157,19 @@ module Google
6032
6157
  end
6033
6158
  end
6034
6159
 
6160
+ # Metadata for the `UpdateContentSecurityPolicy` method.
6161
+ class UpdateContentSecurityPolicyMetadata
6162
+ include Google::Apis::Core::Hashable
6163
+
6164
+ def initialize(**args)
6165
+ update!(**args)
6166
+ end
6167
+
6168
+ # Update properties of this object
6169
+ def update!(**args)
6170
+ end
6171
+ end
6172
+
6035
6173
  # Metadata for the `UpdateMcpPolicy` method.
6036
6174
  class UpdateMcpPolicyMetadata
6037
6175
  include Google::Apis::Core::Hashable
@@ -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.70.0"
19
+ GEM_VERSION = "0.72.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 = "20250919"
25
+ REVISION = "20260109"
26
26
  end
27
27
  end
28
28
  end
@@ -202,6 +202,12 @@ module Google
202
202
  include Google::Apis::Core::JsonObjectSupport
203
203
  end
204
204
 
205
+ class ContentSecurityPolicy
206
+ class Representation < Google::Apis::Core::JsonRepresentation; end
207
+
208
+ include Google::Apis::Core::JsonObjectSupport
209
+ end
210
+
205
211
  class ContentSecurityProvider
206
212
  class Representation < Google::Apis::Core::JsonRepresentation; end
207
213
 
@@ -472,12 +478,36 @@ module Google
472
478
  include Google::Apis::Core::JsonObjectSupport
473
479
  end
474
480
 
481
+ class GoogleApiServiceusageV2betaMcpEnableRule
482
+ class Representation < Google::Apis::Core::JsonRepresentation; end
483
+
484
+ include Google::Apis::Core::JsonObjectSupport
485
+ end
486
+
487
+ class GoogleApiServiceusageV2betaMcpPolicy
488
+ class Representation < Google::Apis::Core::JsonRepresentation; end
489
+
490
+ include Google::Apis::Core::JsonObjectSupport
491
+ end
492
+
493
+ class GoogleApiServiceusageV2betaMcpService
494
+ class Representation < Google::Apis::Core::JsonRepresentation; end
495
+
496
+ include Google::Apis::Core::JsonObjectSupport
497
+ end
498
+
475
499
  class GoogleApiServiceusageV2betaUpdateConsumerPolicyMetadata
476
500
  class Representation < Google::Apis::Core::JsonRepresentation; end
477
501
 
478
502
  include Google::Apis::Core::JsonObjectSupport
479
503
  end
480
504
 
505
+ class GoogleApiServiceusageV2betaUpdateMcpPolicyMetadata
506
+ class Representation < Google::Apis::Core::JsonRepresentation; end
507
+
508
+ include Google::Apis::Core::JsonObjectSupport
509
+ end
510
+
481
511
  class Http
482
512
  class Representation < Google::Apis::Core::JsonRepresentation; end
483
513
 
@@ -886,6 +916,12 @@ module Google
886
916
  include Google::Apis::Core::JsonObjectSupport
887
917
  end
888
918
 
919
+ class UpdateContentSecurityPolicyMetadata
920
+ class Representation < Google::Apis::Core::JsonRepresentation; end
921
+
922
+ include Google::Apis::Core::JsonObjectSupport
923
+ end
924
+
889
925
  class UpdateMcpPolicyMetadata
890
926
  class Representation < Google::Apis::Core::JsonRepresentation; end
891
927
 
@@ -1225,6 +1261,15 @@ module Google
1225
1261
  end
1226
1262
  end
1227
1263
 
1264
+ class ContentSecurityPolicy
1265
+ # @private
1266
+ class Representation < Google::Apis::Core::JsonRepresentation
1267
+ property :mcp_content_security, as: 'mcpContentSecurity', class: Google::Apis::ServiceusageV1beta1::ContentSecurity, decorator: Google::Apis::ServiceusageV1beta1::ContentSecurity::Representation
1268
+
1269
+ property :name, as: 'name'
1270
+ end
1271
+ end
1272
+
1228
1273
  class ContentSecurityProvider
1229
1274
  # @private
1230
1275
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1673,7 +1718,6 @@ module Google
1673
1718
  class GoogleApiServiceusageV2betaConsumerPolicy
1674
1719
  # @private
1675
1720
  class Representation < Google::Apis::Core::JsonRepresentation
1676
- hash :annotations, as: 'annotations'
1677
1721
  property :create_time, as: 'createTime'
1678
1722
  collection :enable_rules, as: 'enableRules', class: Google::Apis::ServiceusageV1beta1::GoogleApiServiceusageV2betaEnableRule, decorator: Google::Apis::ServiceusageV1beta1::GoogleApiServiceusageV2betaEnableRule::Representation
1679
1723
 
@@ -1699,12 +1743,45 @@ module Google
1699
1743
  end
1700
1744
  end
1701
1745
 
1746
+ class GoogleApiServiceusageV2betaMcpEnableRule
1747
+ # @private
1748
+ class Representation < Google::Apis::Core::JsonRepresentation
1749
+ collection :mcp_services, as: 'mcpServices', class: Google::Apis::ServiceusageV1beta1::GoogleApiServiceusageV2betaMcpService, decorator: Google::Apis::ServiceusageV1beta1::GoogleApiServiceusageV2betaMcpService::Representation
1750
+
1751
+ end
1752
+ end
1753
+
1754
+ class GoogleApiServiceusageV2betaMcpPolicy
1755
+ # @private
1756
+ class Representation < Google::Apis::Core::JsonRepresentation
1757
+ property :create_time, as: 'createTime'
1758
+ property :etag, as: 'etag'
1759
+ collection :mcp_enable_rules, as: 'mcpEnableRules', class: Google::Apis::ServiceusageV1beta1::GoogleApiServiceusageV2betaMcpEnableRule, decorator: Google::Apis::ServiceusageV1beta1::GoogleApiServiceusageV2betaMcpEnableRule::Representation
1760
+
1761
+ property :name, as: 'name'
1762
+ property :update_time, as: 'updateTime'
1763
+ end
1764
+ end
1765
+
1766
+ class GoogleApiServiceusageV2betaMcpService
1767
+ # @private
1768
+ class Representation < Google::Apis::Core::JsonRepresentation
1769
+ property :service, as: 'service'
1770
+ end
1771
+ end
1772
+
1702
1773
  class GoogleApiServiceusageV2betaUpdateConsumerPolicyMetadata
1703
1774
  # @private
1704
1775
  class Representation < Google::Apis::Core::JsonRepresentation
1705
1776
  end
1706
1777
  end
1707
1778
 
1779
+ class GoogleApiServiceusageV2betaUpdateMcpPolicyMetadata
1780
+ # @private
1781
+ class Representation < Google::Apis::Core::JsonRepresentation
1782
+ end
1783
+ end
1784
+
1708
1785
  class Http
1709
1786
  # @private
1710
1787
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1865,6 +1942,7 @@ module Google
1865
1942
  property :next_page_token, as: 'nextPageToken'
1866
1943
  collection :operations, as: 'operations', class: Google::Apis::ServiceusageV1beta1::Operation, decorator: Google::Apis::ServiceusageV1beta1::Operation::Representation
1867
1944
 
1945
+ collection :unreachable, as: 'unreachable'
1868
1946
  end
1869
1947
  end
1870
1948
 
@@ -1927,8 +2005,6 @@ module Google
1927
2005
  class McpPolicy
1928
2006
  # @private
1929
2007
  class Representation < Google::Apis::Core::JsonRepresentation
1930
- property :content_security, as: 'contentSecurity', class: Google::Apis::ServiceusageV1beta1::ContentSecurity, decorator: Google::Apis::ServiceusageV1beta1::ContentSecurity::Representation
1931
-
1932
2008
  property :create_time, as: 'createTime'
1933
2009
  property :etag, as: 'etag'
1934
2010
  collection :mcp_enable_rules, as: 'mcpEnableRules', class: Google::Apis::ServiceusageV1beta1::McpEnableRule, decorator: Google::Apis::ServiceusageV1beta1::McpEnableRule::Representation
@@ -2381,6 +2457,12 @@ module Google
2381
2457
  end
2382
2458
  end
2383
2459
 
2460
+ class UpdateContentSecurityPolicyMetadata
2461
+ # @private
2462
+ class Representation < Google::Apis::Core::JsonRepresentation
2463
+ end
2464
+ end
2465
+
2384
2466
  class UpdateMcpPolicyMetadata
2385
2467
  # @private
2386
2468
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -94,6 +94,14 @@ module Google
94
94
  # The standard list page size.
95
95
  # @param [String] page_token
96
96
  # The standard list page token.
97
+ # @param [Boolean] return_partial_success
98
+ # When set to `true`, operations that are reachable are returned as normal, and
99
+ # those that are unreachable are returned in the ListOperationsResponse.
100
+ # unreachable field. This can only be `true` when reading across collections.
101
+ # For example, when `parent` is set to `"projects/example/locations/-"`. This
102
+ # field is not supported by default and will result in an `UNIMPLEMENTED` error
103
+ # if set unless explicitly documented otherwise in service or product specific
104
+ # documentation.
97
105
  # @param [String] fields
98
106
  # Selector specifying which fields to include in a partial response.
99
107
  # @param [String] quota_user
@@ -111,7 +119,7 @@ module Google
111
119
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
112
120
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
113
121
  # @raise [Google::Apis::AuthorizationError] Authorization is required
114
- def list_operations(filter: nil, name: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
122
+ def list_operations(filter: nil, name: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
115
123
  command = make_simple_command(:get, 'v1beta1/operations', options)
116
124
  command.response_representation = Google::Apis::ServiceusageV1beta1::ListOperationsResponse::Representation
117
125
  command.response_class = Google::Apis::ServiceusageV1beta1::ListOperationsResponse
@@ -119,6 +127,7 @@ module Google
119
127
  command.query['name'] = name unless name.nil?
120
128
  command.query['pageSize'] = page_size unless page_size.nil?
121
129
  command.query['pageToken'] = page_token unless page_token.nil?
130
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
122
131
  command.query['fields'] = fields unless fields.nil?
123
132
  command.query['quotaUser'] = quota_user unless quota_user.nil?
124
133
  execute_or_queue_command(command, &block)
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.70.0
4
+ version: 0.72.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.70.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-serviceusage_v1beta1/v0.72.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: