Class: Google::Apis::IdentitytoolkitV1::GoogleCloudIdentitytoolkitV1GetProjectConfigResponse

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

Response message for GetProjectConfig.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudIdentitytoolkitV1GetProjectConfigResponse

Returns a new instance of GoogleCloudIdentitytoolkitV1GetProjectConfigResponse.



1082
1083
1084
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 1082

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

Instance Attribute Details

#allow_password_userBoolean Also known as: allow_password_user?

Whether to allow password account sign up. This field is only returned for authenticated calls from a developer. Corresponds to the JSON property allowPasswordUser

Returns:

  • (Boolean)


1012
1013
1014
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 1012

def allow_password_user
  @allow_password_user
end

#api_keyString

Google Cloud API key. This field is only returned for authenticated calls from a developer. Corresponds to the JSON property apiKey

Returns:

  • (String)


1019
1020
1021
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 1019

def api_key
  @api_key
end

#authorized_domainsArray<String>

Authorized domains for widget redirect. Corresponds to the JSON property authorizedDomains

Returns:

  • (Array<String>)


1024
1025
1026
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 1024

def authorized_domains
  @authorized_domains
end

#change_email_templateGoogle::Apis::IdentitytoolkitV1::GoogleCloudIdentitytoolkitV1EmailTemplate

Email template Corresponds to the JSON property changeEmailTemplate



1029
1030
1031
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 1029

def change_email_template
  @change_email_template
end

The Firebase Dynamic Links domain used to construct links for redirects to native apps. Corresponds to the JSON property dynamicLinksDomain

Returns:

  • (String)


1035
1036
1037
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 1035

def dynamic_links_domain
  @dynamic_links_domain
end

#enable_anonymous_userBoolean Also known as: enable_anonymous_user?

Whether anonymous user is enabled. This field is only returned for authenticated calls from a developer. Corresponds to the JSON property enableAnonymousUser

Returns:

  • (Boolean)


1041
1042
1043
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 1041

def enable_anonymous_user
  @enable_anonymous_user
end

#idp_configArray<Google::Apis::IdentitytoolkitV1::GoogleCloudIdentitytoolkitV1IdpConfig>

OAuth2 provider config. This field is only returned for authenticated calls from a developer. Corresponds to the JSON property idpConfig



1048
1049
1050
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 1048

def idp_config
  @idp_config
end

#legacy_reset_password_templateGoogle::Apis::IdentitytoolkitV1::GoogleCloudIdentitytoolkitV1EmailTemplate

Email template Corresponds to the JSON property legacyResetPasswordTemplate



1053
1054
1055
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 1053

def legacy_reset_password_template
  @legacy_reset_password_template
end

#project_idString

The project id of the retrieved configuration. Corresponds to the JSON property projectId

Returns:

  • (String)


1058
1059
1060
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 1058

def project_id
  @project_id
end

#reset_password_templateGoogle::Apis::IdentitytoolkitV1::GoogleCloudIdentitytoolkitV1EmailTemplate

Email template Corresponds to the JSON property resetPasswordTemplate



1063
1064
1065
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 1063

def reset_password_template
  @reset_password_template
end

#revert_second_factor_addition_templateGoogle::Apis::IdentitytoolkitV1::GoogleCloudIdentitytoolkitV1EmailTemplate

Email template Corresponds to the JSON property revertSecondFactorAdditionTemplate



1068
1069
1070
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 1068

def revert_second_factor_addition_template
  @revert_second_factor_addition_template
end

#use_email_sendingBoolean Also known as: use_email_sending?

Whether to use email sending. This field is only returned for authenticated calls from a developer. Corresponds to the JSON property useEmailSending

Returns:

  • (Boolean)


1074
1075
1076
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 1074

def use_email_sending
  @use_email_sending
end

#verify_email_templateGoogle::Apis::IdentitytoolkitV1::GoogleCloudIdentitytoolkitV1EmailTemplate

Email template Corresponds to the JSON property verifyEmailTemplate



1080
1081
1082
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 1080

def verify_email_template
  @verify_email_template
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 1087

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)
  @dynamic_links_domain = args[:dynamic_links_domain] if args.key?(:dynamic_links_domain)
  @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)
  @project_id = args[:project_id] if args.key?(:project_id)
  @reset_password_template = args[:reset_password_template] if args.key?(:reset_password_template)
  @revert_second_factor_addition_template = args[:revert_second_factor_addition_template] if args.key?(:revert_second_factor_addition_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