Class: Google::Apis::ServicecontrolV1::FirstPartyPrincipal

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

Overview

First party identity principal.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ FirstPartyPrincipal

Returns a new instance of FirstPartyPrincipal.



939
940
941
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 939

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

Instance Attribute Details

#principal_emailString

The email address of a Google account. . Corresponds to the JSON property principalEmail

Returns:

  • (String)


931
932
933
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 931

def principal_email
  @principal_email
end

#service_metadataHash<String,Object>

Metadata about the service that uses the service account. . Corresponds to the JSON property serviceMetadata

Returns:

  • (Hash<String,Object>)


937
938
939
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 937

def 
  @service_metadata
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



944
945
946
947
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 944

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