class Google::Apis::ServicecontrolV1::FirstPartyPrincipal

First party identity principal.

Attributes

principal_email[RW]

The email address of a Google account. . Corresponds to the JSON property `principalEmail` @return [String]

service_metadata[RW]

Metadata about the service that uses the service account. . Corresponds to the JSON property `serviceMetadata` @return [Hash<String,Object>]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/servicecontrol_v1/classes.rb, line 902
def update!(**args)
  @principal_email = args[:principal_email] if args.key?(:principal_email)
  @service_metadata = args[:service_metadata] if args.key?(:service_metadata)
end