class Google::Apis::IdentitytoolkitV3::SetProjectConfigRequest

Request to set the project configuration.

Attributes

allow_password_user[RW]

Whether to allow password user sign in or sign up. Corresponds to the JSON property `allowPasswordUser` @return [Boolean]

allow_password_user?[RW]

Whether to allow password user sign in or sign up. Corresponds to the JSON property `allowPasswordUser` @return [Boolean]

api_key[RW]

Browser API key, needed when making http request to Apiary. Corresponds to the JSON property `apiKey` @return [String]

authorized_domains[RW]

Authorized domains for widget redirect. Corresponds to the JSON property `authorizedDomains` @return [Array<String>]

change_email_template[RW]

Template for an email template. Corresponds to the JSON property `changeEmailTemplate` @return [Google::Apis::IdentitytoolkitV3::EmailTemplate]

delegated_project_number[RW]

GCP project number of the requesting delegated app. Currently only intended for Firebase V1 migration. Corresponds to the JSON property `delegatedProjectNumber` @return [Fixnum]

enable_anonymous_user[RW]

Whether to enable anonymous user. Corresponds to the JSON property `enableAnonymousUser` @return [Boolean]

enable_anonymous_user?[RW]

Whether to enable anonymous user. Corresponds to the JSON property `enableAnonymousUser` @return [Boolean]

idp_config[RW]

Oauth2 provider configuration. Corresponds to the JSON property `idpConfig` @return [Array<Google::Apis::IdentitytoolkitV3::IdpConfig>]

legacy_reset_password_template[RW]

Template for an email template. Corresponds to the JSON property `legacyResetPasswordTemplate` @return [Google::Apis::IdentitytoolkitV3::EmailTemplate]

reset_password_template[RW]

Template for an email template. Corresponds to the JSON property `resetPasswordTemplate` @return [Google::Apis::IdentitytoolkitV3::EmailTemplate]

use_email_sending[RW]

Whether to use email sending provided by Firebear. Corresponds to the JSON property `useEmailSending` @return [Boolean]

use_email_sending?[RW]

Whether to use email sending provided by Firebear. Corresponds to the JSON property `useEmailSending` @return [Boolean]

verify_email_template[RW]

Template for an email template. Corresponds to the JSON property `verifyEmailTemplate` @return [Google::Apis::IdentitytoolkitV3::EmailTemplate]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/identitytoolkit_v3/classes.rb, line 1005
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/identitytoolkit_v3/classes.rb, line 1010
def update!(**args)
  @allow_password_user = args[:allow_password_user] if args.key?(:allow_password_user)
  @api_key = args[:api_key] if args.key?(:api_key)
  @authorized_domains = args[:authorized_domains] if args.key?(:authorized_domains)
  @change_email_template = args[:change_email_template] if args.key?(:change_email_template)
  @delegated_project_number = args[:delegated_project_number] if args.key?(:delegated_project_number)
  @enable_anonymous_user = args[:enable_anonymous_user] if args.key?(:enable_anonymous_user)
  @idp_config = args[:idp_config] if args.key?(:idp_config)
  @legacy_reset_password_template = args[:legacy_reset_password_template] if args.key?(:legacy_reset_password_template)
  @reset_password_template = args[:reset_password_template] if args.key?(:reset_password_template)
  @use_email_sending = args[:use_email_sending] if args.key?(:use_email_sending)
  @verify_email_template = args[:verify_email_template] if args.key?(:verify_email_template)
end