@robinmordasiewicz/f5xc-xcsh 2.0.43-2601200312 → 2.0.46-2601201633
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/completions/_xcsh +0 -1
- package/completions/xcsh.bash +1 -1
- package/completions/xcsh.fish +0 -11
- package/dist/index.js +2517 -1987
- package/package.json +1 -1
package/completions/_xcsh
CHANGED
|
@@ -67,7 +67,6 @@ _xcsh() {
|
|
|
67
67
|
'users:Account tokens, labels, and cloud-init config.'
|
|
68
68
|
'virtual:HTTP, TCP, UDP load balancing with origin pools.'
|
|
69
69
|
'vpm_and_node_management:Node lifecycle, fleet grouping, and orchestration.'
|
|
70
|
-
'waf:Request inspection, attack signatures, and bot mitigation.'
|
|
71
70
|
|
|
72
71
|
)
|
|
73
72
|
builtins=(
|
package/completions/xcsh.bash
CHANGED
|
@@ -6,7 +6,7 @@ _xcsh_completions() {
|
|
|
6
6
|
local cur prev words cword
|
|
7
7
|
_init_completion || return
|
|
8
8
|
|
|
9
|
-
local commands="admin_console_and_ui ai_services api authentication bigip billing_and_usage blindfold bot_and_threat_defense cdn ce_management certificates cloud_infrastructure cloudstatus completion container_services data_and_privacy_security data_intelligence ddos dns login managed_kubernetes marketplace network network_security nginx_one object_storage observability rate_limiting secops_and_incident_response service_mesh shape sites statistics subscription support telemetry_and_insights tenant_and_identity threat_campaign users virtual vpm_and_node_management
|
|
9
|
+
local commands="admin_console_and_ui ai_services api authentication bigip billing_and_usage blindfold bot_and_threat_defense cdn ce_management certificates cloud_infrastructure cloudstatus completion container_services data_and_privacy_security data_intelligence ddos dns login managed_kubernetes marketplace network network_security nginx_one object_storage observability rate_limiting secops_and_incident_response service_mesh shape sites statistics subscription support telemetry_and_insights tenant_and_identity threat_campaign users virtual vpm_and_node_management help quit exit clear history refresh"
|
|
10
10
|
local actions="list get create delete replace apply status patch add-labels remove-labels"
|
|
11
11
|
local builtins="help quit exit clear history context ctx refresh"
|
|
12
12
|
local global_flags="--help -h --version -v --no-color --output -o --namespace -ns --spec"
|
package/completions/xcsh.fish
CHANGED
|
@@ -64,7 +64,6 @@ complete -c xcsh -n "__fish_use_subcommand" -a "threat_campaign" -d 'Attack dete
|
|
|
64
64
|
complete -c xcsh -n "__fish_use_subcommand" -a "users" -d 'Account tokens, labels, and cloud-init config.'
|
|
65
65
|
complete -c xcsh -n "__fish_use_subcommand" -a "virtual" -d 'HTTP, TCP, UDP load balancing with origin pools.'
|
|
66
66
|
complete -c xcsh -n "__fish_use_subcommand" -a "vpm_and_node_management" -d 'Node lifecycle, fleet grouping, and orchestration.'
|
|
67
|
-
complete -c xcsh -n "__fish_use_subcommand" -a "waf" -d 'Request inspection, attack signatures, and bot mitigation.'
|
|
68
67
|
|
|
69
68
|
# Alias completions
|
|
70
69
|
|
|
@@ -470,16 +469,6 @@ complete -c xcsh -n "__fish_seen_subcommand_from vpm_and_node_management" -a "st
|
|
|
470
469
|
complete -c xcsh -n "__fish_seen_subcommand_from vpm_and_node_management" -a "patch" -d 'Patch a resource'
|
|
471
470
|
complete -c xcsh -n "__fish_seen_subcommand_from vpm_and_node_management" -a "add-labels" -d 'Add labels to a resource'
|
|
472
471
|
complete -c xcsh -n "__fish_seen_subcommand_from vpm_and_node_management" -a "remove-labels" -d 'Remove labels from a resource'
|
|
473
|
-
complete -c xcsh -n "__fish_seen_subcommand_from waf" -a "list" -d 'List resources'
|
|
474
|
-
complete -c xcsh -n "__fish_seen_subcommand_from waf" -a "get" -d 'Get a specific resource'
|
|
475
|
-
complete -c xcsh -n "__fish_seen_subcommand_from waf" -a "create" -d 'Create a new resource'
|
|
476
|
-
complete -c xcsh -n "__fish_seen_subcommand_from waf" -a "delete" -d 'Delete a resource'
|
|
477
|
-
complete -c xcsh -n "__fish_seen_subcommand_from waf" -a "replace" -d 'Replace a resource'
|
|
478
|
-
complete -c xcsh -n "__fish_seen_subcommand_from waf" -a "apply" -d 'Apply configuration from file'
|
|
479
|
-
complete -c xcsh -n "__fish_seen_subcommand_from waf" -a "status" -d 'Get resource status'
|
|
480
|
-
complete -c xcsh -n "__fish_seen_subcommand_from waf" -a "patch" -d 'Patch a resource'
|
|
481
|
-
complete -c xcsh -n "__fish_seen_subcommand_from waf" -a "add-labels" -d 'Add labels to a resource'
|
|
482
|
-
complete -c xcsh -n "__fish_seen_subcommand_from waf" -a "remove-labels" -d 'Remove labels from a resource'
|
|
483
472
|
|
|
484
473
|
# Action-specific flags
|
|
485
474
|
complete -c xcsh -l name -s n -d 'Resource name'
|