google-apis-serviceusage_v1 0.69.0 → 0.70.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: '09020a3e9d723b2f7fc389c5caa0239cfdd65c6b40ebfd3a4635320e78989cb0'
4
- data.tar.gz: 842320758d184ad4cdd3f967098ae8217d97046d6755701ba9076491d98078a6
3
+ metadata.gz: 96b7278cf1f6dd0f61283f78cb639a48c0f4e9c4b9726387663fa22e16b7be17
4
+ data.tar.gz: 5700a9787d9d6afedd4726e11b8f539c45ff96bf6e1d15b7245302cec934ee77
5
5
  SHA512:
6
- metadata.gz: 4cc97cdba4128bba54dc9c9758a5d38017e8f38d58996d2b0e7b08e75f36f8650f1d436909151fc6daab7496246906b9859539ddbb926e7f2e05372d45630b84
7
- data.tar.gz: c15a87008dc6e8dd37a3d81df4bebdd4fb47ca0133d019ceb6cb22be25d840d466c4c9ad8e191e7d576f3eafc5e1e657fc1a8712be4cbb981cfe6fcc8042086f
6
+ metadata.gz: bedd4b406b044b73410dfec1797cbf4e9a451ac821066f14063e0f3abc47f35f36c78743d5294f42e2685c20dc3d99203e576c3f84c71fbf38f68fe48cd06508
7
+ data.tar.gz: de89acc776839316a154a09e9d7c1323bbb06def3178c70710ddbce00172a6940dc47dec51d017a8b13b2f56a3f302e7a531a4675e8ca90695561c80af106543
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-serviceusage_v1
2
2
 
3
+ ### v0.70.0 (2025-09-28)
4
+
5
+ * Regenerated from discovery document revision 20250919
6
+
3
7
  ### v0.69.0 (2025-07-27)
4
8
 
5
9
  * Regenerated from discovery document revision 20250619
@@ -233,10 +233,19 @@ module Google
233
233
  # which represent a concrete implementation of an interface as opposed to simply
234
234
  # a description of methods and bindings. They are also sometimes simply referred
235
235
  # to as "APIs" in other contexts, such as the name of this message itself. See
236
- # https://cloud.google.com/apis/design/glossary for detailed terminology.
236
+ # https://cloud.google.com/apis/design/glossary for detailed terminology. New
237
+ # usages of this message as an alternative to ServiceDescriptorProto are
238
+ # strongly discouraged. This message does not reliability preserve all
239
+ # information necessary to model the schema and preserve semantics. Instead make
240
+ # use of FileDescriptorSet which preserves the necessary information.
237
241
  class Api
238
242
  include Google::Apis::Core::Hashable
239
243
 
244
+ # The source edition string, only valid when syntax is SYNTAX_EDITIONS.
245
+ # Corresponds to the JSON property `edition`
246
+ # @return [String]
247
+ attr_accessor :edition
248
+
240
249
  # The methods of this interface, in unspecified order.
241
250
  # Corresponds to the JSON property `methods`
242
251
  # @return [Array<Google::Apis::ServiceusageV1::MethodProp>]
@@ -292,6 +301,7 @@ module Google
292
301
 
293
302
  # Update properties of this object
294
303
  def update!(**args)
304
+ @edition = args[:edition] if args.key?(:edition)
295
305
  @methods_prop = args[:methods_prop] if args.key?(:methods_prop)
296
306
  @mixins = args[:mixins] if args.key?(:mixins)
297
307
  @name = args[:name] if args.key?(:name)
@@ -610,7 +620,7 @@ module Google
610
620
  # @return [Hash<String,Google::Apis::ServiceusageV1::BackendRule>]
611
621
  attr_accessor :overrides_by_request_protocol
612
622
 
613
- #
623
+ # no-lint
614
624
  # Corresponds to the JSON property `pathTranslation`
615
625
  # @return [String]
616
626
  attr_accessor :path_translation
@@ -1140,6 +1150,48 @@ module Google
1140
1150
  end
1141
1151
  end
1142
1152
 
1153
+ # ContentSecurity defines the content security related fields of a MCP policy.
1154
+ class ContentSecurity
1155
+ include Google::Apis::Core::Hashable
1156
+
1157
+ # List of content security providers that are enabled for content scanning.
1158
+ # Corresponds to the JSON property `contentSecurityProviders`
1159
+ # @return [Array<Google::Apis::ServiceusageV1::ContentSecurityProvider>]
1160
+ attr_accessor :content_security_providers
1161
+
1162
+ def initialize(**args)
1163
+ update!(**args)
1164
+ end
1165
+
1166
+ # Update properties of this object
1167
+ def update!(**args)
1168
+ @content_security_providers = args[:content_security_providers] if args.key?(:content_security_providers)
1169
+ end
1170
+ end
1171
+
1172
+ # ContentSecurityProvider contains the name of content security provider.
1173
+ class ContentSecurityProvider
1174
+ include Google::Apis::Core::Hashable
1175
+
1176
+ # Name of security service for content scanning, such as Google Cloud Model
1177
+ # Armor or supported third-party ISV solutions. If it is Google 1P service, the
1178
+ # name should be prefixed with `services/`. If it is a 3P service, the format
1179
+ # needs to be documented. The currently supported values are: - `services/
1180
+ # modelarmor.googleapis.com` for Google Cloud Model Armor.
1181
+ # Corresponds to the JSON property `name`
1182
+ # @return [String]
1183
+ attr_accessor :name
1184
+
1185
+ def initialize(**args)
1186
+ update!(**args)
1187
+ end
1188
+
1189
+ # Update properties of this object
1190
+ def update!(**args)
1191
+ @name = args[:name] if args.key?(:name)
1192
+ end
1193
+ end
1194
+
1143
1195
  # `Context` defines which contexts an API requests. Example: context: rules: -
1144
1196
  # selector: "*" requested: - google.rpc.context.ProjectContext - google.rpc.
1145
1197
  # context.OriginContext The above specifies that all methods in the API request `
@@ -1809,7 +1861,11 @@ module Google
1809
1861
  end
1810
1862
  end
1811
1863
 
1812
- # Enum type definition.
1864
+ # Enum type definition. New usages of this message as an alternative to
1865
+ # EnumDescriptorProto are strongly discouraged. This message does not
1866
+ # reliability preserve all information necessary to model the schema and
1867
+ # preserve semantics. Instead make use of FileDescriptorSet which preserves the
1868
+ # necessary information.
1813
1869
  class Enum
1814
1870
  include Google::Apis::Core::Hashable
1815
1871
 
@@ -1859,7 +1915,11 @@ module Google
1859
1915
  end
1860
1916
  end
1861
1917
 
1862
- # Enum value definition.
1918
+ # Enum value definition. New usages of this message as an alternative to
1919
+ # EnumValueDescriptorProto are strongly discouraged. This message does not
1920
+ # reliability preserve all information necessary to model the schema and
1921
+ # preserve semantics. Instead make use of FileDescriptorSet which preserves the
1922
+ # necessary information.
1863
1923
  class EnumValue
1864
1924
  include Google::Apis::Core::Hashable
1865
1925
 
@@ -1933,7 +1993,11 @@ module Google
1933
1993
  end
1934
1994
  end
1935
1995
 
1936
- # A single field of a message type.
1996
+ # A single field of a message type. New usages of this message as an alternative
1997
+ # to FieldDescriptorProto are strongly discouraged. This message does not
1998
+ # reliability preserve all information necessary to model the schema and
1999
+ # preserve semantics. Instead make use of FileDescriptorSet which preserves the
2000
+ # necessary information.
1937
2001
  class Field
1938
2002
  include Google::Apis::Core::Hashable
1939
2003
 
@@ -2103,7 +2167,8 @@ module Google
2103
2167
 
2104
2168
  # Map of service names to renamed services. Keys are the package relative
2105
2169
  # service names and values are the name to be used for the service client and
2106
- # call options. publishing: go_settings: renamed_services: Publisher: TopicAdmin
2170
+ # call options. Example: publishing: go_settings: renamed_services: Publisher:
2171
+ # TopicAdmin
2107
2172
  # Corresponds to the JSON property `renamedServices`
