class Google::Apis::IamV1::WorkloadIdentityPool
Represents a collection of external workload identities. You can define IAM policies to grant these identities access to Google
Cloud resources.
Attributes
A description of the pool. Cannot exceed 256 characters. Corresponds to the JSON property `description` @return [String]
Whether the pool is disabled. You cannot use a disabled pool to exchange tokens, or use existing tokens to access resources. If the pool is re-enabled, existing tokens grant access again. Corresponds to the JSON property `disabled` @return [Boolean]
Whether the pool is disabled. You cannot use a disabled pool to exchange tokens, or use existing tokens to access resources. If the pool is re-enabled, existing tokens grant access again. Corresponds to the JSON property `disabled` @return [Boolean]
A display name for the pool. Cannot exceed 32 characters. Corresponds to the JSON property `displayName` @return [String]
Output only. The resource name of the pool. Corresponds to the JSON property `name` @return [String]
Output only. The state of the pool. Corresponds to the JSON property `state` @return [String]
Public Class Methods
# File lib/google/apis/iam_v1/classes.rb, line 1888 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/iam_v1/classes.rb, line 1893 def update!(**args) @description = args[:description] if args.key?(:description) @disabled = args[:disabled] if args.key?(:disabled) @display_name = args[:display_name] if args.key?(:display_name) @name = args[:name] if args.key?(:name) @state = args[:state] if args.key?(:state) end