View Source GoogleApi.Apigee.V1.Model.GoogleCloudApigeeV1SecurityActionConditionConfig (google_api_apigee v0.46.0)

The following are a list of conditions. A valid SecurityAction must contain at least one condition. Within a condition, each element is ORed. Across conditions elements are ANDed. For example if a SecurityAction has the following: ip_address_ranges: ["ip1", "ip2"] and bot_reasons: ["Flooder", "Robot Abuser"] then this is interpreted as: enforce the action if the incoming request has ((ip_address_ranges = "ip1" OR ip_address_ranges = "ip2") AND (bot_reasons="Flooder" OR bot_reasons="Robot Abuser")). Conditions other than ip_address_ranges and bot_reasons cannot be ANDed.

Attributes

  • accessTokens (type: list(String.t), default: nil) - Optional. A list of access_tokens. Limit 1000 per action.
  • apiKeys (type: list(String.t), default: nil) - Optional. A list of API keys. Limit 1000 per action.
  • apiProducts (type: list(String.t), default: nil) - Optional. A list of API Products. Limit 1000 per action.
  • botReasons (type: list(String.t), default: nil) - Optional. A list of Bot Reasons. Current options: Flooder, Brute Guessor, Static Content Scraper, OAuth Abuser, Robot Abuser, TorListRule, Advanced Anomaly Detection, Advanced API Scraper, Search Engine Crawlers, Public Clouds, Public Cloud AWS, Public Cloud Azure, and Public Cloud Google.
  • developerApps (type: list(String.t), default: nil) - Optional. A list of developer apps. Limit 1000 per action.
  • developers (type: list(String.t), default: nil) - Optional. A list of developers. Limit 1000 per action.
  • ipAddressRanges (type: list(String.t), default: nil) - Optional. A list of IP addresses. This could be either IPv4 or IPv6. Limited to 100 per action.
  • userAgents (type: list(String.t), default: nil) - Optional. A list of user agents to deny. We look for exact matches. Limit 50 per action.

Summary

Functions

Unwrap a decoded JSON object into its complex fields.

Types

@type t() ::
  %GoogleApi.Apigee.V1.Model.GoogleCloudApigeeV1SecurityActionConditionConfig{
    accessTokens: [String.t()] | nil,
    apiKeys: [String.t()] | nil,
    apiProducts: [String.t()] | nil,
    botReasons: [String.t()] | nil,
    developerApps: [String.t()] | nil,
    developers: [String.t()] | nil,
    ipAddressRanges: [String.t()] | nil,
    userAgents: [String.t()] | nil
  }

Functions

@spec decode(struct(), keyword()) :: struct()

Unwrap a decoded JSON object into its complex fields.