Class: Google::Cloud::RecaptchaEnterprise::V1::AccountDefenderAssessment

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/cloud/recaptchaenterprise/v1/recaptchaenterprise.rb

Overview

Account defender risk assessment.

Defined Under Namespace

Modules: AccountDefenderLabel

Instance Attribute Summary collapse

Instance Attribute Details

#labels::Array<::Google::Cloud::RecaptchaEnterprise::V1::AccountDefenderAssessment::AccountDefenderLabel> (readonly)

Returns Output only. Labels for this request.

Returns:



922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
# File 'proto_docs/google/cloud/recaptchaenterprise/v1/recaptchaenterprise.rb', line 922

class AccountDefenderAssessment
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Labels returned by account defender for this request.
  module AccountDefenderLabel
    # Default unspecified type.
    ACCOUNT_DEFENDER_LABEL_UNSPECIFIED = 0

    # The request matches a known good profile for the user.
    PROFILE_MATCH = 1

    # The request is potentially a suspicious login event and must be further
    # verified either through multi-factor authentication or another system.
    SUSPICIOUS_LOGIN_ACTIVITY = 2

    # The request matched a profile that previously had suspicious account
    # creation behavior. This can mean that this is a fake account.
    SUSPICIOUS_ACCOUNT_CREATION = 3

    # The account in the request has a high number of related accounts. It does
    # not necessarily imply that the account is bad but can require further
    # investigation.
    RELATED_ACCOUNTS_NUMBER_HIGH = 4
  end
end