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.



2261
2262
2263
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 2261

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



2254
2255
2256
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 2254

def first_party_principal
  @first_party_principal
end

#third_party_principalGoogle::Apis::ServicecontrolV1::ThirdPartyPrincipal

Third party identity principal. Corresponds to the JSON property thirdPartyPrincipal



2259
2260
2261
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 2259

def third_party_principal
  @third_party_principal
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2266
2267
2268
2269
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 2266

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