Skip to content

Ike1

Shape of the IKE Phase1 Profile configuration specification.

ToolDescription
f5xc-api-network-ike1-createCreate IKE Phase1 Profile.
f5xc-api-network-ike1-getGET IKE Phase1 profile configuration.
f5xc-api-network-ike1-listList IKE Phase 1 Profile.
f5xc-api-network-ike1-updateReplace IKE Phase1 Profile configuration.
f5xc-api-network-ike1-deleteDELETE IKE Phase 1 Profile.
ParameterDescriptionExample
metadata.namespaceNamespace-
nameName-
namespaceNamespace-
metadata.nameName-
ParameterDescriptionExample
response_formatThe format in which the configuration object is to be fetched. This could be for example-
label_filterA LabelSelectorType expression that every item in list response will satisfy.-
report_fieldsThe report_fields parameter-
report_status_fieldsThe report_status_fields parameter-

This resource includes mutually exclusive configuration options:

OptionDescriptionRecommended
spec.ike_keylifetime_hours-
spec.ike_keylifetime_minutes-
spec.use_default_keylifetime-
OptionDescriptionRecommended
spec.reauth_disabled-
spec.reauth_timeout_days-
spec.reauth_timeout_hours-

Ask Claude to help you work with Ike1 resources:

“Create a ike1 named ‘example’ in the ‘production’ namespace”

“List all ike1s in the ‘production’ namespace”

“Get details of the ike1 named ‘example’ in namespace ‘production‘“

Terminal window
# List resources
curl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/ike1s" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}" \
-H "Content-Type: application/json"
# Get specific resource
curl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/ike1s/<name>" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}" \
-H "Content-Type: application/json"
# Create resource
curl -X POST "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/ike1s" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}" \
-H "Content-Type: application/json" \
-d @ike1.json
# Delete resource
curl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/ike1s/<name>" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}"