Class: Google::Apis::IamV1::WorkloadIdentityPool
- Inherits:
-
Object
- Object
- Google::Apis::IamV1::WorkloadIdentityPool
- 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 workload identities. You can define IAM policies to grant these identities access to Google Cloud resources.
Instance Attribute Summary collapse
-
#description ⇒ String
Optional.
-
#disabled ⇒ Boolean
(also: #disabled?)
Optional.
-
#display_name ⇒ String
Optional.
-
#expire_time ⇒ String
Output only.
-
#name ⇒ String
Output only.
-
#state ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ WorkloadIdentityPool
constructor
A new instance of WorkloadIdentityPool.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ WorkloadIdentityPool
Returns a new instance of WorkloadIdentityPool.
3133 3134 3135 |
# File 'lib/google/apis/iam_v1/classes.rb', line 3133 def initialize(**args) update!(**args) end |
Instance Attribute Details
#description ⇒ String
Optional. A description of the pool. Cannot exceed 256 characters.
Corresponds to the JSON property description
3102 3103 3104 |
# File 'lib/google/apis/iam_v1/classes.rb', line 3102 def description @description end |
#disabled ⇒ Boolean Also known as: disabled?
Optional. 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
3109 3110 3111 |
# File 'lib/google/apis/iam_v1/classes.rb', line 3109 def disabled @disabled end |
#display_name ⇒ String
Optional. A display name for the pool. Cannot exceed 32 characters.
Corresponds to the JSON property displayName
3115 3116 3117 |
# File 'lib/google/apis/iam_v1/classes.rb', line 3115 def display_name @display_name end |
#expire_time ⇒ String
Output only. Time after which the workload identity pool will be permanently
purged and cannot be recovered.
Corresponds to the JSON property expireTime
3121 3122 3123 |
# File 'lib/google/apis/iam_v1/classes.rb', line 3121 def expire_time @expire_time end |
#name ⇒ String
Output only. The resource name of the pool.
Corresponds to the JSON property name
3126 3127 3128 |
# File 'lib/google/apis/iam_v1/classes.rb', line 3126 def name @name end |
#state ⇒ String
Output only. The state of the pool.
Corresponds to the JSON property state
3131 3132 3133 |
# File 'lib/google/apis/iam_v1/classes.rb', line 3131 def state @state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3138 3139 3140 3141 3142 3143 3144 3145 |
# File 'lib/google/apis/iam_v1/classes.rb', line 3138 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) @state = args[:state] if args.key?(:state) end |