@robinmordasiewicz/f5xc-xcsh 6.34.0 → 6.36.0
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 +3 -3
- package/completions/xcsh.fish +3 -3
- package/dist/index.js +831 -729
- package/package.json +1 -1
package/completions/_xcsh
CHANGED
|
@@ -26,14 +26,14 @@ _xcsh() {
|
|
|
26
26
|
(domain)
|
|
27
27
|
local -a domains builtins
|
|
28
28
|
domains=(
|
|
29
|
-
'admin_console_and_ui:Manage static UI
|
|
29
|
+
'admin_console_and_ui:Manage static UI components for admin console'
|
|
30
30
|
'api:Discover, catalog, and test service interfaces'
|
|
31
31
|
'authentication:Authentication API'
|
|
32
32
|
'bigip:Manage iRules, data groups, and virtual servers'
|
|
33
33
|
'billing_and_usage:Manage subscription plans and payment methods'
|
|
34
34
|
'blindfold:Manage secret encryption and policy rules'
|
|
35
|
-
'bot_and_threat_defense:
|
|
36
|
-
'cdn:Configure caching rules and load
|
|
35
|
+
'bot_and_threat_defense:Detect and block automated attacks'
|
|
36
|
+
'cdn:Configure caching rules and load balancing'
|
|
37
37
|
'ce_management:Manage Customer Edge sites and network interfaces'
|
|
38
38
|
'certificates:Manage SSL/TLS certificate chains and trusted CAs'
|
|
39
39
|
'cloud_infrastructure:Connect and manage multi-cloud providers'
|
package/completions/xcsh.fish
CHANGED
|
@@ -22,14 +22,14 @@ complete -c xcsh -n "__fish_use_subcommand" -a "context" -d 'Show current naviga
|
|
|
22
22
|
complete -c xcsh -n "__fish_use_subcommand" -a "ctx" -d 'Show current navigation context'
|
|
23
23
|
|
|
24
24
|
# Domain completions
|
|
25
|
-
complete -c xcsh -n "__fish_use_subcommand" -a "admin_console_and_ui" -d 'Manage static UI
|
|
25
|
+
complete -c xcsh -n "__fish_use_subcommand" -a "admin_console_and_ui" -d 'Manage static UI components for admin console'
|
|
26
26
|
complete -c xcsh -n "__fish_use_subcommand" -a "api" -d 'Discover, catalog, and test service interfaces'
|
|
27
27
|
complete -c xcsh -n "__fish_use_subcommand" -a "authentication" -d 'Authentication API'
|
|
28
28
|
complete -c xcsh -n "__fish_use_subcommand" -a "bigip" -d 'Manage iRules, data groups, and virtual servers'
|
|
29
29
|
complete -c xcsh -n "__fish_use_subcommand" -a "billing_and_usage" -d 'Manage subscription plans and payment methods'
|
|
30
30
|
complete -c xcsh -n "__fish_use_subcommand" -a "blindfold" -d 'Manage secret encryption and policy rules'
|
|
31
|
-
complete -c xcsh -n "__fish_use_subcommand" -a "bot_and_threat_defense" -d '
|
|
32
|
-
complete -c xcsh -n "__fish_use_subcommand" -a "cdn" -d 'Configure caching rules and load
|
|
31
|
+
complete -c xcsh -n "__fish_use_subcommand" -a "bot_and_threat_defense" -d 'Detect and block automated attacks'
|
|
32
|
+
complete -c xcsh -n "__fish_use_subcommand" -a "cdn" -d 'Configure caching rules and load balancing'
|
|
33
33
|
complete -c xcsh -n "__fish_use_subcommand" -a "ce_management" -d 'Manage Customer Edge sites and network interfaces'
|
|
34
34
|
complete -c xcsh -n "__fish_use_subcommand" -a "certificates" -d 'Manage SSL/TLS certificate chains and trusted CAs'
|
|
35
35
|
complete -c xcsh -n "__fish_use_subcommand" -a "cloud_infrastructure" -d 'Connect and manage multi-cloud providers'
|