- Home
- API MCP Server
- tools
- shape
- shape-security
- Bot Network Policy
Bot Network Policy
List the set of bot_network_policy in a namespace.
| Tool | Description |
|---|---|
f5xc-api-shape-bot-network-policy-get | GET Bot network Policy. |
f5xc-api-shape-bot-network-policy-list | List Bot network Policy. |
f5xc-api-shape-bot-network-policy-update | Custom Replace Bot network Policy. |
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”| Parameter | Description | Example |
|---|---|---|
name | Name | - |
namespace | Namespace | - |
Query Parameters
Section titled “Query Parameters”| Parameter | Description | Example |
|---|---|---|
response_format | The format in which the configuration object is to be fetched. This could be for example | - |
label_filter | A LabelSelectorType expression that every item in list response will satisfy. | - |
report_fields | The report_fields parameter | - |
report_status_fields | The report_status_fields parameter | - |
Configuration Choices
Section titled “Configuration Choices”This resource includes mutually exclusive configuration options:
domain_operator_choice
Section titled “domain_operator_choice”| Option | Description | Recommended |
|---|---|---|
spec.network_policy_content.manual_routing_list.manual_routing[].http | - | |
spec.network_policy_content.manual_routing_list.manual_routing[].https | - |
outbound_operator_choice
Section titled “outbound_operator_choice”| Option | Description | Recommended |
|---|---|---|
spec.network_policy_content.manual_routing_list.manual_routing[].protocol_http | - | |
spec.network_policy_content.manual_routing_list.manual_routing[].protocol_https | - |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with Bot Network Policy resources:
List Bot Network Policys
Section titled “List Bot Network Policys”“List all bot-network-policys in the ‘production’ namespace”
Get Bot Network Policy Details
Section titled “Get Bot Network Policy Details”“Get details of the bot-network-policy named ‘example’ in namespace ‘production‘“
CURL Examples
Section titled “CURL Examples”# List resourcescurl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/bot_network_policys" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json"
# Get specific resourcecurl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/bot_network_policys/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json"
# Create resourcecurl -X POST "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/bot_network_policys" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json" \ -d @bot_network_policy.json
# Delete resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/bot_network_policys/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"