| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- // Copyright 2019 Yunion
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- package compute
- import (
- "yunion.io/x/onecloud/cmd/climc/shell"
- "yunion.io/x/onecloud/pkg/mcclient"
- modules "yunion.io/x/onecloud/pkg/mcclient/modules/compute"
- baseoptions "yunion.io/x/onecloud/pkg/mcclient/options"
- options "yunion.io/x/onecloud/pkg/mcclient/options/compute"
- )
- func init() {
- cmd := shell.NewResourceCmd(&modules.Loadbalancers).WithKeyword("lb")
- cmd.Create(&options.LoadbalancerCreateOptions{})
- cmd.Show(&options.LoadbalancerIdOptions{})
- cmd.List(&options.LoadbalancerListOptions{})
- cmd.Update(&options.LoadbalancerUpdateOptions{})
- cmd.Delete(&options.LoadbalancerIdOptions{})
- cmd.Perform("purge", &options.LoadbalancerIdOptions{})
- cmd.Perform("status", &options.LoadbalancerActionStatusOptions{})
- cmd.Perform("syncstatus", &options.LoadbalancerIdOptions{})
- cmd.Perform("remote-update", &options.LoadbalancerRemoteUpdateOptions{})
- cmd.Get("change-owner-candidate-domains", &options.LoadbalancerIdOptions{})
- cmd.Perform("associate-eip", &options.LoadbalancerAssociateEipOptions{})
- cmd.Perform("create-eip", &options.LoadbalancerCreateEipOptions{})
- cmd.Perform("dissociate-eip", &options.LoadbalancerDissociateEipOptions{})
- R(&baseoptions.ResourceMetadataOptions{}, "lb-add-tag", "Set tag of a lb", func(s *mcclient.ClientSession, opts *baseoptions.ResourceMetadataOptions) error {
- params, err := opts.Params()
- if err != nil {
- return err
- }
- result, err := modules.Loadbalancers.PerformAction(s, opts.ID, "user-metadata", params)
- if err != nil {
- return err
- }
- printObject(result)
- return nil
- })
- R(&baseoptions.ResourceMetadataOptions{}, "lb-set-tag", "Set tag of a lb", func(s *mcclient.ClientSession, opts *baseoptions.ResourceMetadataOptions) error {
- params, err := opts.Params()
- if err != nil {
- return err
- }
- result, err := modules.Loadbalancers.PerformAction(s, opts.ID, "set-user-metadata", params)
- if err != nil {
- return err
- }
- printObject(result)
- return nil
- })
- }
|