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 @@ -351072,6 +351072,7 @@
"/serviceconsumermanagement:v1beta1/V1Beta1ServiceIdentity": v1_beta1_service_identity
"/serviceconsumermanagement:v1beta1/V1Beta1ServiceIdentity/email": email
"/serviceconsumermanagement:v1beta1/V1Beta1ServiceIdentity/name": name
"/serviceconsumermanagement:v1beta1/V1Beta1ServiceIdentity/projectRole": project_role
"/serviceconsumermanagement:v1beta1/V1Beta1ServiceIdentity/tag": tag
"/serviceconsumermanagement:v1beta1/V1Beta1ServiceIdentity/uniqueId": unique_id
"/serviceconsumermanagement:v1beta1/V1beta1AddVisibilityLabelsResponse": v1beta1_add_visibility_labels_response
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release history for google-apis-serviceconsumermanagement_v1beta1

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

* Regenerated from discovery document revision 20251023

### v0.62.0 (2025-09-28)

* Regenerated from discovery document revision 20250919
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4525,6 +4525,15 @@ class V1Beta1ServiceIdentity
# @return [String]
attr_accessor :name

# The project-level IAM role defined in the service agent's grant configuration.
# This is the standard role intended for this service agent. This field is
# populated regardless of the `skip_role_attach` option in the request. If `
# skip_role_attach` is true, the caller can use this value to know which role
# they are responsible for granting.
# Corresponds to the JSON property `projectRole`
# @return [String]
attr_accessor :project_role

# The P4 service identity configuration tag. This must be defined in
# activation_grants. If not specified when creating the account, the tag is set
# to "default".
Expand All @@ -4545,6 +4554,7 @@ def initialize(**args)
def update!(**args)
@email = args[:email] if args.key?(:email)
@name = args[:name] if args.key?(:name)
@project_role = args[:project_role] if args.key?(:project_role)
@tag = args[:tag] if args.key?(:tag)
@unique_id = args[:unique_id] if args.key?(:unique_id)
end
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ module Google
module Apis
module ServiceconsumermanagementV1beta1
# Version of the google-apis-serviceconsumermanagement_v1beta1 gem
GEM_VERSION = "0.62.0"
GEM_VERSION = "0.63.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 = "20250919"
REVISION = "20251023"
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -1684,6 +1684,7 @@ class V1Beta1ServiceIdentity
class Representation < Google::Apis::Core::JsonRepresentation
property :email, as: 'email'
property :name, as: 'name'
property :project_role, as: 'projectRole'
property :tag, as: 'tag'
property :unique_id, as: 'uniqueId'
end
Expand Down