@@ -7908,7 +7908,8 @@ paths:
7908
7908
parameters:
7909
7909
- name: firewallId
7910
7910
in: path
7911
- description: ID of the Firewall to look up
7911
+ description: >
7912
+ ID of the Firewall to interact with.
7912
7913
required: true
7913
7914
schema:
7914
7915
type: integer
@@ -7926,7 +7927,14 @@ paths:
7926
7927
- personalAccessToken: []
7927
7928
- oauth:
7928
7929
- firewall:read_only
7929
- description: Get a specific Firewall resource by its ID.
7930
+ description: >
7931
+ Get a specific Firewall resource by its ID.
7932
+
7933
+
7934
+ **Beta**: This endpoint is in beta. Please make sure to prepend all requests with
7935
+ `/v4beta` instead of `/v4`, and be aware that this endpoint may receiving breaking
7936
+ updates in the future. This notice will be removed when this endpoint is out of
7937
+ beta.
7930
7938
responses:
7931
7939
'200':
7932
7940
description: Returns information about this Firewall.
@@ -7945,6 +7953,41 @@ paths:
7945
7953
- lang: CLI
7946
7954
source: >
7947
7955
linode-cli firewalls view 123
7956
+ delete:
7957
+ x-linode-grant: read_write
7958
+ servers:
7959
+ - url: https://api.linode.com/v4beta
7960
+ tags:
7961
+ - networking
7962
+ summary: Delete Firewall
7963
+ operationId: deleteFirewall
7964
+ x-linode-cli-action: delete
7965
+ security:
7966
+ - personalAccessToken: []
7967
+ - oauth:
7968
+ - firewall:read_write
7969
+ description: >
7970
+ Delete a Firewall resource by its ID.
7971
+
7972
+
7973
+ **Beta**: This endpoint is in beta. Please make sure to prepend all requests with
7974
+ `/v4beta` instead of `/v4`, and be aware that this endpoint may receiving breaking
7975
+ updates in the future. This notice will be removed when this endpoint is out of
7976
+ beta.
7977
+ responses:
7978
+ '200':
7979
+ description: Delete Successful.
7980
+ default:
7981
+ $ref: '#/components/responses/ErrorResponse'
7982
+ x-code-samples:
7983
+ - lang: Shell
7984
+ source: >
7985
+ curl -H "Content-Type: application/json" \
7986
+ -X DELETE \
7987
+ https://api.linode.com/v4beta/firewalls/123
7988
+ - lang: CLI
7989
+ source: >
7990
+ linode-cli firewalls delete 123
7948
7991
/nodebalancers:
7949
7992
x-linode-cli-command: nodebalancers
7950
7993
get:
0 commit comments