class Google::Apis::ServiceusageV1beta1::ServiceIdentity
Service
identity for a service. This is the identity that service producer should use to access consumer resources.
Attributes
email[RW]
The email address of the service account that a service producer would use to access consumer resources. Corresponds to the JSON property `email` @return [String]
unique_id[RW]
The unique and stable id of the service account. cloud.google.com/iam/ reference/rest/v1/projects.serviceAccounts#ServiceAccount Corresponds to the JSON property `uniqueId` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/serviceusage_v1beta1/classes.rb, line 3901 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/serviceusage_v1beta1/classes.rb, line 3906 def update!(**args) @email = args[:email] if args.key?(:email) @unique_id = args[:unique_id] if args.key?(:unique_id) end