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

description[RW]

A description of the pool. Cannot exceed 256 characters. Corresponds to the JSON property `description` @return [String]

disabled[RW]

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]

disabled?[RW]

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]

display_name[RW]

A display name for the pool. Cannot exceed 32 characters. Corresponds to the JSON property `displayName` @return [String]

name[RW]

Output only. The resource name of the pool. Corresponds to the JSON property `name` @return [String]

state[RW]

Output only. The state of the pool. Corresponds to the JSON property `state` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/iam_v1/classes.rb, line 1888
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

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