class Google::Apis::ServiceconsumermanagementV1beta1::V1Beta1ServiceIdentity

A service identity in the Identity and Access Management API.

Attributes

email[RW]

The email address of the service identity. Corresponds to the JSON property `email` @return [String]

name[RW]

P4 service identity resource name. An example name would be: `services/ serviceconsumermanagement.googleapis.com/projects/123/serviceIdentities/ default` Corresponds to the JSON property `name` @return [String]

tag[RW]

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”. Corresponds to the JSON property `tag` @return [String]

unique_id[RW]

The unique and stable id of the service identity. Corresponds to the JSON property `uniqueId` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/serviceconsumermanagement_v1beta1/classes.rb, line 3413
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/serviceconsumermanagement_v1beta1/classes.rb, line 3418
def update!(**args)
  @email = args[:email] if args.key?(:email)
  @name = args[:name] if args.key?(:name)
  @tag = args[:tag] if args.key?(:tag)
  @unique_id = args[:unique_id] if args.key?(:unique_id)
end