class Google::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1Key
A key used to identify and configure applications (web and/or mobile) that use reCAPTCHA Enterprise.
Attributes
Settings specific to keys that can be used by Android apps. Corresponds to the JSON property `androidSettings` @return [Google::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1AndroidKeySettings]
The timestamp corresponding to the creation of this Key. Corresponds to the JSON property `createTime` @return [String]
Human-readable display name of this key. Modifiable by user. Corresponds to the JSON property `displayName` @return [String]
Settings specific to keys that can be used by iOS apps. Corresponds to the JSON property `iosSettings` @return [Google::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1IosKeySettings]
See Creating and managing labels. Corresponds to the JSON property `labels` @return [Hash<String,String>]
The resource name for the Key in the format “projects/`project`/keys/`key`”. Corresponds to the JSON property `name` @return [String]
Options for user acceptance testing. Corresponds to the JSON property `testingOptions` @return [Google::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1TestingOptions]
Settings specific to keys that can be used by websites. Corresponds to the JSON property `webSettings` @return [Google::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1WebKeySettings]
Public Class Methods
# File lib/google/apis/recaptchaenterprise_v1/classes.rb, line 292 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/recaptchaenterprise_v1/classes.rb, line 297 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) @web_settings = args[:web_settings] if args.key?(:web_settings) end