Class: Google::Apis::ServicecontrolV1::ServiceAccountDelegationInfo

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

Identity delegation history of an authenticated service account.

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) ⇒ ServiceAccountDelegationInfo

Returns a new instance of ServiceAccountDelegationInfo



2191
2192
2193
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 2191

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

Instance Attribute Details

#first_party_principalGoogle::Apis::ServicecontrolV1::FirstPartyPrincipal

First party identity principal. Corresponds to the JSON property firstPartyPrincipal



2184
2185
2186
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 2184

def first_party_principal
  @first_party_principal
end

#third_party_principalGoogle::Apis::ServicecontrolV1::ThirdPartyPrincipal

Third party identity principal. Corresponds to the JSON property thirdPartyPrincipal



2189
2190
2191
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 2189

def third_party_principal
  @third_party_principal
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2196
2197
2198
2199
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 2196

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