google-apis-serviceusage_v1beta1 0.74.0 → 0.75.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: 1d5bfba10d64fa7074e02ef933f551cf4f96cf136864e16d78881885aa173824
4
- data.tar.gz: 157e8eee329aba0c8a68bd3ea6e8d35d8b94acbab5ec3031c534edabff9683ba
3
+ metadata.gz: a5f88df2cec1f3f6c831cdf480b1a3eb000e99744f33e7e6c499fe09bbb60b24
4
+ data.tar.gz: 74f0cebfcbb8089ae448cc6966581e1de0072d3b6908ebd874a60602406607a7
5
5
  SHA512:
6
- metadata.gz: 7a28cab2eebf566a30e1d83f34ed3a02b831b7a15eddcee4d80e58d294c2799b1f3cb131cd2b2f4366314c33c65ec7303edd1761c779a0de01ffdaf7249eb509
7
- data.tar.gz: d64b42b810016f9d8d162293c4dc31f004ad1742a019c9f58391ae24f4b1390c6035d2e58db228232bbb252c8bc3f78ba8a146893f5ec1150f938d37fa3146a6
6
+ metadata.gz: b419a9742fb57f5d810d5342451d3b83b330f8f457b71ec1b2317e57cffbb8a86ae819c5d42f6ae453a690d837c286c5fa2bc4dd087853749fbae90b7a85cdab
7
+ data.tar.gz: '063592ada297b18ba3baac63902213c487e2b0f1278380b7edb03fb6bd83579dfd4ed99689c23b68b1169e0caaa740346563491dbc1ce1fe07892f7b4f2c5dc1'
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-serviceusage_v1beta1
2
2
 
3
+ ### v0.75.0 (2026-03-22)
4
+
5
+ * Regenerated from discovery document revision 20260317
6
+
3
7
  ### v0.74.0 (2026-02-15)
4
8
 
5
9
  * Regenerated from discovery document revision 20260210
@@ -4211,94 +4211,6 @@ module Google
4211
4211
  end
4212
4212
  end
4213
4213
 
4214
- # McpEnableRule contains MCP enablement related rules.
4215
- class McpEnableRule
4216
- include Google::Apis::Core::Hashable
4217
-
4218
- # List of enabled MCP services.
4219
- # Corresponds to the JSON property `mcpServices`
4220
- # @return [Array<Google::Apis::ServiceusageV1beta1::McpService>]
4221
- attr_accessor :mcp_services
4222
-
4223
- def initialize(**args)
4224
- update!(**args)
4225
- end
4226
-
4227
- # Update properties of this object
4228
- def update!(**args)
4229
- @mcp_services = args[:mcp_services] if args.key?(:mcp_services)
4230
- end
4231
- end
4232
-
4233
- # MCP Consumer Policy is a set of rules that define MCP related policy for a
4234
- # cloud resource hierarchy.
4235
- class McpPolicy
4236
- include Google::Apis::Core::Hashable
4237
-
4238
- # Output only. The time the policy was created. For singleton policies (such as
4239
- # the `default` policy), this is the first touch of the policy.
4240
- # Corresponds to the JSON property `createTime`
4241
- # @return [String]
4242
- attr_accessor :create_time
4243
-
4244
- # An opaque tag indicating the current version of the policy, used for
4245
- # concurrency control.
4246
- # Corresponds to the JSON property `etag`
4247
- # @return [String]
4248
- attr_accessor :etag
4249
-
4250
- # McpEnableRules contains MCP enablement related rules.
4251
- # Corresponds to the JSON property `mcpEnableRules`
4252
- # @return [Array<Google::Apis::ServiceusageV1beta1::McpEnableRule>]
4253
- attr_accessor :mcp_enable_rules
4254
-
4255
- # Output only. The resource name of the policy. Only the `default` policy is
4256
- # supported. We allow the following formats: `projects/`PROJECT_NUMBER`/
4257
- # mcpPolicies/default`, `projects/`PROJECT_ID`/mcpPolicies/default`, `folders/`
4258
- # FOLDER_ID`/mcpPolicies/default`, `organizations/`ORG_ID`/mcpPolicies/default`.
4259
- # Corresponds to the JSON property `name`
4260
- # @return [String]
4261
- attr_accessor :name
4262
-
4263
- # Output only. The time the policy was last updated.
4264
- # Corresponds to the JSON property `updateTime`
4265
- # @return [String]
4266
- attr_accessor :update_time
4267
-
4268
- def initialize(**args)
4269
- update!(**args)
4270
- end
4271
-
4272
- # Update properties of this object
4273
- def update!(**args)
4274
- @create_time = args[:create_time] if args.key?(:create_time)
4275
- @etag = args[:etag] if args.key?(:etag)
4276
- @mcp_enable_rules = args[:mcp_enable_rules] if args.key?(:mcp_enable_rules)
4277
- @name = args[:name] if args.key?(:name)
4278
- @update_time = args[:update_time] if args.key?(:update_time)
4279
- end
4280
- end
4281
-
4282
- # McpService contains the service names that are enabled for MCP.
4283
- class McpService
4284
- include Google::Apis::Core::Hashable
4285
-
4286
- # The names of the services that are enabled for MCP. Example: `services/library-
4287
- # example.googleapis.com`
4288
- # Corresponds to the JSON property `service`
4289
- # @return [String]
4290
- attr_accessor :service
4291
-
4292
- def initialize(**args)
4293
- update!(**args)
4294
- end
4295
-
4296
- # Update properties of this object
4297
- def update!(**args)
4298
- @service = args[:service] if args.key?(:service)
4299
- end
4300
- end
4301
-
4302
4214
  # Method represents a method of an API interface. New usages of this message as
