Class: Google::Apis::IamV1::WorkforcePool
- Inherits:
-
Object
- Object
- Google::Apis::IamV1::WorkforcePool
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/iam_v1/classes.rb,
lib/google/apis/iam_v1/representations.rb,
lib/google/apis/iam_v1/representations.rb
Overview
Represents a collection of external workforces. Provides namespaces for federated users that can be referenced in IAM policies.
Instance Attribute Summary collapse
-
#description ⇒ String
A user-specified description of the pool.
-
#disabled ⇒ Boolean
(also: #disabled?)
Disables the workforce pool.
-
#display_name ⇒ String
A user-specified display name of the pool in Google Cloud Console.
-
#expire_time ⇒ String
Output only.
-
#name ⇒ String
Output only.
-
#parent ⇒ String
Immutable.
-
#session_duration ⇒ String
Duration that the Google Cloud access tokens, console sign-in sessions, and
gcloud
sign-in sessions from this pool are valid. -
#state ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ WorkforcePool
constructor
A new instance of WorkforcePool.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ WorkforcePool
Returns a new instance of WorkforcePool.
2448 2449 2450 |
# File 'lib/google/apis/iam_v1/classes.rb', line 2448 def initialize(**args) update!(**args) end |
Instance Attribute Details
#description ⇒ String
A user-specified description of the pool. Cannot exceed 256 characters.
Corresponds to the JSON property description
2400 2401 2402 |
# File 'lib/google/apis/iam_v1/classes.rb', line 2400 def description @description end |
#disabled ⇒ Boolean Also known as: disabled?
Disables the workforce pool. 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
2407 2408 2409 |
# File 'lib/google/apis/iam_v1/classes.rb', line 2407 def disabled @disabled end |
#display_name ⇒ String
A user-specified display name of the pool in Google Cloud Console. Cannot
exceed 32 characters.
Corresponds to the JSON property displayName
2414 2415 2416 |
# File 'lib/google/apis/iam_v1/classes.rb', line 2414 def display_name @display_name end |
#expire_time ⇒ String
Output only. Time after which the workforce pool will be permanently purged
and cannot be recovered.
Corresponds to the JSON property expireTime
2420 2421 2422 |
# File 'lib/google/apis/iam_v1/classes.rb', line 2420 def expire_time @expire_time end |
#name ⇒ String
Output only. The resource name of the pool. Format: locations/
location/
workforcePools/
workforce_pool_id`
Corresponds to the JSON property
name`
2426 2427 2428 |
# File 'lib/google/apis/iam_v1/classes.rb', line 2426 def name @name end |
#parent ⇒ String
Immutable. The resource name of the parent. Format: organizations/
org-id`.
Corresponds to the JSON property
parent`
2431 2432 2433 |
# File 'lib/google/apis/iam_v1/classes.rb', line 2431 def parent @parent end |
#session_duration ⇒ String
Duration that the Google Cloud access tokens, console sign-in sessions, and
gcloud
sign-in sessions from this pool are valid. Must be greater than 15
minutes (900s) and less than 12 hours (43200s). If session_duration
is not
configured, minted credentials have a default duration of one hour (3600s).
For SAML providers, the lifetime of the token is the minimum of the
session_duration
and the SessionNotOnOrAfter
claim in the SAML assertion.
Corresponds to the JSON property sessionDuration
2441 2442 2443 |
# File 'lib/google/apis/iam_v1/classes.rb', line 2441 def session_duration @session_duration end |
#state ⇒ String
Output only. The state of the pool.
Corresponds to the JSON property state
2446 2447 2448 |
# File 'lib/google/apis/iam_v1/classes.rb', line 2446 def state @state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 |
# File 'lib/google/apis/iam_v1/classes.rb', line 2453 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) @expire_time = args[:expire_time] if args.key?(:expire_time) @name = args[:name] if args.key?(:name) @parent = args[:parent] if args.key?(:parent) @session_duration = args[:session_duration] if args.key?(:session_duration) @state = args[:state] if args.key?(:state) end |