2108
2173
  # @return [Hash<String,String>]
2109
2174
  attr_accessor :renamed_services
@@ -2938,8 +3003,8 @@ module Google
2938
3003
  # @return [Array<Google::Apis::ServiceusageV1::GoogleApiServiceusageV2betaEnableRule>]
2939
3004
  attr_accessor :enable_rules
2940
3005
 
2941
- # Output only. An opaque tag indicating the current version of the policy, used
2942
- # for concurrency control.
3006
+ # An opaque tag indicating the current version of the policy, used for
3007
+ # concurrency control.
2943
3008
  # Corresponds to the JSON property `etag`
2944
3009
  # @return [String]
2945
3010
  attr_accessor :etag
@@ -3005,6 +3070,14 @@ module Google
3005
3070
  # @return [String]
3006
3071
  attr_accessor :impact_type
3007
3072
 
3073
+ # Output only. This field will be populated only for the `
3074
+ # DEPENDENCY_MISSING_DEPENDENCIES` impact type. Example: `services/compute.
3075
+ # googleapis.com`. Impact.detail will be in format : `missing service dependency:
3076
+ # `missing_dependency`.`
3077
+ # Corresponds to the JSON property `missingDependency`
3078
+ # @return [String]
3079
+ attr_accessor :missing_dependency
3080
+
3008
3081
  def initialize(**args)
3009
3082
  update!(**args)
3010
3083
  end
@@ -3013,6 +3086,7 @@ module Google
3013
3086
  def update!(**args)
3014
3087
  @detail = args[:detail] if args.key?(:detail)
3015
3088
  @impact_type = args[:impact_type] if args.key?(:impact_type)
3089
+ @missing_dependency = args[:missing_dependency] if args.key?(:missing_dependency)
3016
3090
  end
3017
3091
  end
3018
3092
 
@@ -3732,10 +3806,115 @@ module Google
3732
3806
  end
3733
3807
  end
3734
3808
 