4303
4215
  # an alternative to MethodDescriptorProto are strongly discouraged. This message
4304
4216
  # does not reliability preserve all information necessary to model the schema
@@ -6209,19 +6121,6 @@ module Google
6209
6121
  end
6210
6122
  end
6211
6123
 
6212
- # Metadata for the `UpdateMcpPolicy` method.
6213
- class UpdateMcpPolicyMetadata
6214
- include Google::Apis::Core::Hashable
6215
-
6216
- def initialize(**args)
6217
- update!(**args)
6218
- end
6219
-
6220
- # Update properties of this object
6221
- def update!(**args)
6222
- end
6223
- end
6224
-
6225
6124
  # Configuration controlling usage of a service.
6226
6125
  class Usage
6227
6126
  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.74.0"
19
+ GEM_VERSION = "0.75.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 = "20260210"
25
+ REVISION = "20260317"
26
26
  end
27
27
  end
28
28
  end
@@ -652,24 +652,6 @@ module Google
652
652
  include Google::Apis::Core::JsonObjectSupport
653
653
  end
654
654
 
655
- class McpEnableRule
656
- class Representation < Google::Apis::Core::JsonRepresentation; end
657
-
658
- include Google::Apis::Core::JsonObjectSupport
659
- end
660
-
661
- class McpPolicy
662
- class Representation < Google::Apis::Core::JsonRepresentation; end
663
-
664
- include Google::Apis::Core::JsonObjectSupport
665
- end
666
-
667
- class McpService
668
- class Representation < Google::Apis::Core::JsonRepresentation; end
669
-
670
- include Google::Apis::Core::JsonObjectSupport
671
- end
672
-
673
655
  class MethodProp
674
656
  class Representation < Google::Apis::Core::JsonRepresentation; end
675
657
 
@@ -928,12 +910,6 @@ module Google
928
910
  include Google::Apis::Core::JsonObjectSupport
929
911
  end
930
912
 
931
- class UpdateMcpPolicyMetadata
932
- class Representation < Google::Apis::Core::JsonRepresentation; end
933
-
934
- include Google::Apis::Core::JsonObjectSupport
935
- end
936
-
937
913
  class Usage
938
914
  class Representation < Google::Apis::Core::JsonRepresentation; end
939
915
 
@@ -2010,33 +1986,6 @@ module Google
2010
1986
  end
2011
1987
  end
2012
1988
 
2013
- class McpEnableRule
2014
- # @private
2015
- class Representation < Google::Apis::Core::JsonRepresentation
2016
- collection :mcp_services, as: 'mcpServices', class: Google::Apis::ServiceusageV1beta1::McpService, decorator: Google::Apis::ServiceusageV1beta1::McpService::Representation
2017
-
2018
- end
2019
- end
2020
-
2021
- class McpPolicy
2022
- # @private
2023
- class Representation < Google::Apis::Core::JsonRepresentation
2024
- property :create_time, as: 'createTime'
2025
- property :etag, as: 'etag'
2026
- collection :mcp_enable_rules, as: 'mcpEnableRules', class: Google::Apis::ServiceusageV1beta1::McpEnableRule, decorator: Google::Apis::ServiceusageV1beta1::McpEnableRule::Representation
2027
-
2028
- property :name, as: 'name'
2029
- property :update_time, as: 'updateTime'
2030
- end
2031
- end
2032
-
2033
- class McpService
2034
- # @private
2035
- class Representation < Google::Apis::Core::JsonRepresentation
2036
- property :service, as: 'service'
2037
- end
2038
- end
2039
-
2040
1989
  class MethodProp
2041
1990
  # @private
2042
1991
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2479,12 +2428,6 @@ module Google
2479
2428
  end
2480
2429
  end
2481
2430
 
2482
- class UpdateMcpPolicyMetadata
2483
- # @private
2484
- class Representation < Google::Apis::Core::JsonRepresentation
2485
- end
2486
- end
2487
-
2488
2431
  class Usage
2489
2432
  # @private
2490
2433
  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.74.0
4
+ version: 0.75.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.74.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-serviceusage_v1beta1/v0.75.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: