google-apis-serviceconsumermanagement_v1 0.61.0 → 0.63.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 +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/serviceconsumermanagement_v1/classes.rb +70 -10
- data/lib/google/apis/serviceconsumermanagement_v1/gem_version.rb +2 -2
- data/lib/google/apis/serviceconsumermanagement_v1/representations.rb +4 -0
- data/lib/google/apis/serviceconsumermanagement_v1/service.rb +9 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 25f4d5c46210a76504ab8f908c5d708e4e098f076aba6e13953eb9cc74462d0f
|
|
4
|
+
data.tar.gz: fc7e2ffeb632be34d46cf376091a9e785ac91415bd76221811e9fbb2105e7c43
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 649900dae91bbb1c2710377b5dfa5e90efaa86797f6fe61565f89b8d535ae8c206ea9edc9c02040b5d8f5ad77f1cd85791031d7aadee605f4ad2ef02fc67225e
|
|
7
|
+
data.tar.gz: adbcb34f1cf34d909f6a01fbbeab7532394cea37820f7d3b15f568358f19fb1cacfab8b1fbb9691352294456d4080a48106b41f452752648556652f728483600
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-serviceconsumermanagement_v1
|
|
2
2
|
|
|
3
|
+
### v0.63.0 (2025-10-26)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20251023
|
|
6
|
+
|
|
7
|
+
### v0.62.0 (2025-09-28)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20250919
|
|
10
|
+
|
|
3
11
|
### v0.61.0 (2025-07-27)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20250619
|
|
@@ -56,10 +56,19 @@ module Google
|
|
|
56
56
|
# which represent a concrete implementation of an interface as opposed to simply
|
|
57
57
|
# a description of methods and bindings. They are also sometimes simply referred
|
|
58
58
|
# to as "APIs" in other contexts, such as the name of this message itself. See
|
|
59
|
-
# https://cloud.google.com/apis/design/glossary for detailed terminology.
|
|
59
|
+
# https://cloud.google.com/apis/design/glossary for detailed terminology. New
|
|
60
|
+
# usages of this message as an alternative to ServiceDescriptorProto are
|
|
61
|
+
# strongly discouraged. This message does not reliability preserve all
|
|
62
|
+
# information necessary to model the schema and preserve semantics. Instead make
|
|
63
|
+
# use of FileDescriptorSet which preserves the necessary information.
|
|
60
64
|
class Api
|
|
61
65
|
include Google::Apis::Core::Hashable
|
|
62
66
|
|
|
67
|
+
# The source edition string, only valid when syntax is SYNTAX_EDITIONS.
|
|
68
|
+
# Corresponds to the JSON property `edition`
|
|
69
|
+
# @return [String]
|
|
70
|
+
attr_accessor :edition
|
|
71
|
+
|
|
63
72
|
# The methods of this interface, in unspecified order.
|
|
64
73
|
# Corresponds to the JSON property `methods`
|
|
65
74
|
# @return [Array<Google::Apis::ServiceconsumermanagementV1::MethodProp>]
|
|
@@ -115,6 +124,7 @@ module Google
|
|
|
115
124
|
|
|
116
125
|
# Update properties of this object
|
|
117
126
|
def update!(**args)
|
|
127
|
+
@edition = args[:edition] if args.key?(:edition)
|
|
118
128
|
@methods_prop = args[:methods_prop] if args.key?(:methods_prop)
|
|
119
129
|
@mixins = args[:mixins] if args.key?(:mixins)
|
|
120
130
|
@name = args[:name] if args.key?(:name)
|
|
@@ -497,7 +507,7 @@ module Google
|
|
|
497
507
|
# @return [Hash<String,Google::Apis::ServiceconsumermanagementV1::BackendRule>]
|
|
498
508
|
attr_accessor :overrides_by_request_protocol
|
|
499
509
|
|
|
500
|
-
#
|
|
510
|
+
# no-lint
|
|
501
511
|
# Corresponds to the JSON property `pathTranslation`
|
|
502
512
|
# @return [String]
|
|
503
513
|
attr_accessor :path_translation
|
|
@@ -1420,7 +1430,11 @@ module Google
|
|
|
1420
1430
|
end
|
|
1421
1431
|
end
|
|
1422
1432
|
|
|
1423
|
-
# Enum type definition.
|
|
1433
|
+
# Enum type definition. New usages of this message as an alternative to
|
|
1434
|
+
# EnumDescriptorProto are strongly discouraged. This message does not
|
|
1435
|
+
# reliability preserve all information necessary to model the schema and
|
|
1436
|
+
# preserve semantics. Instead make use of FileDescriptorSet which preserves the
|
|
1437
|
+
# necessary information.
|
|
1424
1438
|
class Enum
|
|
1425
1439
|
include Google::Apis::Core::Hashable
|
|
1426
1440
|
|
|
@@ -1470,7 +1484,11 @@ module Google
|
|
|
1470
1484
|
end
|
|
1471
1485
|
end
|
|
1472
1486
|
|
|
1473
|
-
# Enum value definition.
|
|
1487
|
+
# Enum value definition. New usages of this message as an alternative to
|
|
1488
|
+
# EnumValueDescriptorProto are strongly discouraged. This message does not
|
|
1489
|
+
# reliability preserve all information necessary to model the schema and
|
|
1490
|
+
# preserve semantics. Instead make use of FileDescriptorSet which preserves the
|
|
1491
|
+
# necessary information.
|
|
1474
1492
|
class EnumValue
|
|
1475
1493
|
include Google::Apis::Core::Hashable
|
|
1476
1494
|
|
|
@@ -1544,7 +1562,11 @@ module Google
|
|
|
1544
1562
|
end
|
|
1545
1563
|
end
|
|
1546
1564
|
|
|
1547
|
-
# A single field of a message type.
|
|
1565
|
+
# A single field of a message type. New usages of this message as an alternative
|
|
1566
|
+
# to FieldDescriptorProto are strongly discouraged. This message does not
|
|
1567
|
+
# reliability preserve all information necessary to model the schema and
|
|
1568
|
+
# preserve semantics. Instead make use of FileDescriptorSet which preserves the
|
|
1569
|
+
# necessary information.
|
|
1548
1570
|
class Field
|
|
1549
1571
|
include Google::Apis::Core::Hashable
|
|
1550
1572
|
|
|
@@ -1675,7 +1697,8 @@ module Google
|
|
|
1675
1697
|
|
|
1676
1698
|
# Map of service names to renamed services. Keys are the package relative
|
|
1677
1699
|
# service names and values are the name to be used for the service client and
|
|
1678
|
-
# call options. publishing: go_settings: renamed_services: Publisher:
|
|
1700
|
+
# call options. Example: publishing: go_settings: renamed_services: Publisher:
|
|
1701
|
+
# TopicAdmin
|
|
1679
1702
|
# Corresponds to the JSON property `renamedServices`
|
|
1680
1703
|
# @return [Hash<String,String>]
|
|
1681
1704
|
attr_accessor :renamed_services
|
|
@@ -2061,6 +2084,13 @@ module Google
|
|
|
2061
2084
|
# @return [Array<Google::Apis::ServiceconsumermanagementV1::Operation>]
|
|
2062
2085
|
attr_accessor :operations
|
|
2063
2086
|
|
|
2087
|
+
# Unordered list. Unreachable resources. Populated when the request sets `
|
|
2088
|
+
# ListOperationsRequest.return_partial_success` and reads across collections e.g.
|
|
2089
|
+
# when attempting to list all resources across all supported locations.
|
|
2090
|
+
# Corresponds to the JSON property `unreachable`
|
|
2091
|
+
# @return [Array<String>]
|
|
2092
|
+
attr_accessor :unreachable
|
|
2093
|
+
|
|
2064
2094
|
def initialize(**args)
|
|
2065
2095
|
update!(**args)
|
|
2066
2096
|
end
|
|
@@ -2069,6 +2099,7 @@ module Google
|
|
|
2069
2099
|
def update!(**args)
|
|
2070
2100
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
|
2071
2101
|
@operations = args[:operations] if args.key?(:operations)
|
|
2102
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
|
2072
2103
|
end
|
|
2073
2104
|
end
|
|
2074
2105
|
|
|
@@ -2254,10 +2285,21 @@ module Google
|
|
|
2254
2285
|
end
|
|
2255
2286
|
end
|
|
2256
2287
|
|
|
2257
|
-
# Method represents a method of an API interface.
|
|
2288
|
+
# Method represents a method of an API interface. New usages of this message as
|
|
2289
|
+
# an alternative to MethodDescriptorProto are strongly discouraged. This message
|
|
2290
|
+
# does not reliability preserve all information necessary to model the schema
|
|
2291
|
+
# and preserve semantics. Instead make use of FileDescriptorSet which preserves
|
|
2292
|
+
# the necessary information.
|
|
2258
2293
|
class MethodProp
|
|
2259
2294
|
include Google::Apis::Core::Hashable
|
|
2260
2295
|
|
|
2296
|
+
# The source edition string, only valid when syntax is SYNTAX_EDITIONS. This
|
|
2297
|
+
# field should be ignored, instead the edition should be inherited from Api.
|
|
2298
|
+
# This is similar to Field and EnumValue.
|
|
2299
|
+
# Corresponds to the JSON property `edition`
|
|
2300
|
+
# @return [String]
|
|
2301
|
+
attr_accessor :edition
|
|
2302
|
+
|
|
2261
2303
|
# The simple name of this method.
|
|
2262
2304
|
# Corresponds to the JSON property `name`
|
|
2263
2305
|
# @return [String]
|
|
@@ -2290,7 +2332,8 @@ module Google
|
|
|
2290
2332
|
# @return [String]
|
|
2291
2333
|
attr_accessor :response_type_url
|
|
2292
2334
|
|
|
2293
|
-
# The source syntax of this method.
|
|
2335
|
+
# The source syntax of this method. This field should be ignored, instead the
|
|
2336
|
+
# syntax should be inherited from Api. This is similar to Field and EnumValue.
|
|
2294
2337
|
# Corresponds to the JSON property `syntax`
|
|
2295
2338
|
# @return [String]
|
|
2296
2339
|
attr_accessor :syntax
|
|
@@ -2301,6 +2344,7 @@ module Google
|
|
|
2301
2344
|
|
|
2302
2345
|
# Update properties of this object
|
|
2303
2346
|
def update!(**args)
|
|
2347
|
+
@edition = args[:edition] if args.key?(:edition)
|
|
2304
2348
|
@name = args[:name] if args.key?(:name)
|
|
2305
2349
|
@options = args[:options] if args.key?(:options)
|
|
2306
2350
|
@request_streaming = args[:request_streaming] if args.key?(:request_streaming)
|
|
@@ -2924,7 +2968,9 @@ module Google
|
|
|
2924
2968
|
end
|
|
2925
2969
|
|
|
2926
2970
|
# A protocol buffer option, which can be attached to a message, field,
|
|
2927
|
-
# enumeration, etc.
|
|
2971
|
+
# enumeration, etc. New usages of this message as an alternative to FileOptions,
|
|
2972
|
+
# MessageOptions, FieldOptions, EnumOptions, EnumValueOptions, ServiceOptions,
|
|
2973
|
+
# or MethodOptions are strongly discouraged.
|
|
2928
2974
|
class Option
|
|
2929
2975
|
include Google::Apis::Core::Hashable
|
|
2930
2976
|
|
|
@@ -4122,7 +4168,11 @@ module Google
|
|
|
4122
4168
|
end
|
|
4123
4169
|
end
|
|
4124
4170
|
|
|
4125
|
-
# A protocol buffer message type.
|
|
4171
|
+
# A protocol buffer message type. New usages of this message as an alternative
|
|
4172
|
+
# to DescriptorProto are strongly discouraged. This message does not reliability
|
|
4173
|
+
# preserve all information necessary to model the schema and preserve semantics.
|
|
4174
|
+
# Instead make use of FileDescriptorSet which preserves the necessary
|
|
4175
|
+
# information.
|
|
4126
4176
|
class Type
|
|
4127
4177
|
include Google::Apis::Core::Hashable
|
|
4128
4178
|
|
|
@@ -4583,6 +4633,15 @@ module Google
|
|
|
4583
4633
|
# @return [String]
|
|
4584
4634
|
attr_accessor :name
|
|
4585
4635
|
|
|
4636
|
+
# The project-level IAM role defined in the service agent's grant configuration.
|
|
4637
|
+
# This is the standard role intended for this service agent. This field is
|
|
4638
|
+
# populated regardless of the `skip_role_attach` option in the request. If `
|
|
4639
|
+
# skip_role_attach` is true, the caller can use this value to know which role
|
|
4640
|
+
# they are responsible for granting.
|
|
4641
|
+
# Corresponds to the JSON property `projectRole`
|
|
4642
|
+
# @return [String]
|
|
4643
|
+
attr_accessor :project_role
|
|
4644
|
+
|
|
4586
4645
|
# The P4 service identity configuration tag. This must be defined in
|
|
4587
4646
|
# activation_grants. If not specified when creating the account, the tag is set
|
|
4588
4647
|
# to "default".
|
|
@@ -4603,6 +4662,7 @@ module Google
|
|
|
4603
4662
|
def update!(**args)
|
|
4604
4663
|
@email = args[:email] if args.key?(:email)
|
|
4605
4664
|
@name = args[:name] if args.key?(:name)
|
|
4665
|
+
@project_role = args[:project_role] if args.key?(:project_role)
|
|
4606
4666
|
@tag = args[:tag] if args.key?(:tag)
|
|
4607
4667
|
@unique_id = args[:unique_id] if args.key?(:unique_id)
|
|
4608
4668
|
end
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module ServiceconsumermanagementV1
|
|
18
18
|
# Version of the google-apis-serviceconsumermanagement_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.63.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 = "20251023"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -700,6 +700,7 @@ module Google
|
|
|
700
700
|
class Api
|
|
701
701
|
# @private
|
|
702
702
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
703
|
+
property :edition, as: 'edition'
|
|
703
704
|
collection :methods_prop, as: 'methods', class: Google::Apis::ServiceconsumermanagementV1::MethodProp, decorator: Google::Apis::ServiceconsumermanagementV1::MethodProp::Representation
|
|
704
705
|
|
|
705
706
|
collection :mixins, as: 'mixins', class: Google::Apis::ServiceconsumermanagementV1::Mixin, decorator: Google::Apis::ServiceconsumermanagementV1::Mixin::Representation
|
|
@@ -1168,6 +1169,7 @@ module Google
|
|
|
1168
1169
|
property :next_page_token, as: 'nextPageToken'
|
|
1169
1170
|
collection :operations, as: 'operations', class: Google::Apis::ServiceconsumermanagementV1::Operation, decorator: Google::Apis::ServiceconsumermanagementV1::Operation::Representation
|
|
1170
1171
|
|
|
1172
|
+
collection :unreachable, as: 'unreachable'
|
|
1171
1173
|
end
|
|
1172
1174
|
end
|
|
1173
1175
|
|
|
@@ -1222,6 +1224,7 @@ module Google
|
|
|
1222
1224
|
class MethodProp
|
|
1223
1225
|
# @private
|
|
1224
1226
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1227
|
+
property :edition, as: 'edition'
|
|
1225
1228
|
property :name, as: 'name'
|
|
1226
1229
|
collection :options, as: 'options', class: Google::Apis::ServiceconsumermanagementV1::Option, decorator: Google::Apis::ServiceconsumermanagementV1::Option::Representation
|
|
1227
1230
|
|
|
@@ -1767,6 +1770,7 @@ module Google
|
|
|
1767
1770
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1768
1771
|
property :email, as: 'email'
|
|
1769
1772
|
property :name, as: 'name'
|
|
1773
|
+
property :project_role, as: 'projectRole'
|
|
1770
1774
|
property :tag, as: 'tag'
|
|
1771
1775
|
property :unique_id, as: 'uniqueId'
|
|
1772
1776
|
end
|
|
@@ -165,6 +165,13 @@ module Google
|
|
|
165
165
|
# The standard list page size.
|
|
166
166
|
# @param [String] page_token
|
|
167
167
|
# The standard list page token.
|
|
168
|
+
# @param [Boolean] return_partial_success
|
|
169
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
|
170
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
|
171
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
|
172
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
|
173
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
|
174
|
+
# explicitly documented otherwise in service or product specific documentation.
|
|
168
175
|
# @param [String] fields
|
|
169
176
|
# Selector specifying which fields to include in a partial response.
|
|
170
177
|
# @param [String] quota_user
|
|
@@ -182,7 +189,7 @@ module Google
|
|
|
182
189
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
183
190
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
184
191
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
185
|
-
def list_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
192
|
+
def list_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
186
193
|
command = make_simple_command(:get, 'v1/{+name}', options)
|
|
187
194
|
command.response_representation = Google::Apis::ServiceconsumermanagementV1::ListOperationsResponse::Representation
|
|
188
195
|
command.response_class = Google::Apis::ServiceconsumermanagementV1::ListOperationsResponse
|
|
@@ -190,6 +197,7 @@ module Google
|
|
|
190
197
|
command.query['filter'] = filter unless filter.nil?
|
|
191
198
|
command.query['pageSize'] = page_size unless page_size.nil?
|
|
192
199
|
command.query['pageToken'] = page_token unless page_token.nil?
|
|
200
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
|
193
201
|
command.query['fields'] = fields unless fields.nil?
|
|
194
202
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
195
203
|
execute_or_queue_command(command, &block)
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-serviceconsumermanagement_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.63.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-serviceconsumermanagement_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-serviceconsumermanagement_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-serviceconsumermanagement_v1/v0.63.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-serviceconsumermanagement_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|