3735
- # Method represents a method of an API interface.
3809
+ # McpEnableRule contains MCP enablement related rules.
3810
+ class McpEnableRule
3811
+ include Google::Apis::Core::Hashable
3812
+
3813
+ # List of enabled MCP services.
3814
+ # Corresponds to the JSON property `mcpServices`
3815
+ # @return [Array<Google::Apis::ServiceusageV1::McpService>]
3816
+ attr_accessor :mcp_services
3817
+
3818
+ def initialize(**args)
3819
+ update!(**args)
3820
+ end
3821
+
3822
+ # Update properties of this object
3823
+ def update!(**args)
3824
+ @mcp_services = args[:mcp_services] if args.key?(:mcp_services)
3825
+ end
3826
+ end
3827
+
3828
+ # MCP Consumer Policy is a set of rules that define MCP related policy for a
3829
+ # cloud resource hierarchy.
3830
+ class McpPolicy
3831
+ include Google::Apis::Core::Hashable
3832
+
3833
+ # ContentSecurity defines the content security related fields of a MCP policy.
3834
+ # Corresponds to the JSON property `contentSecurity`
3835
+ # @return [Google::Apis::ServiceusageV1::ContentSecurity]
3836
+ attr_accessor :content_security
3837
+
3838
+ # Output only. The time the policy was created. For singleton policies (such as
3839
+ # the `default` policy), this is the first touch of the policy.
3840
+ # Corresponds to the JSON property `createTime`
3841
+ # @return [String]
3842
+ attr_accessor :create_time
3843
+
3844
+ # An opaque tag indicating the current version of the policy, used for
3845
+ # concurrency control.
3846
+ # Corresponds to the JSON property `etag`
3847
+ # @return [String]
3848
+ attr_accessor :etag
3849
+
3850
+ # McpEnableRules contains MCP enablement related rules.
3851
+ # Corresponds to the JSON property `mcpEnableRules`
3852
+ # @return [Array<Google::Apis::ServiceusageV1::McpEnableRule>]
3853
+ attr_accessor :mcp_enable_rules
3854
+
3855
+ # Output only. The resource name of the policy. Only the `default` policy is
3856
+ # supported. We allow the following formats: `projects/`PROJECT_NUMBER`/
3857
+ # mcpPolicies/default`, `projects/`PROJECT_ID`/mcpPolicies/default`, `folders/`
3858
+ # FOLDER_ID`/mcpPolicies/default`, `organizations/`ORG_ID`/mcpPolicies/default`.
3859
+ # Corresponds to the JSON property `name`
3860
+ # @return [String]
3861
+ attr_accessor :name
3862
+
3863
+ # Output only. The time the policy was last updated.
3864
+ # Corresponds to the JSON property `updateTime`
3865
+ # @return [String]
3866
+ attr_accessor :update_time
3867
+
3868
+ def initialize(**args)
3869
+ update!(**args)
3870
+ end
3871
+
3872
+ # Update properties of this object
3873
+ def update!(**args)
3874
+ @content_security = args[:content_security] if args.key?(:content_security)
3875
+ @create_time = args[:create_time] if args.key?(:create_time)
3876
+ @etag = args[:etag] if args.key?(:etag)
3877
+ @mcp_enable_rules = args[:mcp_enable_rules] if args.key?(:mcp_enable_rules)
3878
+ @name = args[:name] if args.key?(:name)
3879
+ @update_time = args[:update_time] if args.key?(:update_time)
3880
+ end
3881
+ end
3882
+
3883
+ # McpService contains the service names that are enabled for MCP.
3884
+ class McpService
3885
+ include Google::Apis::Core::Hashable
3886
+
3887
+ # The names of the services that are enabled for MCP. Example: `services/library-
3888
+ # example.googleapis.com`
3889
+ # Corresponds to the JSON property `service`
3890
+ # @return [String]
3891
+ attr_accessor :service
3892
+
3893
+ def initialize(**args)
3894
+ update!(**args)
3895
+ end
3896
+
3897
+ # Update properties of this object
3898
+ def update!(**args)
3899
+ @service = args[:service] if args.key?(:service)
3900
+ end
3901
+ end
3902
+
3903
+ # Method represents a method of an API interface. New usages of this message as
3904
+ # an alternative to MethodDescriptorProto are strongly discouraged. This message
3905
+ # does not reliability preserve all information necessary to model the schema
3906
+ # and preserve semantics. Instead make use of FileDescriptorSet which preserves
3907
+ # the necessary information.
3736
3908
  class MethodProp
3737
3909
  include Google::Apis::Core::Hashable
3738
3910
 
3911
+ # The source edition string, only valid when syntax is SYNTAX_EDITIONS. This
3912
+ # field should be ignored, instead the edition should be inherited from Api.
3913
+ # This is similar to Field and EnumValue.
3914
+ # Corresponds to the JSON property `edition`
3915
+ # @return [String]
3916
+ attr_accessor :edition
3917
+
3739
3918
  # The simple name of this method.
3740
3919
  # Corresponds to the JSON property `name`
3741
3920
  # @return [String]
@@ -3768,7 +3947,8 @@ module Google
3768
3947
  # @return [String]
3769
3948
  attr_accessor :response_type_url
3770
3949
 
3771
- # The source syntax of this method.
3950
+ # The source syntax of this method. This field should be ignored, instead the
3951
+ # syntax should be inherited from Api. This is similar to Field and EnumValue.
3772
3952
  # Corresponds to the JSON property `syntax`
3773
3953
  # @return [String]
3774
3954
  attr_accessor :syntax
@@ -3779,6 +3959,7 @@ module Google
3779
3959
 
3780
3960
  # Update properties of this object
3781
3961
  def update!(**args)
3962
+ @edition = args[:edition] if args.key?(:edition)
3782
3963
  @name = args[:name] if args.key?(:name)
3783
3964
  @options = args[:options] if args.key?(:options)
3784
3965
  @request_streaming = args[:request_streaming] if args.key?(:request_streaming)
@@ -4421,7 +4602,9 @@ module Google
4421
4602
  end
4422
4603
 
