Class: Google::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1WebKeySettings

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

Overview

Settings specific to keys that can be used by websites.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudRecaptchaenterpriseV1WebKeySettings

Returns a new instance of GoogleCloudRecaptchaenterpriseV1WebKeySettings.



1883
1884
1885
# File 'lib/google/apis/recaptchaenterprise_v1/classes.rb', line 1883

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

Instance Attribute Details

#allow_all_domainsBoolean Also known as: allow_all_domains?

If set to true, it means allowed_domains will not be enforced. Corresponds to the JSON property allowAllDomains

Returns:

  • (Boolean)


1853
1854
1855
# File 'lib/google/apis/recaptchaenterprise_v1/classes.rb', line 1853

def allow_all_domains
  @allow_all_domains
end

#allow_amp_trafficBoolean Also known as: allow_amp_traffic?

If set to true, the key can be used on AMP (Accelerated Mobile Pages) websites. This is supported only for the SCORE integration type. Corresponds to the JSON property allowAmpTraffic

Returns:

  • (Boolean)


1860
1861
1862
# File 'lib/google/apis/recaptchaenterprise_v1/classes.rb', line 1860

def allow_amp_traffic
  @allow_amp_traffic
end

#allowed_domainsArray<String>

Domains or subdomains of websites allowed to use the key. All subdomains of an allowed domain are automatically allowed. A valid domain requires a host and must not include any path, port, query or fragment. Examples: 'example.com' or 'subdomain.example.com' Corresponds to the JSON property allowedDomains

Returns:

  • (Array<String>)


1869
1870
1871
# File 'lib/google/apis/recaptchaenterprise_v1/classes.rb', line 1869

def allowed_domains
  @allowed_domains
end

#challenge_security_preferenceString

Settings for the frequency and difficulty at which this key triggers captcha challenges. This should only be specified for IntegrationTypes CHECKBOX and INVISIBLE. Corresponds to the JSON property challengeSecurityPreference

Returns:

  • (String)


1876
1877
1878
# File 'lib/google/apis/recaptchaenterprise_v1/classes.rb', line 1876

def challenge_security_preference
  @challenge_security_preference
end

#integration_typeString

Required. Describes how this key is integrated with the website. Corresponds to the JSON property integrationType

Returns:

  • (String)


1881
1882
1883
# File 'lib/google/apis/recaptchaenterprise_v1/classes.rb', line 1881

def integration_type
  @integration_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1888
1889
1890
1891
1892
1893
1894
# File 'lib/google/apis/recaptchaenterprise_v1/classes.rb', line 1888

def update!(**args)
  @allow_all_domains = args[:allow_all_domains] if args.key?(:allow_all_domains)
  @allow_amp_traffic = args[:allow_amp_traffic] if args.key?(:allow_amp_traffic)
  @allowed_domains = args[:allowed_domains] if args.key?(:allowed_domains)
  @challenge_security_preference = args[:challenge_security_preference] if args.key?(:challenge_security_preference)
  @integration_type = args[:integration_type] if args.key?(:integration_type)
end