Class: Google::Apis::GkehubV1alpha::IdentityServiceAuthMethod

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

Overview

Configuration of an auth method for a member/cluster. Only one authentication method (e.g., OIDC and LDAP) can be set per AuthMethod.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ IdentityServiceAuthMethod

Returns a new instance of IdentityServiceAuthMethod.



3235
3236
3237
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 3235

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

Instance Attribute Details

#azuread_configGoogle::Apis::GkehubV1alpha::IdentityServiceAzureAdConfig

Configuration for the AzureAD Auth flow. Corresponds to the JSON property azureadConfig



3203
3204
3205
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 3203

def azuread_config
  @azuread_config
end

#google_configGoogle::Apis::GkehubV1alpha::IdentityServiceGoogleConfig

Configuration for the Google Plugin Auth flow. Corresponds to the JSON property googleConfig



3208
3209
3210
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 3208

def google_config
  @google_config
end

#ldap_configGoogle::Apis::GkehubV1alpha::IdentityServiceLdapConfig

Configuration for the LDAP Auth flow. Corresponds to the JSON property ldapConfig



3213
3214
3215
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 3213

def ldap_config
  @ldap_config
end

#nameString

Identifier for auth config. Corresponds to the JSON property name

Returns:

  • (String)


3218
3219
3220
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 3218

def name
  @name
end

#oidc_configGoogle::Apis::GkehubV1alpha::IdentityServiceOidcConfig

Configuration for OIDC Auth flow. Corresponds to the JSON property oidcConfig



3223
3224
3225
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 3223

def oidc_config
  @oidc_config
end

#proxyString

Proxy server address to use for auth method. Corresponds to the JSON property proxy

Returns:

  • (String)


3228
3229
3230
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 3228

def proxy
  @proxy
end

#saml_configGoogle::Apis::GkehubV1alpha::IdentityServiceSamlConfig

Configuration for the SAML Auth flow. Corresponds to the JSON property samlConfig



3233
3234
3235
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 3233

def saml_config
  @saml_config
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3240
3241
3242
3243
3244
3245
3246
3247
3248
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 3240

def update!(**args)
  @azuread_config = args[:azuread_config] if args.key?(:azuread_config)
  @google_config = args[:google_config] if args.key?(:google_config)
  @ldap_config = args[:ldap_config] if args.key?(:ldap_config)
  @name = args[:name] if args.key?(:name)
  @oidc_config = args[:oidc_config] if args.key?(:oidc_config)
  @proxy = args[:proxy] if args.key?(:proxy)
  @saml_config = args[:saml_config] if args.key?(:saml_config)
end