Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions api_names_out.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -360397,6 +360397,7 @@
"/serviceconsumermanagement:v1/TenantProjectPolicy/policyBindings": policy_bindings
"/serviceconsumermanagement:v1/TenantProjectPolicy/policyBindings/policy_binding": policy_binding
"/serviceconsumermanagement:v1/TenantResource": tenant_resource
"/serviceconsumermanagement:v1/TenantResource/migratedTenantProject": migrated_tenant_project
"/serviceconsumermanagement:v1/TenantResource/resource": resource
"/serviceconsumermanagement:v1/TenantResource/status": status
"/serviceconsumermanagement:v1/TenantResource/tag": tag
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release history for google-apis-serviceconsumermanagement_v1

### v0.64.0 (2026-01-18)

* Regenerated from discovery document revision 20260109

### v0.63.0 (2025-10-26)

* Regenerated from discovery document revision 20251023
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -984,9 +984,9 @@ def update!(**args)
class Control
include Google::Apis::Core::Hashable

# The service controller environment to use. If empty, no control plane feature (
# like quota and billing) will be enabled. The recommended value for most
# services is servicecontrol.googleapis.com
# The service controller environment to use. If empty, no control plane features
# (like quota and billing) will be enabled. The recommended value for most
# services is servicecontrol.googleapis.com.
# Corresponds to the JSON property `environment`
# @return [String]
attr_accessor :environment
Expand Down Expand Up @@ -2085,8 +2085,9 @@ class ListOperationsResponse
attr_accessor :operations

# Unordered list. Unreachable resources. Populated when the request sets `
# ListOperationsRequest.return_partial_success` and reads across collections e.g.
# when attempting to list all resources across all supported locations.
# ListOperationsRequest.return_partial_success` and reads across collections.
# For example, when attempting to list all resources across all supported
# locations.
# Corresponds to the JSON property `unreachable`
# @return [Array<String>]
attr_accessor :unreachable
Expand Down Expand Up @@ -4140,6 +4141,14 @@ def update!(**args)
class TenantResource
include Google::Apis::Core::Hashable

# Output only. The newly created regional resource name of the tenant project
# that has been migrated from a global service. This field is only set for
# migrated tenant projects. Format: `services//`collection_id`/`RESOURCE_ID`/
# locations/`LOCATION`/tenantProjects/`TENANT_ID``.
# Corresponds to the JSON property `migratedTenantProject`
# @return [String]
attr_accessor :migrated_tenant_project

# Output only. @OutputOnly Identifier of the tenant resource. For cloud projects,
# it is in the form 'projects/`number`'. For example 'projects/123456'.
# Corresponds to the JSON property `resource`
Expand All @@ -4162,6 +4171,7 @@ def initialize(**args)

# Update properties of this object
def update!(**args)
@migrated_tenant_project = args[:migrated_tenant_project] if args.key?(:migrated_tenant_project)
@resource = args[:resource] if args.key?(:resource)
@status = args[:status] if args.key?(:status)
@tag = args[:tag] if args.key?(:tag)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ module Google
module Apis
module ServiceconsumermanagementV1
# Version of the google-apis-serviceconsumermanagement_v1 gem
GEM_VERSION = "0.63.0"
GEM_VERSION = "0.64.0"

# Version of the code generator used to generate this client
GENERATOR_VERSION = "0.18.0"

# Revision of the discovery document this client was generated from
REVISION = "20251023"
REVISION = "20260109"
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -1636,6 +1636,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
class TenantResource
# @private
class Representation < Google::Apis::Core::JsonRepresentation
property :migrated_tenant_project, as: 'migratedTenantProject'
property :resource, as: 'resource'
property :status, as: 'status'
property :tag, as: 'tag'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -167,11 +167,12 @@ def get_operation(name, fields: nil, quota_user: nil, options: nil, &block)
# The standard list page token.
# @param [Boolean] return_partial_success
# When set to `true`, operations that are reachable are returned as normal, and
# those that are unreachable are returned in the [ListOperationsResponse.
# unreachable] field. This can only be `true` when reading across collections e.
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
# explicitly documented otherwise in service or product specific documentation.
# those that are unreachable are returned in the ListOperationsResponse.
# unreachable field. This can only be `true` when reading across collections.
# For example, when `parent` is set to `"projects/example/locations/-"`. This
# field is not supported by default and will result in an `UNIMPLEMENTED` error
# if set unless explicitly documented otherwise in service or product specific
# documentation.
# @param [String] fields
# Selector specifying which fields to include in a partial response.
# @param [String] quota_user
Expand Down