Class: Google::Apis::GkehubV2alpha::IdentityServiceIdentityServiceOptions
- Inherits:
-
Object
- Object
- Google::Apis::GkehubV2alpha::IdentityServiceIdentityServiceOptions
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/gkehub_v2alpha/classes.rb,
lib/google/apis/gkehub_v2alpha/representations.rb,
lib/google/apis/gkehub_v2alpha/representations.rb
Overview
Holds non-protocol-related configuration options.
Instance Attribute Summary collapse
-
#diagnostic_interface ⇒ Google::Apis::GkehubV2alpha::IdentityServiceDiagnosticInterface
Configuration options for the AIS diagnostic interface.
-
#session_duration ⇒ String
Determines the lifespan of STS tokens issued by Anthos Identity Service.
Instance Method Summary collapse
-
#initialize(**args) ⇒ IdentityServiceIdentityServiceOptions
constructor
A new instance of IdentityServiceIdentityServiceOptions.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ IdentityServiceIdentityServiceOptions
Returns a new instance of IdentityServiceIdentityServiceOptions.
1753 1754 1755 |
# File 'lib/google/apis/gkehub_v2alpha/classes.rb', line 1753 def initialize(**args) update!(**args) end |
Instance Attribute Details
#diagnostic_interface ⇒ Google::Apis::GkehubV2alpha::IdentityServiceDiagnosticInterface
Configuration options for the AIS diagnostic interface.
Corresponds to the JSON property diagnosticInterface
1746 1747 1748 |
# File 'lib/google/apis/gkehub_v2alpha/classes.rb', line 1746 def diagnostic_interface @diagnostic_interface end |
#session_duration ⇒ String
Determines the lifespan of STS tokens issued by Anthos Identity Service.
Corresponds to the JSON property sessionDuration
1751 1752 1753 |
# File 'lib/google/apis/gkehub_v2alpha/classes.rb', line 1751 def session_duration @session_duration end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1758 1759 1760 1761 |
# File 'lib/google/apis/gkehub_v2alpha/classes.rb', line 1758 def update!(**args) @diagnostic_interface = args[:diagnostic_interface] if args.key?(:diagnostic_interface) @session_duration = args[:session_duration] if args.key?(:session_duration) end |