Class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2ServiceAccountDelegationInfo

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/securitycenter_v1/classes.rb,
lib/google/apis/securitycenter_v1/representations.rb,
lib/google/apis/securitycenter_v1/representations.rb

Overview

Identity delegation history of an authenticated service account.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudSecuritycenterV2ServiceAccountDelegationInfo

Returns a new instance of GoogleCloudSecuritycenterV2ServiceAccountDelegationInfo.



7167
7168
7169
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 7167

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

Instance Attribute Details

#principal_emailString

The email address of a Google account. Corresponds to the JSON property principalEmail

Returns:

  • (String)


7154
7155
7156
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 7154

def principal_email
  @principal_email
end

#principal_subjectString

A string representing the principal_subject associated with the identity. As compared to principal_email, supports principals that aren't associated with email addresses, such as third party principals. For most identities, the format will be principal://iam.googleapis.com/identity pool name/subjects/ subject`except for some GKE identities (GKE_WORKLOAD, FREEFORM, GKE_HUB_WORKLOAD) that are still in the legacy formatserviceAccount: identity pool name[subject] Corresponds to the JSON propertyprincipalSubject`

Returns:

  • (String)


7165
7166
7167
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 7165

def principal_subject
  @principal_subject
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7172
7173
7174
7175
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 7172

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