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.



1196
1197
1198
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 1196

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

Instance Attribute Details

#client_idString

OAuth2 client ID. Corresponds to the JSON property clientId

Returns:

  • (String)


1168
1169
1170
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 1168

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)


1173
1174
1175
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 1173

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)


1179
1180
1181
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 1179

def experiment_percent
  @experiment_percent
end

#providerString

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

Returns:

  • (String)


1184
1185
1186
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 1184

def provider
  @provider
end

#secretString

OAuth2 client secret. Corresponds to the JSON property secret

Returns:

  • (String)


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

def secret
  @secret
end

#whitelisted_audiencesArray<String>

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

Returns:

  • (Array<String>)


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

def whitelisted_audiences
  @whitelisted_audiences
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1201
1202
1203
1204
1205
1206
1207
1208
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 1201

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