Class: Google::Apis::IapV1::CsmSettings
- Inherits:
-
Object
- Object
- Google::Apis::IapV1::CsmSettings
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/iap_v1/classes.rb,
generated/google/apis/iap_v1/representations.rb,
generated/google/apis/iap_v1/representations.rb
Overview
Configuration for RCTokens generated for CSM workloads protected by IAP. RCTokens are IAP generated JWTs that can be verified at the application. The RCToken is primarily used for ISTIO deployments, and can be scoped to a single mesh by configuring the audience field accordingly
Instance Attribute Summary collapse
-
#rctoken_aud ⇒ String
Audience claim set in the generated RCToken.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CsmSettings
constructor
A new instance of CsmSettings.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ CsmSettings
Returns a new instance of CsmSettings
162 163 164 |
# File 'generated/google/apis/iap_v1/classes.rb', line 162 def initialize(**args) update!(**args) end |
Instance Attribute Details
#rctoken_aud ⇒ String
Audience claim set in the generated RCToken. This value is not validated by
IAP.
Corresponds to the JSON property rctokenAud
160 161 162 |
# File 'generated/google/apis/iap_v1/classes.rb', line 160 def rctoken_aud @rctoken_aud end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
167 168 169 |
# File 'generated/google/apis/iap_v1/classes.rb', line 167 def update!(**args) @rctoken_aud = args[:rctoken_aud] if args.key?(:rctoken_aud) end |