Class: Google::Apis::GkehubV1::IdentityServiceIdentityServiceOptions

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/gkehub_v1/classes.rb,
lib/google/apis/gkehub_v1/representations.rb,
lib/google/apis/gkehub_v1/representations.rb

Overview

Holds non-protocol-related configuration options.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ IdentityServiceIdentityServiceOptions

Returns a new instance of IdentityServiceIdentityServiceOptions.



3002
3003
3004
# File 'lib/google/apis/gkehub_v1/classes.rb', line 3002

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#diagnostic_interfaceGoogle::Apis::GkehubV1::IdentityServiceDiagnosticInterface

Configuration options for the AIS diagnostic interface. Corresponds to the JSON property diagnosticInterface



2995
2996
2997
# File 'lib/google/apis/gkehub_v1/classes.rb', line 2995

def diagnostic_interface
  @diagnostic_interface
end

#session_durationString

Determines the lifespan of STS tokens issued by Anthos Identity Service. Corresponds to the JSON property sessionDuration

Returns:

  • (String)


3000
3001
3002
# File 'lib/google/apis/gkehub_v1/classes.rb', line 3000

def session_duration
  @session_duration
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3007
3008
3009
3010
# File 'lib/google/apis/gkehub_v1/classes.rb', line 3007

def update!(**args)
  @diagnostic_interface = args[:diagnostic_interface] if args.key?(:diagnostic_interface)
  @session_duration = args[:session_duration] if args.key?(:session_duration)
end