google-apis-serviceusage_v1 0.69.0 → 0.71.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: 9e63211ffe287cda9eddf39d38d9859cff11d37570e26daf7eea2f2c8129a9db
|
|
4
|
+
data.tar.gz: a60fda8c7d65cc73f50fb74318de1e4c6bc65bfc52e349e41f39db2f7cb90660
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8317d881c44dc81ef53224e1c9049cc133a126fc04c6f2e9f139e5f23a826f18df789c7a0b0272584185a0b4e8af1e0b16a5c22ce0db30ddf7751eb8b9a5190c
|
|
7
|
+
data.tar.gz: bdb8d98b493051dfe037777a6baa6dc0f689a9c6593ef2c32bccc00337f69be5c65d8a9fbb02b4904717c8aabbc5016c4c11b709cc5db33bd7301be08553072f
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-serviceusage_v1
|
|
2
2
|
|
|
3
|
+
### v0.71.0 (2025-10-26)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20251021
|
|
6
|
+
|
|
7
|
+
### v0.70.0 (2025-09-28)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20250919
|
|
10
|
+
|
|
3
11
|
### v0.69.0 (2025-07-27)
|
|
4
12
|
|
|
5
13
|
* 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,78 @@ 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
|
+
# Content Security Policy contains the content security related policy of a
|
|
1173
|
+
# resource.
|
|
1174
|
+
class ContentSecurityPolicy
|
|
1175
|
+
include Google::Apis::Core::Hashable
|
|
1176
|
+
|
|
1177
|
+
# ContentSecurity defines the content security related fields of a MCP policy.
|
|
1178
|
+
# Corresponds to the JSON property `mcpContentSecurity`
|
|
1179
|
+
# @return [Google::Apis::ServiceusageV1::ContentSecurity]
|
|
1180
|
+
attr_accessor :mcp_content_security
|
|
1181
|
+
|
|
1182
|
+
# Output only. The resource name of the policy. Only the `default` policy is
|
|
1183
|
+
# supported. We allow the following formats: `projects/`PROJECT_NUMBER`/
|
|
1184
|
+
# contentSecurityPolicies/default`, `projects/`PROJECT_ID`/
|
|
1185
|
+
# contentSecurityPolicies/default`, We only support project level content
|
|
1186
|
+
# security policy for now.
|
|
1187
|
+
# Corresponds to the JSON property `name`
|
|
1188
|
+
# @return [String]
|
|
1189
|
+
attr_accessor :name
|
|
1190
|
+
|
|
1191
|
+
def initialize(**args)
|
|
1192
|
+
update!(**args)
|
|
1193
|
+
end
|
|
1194
|
+
|
|
1195
|
+
# Update properties of this object
|
|
1196
|
+
def update!(**args)
|
|
1197
|
+
@mcp_content_security = args[:mcp_content_security] if args.key?(:mcp_content_security)
|
|
1198
|
+
@name = args[:name] if args.key?(:name)
|
|
1199
|
+
end
|
|
1200
|
+
end
|
|
1201
|
+
|
|
1202
|
+
# ContentSecurityProvider contains the name of content security provider.
|
|
1203
|
+
class ContentSecurityProvider
|
|
1204
|
+
include Google::Apis::Core::Hashable
|
|
1205
|
+
|
|
1206
|
+
# Name of security service for content scanning, such as Google Cloud Model
|
|
1207
|
+
# Armor or supported third-party ISV solutions. If it is Google 1P service, the
|
|
1208
|
+
# name should be prefixed with `services/`. If it is a 3P service, the format
|
|
1209
|
+
# needs to be documented. The currently supported values are: - `services/
|
|
1210
|
+
# modelarmor.googleapis.com` for Google Cloud Model Armor.
|
|
1211
|
+
# Corresponds to the JSON property `name`
|
|
1212
|
+
# @return [String]
|
|
1213
|
+
attr_accessor :name
|
|
1214
|
+
|
|
1215
|
+
def initialize(**args)
|
|
1216
|
+
update!(**args)
|
|
1217
|
+
end
|
|
1218
|
+
|
|
1219
|
+
# Update properties of this object
|
|
1220
|
+
def update!(**args)
|
|
1221
|
+
@name = args[:name] if args.key?(:name)
|
|
1222
|
+
end
|
|
1223
|
+
end
|
|
1224
|
+
|
|
1143
1225
|
# `Context` defines which contexts an API requests. Example: context: rules: -
|
|
1144
1226
|
# selector: "*" requested: - google.rpc.context.ProjectContext - google.rpc.
|
|
1145
1227
|
# context.OriginContext The above specifies that all methods in the API request `
|
|
@@ -1809,7 +1891,11 @@ module Google
|
|
|
1809
1891
|
end
|
|
1810
1892
|
end
|
|
1811
1893
|
|
|
1812
|
-
# Enum type definition.
|
|
1894
|
+
# Enum type definition. New usages of this message as an alternative to
|
|
1895
|
+
# EnumDescriptorProto are strongly discouraged. This message does not
|
|
1896
|
+
# reliability preserve all information necessary to model the schema and
|
|
1897
|
+
# preserve semantics. Instead make use of FileDescriptorSet which preserves the
|
|
1898
|
+
# necessary information.
|
|
1813
1899
|
class Enum
|
|
1814
1900
|
include Google::Apis::Core::Hashable
|
|
1815
1901
|
|
|
@@ -1859,7 +1945,11 @@ module Google
|
|
|
1859
1945
|
end
|
|
1860
1946
|
end
|
|
1861
1947
|
|
|
1862
|
-
# Enum value definition.
|
|
1948
|
+
# Enum value definition. New usages of this message as an alternative to
|
|
1949
|
+
# EnumValueDescriptorProto are strongly discouraged. This message does not
|
|
1950
|
+
# reliability preserve all information necessary to model the schema and
|
|
1951
|
+
# preserve semantics. Instead make use of FileDescriptorSet which preserves the
|
|
1952
|
+
# necessary information.
|
|
1863
1953
|
class EnumValue
|
|
1864
1954
|
include Google::Apis::Core::Hashable
|
|
1865
1955
|
|
|
@@ -1933,7 +2023,11 @@ module Google
|
|
|
1933
2023
|
end
|
|
1934
2024
|
end
|
|
1935
2025
|
|
|
1936
|
-
# A single field of a message type.
|
|
2026
|
+
# A single field of a message type. New usages of this message as an alternative
|
|
2027
|
+
# to FieldDescriptorProto are strongly discouraged. This message does not
|
|
2028
|
+
# reliability preserve all information necessary to model the schema and
|
|
2029
|
+
# preserve semantics. Instead make use of FileDescriptorSet which preserves the
|
|
2030
|
+
# necessary information.
|
|
1937
2031
|
class Field
|
|
1938
2032
|
include Google::Apis::Core::Hashable
|
|
1939
2033
|
|
|
@@ -2103,7 +2197,8 @@ module Google
|
|
|
2103
2197
|
|
|
2104
2198
|
# Map of service names to renamed services. Keys are the package relative
|
|
2105
2199
|
# service names and values are the name to be used for the service client and
|
|
2106
|
-
# call options. publishing: go_settings: renamed_services: Publisher:
|
|
2200
|
+
# call options. Example: publishing: go_settings: renamed_services: Publisher:
|
|
2201
|
+
# TopicAdmin
|
|
2107
2202
|
# Corresponds to the JSON property `renamedServices`
|
|
2108
2203
|
# @return [Hash<String,String>]
|
|
2109
2204
|
attr_accessor :renamed_services
|
|
@@ -2917,14 +3012,6 @@ module Google
|
|
|
2917
3012
|
class GoogleApiServiceusageV2betaConsumerPolicy
|
|
2918
3013
|
include Google::Apis::Core::Hashable
|
|
2919
3014
|
|
|
2920
|
-
# Optional. Annotations is an unstructured key-value map stored with a policy
|
|
2921
|
-
# that may be set by external tools to store and retrieve arbitrary metadata.
|
|
2922
|
-
# They are not queryable and should be preserved when modifying objects. [AIP-
|
|
2923
|
-
# 128](https://google.aip.dev/128#annotations)
|
|
2924
|
-
# Corresponds to the JSON property `annotations`
|
|
2925
|
-
# @return [Hash<String,String>]
|
|
2926
|
-
attr_accessor :annotations
|
|
2927
|
-
|
|
2928
3015
|
# Output only. The time the policy was created. For singleton policies, this is
|
|
2929
3016
|
# the first touch of the policy.
|
|
2930
3017
|
# Corresponds to the JSON property `createTime`
|
|
@@ -2938,8 +3025,8 @@ module Google
|
|
|
2938
3025
|
# @return [Array<Google::Apis::ServiceusageV1::GoogleApiServiceusageV2betaEnableRule>]
|
|
2939
3026
|
attr_accessor :enable_rules
|
|
2940
3027
|
|
|
2941
|
-
#
|
|
2942
|
-
#
|
|
3028
|
+
# An opaque tag indicating the current version of the policy, used for
|
|
3029
|
+
# concurrency control.
|
|
2943
3030
|
# Corresponds to the JSON property `etag`
|
|
2944
3031
|
# @return [String]
|
|
2945
3032
|
attr_accessor :etag
|
|
@@ -2962,7 +3049,6 @@ module Google
|
|
|
2962
3049
|
|
|
2963
3050
|
# Update properties of this object
|
|
2964
3051
|
def update!(**args)
|
|
2965
|
-
@annotations = args[:annotations] if args.key?(:annotations)
|
|
2966
3052
|
@create_time = args[:create_time] if args.key?(:create_time)
|
|
2967
3053
|
@enable_rules = args[:enable_rules] if args.key?(:enable_rules)
|
|
2968
3054
|
@etag = args[:etag] if args.key?(:etag)
|
|
@@ -3005,6 +3091,14 @@ module Google
|
|
|
3005
3091
|
# @return [String]
|
|
3006
3092
|
attr_accessor :impact_type
|
|
3007
3093
|
|
|
3094
|
+
# Output only. This field will be populated only for the `
|
|
3095
|
+
# DEPENDENCY_MISSING_DEPENDENCIES` impact type. Example: `services/compute.
|
|
3096
|
+
# googleapis.com`. Impact.detail will be in format : `missing service dependency:
|
|
3097
|
+
# `missing_dependency`.`
|
|
3098
|
+
# Corresponds to the JSON property `missingDependency`
|
|
3099
|
+
# @return [String]
|
|
3100
|
+
attr_accessor :missing_dependency
|
|
3101
|
+
|
|
3008
3102
|
def initialize(**args)
|
|
3009
3103
|
update!(**args)
|
|
3010
3104
|
end
|
|
@@ -3013,6 +3107,7 @@ module Google
|
|
|
3013
3107
|
def update!(**args)
|
|
3014
3108
|
@detail = args[:detail] if args.key?(:detail)
|
|
3015
3109
|
@impact_type = args[:impact_type] if args.key?(:impact_type)
|
|
3110
|
+
@missing_dependency = args[:missing_dependency] if args.key?(:missing_dependency)
|
|
3016
3111
|
end
|
|
3017
3112
|
end
|
|
3018
3113
|
|
|
@@ -3539,6 +3634,13 @@ module Google
|
|
|
3539
3634
|
# @return [Array<Google::Apis::ServiceusageV1::Operation>]
|
|
3540
3635
|
attr_accessor :operations
|
|
3541
3636
|
|
|
3637
|
+
# Unordered list. Unreachable resources. Populated when the request sets `
|
|
3638
|
+
# ListOperationsRequest.return_partial_success` and reads across collections e.g.
|
|
3639
|
+
# when attempting to list all resources across all supported locations.
|
|
3640
|
+
# Corresponds to the JSON property `unreachable`
|
|
3641
|
+
# @return [Array<String>]
|
|
3642
|
+
attr_accessor :unreachable
|
|
3643
|
+
|
|
3542
3644
|
def initialize(**args)
|
|
3543
3645
|
update!(**args)
|
|
3544
3646
|
end
|
|
@@ -3547,6 +3649,7 @@ module Google
|
|
|
3547
3649
|
def update!(**args)
|
|
3548
3650
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
|
3549
3651
|
@operations = args[:operations] if args.key?(:operations)
|
|
3652
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
|
3550
3653
|
end
|
|
3551
3654
|
end
|
|
3552
3655
|
|
|
@@ -3732,10 +3835,109 @@ module Google
|
|
|
3732
3835
|
end
|
|
3733
3836
|
end
|
|
3734
3837
|
|
|
3735
|
-
#
|
|
3838
|
+
# McpEnableRule contains MCP enablement related rules.
|
|
3839
|
+
class McpEnableRule
|
|
3840
|
+
include Google::Apis::Core::Hashable
|
|
3841
|
+
|
|
3842
|
+
# List of enabled MCP services.
|
|
3843
|
+
# Corresponds to the JSON property `mcpServices`
|
|
3844
|
+
# @return [Array<Google::Apis::ServiceusageV1::McpService>]
|
|
3845
|
+
attr_accessor :mcp_services
|
|
3846
|
+
|
|
3847
|
+
def initialize(**args)
|
|
3848
|
+
update!(**args)
|
|
3849
|
+
end
|
|
3850
|
+
|
|
3851
|
+
# Update properties of this object
|
|
3852
|
+
def update!(**args)
|
|
3853
|
+
@mcp_services = args[:mcp_services] if args.key?(:mcp_services)
|
|
3854
|
+
end
|
|
3855
|
+
end
|
|
3856
|
+
|
|
3857
|
+
# MCP Consumer Policy is a set of rules that define MCP related policy for a
|
|
3858
|
+
# cloud resource hierarchy.
|
|
3859
|
+
class McpPolicy
|
|
3860
|
+
include Google::Apis::Core::Hashable
|
|
3861
|
+
|
|
3862
|
+
# Output only. The time the policy was created. For singleton policies (such as
|
|
3863
|
+
# the `default` policy), this is the first touch of the policy.
|
|
3864
|
+
# Corresponds to the JSON property `createTime`
|
|
3865
|
+
# @return [String]
|
|
3866
|
+
attr_accessor :create_time
|
|
3867
|
+
|
|
3868
|
+
# An opaque tag indicating the current version of the policy, used for
|
|
3869
|
+
# concurrency control.
|
|
3870
|
+
# Corresponds to the JSON property `etag`
|
|
3871
|
+
# @return [String]
|
|
3872
|
+
attr_accessor :etag
|
|
3873
|
+
|
|
3874
|
+
# McpEnableRules contains MCP enablement related rules.
|
|
3875
|
+
# Corresponds to the JSON property `mcpEnableRules`
|
|
3876
|
+
# @return [Array<Google::Apis::ServiceusageV1::McpEnableRule>]
|
|
3877
|
+
attr_accessor :mcp_enable_rules
|
|
3878
|
+
|
|
3879
|
+
# Output only. The resource name of the policy. Only the `default` policy is
|
|
3880
|
+
# supported. We allow the following formats: `projects/`PROJECT_NUMBER`/
|
|
3881
|
+
# mcpPolicies/default`, `projects/`PROJECT_ID`/mcpPolicies/default`, `folders/`
|
|
3882
|
+
# FOLDER_ID`/mcpPolicies/default`, `organizations/`ORG_ID`/mcpPolicies/default`.
|
|
3883
|
+
# Corresponds to the JSON property `name`
|
|
3884
|
+
# @return [String]
|
|
3885
|
+
attr_accessor :name
|
|
3886
|
+
|
|
3887
|
+
# Output only. The time the policy was last updated.
|
|
3888
|
+
# Corresponds to the JSON property `updateTime`
|
|
3889
|
+
# @return [String]
|
|
3890
|
+
attr_accessor :update_time
|
|
3891
|
+
|
|
3892
|
+
def initialize(**args)
|
|
3893
|
+
update!(**args)
|
|
3894
|
+
end
|
|
3895
|
+
|
|
3896
|
+
# Update properties of this object
|
|
3897
|
+
def update!(**args)
|
|
3898
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
|
3899
|
+
@etag = args[:etag] if args.key?(:etag)
|
|
3900
|
+
@mcp_enable_rules = args[:mcp_enable_rules] if args.key?(:mcp_enable_rules)
|
|
3901
|
+
@name = args[:name] if args.key?(:name)
|
|
3902
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
|
3903
|
+
end
|
|
3904
|
+
end
|
|
3905
|
+
|
|
3906
|
+
# McpService contains the service names that are enabled for MCP.
|
|
3907
|
+
class McpService
|
|
3908
|
+
include Google::Apis::Core::Hashable
|
|
3909
|
+
|
|
3910
|
+
# The names of the services that are enabled for MCP. Example: `services/library-
|
|
3911
|
+
# example.googleapis.com`
|
|
3912
|
+
# Corresponds to the JSON property `service`
|
|
3913
|
+
# @return [String]
|
|
3914
|
+
attr_accessor :service
|
|
3915
|
+
|
|
3916
|
+
def initialize(**args)
|
|
3917
|
+
update!(**args)
|
|
3918
|
+
end
|
|
3919
|
+
|
|
3920
|
+
# Update properties of this object
|
|
3921
|
+
def update!(**args)
|
|
3922
|
+
@service = args[:service] if args.key?(:service)
|
|
3923
|
+
end
|
|
3924
|
+
end
|
|
3925
|
+
|
|
3926
|
+
# Method represents a method of an API interface. New usages of this message as
|
|
3927
|
+
# an alternative to MethodDescriptorProto are strongly discouraged. This message
|
|
3928
|
+
# does not reliability preserve all information necessary to model the schema
|
|
3929
|
+
# and preserve semantics. Instead make use of FileDescriptorSet which preserves
|
|
3930
|
+
# the necessary information.
|
|
3736
3931
|
class MethodProp
|
|
3737
3932
|
include Google::Apis::Core::Hashable
|
|
3738
3933
|
|
|
3934
|
+
# The source edition string, only valid when syntax is SYNTAX_EDITIONS. This
|
|
3935
|
+
# field should be ignored, instead the edition should be inherited from Api.
|
|
3936
|
+
# This is similar to Field and EnumValue.
|
|
3937
|
+
# Corresponds to the JSON property `edition`
|
|
3938
|
+
# @return [String]
|
|
3939
|
+
attr_accessor :edition
|
|
3940
|
+
|
|
3739
3941
|
# The simple name of this method.
|
|
3740
3942
|
# Corresponds to the JSON property `name`
|
|
3741
3943
|
# @return [String]
|
|
@@ -3768,7 +3970,8 @@ module Google
|
|
|
3768
3970
|
# @return [String]
|
|
3769
3971
|
attr_accessor :response_type_url
|
|
3770
3972
|
|
|
3771
|
-
# The source syntax of this method.
|
|
3973
|
+
# The source syntax of this method. This field should be ignored, instead the
|
|
3974
|
+
# syntax should be inherited from Api. This is similar to Field and EnumValue.
|
|
3772
3975
|
# Corresponds to the JSON property `syntax`
|
|
3773
3976
|
# @return [String]
|
|
3774
3977
|
attr_accessor :syntax
|
|
@@ -3779,6 +3982,7 @@ module Google
|
|
|
3779
3982
|
|
|
3780
3983
|
# Update properties of this object
|
|
3781
3984
|
def update!(**args)
|
|
3985
|
+
@edition = args[:edition] if args.key?(:edition)
|
|
3782
3986
|
@name = args[:name] if args.key?(:name)
|
|
3783
3987
|
@options = args[:options] if args.key?(:options)
|
|
3784
3988
|
@request_streaming = args[:request_streaming] if args.key?(:request_streaming)
|
|
@@ -4421,7 +4625,9 @@ module Google
|
|
|
4421
4625
|
end
|
|
4422
4626
|
|
|
4423
4627
|
# A protocol buffer option, which can be attached to a message, field,
|
|
4424
|
-
# enumeration, etc.
|
|
4628
|
+
# enumeration, etc. New usages of this message as an alternative to FileOptions,
|
|
4629
|
+
# MessageOptions, FieldOptions, EnumOptions, EnumValueOptions, ServiceOptions,
|
|
4630
|
+
# or MethodOptions are strongly discouraged.
|
|
4425
4631
|
class Option
|
|
4426
4632
|
include Google::Apis::Core::Hashable
|
|
4427
4633
|
|
|
@@ -5160,7 +5366,11 @@ module Google
|
|
|
5160
5366
|
end
|
|
5161
5367
|
end
|
|
5162
5368
|
|
|
5163
|
-
# A protocol buffer message type.
|
|
5369
|
+
# A protocol buffer message type. New usages of this message as an alternative
|
|
5370
|
+
# to DescriptorProto are strongly discouraged. This message does not reliability
|
|
5371
|
+
# preserve all information necessary to model the schema and preserve semantics.
|
|
5372
|
+
# Instead make use of FileDescriptorSet which preserves the necessary
|
|
5373
|
+
# information.
|
|
5164
5374
|
class Type
|
|
5165
5375
|
include Google::Apis::Core::Hashable
|
|
5166
5376
|
|
|
@@ -5244,6 +5454,32 @@ module Google
|
|
|
5244
5454
|
end
|
|
5245
5455
|
end
|
|
5246
5456
|
|
|
5457
|
+
# Metadata for the `UpdateContentSecurityPolicy` method.
|
|
5458
|
+
class UpdateContentSecurityPolicyMetadata
|
|
5459
|
+
include Google::Apis::Core::Hashable
|
|
5460
|
+
|
|
5461
|
+
def initialize(**args)
|
|
5462
|
+
update!(**args)
|
|
5463
|
+
end
|
|
5464
|
+
|
|
5465
|
+
# Update properties of this object
|
|
5466
|
+
def update!(**args)
|
|
5467
|
+
end
|
|
5468
|
+
end
|
|
5469
|
+
|
|
5470
|
+
# Metadata for the `UpdateMcpPolicy` method.
|
|
5471
|
+
class UpdateMcpPolicyMetadata
|
|
5472
|
+
include Google::Apis::Core::Hashable
|
|
5473
|
+
|
|
5474
|
+
def initialize(**args)
|
|
5475
|
+
update!(**args)
|
|
5476
|
+
end
|
|
5477
|
+
|
|
5478
|
+
# Update properties of this object
|
|
5479
|
+
def update!(**args)
|
|
5480
|
+
end
|
|
5481
|
+
end
|
|
5482
|
+
|
|
5247
5483
|
# Configuration controlling usage of a service.
|
|
5248
5484
|
class Usage
|
|
5249
5485
|
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.
|
|
19
|
+
GEM_VERSION = "0.71.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 = "20251021"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -196,6 +196,24 @@ 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 ContentSecurityPolicy
|
|
206
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
207
|
+
|
|
208
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
209
|
+
end
|
|
210
|
+
|
|
211
|
+
class ContentSecurityProvider
|
|
212
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
213
|
+
|
|
214
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
215
|
+
end
|
|
216
|
+
|
|
199
217
|
class Context
|
|
200
218
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
201
219
|
|
|
@@ -574,6 +592,24 @@ module Google
|
|
|
574
592
|
include Google::Apis::Core::JsonObjectSupport
|
|
575
593
|
end
|
|
576
594
|
|
|
595
|
+
class McpEnableRule
|
|
596
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
597
|
+
|
|
598
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
599
|
+
end
|
|
600
|
+
|
|
601
|
+
class McpPolicy
|
|
602
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
603
|
+
|
|
604
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
605
|
+
end
|
|
606
|
+
|
|
607
|
+
class McpService
|
|
608
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
609
|
+
|
|
610
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
611
|
+
end
|
|
612
|
+
|
|
577
613
|
class MethodProp
|
|
578
614
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
579
615
|
|
|
@@ -790,6 +826,18 @@ module Google
|
|
|
790
826
|
include Google::Apis::Core::JsonObjectSupport
|
|
791
827
|
end
|
|
792
828
|
|
|
829
|
+
class UpdateContentSecurityPolicyMetadata
|
|
830
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
831
|
+
|
|
832
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
833
|
+
end
|
|
834
|
+
|
|
835
|
+
class UpdateMcpPolicyMetadata
|
|
836
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
837
|
+
|
|
838
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
839
|
+
end
|
|
840
|
+
|
|
793
841
|
class Usage
|
|
794
842
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
795
843
|
|
|
@@ -866,6 +914,7 @@ module Google
|
|
|
866
914
|
class Api
|
|
867
915
|
# @private
|
|
868
916
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
917
|
+
property :edition, as: 'edition'
|
|
869
918
|
collection :methods_prop, as: 'methods', class: Google::Apis::ServiceusageV1::MethodProp, decorator: Google::Apis::ServiceusageV1::MethodProp::Representation
|
|
870
919
|
|
|
871
920
|
collection :mixins, as: 'mixins', class: Google::Apis::ServiceusageV1::Mixin, decorator: Google::Apis::ServiceusageV1::Mixin::Representation
|
|
@@ -1100,6 +1149,30 @@ module Google
|
|
|
1100
1149
|
end
|
|
1101
1150
|
end
|
|
1102
1151
|
|
|
1152
|
+
class ContentSecurity
|
|
1153
|
+
# @private
|
|
1154
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1155
|
+
collection :content_security_providers, as: 'contentSecurityProviders', class: Google::Apis::ServiceusageV1::ContentSecurityProvider, decorator: Google::Apis::ServiceusageV1::ContentSecurityProvider::Representation
|
|
1156
|
+
|
|
1157
|
+
end
|
|
1158
|
+
end
|
|
1159
|
+
|
|
1160
|
+
class ContentSecurityPolicy
|
|
1161
|
+
# @private
|
|
1162
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1163
|
+
property :mcp_content_security, as: 'mcpContentSecurity', class: Google::Apis::ServiceusageV1::ContentSecurity, decorator: Google::Apis::ServiceusageV1::ContentSecurity::Representation
|
|
1164
|
+
|
|
1165
|
+
property :name, as: 'name'
|
|
1166
|
+
end
|
|
1167
|
+
end
|
|
1168
|
+
|
|
1169
|
+
class ContentSecurityProvider
|
|
1170
|
+
# @private
|
|
1171
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1172
|
+
property :name, as: 'name'
|
|
1173
|
+
end
|
|
1174
|
+
end
|
|
1175
|
+
|
|
1103
1176
|
class Context
|
|
1104
1177
|
# @private
|
|
1105
1178
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1543,7 +1616,6 @@ module Google
|
|
|
1543
1616
|
class GoogleApiServiceusageV2betaConsumerPolicy
|
|
1544
1617
|
# @private
|
|
1545
1618
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1546
|
-
hash :annotations, as: 'annotations'
|
|
1547
1619
|
property :create_time, as: 'createTime'
|
|
1548
1620
|
collection :enable_rules, as: 'enableRules', class: Google::Apis::ServiceusageV1::GoogleApiServiceusageV2betaEnableRule, decorator: Google::Apis::ServiceusageV1::GoogleApiServiceusageV2betaEnableRule::Representation
|
|
1549
1621
|
|
|
@@ -1565,6 +1637,7 @@ module Google
|
|
|
1565
1637
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1566
1638
|
property :detail, as: 'detail'
|
|
1567
1639
|
property :impact_type, as: 'impactType'
|
|
1640
|
+
property :missing_dependency, as: 'missingDependency'
|
|
1568
1641
|
end
|
|
1569
1642
|
end
|
|
1570
1643
|
|
|
@@ -1687,6 +1760,7 @@ module Google
|
|
|
1687
1760
|
property :next_page_token, as: 'nextPageToken'
|
|
1688
1761
|
collection :operations, as: 'operations', class: Google::Apis::ServiceusageV1::Operation, decorator: Google::Apis::ServiceusageV1::Operation::Representation
|
|
1689
1762
|
|
|
1763
|
+
collection :unreachable, as: 'unreachable'
|
|
1690
1764
|
end
|
|
1691
1765
|
end
|
|
1692
1766
|
|
|
@@ -1738,9 +1812,37 @@ module Google
|
|
|
1738
1812
|
end
|
|
1739
1813
|
end
|
|
1740
1814
|
|
|
1815
|
+
class McpEnableRule
|
|
1816
|
+
# @private
|
|
1817
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1818
|
+
collection :mcp_services, as: 'mcpServices', class: Google::Apis::ServiceusageV1::McpService, decorator: Google::Apis::ServiceusageV1::McpService::Representation
|
|
1819
|
+
|
|
1820
|
+
end
|
|
1821
|
+
end
|
|
1822
|
+
|
|
1823
|
+
class McpPolicy
|
|
1824
|
+
# @private
|
|
1825
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1826
|
+
property :create_time, as: 'createTime'
|
|
1827
|
+
property :etag, as: 'etag'
|
|
1828
|
+
collection :mcp_enable_rules, as: 'mcpEnableRules', class: Google::Apis::ServiceusageV1::McpEnableRule, decorator: Google::Apis::ServiceusageV1::McpEnableRule::Representation
|
|
1829
|
+
|
|
1830
|
+
property :name, as: 'name'
|
|
1831
|
+
property :update_time, as: 'updateTime'
|
|
1832
|
+
end
|
|
1833
|
+
end
|
|
1834
|
+
|
|
1835
|
+
class McpService
|
|
1836
|
+
# @private
|
|
1837
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1838
|
+
property :service, as: 'service'
|
|
1839
|
+
end
|
|
1840
|
+
end
|
|
1841
|
+
|
|
1741
1842
|
class MethodProp
|
|
1742
1843
|
# @private
|
|
1743
1844
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1845
|
+
property :edition, as: 'edition'
|
|
1744
1846
|
property :name, as: 'name'
|
|
1745
1847
|
collection :options, as: 'options', class: Google::Apis::ServiceusageV1::Option, decorator: Google::Apis::ServiceusageV1::Option::Representation
|
|
1746
1848
|
|
|
@@ -2092,6 +2194,18 @@ module Google
|
|
|
2092
2194
|
end
|
|
2093
2195
|
end
|
|
2094
2196
|
|
|
2197
|
+
class UpdateContentSecurityPolicyMetadata
|
|
2198
|
+
# @private
|
|
2199
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2200
|
+
end
|
|
2201
|
+
end
|
|
2202
|
+
|
|
2203
|
+
class UpdateMcpPolicyMetadata
|
|
2204
|
+
# @private
|
|
2205
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2206
|
+
end
|
|
2207
|
+
end
|
|
2208
|
+
|
|
2095
2209
|
class Usage
|
|
2096
2210
|
# @private
|
|
2097
2211
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -167,6 +167,13 @@ module Google
|
|
|
167
167
|
# The standard list page size.
|
|
168
168
|
# @param [String] page_token
|
|
169
169
|
# The standard list page token.
|
|
170
|
+
# @param [Boolean] return_partial_success
|
|
171
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
|
172
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
|
173
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
|
174
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
|
175
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
|
176
|
+
# explicitly documented otherwise in service or product specific documentation.
|
|
170
177
|
# @param [String] fields
|
|
171
178
|
# Selector specifying which fields to include in a partial response.
|
|
172
179
|
# @param [String] quota_user
|
|
@@ -184,7 +191,7 @@ module Google
|
|
|
184
191
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
185
192
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
186
193
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
187
|
-
def list_operations(filter: nil, name: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
194
|
+
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)
|
|
188
195
|
command = make_simple_command(:get, 'v1/operations', options)
|
|
189
196
|
command.response_representation = Google::Apis::ServiceusageV1::ListOperationsResponse::Representation
|
|
190
197
|
command.response_class = Google::Apis::ServiceusageV1::ListOperationsResponse
|
|
@@ -192,6 +199,7 @@ module Google
|
|
|
192
199
|
command.query['name'] = name unless name.nil?
|
|
193
200
|
command.query['pageSize'] = page_size unless page_size.nil?
|
|
194
201
|
command.query['pageToken'] = page_token unless page_token.nil?
|
|
202
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
|
195
203
|
command.query['fields'] = fields unless fields.nil?
|
|
196
204
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
197
205
|
execute_or_queue_command(command, &block)
|
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.
|
|
4
|
+
version: 0.71.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.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-serviceusage_v1/v0.71.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:
|