Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var AssignCommand = base.Cmd{ BaseCobraCommand: func(client hcapi2.Client) *cobra.Command { return &cobra.Command{ Use: "assign [FLAGS] FLOATINGIP SERVER", Short: "Assign a Floating IP to a server", Args: cobra.ExactArgs(2), ValidArgsFunction: cmpl.SuggestArgs( cmpl.SuggestCandidatesF(client.FloatingIP().Names), cmpl.SuggestCandidatesF(client.Server().Names), ), TraverseChildren: true, DisableFlagsInUseLine: true, } }, Run: func(ctx context.Context, client hcapi2.Client, waiter state.ActionWaiter, cmd *cobra.Command, args []string) error { idOrName := args[0] floatingIP, _, err := client.FloatingIP().Get(ctx, idOrName) if err != nil { return err } if floatingIP == nil { return fmt.Errorf("Floating IP not found: %v", idOrName) } serverIDOrName := args[1] server, _, err := client.Server().Get(ctx, serverIDOrName) if err != nil { return err } if server == nil { return fmt.Errorf("server not found: %s", serverIDOrName) } action, _, err := client.FloatingIP().Assign(ctx, floatingIP, server) if err != nil { return err } if err := waiter.ActionProgress(ctx, action); err != nil { return err } fmt.Printf("Floating IP %d assigned to server %d\n", floatingIP.ID, server.ID) return nil }, }
View Source
var CreateCommand = base.Cmd{ BaseCobraCommand: func(client hcapi2.Client) *cobra.Command { cmd := &cobra.Command{ Use: "create FLAGS", Short: "Create a Floating IP", Args: cobra.NoArgs, TraverseChildren: true, DisableFlagsInUseLine: true, } cmd.Flags().String("type", "", "Type (ipv4 or ipv6) (required)") cmd.RegisterFlagCompletionFunc("type", cmpl.SuggestCandidates("ipv4", "ipv6")) cmd.MarkFlagRequired("type") cmd.Flags().String("description", "", "Description") cmd.Flags().String("name", "", "Name") cmd.Flags().String("home-location", "", "Home location") cmd.RegisterFlagCompletionFunc("home-location", cmpl.SuggestCandidatesF(client.Location().Names)) cmd.Flags().String("server", "", "Server to assign Floating IP to") cmd.RegisterFlagCompletionFunc("server", cmpl.SuggestCandidatesF(client.Server().Names)) cmd.Flags().StringToString("label", nil, "User-defined labels ('key=value') (can be specified multiple times)") cmd.Flags().StringSlice("enable-protection", []string{}, "Enable protection (delete) (default: none)") cmd.RegisterFlagCompletionFunc("enable-protection", cmpl.SuggestCandidates("delete")) return cmd }, Run: func(ctx context.Context, client hcapi2.Client, waiter state.ActionWaiter, cmd *cobra.Command, args []string) error { typ, _ := cmd.Flags().GetString("type") if typ == "" { return errors.New("type is required") } homeLocation, _ := cmd.Flags().GetString("home-location") server, _ := cmd.Flags().GetString("server") if homeLocation == "" && server == "" { return errors.New("one of --home-location or --server is required") } name, _ := cmd.Flags().GetString("name") description, _ := cmd.Flags().GetString("description") serverNameOrID, _ := cmd.Flags().GetString("server") labels, _ := cmd.Flags().GetStringToString("label") protection, _ := cmd.Flags().GetStringSlice("enable-protection") protectionOps, err := getChangeProtectionOpts(true, protection) if err != nil { return err } createOpts := hcloud.FloatingIPCreateOpts{ Type: hcloud.FloatingIPType(typ), Description: &description, Labels: labels, } if name != "" { createOpts.Name = &name } if homeLocation != "" { createOpts.HomeLocation = &hcloud.Location{Name: homeLocation} } if serverNameOrID != "" { server, _, err := client.Server().Get(ctx, serverNameOrID) if err != nil { return err } if server == nil { return fmt.Errorf("server not found: %s", serverNameOrID) } createOpts.Server = server } result, _, err := client.FloatingIP().Create(ctx, createOpts) if err != nil { return err } fmt.Printf("Floating IP %d created\n", result.FloatingIP.ID) return changeProtection(ctx, client, waiter, result.FloatingIP, true, protectionOps) }, }
View Source
var DisableProtectionCommand = base.Cmd{ BaseCobraCommand: func(client hcapi2.Client) *cobra.Command { return &cobra.Command{ Use: "disable-protection [FLAGS] FLOATINGIP PROTECTIONLEVEL [PROTECTIONLEVEL...]", Short: "Disable resource protection for a Floating IP", Args: cobra.MinimumNArgs(2), ValidArgsFunction: cmpl.SuggestArgs( cmpl.SuggestCandidatesF(client.FloatingIP().Names), cmpl.SuggestCandidates("delete"), ), TraverseChildren: true, DisableFlagsInUseLine: true, } }, Run: func(ctx context.Context, client hcapi2.Client, waiter state.ActionWaiter, cmd *cobra.Command, args []string) error { idOrName := args[0] floatingIP, _, err := client.FloatingIP().Get(ctx, idOrName) if err != nil { return err } if floatingIP == nil { return fmt.Errorf("Floating IP not found: %v", idOrName) } opts, err := getChangeProtectionOpts(false, args[1:]) if err != nil { return err } return changeProtection(ctx, client, waiter, floatingIP, false, opts) }, }
View Source
var EnableProtectionCommand = base.Cmd{ BaseCobraCommand: func(client hcapi2.Client) *cobra.Command { return &cobra.Command{ Use: "enable-protection [FLAGS] FLOATINGIP PROTECTIONLEVEL [PROTECTIONLEVEL...]", Short: "Enable resource protection for a Floating IP", Args: cobra.MinimumNArgs(2), ValidArgsFunction: cmpl.SuggestArgs( cmpl.SuggestCandidatesF(client.FloatingIP().Names), cmpl.SuggestCandidates("delete"), ), TraverseChildren: true, DisableFlagsInUseLine: true, } }, Run: func(ctx context.Context, client hcapi2.Client, waiter state.ActionWaiter, cmd *cobra.Command, args []string) error { idOrName := args[0] floatingIP, _, err := client.FloatingIP().Get(ctx, idOrName) if err != nil { return err } if floatingIP == nil { return fmt.Errorf("Floating IP not found: %v", idOrName) } opts, err := getChangeProtectionOpts(true, args[1:]) if err != nil { return err } return changeProtection(ctx, client, waiter, floatingIP, true, opts) }, }
View Source
var ListCmd = base.ListCmd{ ResourceNamePlural: "Floating IPs", JSONKeyGetByName: "floating_ips", DefaultColumns: []string{"id", "type", "name", "description", "ip", "home", "server", "dns", "age"}, Fetch: func(ctx context.Context, client hcapi2.Client, _ *pflag.FlagSet, listOpts hcloud.ListOpts, sorts []string) ([]interface{}, error) { opts := hcloud.FloatingIPListOpts{ListOpts: listOpts} if len(sorts) > 0 { opts.Sort = sorts } floatingIPs, err := client.FloatingIP().AllWithOpts(ctx, opts) var resources []interface{} for _, n := range floatingIPs { resources = append(resources, n) } return resources, err }, OutputTable: func(client hcapi2.Client) *output.Table { return output.NewTable(). AddAllowedFields(hcloud.FloatingIP{}). AddFieldFn("dns", output.FieldFn(func(obj interface{}) string { floatingIP := obj.(*hcloud.FloatingIP) var dns string if len(floatingIP.DNSPtr) == 1 { for _, v := range floatingIP.DNSPtr { dns = v } } if len(floatingIP.DNSPtr) > 1 { dns = fmt.Sprintf("%d entries", len(floatingIP.DNSPtr)) } return util.NA(dns) })). AddFieldFn("server", output.FieldFn(func(obj interface{}) string { floatingIP := obj.(*hcloud.FloatingIP) var server string if floatingIP.Server != nil { return client.Server().ServerName(floatingIP.Server.ID) } return util.NA(server) })). AddFieldFn("home", output.FieldFn(func(obj interface{}) string { floatingIP := obj.(*hcloud.FloatingIP) return floatingIP.HomeLocation.Name })). AddFieldFn("ip", output.FieldFn(func(obj interface{}) string { floatingIP := obj.(*hcloud.FloatingIP) if floatingIP.Network != nil { return floatingIP.Network.String() } return floatingIP.IP.String() })). AddFieldFn("protection", output.FieldFn(func(obj interface{}) string { floatingIP := obj.(*hcloud.FloatingIP) var protection []string if floatingIP.Protection.Delete { protection = append(protection, "delete") } return strings.Join(protection, ", ") })). AddFieldFn("labels", output.FieldFn(func(obj interface{}) string { floatingIP := obj.(*hcloud.FloatingIP) return util.LabelsToString(floatingIP.Labels) })). AddFieldFn("created", output.FieldFn(func(obj interface{}) string { floatingIP := obj.(*hcloud.FloatingIP) return util.Datetime(floatingIP.Created) })). AddFieldFn("age", output.FieldFn(func(obj interface{}) string { floatingIP := obj.(*hcloud.FloatingIP) return util.Age(floatingIP.Created, time.Now()) })) }, JSONSchema: func(resources []interface{}) interface{} { floatingIPSchemas := make([]schema.FloatingIP, 0, len(resources)) for _, resource := range resources { floatingIP := resource.(*hcloud.FloatingIP) floatingIPSchema := schema.FloatingIP{ ID: floatingIP.ID, Name: floatingIP.Name, Description: hcloud.String(floatingIP.Description), IP: floatingIP.IP.String(), Created: floatingIP.Created, Type: string(floatingIP.Type), HomeLocation: util.LocationToSchema(*floatingIP.HomeLocation), Blocked: floatingIP.Blocked, Protection: schema.FloatingIPProtection{Delete: floatingIP.Protection.Delete}, Labels: floatingIP.Labels, } for ip, dnsPtr := range floatingIP.DNSPtr { floatingIPSchema.DNSPtr = append(floatingIPSchema.DNSPtr, schema.FloatingIPDNSPtr{ IP: ip, DNSPtr: dnsPtr, }) } if floatingIP.Server != nil { floatingIPSchema.Server = hcloud.Ptr(floatingIP.Server.ID) } floatingIPSchemas = append(floatingIPSchemas, floatingIPSchema) } return floatingIPSchemas }, }
View Source
var UnassignCommand = base.Cmd{ BaseCobraCommand: func(client hcapi2.Client) *cobra.Command { return &cobra.Command{ Use: "unassign [FLAGS] FLOATINGIP", Short: "Unassign a Floating IP", Args: cobra.ExactArgs(1), ValidArgsFunction: cmpl.SuggestArgs(cmpl.SuggestCandidatesF(client.FloatingIP().Names)), TraverseChildren: true, DisableFlagsInUseLine: true, } }, Run: func(ctx context.Context, client hcapi2.Client, waiter state.ActionWaiter, cmd *cobra.Command, args []string) error { idOrName := args[0] floatingIP, _, err := client.FloatingIP().Get(ctx, idOrName) if err != nil { return err } if floatingIP == nil { return fmt.Errorf("Floating IP not found: %v", idOrName) } action, _, err := client.FloatingIP().Unassign(ctx, floatingIP) if err != nil { return err } if err := waiter.ActionProgress(ctx, action); err != nil { return err } fmt.Printf("Floating IP %d unassigned\n", floatingIP.ID) return nil }, }
Functions ¶
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.