blob: f4377ae256315b4cf0fea0f8d3511fe37de3cb1e [file] [edit]
<html><body>
<style>
body, h1, h2, h3, div, span, p, pre, a {
margin: 0;
padding: 0;
border: 0;
font-weight: inherit;
font-style: inherit;
font-size: 100%;
font-family: inherit;
vertical-align: baseline;
}
body {
font-size: 13px;
padding: 1em;
}
h1 {
font-size: 26px;
margin-bottom: 1em;
}
h2 {
font-size: 24px;
margin-bottom: 1em;
}
h3 {
font-size: 20px;
margin-bottom: 1em;
margin-top: 1em;
}
pre, code {
line-height: 1.5;
font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace;
}
pre {
margin-top: 0.5em;
}
h1, h2, h3, p {
font-family: Arial, sans serif;
}
h1, h2, h3 {
border-bottom: solid #CCC 1px;
}
.toc_element {
margin-top: 0.5em;
}
.firstline {
margin-left: 2 em;
}
.method {
margin-top: 1em;
border: solid 1px #CCC;
padding: 1em;
background: #EEE;
}
.details {
font-weight: bold;
font-size: 14px;
}
</style>
<h1><a href="apigee_v1.html">Apigee API</a> . <a href="apigee_v1.organizations.html">organizations</a> . <a href="apigee_v1.organizations.environments.html">environments</a> . <a href="apigee_v1.organizations.environments.securityActions.html">securityActions</a></h1>
<h2>Instance Methods</h2>
<p class="toc_element">
<code><a href="#close">close()</a></code></p>
<p class="firstline">Close httplib2 connections.</p>
<p class="toc_element">
<code><a href="#create">create(parent, body=None, securityActionId=None, x__xgafv=None)</a></code></p>
<p class="firstline">CreateSecurityAction creates a SecurityAction.</p>
<p class="toc_element">
<code><a href="#disable">disable(name, body=None, x__xgafv=None)</a></code></p>
<p class="firstline">Disable a SecurityAction. The `state` of the SecurityAction after disabling is `DISABLED`. `DisableSecurityAction` can be called on SecurityActions in the state `ENABLED`; SecurityActions in a different state (including `DISABLED`) return an error.</p>
<p class="toc_element">
<code><a href="#enable">enable(name, body=None, x__xgafv=None)</a></code></p>
<p class="firstline">Enable a SecurityAction. The `state` of the SecurityAction after enabling is `ENABLED`. `EnableSecurityAction` can be called on SecurityActions in the state `DISABLED`; SecurityActions in a different state (including `ENABLED) return an error.</p>
<p class="toc_element">
<code><a href="#get">get(name, x__xgafv=None)</a></code></p>
<p class="firstline">Get a SecurityAction by name.</p>
<p class="toc_element">
<code><a href="#list">list(parent, filter=None, pageSize=None, pageToken=None, x__xgafv=None)</a></code></p>
<p class="firstline">Returns a list of SecurityActions. This returns both enabled and disabled actions.</p>
<p class="toc_element">
<code><a href="#list_next">list_next()</a></code></p>
<p class="firstline">Retrieves the next page of results.</p>
<h3>Method Details</h3>
<div class="method">
<code class="details" id="close">close()</code>
<pre>Close httplib2 connections.</pre>
</div>
<div class="method">
<code class="details" id="create">create(parent, body=None, securityActionId=None, x__xgafv=None)</code>
<pre>CreateSecurityAction creates a SecurityAction.
Args:
parent: string, Required. The organization and environment that this SecurityAction applies to. Format: organizations/{org}/environments/{env} (required)
body: object, The request body.
The object takes the form of:
{ # A SecurityAction is rule that can be enforced at an environment level. The result is one of: - A denied API call - An explicitly allowed API call - A flagged API call (HTTP headers added before the target receives it) At least one condition is required to create a SecurityAction.
&quot;allow&quot;: { # Message that should be set in case of an Allow Action. This does not have any fields. # Allow a request through if it matches this SecurityAction.
},
&quot;conditionConfig&quot;: { # 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: api_keys: [&quot;key1&quot;, &quot;key2&quot;] and developers: [&quot;dev1&quot;, &quot;dev2&quot;] then this is interpreted as: enforce the action if the incoming request has ((api_key = &quot;key1&quot; OR api_key=&quot;key&quot;) AND (developer=&quot;dev1&quot; OR developer=&quot;dev2&quot;)) # Required. A valid SecurityAction must contain at least one condition.
&quot;botReasons&quot;: [ # Optional. A list of Bot Reasons. Current options: Flooder, Brute Guessor, Static Content Scraper, OAuth Abuser, Robot Abuser, TorListRule, Advanced Anomaly Detection and Advanced API Scraper.
&quot;A String&quot;,
],
&quot;ipAddressRanges&quot;: [ # Optional. A list of IP addresses. This could be either IPv4 or IPv6. Limited to 100 per action.
&quot;A String&quot;,
],
},
&quot;createTime&quot;: &quot;A String&quot;, # Output only. The create time for this SecurityAction.
&quot;deny&quot;: { # Message that should be set in case of a Deny Action. # Deny a request through if it matches this SecurityAction.
&quot;responseCode&quot;: 42, # Optional. The HTTP response code if the Action = DENY.
},
&quot;description&quot;: &quot;A String&quot;, # Optional. An optional user provided description of the SecurityAction.
&quot;expireTime&quot;: &quot;A String&quot;, # The expiration for this SecurityAction.
&quot;flag&quot;: { # The message that should be set in the case of a Flag action. # Flag a request through if it matches this SecurityAction.
&quot;headers&quot;: [ # Optional. A list of HTTP headers to be sent to the target in case of a FLAG SecurityAction. Limit 5 headers per SecurityAction. At least one is mandatory.
{ # An HTTP header.
&quot;name&quot;: &quot;A String&quot;, # The header name to be sent to the target.
&quot;value&quot;: &quot;A String&quot;, # The header value to be sent to the target.
},
],
},
&quot;name&quot;: &quot;A String&quot;, # Immutable. This field is ignored during creation as per AIP-133. Please set the `security_action_id` field in the CreateSecurityActionRequest when creating a new SecurityAction. Format: organizations/{org}/environments/{env}/securityActions/{security_action}
&quot;state&quot;: &quot;A String&quot;, # Required. Only an ENABLED SecurityAction is enforced. An ENABLED SecurityAction past its expiration time will not be enforced.
&quot;ttl&quot;: &quot;A String&quot;, # Input only. The TTL for this SecurityAction.
&quot;updateTime&quot;: &quot;A String&quot;, # Output only. The update time for this SecurityAction. This reflects when this SecurityAction changed states.
}
securityActionId: string, Required. The ID to use for the SecurityAction, which will become the final component of the action&#x27;s resource name. This value should be 0-61 characters, and valid format is (^[a-z]([a-z0-9-]{​0,61}[a-z0-9])?$).
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
Returns:
An object of the form:
{ # A SecurityAction is rule that can be enforced at an environment level. The result is one of: - A denied API call - An explicitly allowed API call - A flagged API call (HTTP headers added before the target receives it) At least one condition is required to create a SecurityAction.
&quot;allow&quot;: { # Message that should be set in case of an Allow Action. This does not have any fields. # Allow a request through if it matches this SecurityAction.
},
&quot;conditionConfig&quot;: { # 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: api_keys: [&quot;key1&quot;, &quot;key2&quot;] and developers: [&quot;dev1&quot;, &quot;dev2&quot;] then this is interpreted as: enforce the action if the incoming request has ((api_key = &quot;key1&quot; OR api_key=&quot;key&quot;) AND (developer=&quot;dev1&quot; OR developer=&quot;dev2&quot;)) # Required. A valid SecurityAction must contain at least one condition.
&quot;botReasons&quot;: [ # Optional. A list of Bot Reasons. Current options: Flooder, Brute Guessor, Static Content Scraper, OAuth Abuser, Robot Abuser, TorListRule, Advanced Anomaly Detection and Advanced API Scraper.
&quot;A String&quot;,
],
&quot;ipAddressRanges&quot;: [ # Optional. A list of IP addresses. This could be either IPv4 or IPv6. Limited to 100 per action.
&quot;A String&quot;,
],
},
&quot;createTime&quot;: &quot;A String&quot;, # Output only. The create time for this SecurityAction.
&quot;deny&quot;: { # Message that should be set in case of a Deny Action. # Deny a request through if it matches this SecurityAction.
&quot;responseCode&quot;: 42, # Optional. The HTTP response code if the Action = DENY.
},
&quot;description&quot;: &quot;A String&quot;, # Optional. An optional user provided description of the SecurityAction.
&quot;expireTime&quot;: &quot;A String&quot;, # The expiration for this SecurityAction.
&quot;flag&quot;: { # The message that should be set in the case of a Flag action. # Flag a request through if it matches this SecurityAction.
&quot;headers&quot;: [ # Optional. A list of HTTP headers to be sent to the target in case of a FLAG SecurityAction. Limit 5 headers per SecurityAction. At least one is mandatory.
{ # An HTTP header.
&quot;name&quot;: &quot;A String&quot;, # The header name to be sent to the target.
&quot;value&quot;: &quot;A String&quot;, # The header value to be sent to the target.
},
],
},
&quot;name&quot;: &quot;A String&quot;, # Immutable. This field is ignored during creation as per AIP-133. Please set the `security_action_id` field in the CreateSecurityActionRequest when creating a new SecurityAction. Format: organizations/{org}/environments/{env}/securityActions/{security_action}
&quot;state&quot;: &quot;A String&quot;, # Required. Only an ENABLED SecurityAction is enforced. An ENABLED SecurityAction past its expiration time will not be enforced.
&quot;ttl&quot;: &quot;A String&quot;, # Input only. The TTL for this SecurityAction.
&quot;updateTime&quot;: &quot;A String&quot;, # Output only. The update time for this SecurityAction. This reflects when this SecurityAction changed states.
}</pre>
</div>
<div class="method">
<code class="details" id="disable">disable(name, body=None, x__xgafv=None)</code>
<pre>Disable a SecurityAction. The `state` of the SecurityAction after disabling is `DISABLED`. `DisableSecurityAction` can be called on SecurityActions in the state `ENABLED`; SecurityActions in a different state (including `DISABLED`) return an error.
Args:
name: string, Required. The name of the SecurityAction to disable. Format: organizations/{org}/environments/{env}/securityActions/{security_action} (required)
body: object, The request body.
The object takes the form of:
{ # Message to disable an enabled SecurityAction.
}
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
Returns:
An object of the form:
{ # A SecurityAction is rule that can be enforced at an environment level. The result is one of: - A denied API call - An explicitly allowed API call - A flagged API call (HTTP headers added before the target receives it) At least one condition is required to create a SecurityAction.
&quot;allow&quot;: { # Message that should be set in case of an Allow Action. This does not have any fields. # Allow a request through if it matches this SecurityAction.
},
&quot;conditionConfig&quot;: { # 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: api_keys: [&quot;key1&quot;, &quot;key2&quot;] and developers: [&quot;dev1&quot;, &quot;dev2&quot;] then this is interpreted as: enforce the action if the incoming request has ((api_key = &quot;key1&quot; OR api_key=&quot;key&quot;) AND (developer=&quot;dev1&quot; OR developer=&quot;dev2&quot;)) # Required. A valid SecurityAction must contain at least one condition.
&quot;botReasons&quot;: [ # Optional. A list of Bot Reasons. Current options: Flooder, Brute Guessor, Static Content Scraper, OAuth Abuser, Robot Abuser, TorListRule, Advanced Anomaly Detection and Advanced API Scraper.
&quot;A String&quot;,
],
&quot;ipAddressRanges&quot;: [ # Optional. A list of IP addresses. This could be either IPv4 or IPv6. Limited to 100 per action.
&quot;A String&quot;,
],
},
&quot;createTime&quot;: &quot;A String&quot;, # Output only. The create time for this SecurityAction.
&quot;deny&quot;: { # Message that should be set in case of a Deny Action. # Deny a request through if it matches this SecurityAction.
&quot;responseCode&quot;: 42, # Optional. The HTTP response code if the Action = DENY.
},
&quot;description&quot;: &quot;A String&quot;, # Optional. An optional user provided description of the SecurityAction.
&quot;expireTime&quot;: &quot;A String&quot;, # The expiration for this SecurityAction.
&quot;flag&quot;: { # The message that should be set in the case of a Flag action. # Flag a request through if it matches this SecurityAction.
&quot;headers&quot;: [ # Optional. A list of HTTP headers to be sent to the target in case of a FLAG SecurityAction. Limit 5 headers per SecurityAction. At least one is mandatory.
{ # An HTTP header.
&quot;name&quot;: &quot;A String&quot;, # The header name to be sent to the target.
&quot;value&quot;: &quot;A String&quot;, # The header value to be sent to the target.
},
],
},
&quot;name&quot;: &quot;A String&quot;, # Immutable. This field is ignored during creation as per AIP-133. Please set the `security_action_id` field in the CreateSecurityActionRequest when creating a new SecurityAction. Format: organizations/{org}/environments/{env}/securityActions/{security_action}
&quot;state&quot;: &quot;A String&quot;, # Required. Only an ENABLED SecurityAction is enforced. An ENABLED SecurityAction past its expiration time will not be enforced.
&quot;ttl&quot;: &quot;A String&quot;, # Input only. The TTL for this SecurityAction.
&quot;updateTime&quot;: &quot;A String&quot;, # Output only. The update time for this SecurityAction. This reflects when this SecurityAction changed states.
}</pre>
</div>
<div class="method">
<code class="details" id="enable">enable(name, body=None, x__xgafv=None)</code>
<pre>Enable a SecurityAction. The `state` of the SecurityAction after enabling is `ENABLED`. `EnableSecurityAction` can be called on SecurityActions in the state `DISABLED`; SecurityActions in a different state (including `ENABLED) return an error.
Args:
name: string, Required. The name of the SecurityAction to enable. Format: organizations/{org}/environments/{env}/securityActions/{security_action} (required)
body: object, The request body.
The object takes the form of:
{ # Message to enable a disabled SecurityAction.
}
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
Returns:
An object of the form:
{ # A SecurityAction is rule that can be enforced at an environment level. The result is one of: - A denied API call - An explicitly allowed API call - A flagged API call (HTTP headers added before the target receives it) At least one condition is required to create a SecurityAction.
&quot;allow&quot;: { # Message that should be set in case of an Allow Action. This does not have any fields. # Allow a request through if it matches this SecurityAction.
},
&quot;conditionConfig&quot;: { # 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: api_keys: [&quot;key1&quot;, &quot;key2&quot;] and developers: [&quot;dev1&quot;, &quot;dev2&quot;] then this is interpreted as: enforce the action if the incoming request has ((api_key = &quot;key1&quot; OR api_key=&quot;key&quot;) AND (developer=&quot;dev1&quot; OR developer=&quot;dev2&quot;)) # Required. A valid SecurityAction must contain at least one condition.
&quot;botReasons&quot;: [ # Optional. A list of Bot Reasons. Current options: Flooder, Brute Guessor, Static Content Scraper, OAuth Abuser, Robot Abuser, TorListRule, Advanced Anomaly Detection and Advanced API Scraper.
&quot;A String&quot;,
],
&quot;ipAddressRanges&quot;: [ # Optional. A list of IP addresses. This could be either IPv4 or IPv6. Limited to 100 per action.
&quot;A String&quot;,
],
},
&quot;createTime&quot;: &quot;A String&quot;, # Output only. The create time for this SecurityAction.
&quot;deny&quot;: { # Message that should be set in case of a Deny Action. # Deny a request through if it matches this SecurityAction.
&quot;responseCode&quot;: 42, # Optional. The HTTP response code if the Action = DENY.
},
&quot;description&quot;: &quot;A String&quot;, # Optional. An optional user provided description of the SecurityAction.
&quot;expireTime&quot;: &quot;A String&quot;, # The expiration for this SecurityAction.
&quot;flag&quot;: { # The message that should be set in the case of a Flag action. # Flag a request through if it matches this SecurityAction.
&quot;headers&quot;: [ # Optional. A list of HTTP headers to be sent to the target in case of a FLAG SecurityAction. Limit 5 headers per SecurityAction. At least one is mandatory.
{ # An HTTP header.
&quot;name&quot;: &quot;A String&quot;, # The header name to be sent to the target.
&quot;value&quot;: &quot;A String&quot;, # The header value to be sent to the target.
},
],
},
&quot;name&quot;: &quot;A String&quot;, # Immutable. This field is ignored during creation as per AIP-133. Please set the `security_action_id` field in the CreateSecurityActionRequest when creating a new SecurityAction. Format: organizations/{org}/environments/{env}/securityActions/{security_action}
&quot;state&quot;: &quot;A String&quot;, # Required. Only an ENABLED SecurityAction is enforced. An ENABLED SecurityAction past its expiration time will not be enforced.
&quot;ttl&quot;: &quot;A String&quot;, # Input only. The TTL for this SecurityAction.
&quot;updateTime&quot;: &quot;A String&quot;, # Output only. The update time for this SecurityAction. This reflects when this SecurityAction changed states.
}</pre>
</div>
<div class="method">
<code class="details" id="get">get(name, x__xgafv=None)</code>
<pre>Get a SecurityAction by name.
Args:
name: string, Required. The fully qualified name of the SecurityAction to retrieve. Format: organizations/{org}/environments/{env}/securityActions/{security_action} (required)
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
Returns:
An object of the form:
{ # A SecurityAction is rule that can be enforced at an environment level. The result is one of: - A denied API call - An explicitly allowed API call - A flagged API call (HTTP headers added before the target receives it) At least one condition is required to create a SecurityAction.
&quot;allow&quot;: { # Message that should be set in case of an Allow Action. This does not have any fields. # Allow a request through if it matches this SecurityAction.
},
&quot;conditionConfig&quot;: { # 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: api_keys: [&quot;key1&quot;, &quot;key2&quot;] and developers: [&quot;dev1&quot;, &quot;dev2&quot;] then this is interpreted as: enforce the action if the incoming request has ((api_key = &quot;key1&quot; OR api_key=&quot;key&quot;) AND (developer=&quot;dev1&quot; OR developer=&quot;dev2&quot;)) # Required. A valid SecurityAction must contain at least one condition.
&quot;botReasons&quot;: [ # Optional. A list of Bot Reasons. Current options: Flooder, Brute Guessor, Static Content Scraper, OAuth Abuser, Robot Abuser, TorListRule, Advanced Anomaly Detection and Advanced API Scraper.
&quot;A String&quot;,
],
&quot;ipAddressRanges&quot;: [ # Optional. A list of IP addresses. This could be either IPv4 or IPv6. Limited to 100 per action.
&quot;A String&quot;,
],
},
&quot;createTime&quot;: &quot;A String&quot;, # Output only. The create time for this SecurityAction.
&quot;deny&quot;: { # Message that should be set in case of a Deny Action. # Deny a request through if it matches this SecurityAction.
&quot;responseCode&quot;: 42, # Optional. The HTTP response code if the Action = DENY.
},
&quot;description&quot;: &quot;A String&quot;, # Optional. An optional user provided description of the SecurityAction.
&quot;expireTime&quot;: &quot;A String&quot;, # The expiration for this SecurityAction.
&quot;flag&quot;: { # The message that should be set in the case of a Flag action. # Flag a request through if it matches this SecurityAction.
&quot;headers&quot;: [ # Optional. A list of HTTP headers to be sent to the target in case of a FLAG SecurityAction. Limit 5 headers per SecurityAction. At least one is mandatory.
{ # An HTTP header.
&quot;name&quot;: &quot;A String&quot;, # The header name to be sent to the target.
&quot;value&quot;: &quot;A String&quot;, # The header value to be sent to the target.
},
],
},
&quot;name&quot;: &quot;A String&quot;, # Immutable. This field is ignored during creation as per AIP-133. Please set the `security_action_id` field in the CreateSecurityActionRequest when creating a new SecurityAction. Format: organizations/{org}/environments/{env}/securityActions/{security_action}
&quot;state&quot;: &quot;A String&quot;, # Required. Only an ENABLED SecurityAction is enforced. An ENABLED SecurityAction past its expiration time will not be enforced.
&quot;ttl&quot;: &quot;A String&quot;, # Input only. The TTL for this SecurityAction.
&quot;updateTime&quot;: &quot;A String&quot;, # Output only. The update time for this SecurityAction. This reflects when this SecurityAction changed states.
}</pre>
</div>
<div class="method">
<code class="details" id="list">list(parent, filter=None, pageSize=None, pageToken=None, x__xgafv=None)</code>
<pre>Returns a list of SecurityActions. This returns both enabled and disabled actions.
Args:
parent: string, Required. The parent, which owns this collection of SecurityActions. Format: organizations/{org}/environments/{env} (required)
filter: string, The filter expression to filter List results. https://google.aip.dev/160. Allows for filtering over: state and api_proxies. E.g.: state = ACTIVE AND apiProxies:foo. Filtering by action is not supported https://github.com/aip-dev/google.aip.dev/issues/624
pageSize: integer, The maximum number of SecurityActions to return. If unspecified, at most 50 SecurityActions will be returned. The maximum value is 1000; values above 1000 will be coerced to 1000.
pageToken: string, A page token, received from a previous `ListSecurityActions` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListSecurityActions` must match the call that provided the page token.
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
Returns:
An object of the form:
{ # Contains a list of SecurityActions in response to a ListSecurityActionRequest.
&quot;nextPageToken&quot;: &quot;A String&quot;, # A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.
&quot;securityActions&quot;: [ # The SecurityActions for the specified environment.
{ # A SecurityAction is rule that can be enforced at an environment level. The result is one of: - A denied API call - An explicitly allowed API call - A flagged API call (HTTP headers added before the target receives it) At least one condition is required to create a SecurityAction.
&quot;allow&quot;: { # Message that should be set in case of an Allow Action. This does not have any fields. # Allow a request through if it matches this SecurityAction.
},
&quot;conditionConfig&quot;: { # 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: api_keys: [&quot;key1&quot;, &quot;key2&quot;] and developers: [&quot;dev1&quot;, &quot;dev2&quot;] then this is interpreted as: enforce the action if the incoming request has ((api_key = &quot;key1&quot; OR api_key=&quot;key&quot;) AND (developer=&quot;dev1&quot; OR developer=&quot;dev2&quot;)) # Required. A valid SecurityAction must contain at least one condition.
&quot;botReasons&quot;: [ # Optional. A list of Bot Reasons. Current options: Flooder, Brute Guessor, Static Content Scraper, OAuth Abuser, Robot Abuser, TorListRule, Advanced Anomaly Detection and Advanced API Scraper.
&quot;A String&quot;,
],
&quot;ipAddressRanges&quot;: [ # Optional. A list of IP addresses. This could be either IPv4 or IPv6. Limited to 100 per action.
&quot;A String&quot;,
],
},
&quot;createTime&quot;: &quot;A String&quot;, # Output only. The create time for this SecurityAction.
&quot;deny&quot;: { # Message that should be set in case of a Deny Action. # Deny a request through if it matches this SecurityAction.
&quot;responseCode&quot;: 42, # Optional. The HTTP response code if the Action = DENY.
},
&quot;description&quot;: &quot;A String&quot;, # Optional. An optional user provided description of the SecurityAction.
&quot;expireTime&quot;: &quot;A String&quot;, # The expiration for this SecurityAction.
&quot;flag&quot;: { # The message that should be set in the case of a Flag action. # Flag a request through if it matches this SecurityAction.
&quot;headers&quot;: [ # Optional. A list of HTTP headers to be sent to the target in case of a FLAG SecurityAction. Limit 5 headers per SecurityAction. At least one is mandatory.
{ # An HTTP header.
&quot;name&quot;: &quot;A String&quot;, # The header name to be sent to the target.
&quot;value&quot;: &quot;A String&quot;, # The header value to be sent to the target.
},
],
},
&quot;name&quot;: &quot;A String&quot;, # Immutable. This field is ignored during creation as per AIP-133. Please set the `security_action_id` field in the CreateSecurityActionRequest when creating a new SecurityAction. Format: organizations/{org}/environments/{env}/securityActions/{security_action}
&quot;state&quot;: &quot;A String&quot;, # Required. Only an ENABLED SecurityAction is enforced. An ENABLED SecurityAction past its expiration time will not be enforced.
&quot;ttl&quot;: &quot;A String&quot;, # Input only. The TTL for this SecurityAction.
&quot;updateTime&quot;: &quot;A String&quot;, # Output only. The update time for this SecurityAction. This reflects when this SecurityAction changed states.
},
],
}</pre>
</div>
<div class="method">
<code class="details" id="list_next">list_next()</code>
<pre>Retrieves the next page of results.
Args:
previous_request: The request for the previous page. (required)
previous_response: The response from the request for the previous page. (required)
Returns:
A request object that you can call &#x27;execute()&#x27; on to request the next
page. Returns None if there are no more items in the collection.
</pre>
</div>
</body></html>