Class: Google::Apis::ServicecontrolV1::ServiceAccountDelegationInfo
- Inherits:
-
Object
- Object
- Google::Apis::ServicecontrolV1::ServiceAccountDelegationInfo
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/servicecontrol_v1/classes.rb,
lib/google/apis/servicecontrol_v1/representations.rb,
lib/google/apis/servicecontrol_v1/representations.rb
Overview
Identity delegation history of an authenticated service account.
Instance Attribute Summary collapse
-
#first_party_principal ⇒ Google::Apis::ServicecontrolV1::FirstPartyPrincipal
First party identity principal.
-
#principal_subject ⇒ String
A string representing the principal_subject associated with the identity.
-
#third_party_principal ⇒ Google::Apis::ServicecontrolV1::ThirdPartyPrincipal
Third party identity principal.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ServiceAccountDelegationInfo
constructor
A new instance of ServiceAccountDelegationInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ServiceAccountDelegationInfo
Returns a new instance of ServiceAccountDelegationInfo.
2208 2209 2210 |
# File 'lib/google/apis/servicecontrol_v1/classes.rb', line 2208 def initialize(**args) update!(**args) end |
Instance Attribute Details
#first_party_principal ⇒ Google::Apis::ServicecontrolV1::FirstPartyPrincipal
First party identity principal.
Corresponds to the JSON property firstPartyPrincipal
2195 2196 2197 |
# File 'lib/google/apis/servicecontrol_v1/classes.rb', line 2195 def first_party_principal @first_party_principal end |
#principal_subject ⇒ String
A string representing the principal_subject associated with the identity. See
go/3pical for more info on how principal_subject is formatted.
Corresponds to the JSON property principalSubject
2201 2202 2203 |
# File 'lib/google/apis/servicecontrol_v1/classes.rb', line 2201 def principal_subject @principal_subject end |
#third_party_principal ⇒ Google::Apis::ServicecontrolV1::ThirdPartyPrincipal
Third party identity principal.
Corresponds to the JSON property thirdPartyPrincipal
2206 2207 2208 |
# File 'lib/google/apis/servicecontrol_v1/classes.rb', line 2206 def third_party_principal @third_party_principal end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2213 2214 2215 2216 2217 |
# File 'lib/google/apis/servicecontrol_v1/classes.rb', line 2213 def update!(**args) @first_party_principal = args[:first_party_principal] if args.key?(:first_party_principal) @principal_subject = args[:principal_subject] if args.key?(:principal_subject) @third_party_principal = args[:third_party_principal] if args.key?(:third_party_principal) end |