Class: Google::Apis::IdentitytoolkitV1::GoogleCloudIdentitytoolkitV1IdpConfig

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

Overview

Config of an identity provider.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudIdentitytoolkitV1IdpConfig

Returns a new instance of GoogleCloudIdentitytoolkitV1IdpConfig.



1217
1218
1219
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 1217

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

Instance Attribute Details

#client_idString

OAuth2 client ID. Corresponds to the JSON property clientId

Returns:

  • (String)


1189
1190
1191
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 1189

def client_id
  @client_id
end

#enabledBoolean Also known as: enabled?

True if allows the user to sign in with the provider. Corresponds to the JSON property enabled

Returns:

  • (Boolean)


1194
1195
1196
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 1194

def enabled
  @enabled
end

#experiment_percentFixnum

Percent of users who will be prompted/redirected federated login for this IdP Corresponds to the JSON property experimentPercent

Returns:

  • (Fixnum)


1200
1201
1202
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 1200

def experiment_percent
  @experiment_percent
end

#providerString

Name of the identity provider. Corresponds to the JSON property provider

Returns:

  • (String)


1205
1206
1207
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 1205

def provider
  @provider
end

#secretString

OAuth2 client secret. Corresponds to the JSON property secret

Returns:

  • (String)


1210
1211
1212
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 1210

def secret
  @secret
end

#whitelisted_audiencesArray<String>

Whitelisted client IDs for audience check. Corresponds to the JSON property whitelistedAudiences

Returns:

  • (Array<String>)


1215
1216
1217
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 1215

def whitelisted_audiences
  @whitelisted_audiences
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1222
1223
1224
1225
1226
1227
1228
1229
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 1222

def update!(**args)
  @client_id = args[:client_id] if args.key?(:client_id)
  @enabled = args[:enabled] if args.key?(:enabled)
  @experiment_percent = args[:experiment_percent] if args.key?(:experiment_percent)
  @provider = args[:provider] if args.key?(:provider)
  @secret = args[:secret] if args.key?(:secret)
  @whitelisted_audiences = args[:whitelisted_audiences] if args.key?(:whitelisted_audiences)
end