mirror of
https://github.com/Oxalide/vsphere-influxdb-go.git
synced 2023-10-10 13:36:51 +02:00
75 lines
2.0 KiB
Go
75 lines
2.0 KiB
Go
/*
|
|
Copyright (c) 2016 VMware, Inc. All Rights Reserved.
|
|
|
|
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 account
|
|
|
|
import (
|
|
"context"
|
|
"flag"
|
|
|
|
"github.com/vmware/govmomi/govc/flags"
|
|
"github.com/vmware/govmomi/object"
|
|
"github.com/vmware/govmomi/vim25/types"
|
|
)
|
|
|
|
type AccountFlag struct {
|
|
*flags.ClientFlag
|
|
*flags.DatacenterFlag
|
|
*flags.HostSystemFlag
|
|
|
|
types.HostAccountSpec
|
|
}
|
|
|
|
func newAccountFlag(ctx context.Context) (*AccountFlag, context.Context) {
|
|
f := &AccountFlag{}
|
|
f.ClientFlag, ctx = flags.NewClientFlag(ctx)
|
|
f.DatacenterFlag, ctx = flags.NewDatacenterFlag(ctx)
|
|
f.HostSystemFlag, ctx = flags.NewHostSystemFlag(ctx)
|
|
return f, ctx
|
|
}
|
|
|
|
func (f *AccountFlag) Register(ctx context.Context, fs *flag.FlagSet) {
|
|
f.ClientFlag.Register(ctx, fs)
|
|
f.DatacenterFlag.Register(ctx, fs)
|
|
f.HostSystemFlag.Register(ctx, fs)
|
|
|
|
fs.StringVar(&f.Id, "id", "", "The ID of the specified account")
|
|
fs.StringVar(&f.Password, "password", "", "The password for the specified account id")
|
|
fs.StringVar(&f.Description, "description", "", "The description of the specified account")
|
|
}
|
|
|
|
func (f *AccountFlag) Process(ctx context.Context) error {
|
|
if err := f.ClientFlag.Process(ctx); err != nil {
|
|
return err
|
|
}
|
|
if err := f.DatacenterFlag.Process(ctx); err != nil {
|
|
return err
|
|
}
|
|
if err := f.HostSystemFlag.Process(ctx); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (f *AccountFlag) HostAccountManager(ctx context.Context) (*object.HostAccountManager, error) {
|
|
h, err := f.HostSystem()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return h.ConfigManager().AccountManager(ctx)
|
|
}
|