4423
4604
  # A protocol buffer option, which can be attached to a message, field,
4424
- # enumeration, etc.
4605
+ # enumeration, etc. New usages of this message as an alternative to FileOptions,
4606
+ # MessageOptions, FieldOptions, EnumOptions, EnumValueOptions, ServiceOptions,
4607
+ # or MethodOptions are strongly discouraged.
4425
4608
  class Option
4426
4609
  include Google::Apis::Core::Hashable
4427
4610
 
@@ -5160,7 +5343,11 @@ module Google
5160
5343
  end
5161
5344
  end
5162
5345
 
5163
- # A protocol buffer message type.
5346
+ # A protocol buffer message type. New usages of this message as an alternative
5347
+ # to DescriptorProto are strongly discouraged. This message does not reliability
5348
+ # preserve all information necessary to model the schema and preserve semantics.
5349
+ # Instead make use of FileDescriptorSet which preserves the necessary
5350
+ # information.
5164
5351
  class Type
5165
5352
  include Google::Apis::Core::Hashable
5166
5353
 
@@ -5244,6 +5431,19 @@ module Google
5244
5431
  end
5245
5432
  end
5246
5433
 
5434
+ # Metadata for the `UpdateMcpPolicy` method.
5435
+ class UpdateMcpPolicyMetadata
5436
+ include Google::Apis::Core::Hashable
5437
+
5438
+ def initialize(**args)
5439
+ update!(**args)
5440
+ end
5441
+
5442
+ # Update properties of this object
5443
+ def update!(**args)
5444
+ end
5445
+ end
5446
+
5247
5447
  # Configuration controlling usage of a service.
5248
5448
  class Usage
5249
5449
  include Google::Apis::Core::Hashable
@@ -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.69.0"
19
+ GEM_VERSION = "0.70.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 = "20250619"
25
+ REVISION = "20250919"
26
26
  end
27
27
  end
28
28
  end
@@ -196,6 +196,18 @@ module Google
196
196
  include Google::Apis::Core::JsonObjectSupport
197
197
  end
198
198
 
199
+ class ContentSecurity
200
+ class Representation < Google::Apis::Core::JsonRepresentation; end
201
+
202
+ include Google::Apis::Core::JsonObjectSupport
203
+ end
204
+
205
+ class ContentSecurityProvider
206
+ class Representation < Google::Apis::Core::JsonRepresentation; end
207
+
208
+ include Google::Apis::Core::JsonObjectSupport
209
+ end
210
+
199
211
  class Context
200
212
  class Representation < Google::Apis::Core::JsonRepresentation; end
201
213
 
@@ -574,6 +586,24 @@ module Google
574
586
  include Google::Apis::Core::JsonObjectSupport
575
587
  end
576
588
 
589
+ class McpEnableRule
590
+ class Representation < Google::Apis::Core::JsonRepresentation; end
591
+
592
+ include Google::Apis::Core::JsonObjectSupport
593
+ end
594
+
595
+ class McpPolicy
596
+ class Representation < Google::Apis::Core::JsonRepresentation; end
597
+
598
+ include Google::Apis::Core::JsonObjectSupport
599
+ end
600
+
601
+ class McpService
602
+ class Representation < Google::Apis::Core::JsonRepresentation; end
603
+
604
+ include Google::Apis::Core::JsonObjectSupport
605
+ end
606
+
577
607
  class MethodProp
578
608
  class Representation < Google::Apis::Core::JsonRepresentation; end
579
609
 
@@ -790,6 +820,12 @@ module Google
790
820
  include Google::Apis::Core::JsonObjectSupport
791
821
  end
792
822
 
823
+ class UpdateMcpPolicyMetadata
824
+ class Representation < Google::Apis::Core::JsonRepresentation; end
825
+
826
+ include Google::Apis::Core::JsonObjectSupport
827
+ end
828
+
793
829
  class Usage
794
830
  class Representation < Google::Apis::Core::JsonRepresentation; end
795
831
 
@@ -866,6 +902,7 @@ module Google
866
902
  class Api
867
903
  # @private
868
904
  class Representation < Google::Apis::Core::JsonRepresentation
