google-apis-serviceconsumermanagement_v1 0.63.0 → 0.64.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 +4 -0
- data/lib/google/apis/serviceconsumermanagement_v1/classes.rb +15 -5
- data/lib/google/apis/serviceconsumermanagement_v1/gem_version.rb +2 -2
- data/lib/google/apis/serviceconsumermanagement_v1/representations.rb +1 -0
- data/lib/google/apis/serviceconsumermanagement_v1/service.rb +6 -5
- 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: e999b8148037aeeed735537f0fa3233d9e70ad2aff50eeee894c4a9a2db008dc
|
|
4
|
+
data.tar.gz: b3d74590e198f776a4325180f0ee86c9aede2f2f4ac17b00048327f5b4711fdd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 17741aabb6e937593bfcc41e076baf58aca304eb969968188acbd7226e74ef7dbd1395c6bec3810e90b7bbff3f2e7d698e7ffabbd35e5f8badc3af0fb9b19c4b
|
|
7
|
+
data.tar.gz: 6e10ac29f94278c848a45cf859568935e199fcd5bae49c7676d1b55df6a01139cccee8333129ec1730655a945eb7eca0fed1a2cf911f2553ea0fc95911e176af
|
data/CHANGELOG.md
CHANGED
|
@@ -984,9 +984,9 @@ module Google
|
|
|
984
984
|
class Control
|
|
985
985
|
include Google::Apis::Core::Hashable
|
|
986
986
|
|
|
987
|
-
# The service controller environment to use. If empty, no control plane
|
|
988
|
-
# like quota and billing) will be enabled. The recommended value for most
|
|
989
|
-
# services is servicecontrol.googleapis.com
|
|
987
|
+
# The service controller environment to use. If empty, no control plane features
|
|
988
|
+
# (like quota and billing) will be enabled. The recommended value for most
|
|
989
|
+
# services is servicecontrol.googleapis.com.
|
|
990
990
|
# Corresponds to the JSON property `environment`
|
|
991
991
|
# @return [String]
|
|
992
992
|
attr_accessor :environment
|
|
@@ -2085,8 +2085,9 @@ module Google
|
|
|
2085
2085
|
attr_accessor :operations
|
|
2086
2086
|
|
|
2087
2087
|
# Unordered list. Unreachable resources. Populated when the request sets `
|
|
2088
|
-
# ListOperationsRequest.return_partial_success` and reads across collections
|
|
2089
|
-
# when attempting to list all resources across all supported
|
|
2088
|
+
# ListOperationsRequest.return_partial_success` and reads across collections.
|
|
2089
|
+
# For example, when attempting to list all resources across all supported
|
|
2090
|
+
# locations.
|
|
2090
2091
|
# Corresponds to the JSON property `unreachable`
|
|
2091
2092
|
# @return [Array<String>]
|
|
2092
2093
|
attr_accessor :unreachable
|
|
@@ -4140,6 +4141,14 @@ module Google
|
|
|
4140
4141
|
class TenantResource
|
|
4141
4142
|
include Google::Apis::Core::Hashable
|
|
4142
4143
|
|
|
4144
|
+
# Output only. The newly created regional resource name of the tenant project
|
|
4145
|
+
# that has been migrated from a global service. This field is only set for
|
|
4146
|
+
# migrated tenant projects. Format: `services//`collection_id`/`RESOURCE_ID`/
|
|
4147
|
+
# locations/`LOCATION`/tenantProjects/`TENANT_ID``.
|
|
4148
|
+
# Corresponds to the JSON property `migratedTenantProject`
|
|
4149
|
+
# @return [String]
|
|
4150
|
+
attr_accessor :migrated_tenant_project
|
|
4151
|
+
|
|
4143
4152
|
# Output only. @OutputOnly Identifier of the tenant resource. For cloud projects,
|
|
4144
4153
|
# it is in the form 'projects/`number`'. For example 'projects/123456'.
|
|
4145
4154
|
# Corresponds to the JSON property `resource`
|
|
@@ -4162,6 +4171,7 @@ module Google
|
|
|
4162
4171
|
|
|
4163
4172
|
# Update properties of this object
|
|
4164
4173
|
def update!(**args)
|
|
4174
|
+
@migrated_tenant_project = args[:migrated_tenant_project] if args.key?(:migrated_tenant_project)
|
|
4165
4175
|
@resource = args[:resource] if args.key?(:resource)
|
|
4166
4176
|
@status = args[:status] if args.key?(:status)
|
|
4167
4177
|
@tag = args[:tag] if args.key?(:tag)
|
|
@@ -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.64.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 = "20260109"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -1636,6 +1636,7 @@ module Google
|
|
|
1636
1636
|
class TenantResource
|
|
1637
1637
|
# @private
|
|
1638
1638
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1639
|
+
property :migrated_tenant_project, as: 'migratedTenantProject'
|
|
1639
1640
|
property :resource, as: 'resource'
|
|
1640
1641
|
property :status, as: 'status'
|
|
1641
1642
|
property :tag, as: 'tag'
|
|
@@ -167,11 +167,12 @@ module Google
|
|
|
167
167
|
# The standard list page token.
|
|
168
168
|
# @param [Boolean] return_partial_success
|
|
169
169
|
# When set to `true`, operations that are reachable are returned as normal, and
|
|
170
|
-
# those that are unreachable are returned in the
|
|
171
|
-
# unreachable
|
|
172
|
-
#
|
|
173
|
-
# by default
|
|
174
|
-
# explicitly documented otherwise in service or product specific
|
|
170
|
+
# those that are unreachable are returned in the ListOperationsResponse.
|
|
171
|
+
# unreachable field. This can only be `true` when reading across collections.
|
|
172
|
+
# For example, when `parent` is set to `"projects/example/locations/-"`. This
|
|
173
|
+
# field is not supported by default and will result in an `UNIMPLEMENTED` error
|
|
174
|
+
# if set unless explicitly documented otherwise in service or product specific
|
|
175
|
+
# documentation.
|
|
175
176
|
# @param [String] fields
|
|
176
177
|
# Selector specifying which fields to include in a partial response.
|
|
177
178
|
# @param [String] quota_user
|
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.64.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.64.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:
|