Class: Google::Apis::ServicecontrolV1::ServiceAccountDelegationInfo
- Inherits:
-
Object
- Object
- Google::Apis::ServicecontrolV1::ServiceAccountDelegationInfo
- 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
-
#first_party_principal ⇒ Google::Apis::ServicecontrolV1::FirstPartyPrincipal
First party identity principal.
-
#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.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ServiceAccountDelegationInfo
Returns a new instance of ServiceAccountDelegationInfo
2180 2181 2182 |
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 2180 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
2173 2174 2175 |
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 2173 def first_party_principal @first_party_principal end |
#third_party_principal ⇒ Google::Apis::ServicecontrolV1::ThirdPartyPrincipal
Third party identity principal.
Corresponds to the JSON property thirdPartyPrincipal
2178 2179 2180 |
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 2178 def third_party_principal @third_party_principal end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2185 2186 2187 2188 |
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 2185 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 |