Class: Google::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1Key

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

A key used to identify and configure applications (web and/or mobile) that use reCAPTCHA Enterprise.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudRecaptchaenterpriseV1Key

Returns a new instance of GoogleCloudRecaptchaenterpriseV1Key.



1008
1009
1010
# File 'lib/google/apis/recaptchaenterprise_v1/classes.rb', line 1008

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

Instance Attribute Details

#android_settingsGoogle::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1AndroidKeySettings

Settings specific to keys that can be used by Android apps. Corresponds to the JSON property androidSettings



964
965
966
# File 'lib/google/apis/recaptchaenterprise_v1/classes.rb', line 964

def android_settings
  @android_settings
end

#create_timeString

Output only. The timestamp corresponding to the creation of this key. Corresponds to the JSON property createTime

Returns:

  • (String)


969
970
971
# File 'lib/google/apis/recaptchaenterprise_v1/classes.rb', line 969

def create_time
  @create_time
end

#display_nameString

Required. Human-readable display name of this key. Modifiable by user. Corresponds to the JSON property displayName

Returns:

  • (String)


974
975
976
# File 'lib/google/apis/recaptchaenterprise_v1/classes.rb', line 974

def display_name
  @display_name
end

#ios_settingsGoogle::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1IosKeySettings

Settings specific to keys that can be used by iOS apps. Corresponds to the JSON property iosSettings



979
980
981
# File 'lib/google/apis/recaptchaenterprise_v1/classes.rb', line 979

def ios_settings
  @ios_settings
end

#labelsHash<String,String>

Optional. See Creating and managing labels. Corresponds to the JSON property labels

Returns:

  • (Hash<String,String>)


985
986
987
# File 'lib/google/apis/recaptchaenterprise_v1/classes.rb', line 985

def labels
  @labels
end

#nameString

Identifier. The resource name for the Key in the format projects/project/ keys/key`. Corresponds to the JSON propertyname`

Returns:

  • (String)


991
992
993
# File 'lib/google/apis/recaptchaenterprise_v1/classes.rb', line 991

def name
  @name
end

#testing_optionsGoogle::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1TestingOptions

Options for user acceptance testing. Corresponds to the JSON property testingOptions



996
997
998
# File 'lib/google/apis/recaptchaenterprise_v1/classes.rb', line 996

def testing_options
  @testing_options
end

#waf_settingsGoogle::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1WafSettings

Settings specific to keys that can be used for WAF (Web Application Firewall). Corresponds to the JSON property wafSettings



1001
1002
1003
# File 'lib/google/apis/recaptchaenterprise_v1/classes.rb', line 1001

def waf_settings
  @waf_settings
end

#web_settingsGoogle::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1WebKeySettings

Settings specific to keys that can be used by websites. Corresponds to the JSON property webSettings



1006
1007
1008
# File 'lib/google/apis/recaptchaenterprise_v1/classes.rb', line 1006

def web_settings
  @web_settings
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
# File 'lib/google/apis/recaptchaenterprise_v1/classes.rb', line 1013

def update!(**args)
  @android_settings = args[:android_settings] if args.key?(:android_settings)
  @create_time = args[:create_time] if args.key?(:create_time)
  @display_name = args[:display_name] if args.key?(:display_name)
  @ios_settings = args[:ios_settings] if args.key?(:ios_settings)
  @labels = args[:labels] if args.key?(:labels)
  @name = args[:name] if args.key?(:name)
  @testing_options = args[:testing_options] if args.key?(:testing_options)
  @waf_settings = args[:waf_settings] if args.key?(:waf_settings)
  @web_settings = args[:web_settings] if args.key?(:web_settings)
end