Class: Google::Apis::ServiceusageV1beta1::ServiceIdentity

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/serviceusage_v1beta1/classes.rb,
lib/google/apis/serviceusage_v1beta1/representations.rb,
lib/google/apis/serviceusage_v1beta1/representations.rb

Overview

Service identity for a service. This is the identity that service producer should use to access consumer resources.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ServiceIdentity

Returns a new instance of ServiceIdentity.



4879
4880
4881
# File 'lib/google/apis/serviceusage_v1beta1/classes.rb', line 4879

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#emailString

The email address of the service account that a service producer would use to access consumer resources. Corresponds to the JSON property email

Returns:

  • (String)


4871
4872
4873
# File 'lib/google/apis/serviceusage_v1beta1/classes.rb', line 4871

def email
  @email
end

#unique_idString

The unique and stable id of the service account. https://cloud.google.com/iam/ reference/rest/v1/projects.serviceAccounts#ServiceAccount Corresponds to the JSON property uniqueId

Returns:

  • (String)


4877
4878
4879
# File 'lib/google/apis/serviceusage_v1beta1/classes.rb', line 4877

def unique_id
  @unique_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4884
4885
4886
4887
# File 'lib/google/apis/serviceusage_v1beta1/classes.rb', line 4884

def update!(**args)
  @email = args[:email] if args.key?(:email)
  @unique_id = args[:unique_id] if args.key?(:unique_id)
end