github.com/vmware/govmomi@v0.43.0/govc/vm/guest/file_attr.go (about) 1 /* 2 Copyright (c) 2014-2016 VMware, Inc. All Rights Reserved. 3 4 Licensed under the Apache License, Version 2.0 (the "License"); 5 you may not use this file except in compliance with the License. 6 You may obtain a copy of the License at 7 8 http://www.apache.org/licenses/LICENSE-2.0 9 10 Unless required by applicable law or agreed to in writing, software 11 distributed under the License is distributed on an "AS IS" BASIS, 12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 See the License for the specific language governing permissions and 14 limitations under the License. 15 */ 16 17 package guest 18 19 import ( 20 "context" 21 "flag" 22 23 "github.com/vmware/govmomi/govc/flags" 24 "github.com/vmware/govmomi/vim25/types" 25 ) 26 27 type FileAttrFlag struct { 28 types.GuestPosixFileAttributes 29 } 30 31 func newFileAttrFlag(ctx context.Context) (*FileAttrFlag, context.Context) { 32 return &FileAttrFlag{}, ctx 33 } 34 35 func (flag *FileAttrFlag) Register(ctx context.Context, f *flag.FlagSet) { 36 f.Var(flags.NewOptionalInt32(&flag.OwnerId), "uid", "User ID") 37 f.Var(flags.NewOptionalInt32(&flag.GroupId), "gid", "Group ID") 38 f.Int64Var(&flag.Permissions, "perm", 0, "File permissions") 39 } 40 41 func (flag *FileAttrFlag) Process(ctx context.Context) error { 42 return nil 43 } 44 45 func (flag *FileAttrFlag) Attr() types.BaseGuestFileAttributes { 46 return &flag.GuestPosixFileAttributes 47 }