google-apis-serviceusage_v1beta1 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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2a3270e76c0c6bd3d4d41b52ff30319e6cd85b1336ffe45d656e8607f9e109d6
|
4
|
+
data.tar.gz: 17f21e64adae009dd974a31fbdb8446a1bae52a0f1a5eb87325a918287a7333c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 57a5bdc34f8dbfbea79dafa9873a5b46f5f48ecb0e0d73659decf15589c0b27aab32569d9fe1025e68271c60ecc5f83db3d73a4d7f7338cf933de5acf4954662
|
7
|
+
data.tar.gz: b303756f3b337ce7c9031e79cbf029514b33c4dd51cc98565843171c43586b732f96ea3ba879e738f1e32793921541be583e31f6596ea62fc6a0c652656a40dc
|
data/CHANGELOG.md
CHANGED
@@ -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::ServiceusageV1beta1::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::ServiceusageV1beta1::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
|
@@ -1234,6 +1244,48 @@ module Google
|
|
1234
1244
|
end
|
1235
1245
|
end
|
1236
1246
|
|
1247
|
+
# ContentSecurity defines the content security related fields of a MCP policy.
|
1248
|
+
class ContentSecurity
|
1249
|
+
include Google::Apis::Core::Hashable
|
1250
|
+
|
1251
|
+
# List of content security providers that are enabled for content scanning.
|
1252
|
+
# Corresponds to the JSON property `contentSecurityProviders`
|
1253
|
+
# @return [Array<Google::Apis::ServiceusageV1beta1::ContentSecurityProvider>]
|
1254
|
+
attr_accessor :content_security_providers
|
1255
|
+
|
1256
|
+
def initialize(**args)
|
1257
|
+
update!(**args)
|
1258
|
+
end
|
1259
|
+
|
1260
|
+
# Update properties of this object
|
1261
|
+
def update!(**args)
|
1262
|
+
@content_security_providers = args[:content_security_providers] if args.key?(:content_security_providers)
|
1263
|
+
end
|
1264
|
+
end
|
1265
|
+
|
1266
|
+
# ContentSecurityProvider contains the name of content security provider.
|
1267
|
+
class ContentSecurityProvider
|
1268
|
+
include Google::Apis::Core::Hashable
|
1269
|
+
|
1270
|
+
# Name of security service for content scanning, such as Google Cloud Model
|
1271
|
+
# Armor or supported third-party ISV solutions. If it is Google 1P service, the
|
1272
|
+
# name should be prefixed with `services/`. If it is a 3P service, the format
|
1273
|
+
# needs to be documented. The currently supported values are: - `services/
|
1274
|
+
# modelarmor.googleapis.com` for Google Cloud Model Armor.
|
1275
|
+
# Corresponds to the JSON property `name`
|
1276
|
+
# @return [String]
|
1277
|
+
attr_accessor :name
|
1278
|
+
|
1279
|
+
def initialize(**args)
|
1280
|
+
update!(**args)
|
1281
|
+
end
|
1282
|
+
|
1283
|
+
# Update properties of this object
|
1284
|
+
def update!(**args)
|
1285
|
+
@name = args[:name] if args.key?(:name)
|
1286
|
+
end
|
1287
|
+
end
|
1288
|
+
|
1237
1289
|
# `Context` defines which contexts an API requests. Example: context: rules: -
|
1238
1290
|
# selector: "*" requested: - google.rpc.context.ProjectContext - google.rpc.
|
1239
1291
|
# context.OriginContext The above specifies that all methods in the API request `
|
@@ -1887,7 +1939,11 @@ module Google
|
|
1887
1939
|
end
|
1888
1940
|
end
|
1889
1941
|
|
1890
|
-
# Enum type definition.
|
1942
|
+
# Enum type definition. New usages of this message as an alternative to
|
1943
|
+
# EnumDescriptorProto are strongly discouraged. This message does not
|
1944
|
+
# reliability preserve all information necessary to model the schema and
|
1945
|
+
# preserve semantics. Instead make use of FileDescriptorSet which preserves the
|
1946
|
+
# necessary information.
|
1891
1947
|
class Enum
|
1892
1948
|
include Google::Apis::Core::Hashable
|
1893
1949
|
|
@@ -1937,7 +1993,11 @@ module Google
|
|
1937
1993
|
end
|
1938
1994
|
end
|
1939
1995
|
|
1940
|
-
# Enum value definition.
|
1996
|
+
# Enum value definition. New usages of this message as an alternative to
|
1997
|
+
# EnumValueDescriptorProto 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.
|
1941
2001
|
class EnumValue
|
1942
2002
|
include Google::Apis::Core::Hashable
|
1943
2003
|
|
@@ -2011,7 +2071,11 @@ module Google
|
|
2011
2071
|
end
|
2012
2072
|
end
|
2013
2073
|
|
2014
|
-
# A single field of a message type.
|
2074
|
+
# A single field of a message type. New usages of this message as an alternative
|
2075
|
+
# to FieldDescriptorProto are strongly discouraged. This message does not
|
2076
|
+
# reliability preserve all information necessary to model the schema and
|
2077
|
+
# preserve semantics. Instead make use of FileDescriptorSet which preserves the
|
2078
|
+
# necessary information.
|
2015
2079
|
class Field
|
2016
2080
|
include Google::Apis::Core::Hashable
|
2017
2081
|
|
@@ -2181,7 +2245,8 @@ module Google
|
|
2181
2245
|
|
2182
2246
|
# Map of service names to renamed services. Keys are the package relative
|
2183
2247
|
# service names and values are the name to be used for the service client and
|
2184
|
-
# call options. publishing: go_settings: renamed_services: Publisher:
|
2248
|
+
# call options. Example: publishing: go_settings: renamed_services: Publisher:
|
2249
|
+
# TopicAdmin
|
2185
2250
|
# Corresponds to the JSON property `renamedServices`
|
2186
2251
|
# @return [Hash<String,String>]
|
2187
2252
|
attr_accessor :renamed_services
|
@@ -3016,8 +3081,8 @@ module Google
|
|
3016
3081
|
# @return [Array<Google::Apis::ServiceusageV1beta1::GoogleApiServiceusageV2betaEnableRule>]
|
3017
3082
|
attr_accessor :enable_rules
|
3018
3083
|
|
3019
|
-
#
|
3020
|
-
#
|
3084
|
+
# An opaque tag indicating the current version of the policy, used for
|
3085
|
+
# concurrency control.
|
3021
3086
|
# Corresponds to the JSON property `etag`
|
3022
3087
|
# @return [String]
|
3023
3088
|
attr_accessor :etag
|
@@ -3083,6 +3148,14 @@ module Google
|
|
3083
3148
|
# @return [String]
|
3084
3149
|
attr_accessor :impact_type
|
3085
3150
|
|
3151
|
+
# Output only. This field will be populated only for the `
|
3152
|
+
# DEPENDENCY_MISSING_DEPENDENCIES` impact type. Example: `services/compute.
|
3153
|
+
# googleapis.com`. Impact.detail will be in format : `missing service dependency:
|
3154
|
+
# `missing_dependency`.`
|
3155
|
+
# Corresponds to the JSON property `missingDependency`
|
3156
|
+
# @return [String]
|
3157
|
+
attr_accessor :missing_dependency
|
3158
|
+
|
3086
3159
|
def initialize(**args)
|
3087
3160
|
update!(**args)
|
3088
3161
|
end
|
@@ -3091,6 +3164,7 @@ module Google
|
|
3091
3164
|
def update!(**args)
|
3092
3165
|
@detail = args[:detail] if args.key?(:detail)
|
3093
3166
|
@impact_type = args[:impact_type] if args.key?(:impact_type)
|
3167
|
+
@missing_dependency = args[:missing_dependency] if args.key?(:missing_dependency)
|
3094
3168
|
end
|
3095
3169
|
end
|
3096
3170
|
|
@@ -3967,10 +4041,115 @@ module Google
|
|
3967
4041
|
end
|
3968
4042
|
end
|
3969
4043
|
|
3970
|
-
#
|
4044
|
+
# McpEnableRule contains MCP enablement related rules.
|
4045
|
+
class McpEnableRule
|
4046
|
+
include Google::Apis::Core::Hashable
|
4047
|
+
|
4048
|
+
# List of enabled MCP services.
|
4049
|
+
# Corresponds to the JSON property `mcpServices`
|
4050
|
+
# @return [Array<Google::Apis::ServiceusageV1beta1::McpService>]
|
4051
|
+
attr_accessor :mcp_services
|
4052
|
+
|
4053
|
+
def initialize(**args)
|
4054
|
+
update!(**args)
|
4055
|
+
end
|
4056
|
+
|
4057
|
+
# Update properties of this object
|
4058
|
+
def update!(**args)
|
4059
|
+
@mcp_services = args[:mcp_services] if args.key?(:mcp_services)
|
4060
|
+
end
|
4061
|
+
end
|
4062
|
+
|
4063
|
+
# MCP Consumer Policy is a set of rules that define MCP related policy for a
|
4064
|
+
# cloud resource hierarchy.
|
4065
|
+
class McpPolicy
|
4066
|
+
include Google::Apis::Core::Hashable
|
4067
|
+
|
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
|
+
# Output only. The time the policy was created. For singleton policies (such as
|
4074
|
+
# the `default` policy), this is the first touch of the policy.
|
4075
|
+
# Corresponds to the JSON property `createTime`
|
4076
|
+
# @return [String]
|
4077
|
+
attr_accessor :create_time
|
4078
|
+
|
4079
|
+
# An opaque tag indicating the current version of the policy, used for
|
4080
|
+
# concurrency control.
|
4081
|
+
# Corresponds to the JSON property `etag`
|
4082
|
+
# @return [String]
|
4083
|
+
attr_accessor :etag
|
4084
|
+
|
4085
|
+
# McpEnableRules contains MCP enablement related rules.
|
4086
|
+
# Corresponds to the JSON property `mcpEnableRules`
|
4087
|
+
# @return [Array<Google::Apis::ServiceusageV1beta1::McpEnableRule>]
|
4088
|
+
attr_accessor :mcp_enable_rules
|
4089
|
+
|
4090
|
+
# Output only. The resource name of the policy. Only the `default` policy is
|
4091
|
+
# supported. We allow the following formats: `projects/`PROJECT_NUMBER`/
|
4092
|
+
# mcpPolicies/default`, `projects/`PROJECT_ID`/mcpPolicies/default`, `folders/`
|
4093
|
+
# FOLDER_ID`/mcpPolicies/default`, `organizations/`ORG_ID`/mcpPolicies/default`.
|
4094
|
+
# Corresponds to the JSON property `name`
|
4095
|
+
# @return [String]
|
4096
|
+
attr_accessor :name
|
4097
|
+
|
4098
|
+
# Output only. The time the policy was last updated.
|
4099
|
+
# Corresponds to the JSON property `updateTime`
|
4100
|
+
# @return [String]
|
4101
|
+
attr_accessor :update_time
|
4102
|
+
|
4103
|
+
def initialize(**args)
|
4104
|
+
update!(**args)
|
4105
|
+
end
|
4106
|
+
|
4107
|
+
# Update properties of this object
|
4108
|
+
def update!(**args)
|
4109
|
+
@content_security = args[:content_security] if args.key?(:content_security)
|
4110
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
4111
|
+
@etag = args[:etag] if args.key?(:etag)
|
4112
|
+
@mcp_enable_rules = args[:mcp_enable_rules] if args.key?(:mcp_enable_rules)
|
4113
|
+
@name = args[:name] if args.key?(:name)
|
4114
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
4115
|
+
end
|
4116
|
+
end
|
4117
|
+
|
4118
|
+
# McpService contains the service names that are enabled for MCP.
|
4119
|
+
class McpService
|
4120
|
+
include Google::Apis::Core::Hashable
|
4121
|
+
|
4122
|
+
# The names of the services that are enabled for MCP. Example: `services/library-
|
4123
|
+
# example.googleapis.com`
|
4124
|
+
# Corresponds to the JSON property `service`
|
4125
|
+
# @return [String]
|
4126
|
+
attr_accessor :service
|
4127
|
+
|
4128
|
+
def initialize(**args)
|
4129
|
+
update!(**args)
|
4130
|
+
end
|
4131
|
+
|
4132
|
+
# Update properties of this object
|
4133
|
+
def update!(**args)
|
4134
|
+
@service = args[:service] if args.key?(:service)
|
4135
|
+
end
|
4136
|
+
end
|
4137
|
+
|
4138
|
+
# Method represents a method of an API interface. New usages of this message as
|
4139
|
+
# an alternative to MethodDescriptorProto are strongly discouraged. This message
|
4140
|
+
# does not reliability preserve all information necessary to model the schema
|
4141
|
+
# and preserve semantics. Instead make use of FileDescriptorSet which preserves
|
4142
|
+
# the necessary information.
|
3971
4143
|
class MethodProp
|
3972
4144
|
include Google::Apis::Core::Hashable
|
3973
4145
|
|
4146
|
+
# The source edition string, only valid when syntax is SYNTAX_EDITIONS. This
|
4147
|
+
# field should be ignored, instead the edition should be inherited from Api.
|
4148
|
+
# This is similar to Field and EnumValue.
|
4149
|
+
# Corresponds to the JSON property `edition`
|
4150
|
+
# @return [String]
|
4151
|
+
attr_accessor :edition
|
4152
|
+
|
3974
4153
|
# The simple name of this method.
|
3975
4154
|
# Corresponds to the JSON property `name`
|
3976
4155
|
# @return [String]
|
@@ -4003,7 +4182,8 @@ module Google
|
|
4003
4182
|
# @return [String]
|
4004
4183
|
attr_accessor :response_type_url
|
4005
4184
|
|
4006
|
-
# The source syntax of this method.
|
4185
|
+
# The source syntax of this method. This field should be ignored, instead the
|
4186
|
+
# syntax should be inherited from Api. This is similar to Field and EnumValue.
|
4007
4187
|
# Corresponds to the JSON property `syntax`
|
4008
4188
|
# @return [String]
|
4009
4189
|
attr_accessor :syntax
|
@@ -4014,6 +4194,7 @@ module Google
|
|
4014
4194
|
|
4015
4195
|
# Update properties of this object
|
4016
4196
|
def update!(**args)
|
4197
|
+
@edition = args[:edition] if args.key?(:edition)
|
4017
4198
|
@name = args[:name] if args.key?(:name)
|
4018
4199
|
@options = args[:options] if args.key?(:options)
|
4019
4200
|
@request_streaming = args[:request_streaming] if args.key?(:request_streaming)
|
@@ -4656,7 +4837,9 @@ module Google
|
|
4656
4837
|
end
|
4657
4838
|
|
4658
4839
|
# A protocol buffer option, which can be attached to a message, field,
|
4659
|
-
# enumeration, etc.
|
4840
|
+
# enumeration, etc. New usages of this message as an alternative to FileOptions,
|
4841
|
+
# MessageOptions, FieldOptions, EnumOptions, EnumValueOptions, ServiceOptions,
|
4842
|
+
# or MethodOptions are strongly discouraged.
|
4660
4843
|
class Option
|
4661
4844
|
include Google::Apis::Core::Hashable
|
4662
4845
|
|
@@ -5761,7 +5944,11 @@ module Google
|
|
5761
5944
|
end
|
5762
5945
|
end
|
5763
5946
|
|
5764
|
-
# A protocol buffer message type.
|
5947
|
+
# A protocol buffer message type. New usages of this message as an alternative
|
5948
|
+
# to DescriptorProto are strongly discouraged. This message does not reliability
|
5949
|
+
# preserve all information necessary to model the schema and preserve semantics.
|
5950
|
+
# Instead make use of FileDescriptorSet which preserves the necessary
|
5951
|
+
# information.
|
5765
5952
|
class Type
|
5766
5953
|
include Google::Apis::Core::Hashable
|
5767
5954
|
|
@@ -5845,6 +6032,19 @@ module Google
|
|
5845
6032
|
end
|
5846
6033
|
end
|
5847
6034
|
|
6035
|
+
# Metadata for the `UpdateMcpPolicy` method.
|
6036
|
+
class UpdateMcpPolicyMetadata
|
6037
|
+
include Google::Apis::Core::Hashable
|
6038
|
+
|
6039
|
+
def initialize(**args)
|
6040
|
+
update!(**args)
|
6041
|
+
end
|
6042
|
+
|
6043
|
+
# Update properties of this object
|
6044
|
+
def update!(**args)
|
6045
|
+
end
|
6046
|
+
end
|
6047
|
+
|
5848
6048
|
# Configuration controlling usage of a service.
|
5849
6049
|
class Usage
|
5850
6050
|
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.
|
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 = "
|
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
|
|
@@ -604,6 +616,24 @@ module Google
|
|
604
616
|
include Google::Apis::Core::JsonObjectSupport
|
605
617
|
end
|
606
618
|
|
619
|
+
class McpEnableRule
|
620
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
621
|
+
|
622
|
+
include Google::Apis::Core::JsonObjectSupport
|
623
|
+
end
|
624
|
+
|
625
|
+
class McpPolicy
|
626
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
627
|
+
|
628
|
+
include Google::Apis::Core::JsonObjectSupport
|
629
|
+
end
|
630
|
+
|
631
|
+
class McpService
|
632
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
633
|
+
|
634
|
+
include Google::Apis::Core::JsonObjectSupport
|
635
|
+
end
|
636
|
+
|
607
637
|
class MethodProp
|
608
638
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
609
639
|
|
@@ -856,6 +886,12 @@ module Google
|
|
856
886
|
include Google::Apis::Core::JsonObjectSupport
|
857
887
|
end
|
858
888
|
|
889
|
+
class UpdateMcpPolicyMetadata
|
890
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
891
|
+
|
892
|
+
include Google::Apis::Core::JsonObjectSupport
|
893
|
+
end
|
894
|
+
|
859
895
|
class Usage
|
860
896
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
861
897
|
|
@@ -932,6 +968,7 @@ module Google
|
|
932
968
|
class Api
|
933
969
|
# @private
|
934
970
|
class Representation < Google::Apis::Core::JsonRepresentation
|
971
|
+
property :edition, as: 'edition'
|
935
972
|
collection :methods_prop, as: 'methods', class: Google::Apis::ServiceusageV1beta1::MethodProp, decorator: Google::Apis::ServiceusageV1beta1::MethodProp::Representation
|
936
973
|
|
937
974
|
collection :mixins, as: 'mixins', class: Google::Apis::ServiceusageV1beta1::Mixin, decorator: Google::Apis::ServiceusageV1beta1::Mixin::Representation
|
@@ -1180,6 +1217,21 @@ module Google
|
|
1180
1217
|
end
|
1181
1218
|
end
|
1182
1219
|
|
1220
|
+
class ContentSecurity
|
1221
|
+
# @private
|
1222
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1223
|
+
collection :content_security_providers, as: 'contentSecurityProviders', class: Google::Apis::ServiceusageV1beta1::ContentSecurityProvider, decorator: Google::Apis::ServiceusageV1beta1::ContentSecurityProvider::Representation
|
1224
|
+
|
1225
|
+
end
|
1226
|
+
end
|
1227
|
+
|
1228
|
+
class ContentSecurityProvider
|
1229
|
+
# @private
|
1230
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1231
|
+
property :name, as: 'name'
|
1232
|
+
end
|
1233
|
+
end
|
1234
|
+
|
1183
1235
|
class Context
|
1184
1236
|
# @private
|
1185
1237
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1643,6 +1695,7 @@ module Google
|
|
1643
1695
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1644
1696
|
property :detail, as: 'detail'
|
1645
1697
|
property :impact_type, as: 'impactType'
|
1698
|
+
property :missing_dependency, as: 'missingDependency'
|
1646
1699
|
end
|
1647
1700
|
end
|
1648
1701
|
|
@@ -1863,9 +1916,39 @@ module Google
|
|
1863
1916
|
end
|
1864
1917
|
end
|
1865
1918
|
|
1919
|
+
class McpEnableRule
|
1920
|
+
# @private
|
1921
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1922
|
+
collection :mcp_services, as: 'mcpServices', class: Google::Apis::ServiceusageV1beta1::McpService, decorator: Google::Apis::ServiceusageV1beta1::McpService::Representation
|
1923
|
+
|
1924
|
+
end
|
1925
|
+
end
|
1926
|
+
|
1927
|
+
class McpPolicy
|
1928
|
+
# @private
|
1929
|
+
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
|
+
property :create_time, as: 'createTime'
|
1933
|
+
property :etag, as: 'etag'
|
1934
|
+
collection :mcp_enable_rules, as: 'mcpEnableRules', class: Google::Apis::ServiceusageV1beta1::McpEnableRule, decorator: Google::Apis::ServiceusageV1beta1::McpEnableRule::Representation
|
1935
|
+
|
1936
|
+
property :name, as: 'name'
|
1937
|
+
property :update_time, as: 'updateTime'
|
1938
|
+
end
|
1939
|
+
end
|
1940
|
+
|
1941
|
+
class McpService
|
1942
|
+
# @private
|
1943
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1944
|
+
property :service, as: 'service'
|
1945
|
+
end
|
1946
|
+
end
|
1947
|
+
|
1866
1948
|
class MethodProp
|
1867
1949
|
# @private
|
1868
1950
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1951
|
+
property :edition, as: 'edition'
|
1869
1952
|
property :name, as: 'name'
|
1870
1953
|
collection :options, as: 'options', class: Google::Apis::ServiceusageV1beta1::Option, decorator: Google::Apis::ServiceusageV1beta1::Option::Representation
|
1871
1954
|
|
@@ -2298,6 +2381,12 @@ module Google
|
|
2298
2381
|
end
|
2299
2382
|
end
|
2300
2383
|
|
2384
|
+
class UpdateMcpPolicyMetadata
|
2385
|
+
# @private
|
2386
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2387
|
+
end
|
2388
|
+
end
|
2389
|
+
|
2301
2390
|
class Usage
|
2302
2391
|
# @private
|
2303
2392
|
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.
|
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_v1beta1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-serviceusage_v1beta1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-serviceusage_v1beta1/v0.70.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:
|