github.com/vmware/govmomi@v0.37.2/govc/vlcm/depot/offline/ls.go (about)

     1  /*
     2  Copyright (c) 2024-2024 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 offline
    18  
    19  import (
    20  	"context"
    21  	"flag"
    22  	"io"
    23  
    24  	"github.com/vmware/govmomi/govc/cli"
    25  	"github.com/vmware/govmomi/govc/flags"
    26  	"github.com/vmware/govmomi/vapi/esx/settings/depots"
    27  )
    28  
    29  type lsResult map[string]depots.SettingsDepotsOfflineInfo
    30  
    31  func (r lsResult) Write(w io.Writer) error {
    32  	return nil
    33  }
    34  
    35  type ls struct {
    36  	*flags.ClientFlag
    37  	*flags.OutputFlag
    38  }
    39  
    40  func init() {
    41  	cli.Register("vlcm.depot.offline.ls", &ls{})
    42  }
    43  
    44  func (cmd *ls) Register(ctx context.Context, f *flag.FlagSet) {
    45  	cmd.ClientFlag, ctx = flags.NewClientFlag(ctx)
    46  	cmd.ClientFlag.Register(ctx, f)
    47  
    48  	cmd.OutputFlag, ctx = flags.NewOutputFlag(ctx)
    49  }
    50  
    51  func (cmd *ls) Process(ctx context.Context) error {
    52  	if err := cmd.ClientFlag.Process(ctx); err != nil {
    53  		return err
    54  	}
    55  	if err := cmd.OutputFlag.Process(ctx); err != nil {
    56  		return err
    57  	}
    58  
    59  	return nil
    60  }
    61  
    62  func (cmd *ls) Usage() string {
    63  	return "VLCM"
    64  }
    65  
    66  func (cmd *ls) Description() string {
    67  	return `Displays the list of offline image depots. 
    68  
    69  Examples:
    70    govc vlcm.depot.offline.ls`
    71  }
    72  
    73  func (cmd *ls) Run(ctx context.Context, f *flag.FlagSet) error {
    74  	rc, err := cmd.RestClient()
    75  
    76  	if err != nil {
    77  		return err
    78  	}
    79  
    80  	dm := depots.NewManager(rc)
    81  
    82  	if d, err := dm.GetOfflineDepots(); err != nil {
    83  		return err
    84  	} else {
    85  		if !cmd.All() {
    86  			cmd.JSON = true
    87  		}
    88  		return cmd.WriteResult(lsResult(d))
    89  	}
    90  }