905
+ property :edition, as: 'edition'
869
906
  collection :methods_prop, as: 'methods', class: Google::Apis::ServiceusageV1::MethodProp, decorator: Google::Apis::ServiceusageV1::MethodProp::Representation
870
907
 
871
908
  collection :mixins, as: 'mixins', class: Google::Apis::ServiceusageV1::Mixin, decorator: Google::Apis::ServiceusageV1::Mixin::Representation
@@ -1100,6 +1137,21 @@ module Google
1100
1137
  end
1101
1138
  end
1102
1139
 
1140
+ class ContentSecurity
1141
+ # @private
1142
+ class Representation < Google::Apis::Core::JsonRepresentation
1143
+ collection :content_security_providers, as: 'contentSecurityProviders', class: Google::Apis::ServiceusageV1::ContentSecurityProvider, decorator: Google::Apis::ServiceusageV1::ContentSecurityProvider::Representation
1144
+
1145
+ end
1146
+ end
1147
+
1148
+ class ContentSecurityProvider
1149
+ # @private
1150
+ class Representation < Google::Apis::Core::JsonRepresentation
1151
+ property :name, as: 'name'
1152
+ end
1153
+ end
1154
+
1103
1155
  class Context
1104
1156
  # @private
1105
1157
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1565,6 +1617,7 @@ module Google
1565
1617
  class Representation < Google::Apis::Core::JsonRepresentation
1566
1618
  property :detail, as: 'detail'
1567
1619
  property :impact_type, as: 'impactType'
1620
+ property :missing_dependency, as: 'missingDependency'
1568
1621
  end
1569
1622
  end
1570
1623
 
@@ -1738,9 +1791,39 @@ module Google
1738
1791
  end
1739
1792
  end
1740
1793
 
1794
+ class McpEnableRule
1795
+ # @private
1796
+ class Representation < Google::Apis::Core::JsonRepresentation
1797
+ collection :mcp_services, as: 'mcpServices', class: Google::Apis::ServiceusageV1::McpService, decorator: Google::Apis::ServiceusageV1::McpService::Representation
1798
+
1799
+ end
1800
+ end
1801
+
1802
+ class McpPolicy
1803
+ # @private
1804
+ class Representation < Google::Apis::Core::JsonRepresentation
1805
+ property :content_security, as: 'contentSecurity', class: Google::Apis::ServiceusageV1::ContentSecurity, decorator: Google::Apis::ServiceusageV1::ContentSecurity::Representation
1806
+
1807
+ property :create_time, as: 'createTime'
1808
+ property :etag, as: 'etag'
1809
+ collection :mcp_enable_rules, as: 'mcpEnableRules', class: Google::Apis::ServiceusageV1::McpEnableRule, decorator: Google::Apis::ServiceusageV1::McpEnableRule::Representation
1810
+
1811
+ property :name, as: 'name'
1812
+ property :update_time, as: 'updateTime'
1813
+ end
1814
+ end
1815
+
1816
+ class McpService
1817
+ # @private
1818
+ class Representation < Google::Apis::Core::JsonRepresentation
1819
+ property :service, as: 'service'
1820
+ end
1821
+ end
1822
+
1741
1823
  class MethodProp
1742
1824
  # @private
1743
1825
  class Representation < Google::Apis::Core::JsonRepresentation
1826
+ property :edition, as: 'edition'
1744
1827
  property :name, as: 'name'
1745
1828
  collection :options, as: 'options', class: Google::Apis::ServiceusageV1::Option, decorator: Google::Apis::ServiceusageV1::Option::Representation
1746
1829
 
@@ -2092,6 +2175,12 @@ module Google
2092
2175
  end
2093
2176
  end
2094
2177
 
2178
+ class UpdateMcpPolicyMetadata
2179
+ # @private
2180
+ class Representation < Google::Apis::Core::JsonRepresentation
2181
+ end
2182
+ end
2183
+
2095
2184
  class Usage
2096
2185
  # @private
2097
2186
  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.69.0
4
+ version: 0.70.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.69.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-serviceusage_v1/v0.70.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: