-
Notifications
You must be signed in to change notification settings - Fork 929
/
update_security_group_command.go
21 lines (17 loc) · 1.14 KB
/
update_security_group_command.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package v6
import (
"code.cloudfoundry.org/cli/command"
"code.cloudfoundry.org/cli/command/flag"
"code.cloudfoundry.org/cli/command/translatableerror"
)
type UpdateSecurityGroupCommand struct {
RequiredArgs flag.SecurityGroupArgs `positional-args:"yes"`
usage interface{} `usage:"CF_NAME update-security-group SECURITY_GROUP PATH_TO_JSON_RULES_FILE\n\n The provided path can be an absolute or relative path to a file.\n It should have a single array with JSON objects inside describing the rules.\n\n Valid json file example:\n [\n {\n \"protocol\": \"tcp\",\n \"destination\": \"10.0.11.0/24\",\n \"ports\": \"80,443\",\n \"description\": \"Allow http and https traffic from ZoneA\"\n }\n ]\n\nTIP: Changes will not apply to existing running applications until they are restarted."`
relatedCommands interface{} `related_commands:"restage, security-groups"`
}
func (UpdateSecurityGroupCommand) Setup(config command.Config, ui command.UI) error {
return nil
}
func (UpdateSecurityGroupCommand) Execute(args []string) error {
return translatableerror.UnrefactoredCommandError{}
}