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:



983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
# File 'proto_docs/google/cloud/recaptchaenterprise/v1/recaptchaenterprise.rb', line 983

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