github.com/vmware/govmomi@v0.37.2/govc/cluster/vlcm/info.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 vlcm
    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/clusters"
    27  )
    28  
    29  type infoResult clusters.SoftwareManagementInfo
    30  
    31  func (r infoResult) Write(w io.Writer) error {
    32  	return nil
    33  }
    34  
    35  type info struct {
    36  	*flags.ClientFlag
    37  	*flags.OutputFlag
    38  
    39  	clusterId string
    40  }
    41  
    42  func init() {
    43  	cli.Register("cluster.vlcm.info", &info{})
    44  }
    45  
    46  func (cmd *info) Register(ctx context.Context, f *flag.FlagSet) {
    47  	cmd.ClientFlag, ctx = flags.NewClientFlag(ctx)
    48  	cmd.ClientFlag.Register(ctx, f)
    49  	cmd.OutputFlag, ctx = flags.NewOutputFlag(ctx)
    50  
    51  	f.StringVar(&cmd.clusterId, "cluster-id", "", "The identifier of the cluster.")
    52  }
    53  
    54  func (cmd *info) Process(ctx context.Context) error {
    55  	if err := cmd.ClientFlag.Process(ctx); err != nil {
    56  		return err
    57  	}
    58  	if err := cmd.OutputFlag.Process(ctx); err != nil {
    59  		return err
    60  	}
    61  
    62  	return nil
    63  }
    64  
    65  func (cmd *info) Usage() string {
    66  	return "CLUSTER"
    67  }
    68  
    69  func (cmd *info) Description() string {
    70  	return `Displays the software management status of a cluster.
    71  
    72  Examples:
    73    govc cluster.vlcm.info -cluster-id=domain-c21`
    74  }
    75  
    76  func (cmd *info) Run(ctx context.Context, f *flag.FlagSet) error {
    77  	rc, err := cmd.RestClient()
    78  
    79  	if err != nil {
    80  		return err
    81  	}
    82  
    83  	dm := clusters.NewManager(rc)
    84  
    85  	if res, err := dm.GetSoftwareManagement(cmd.clusterId); err != nil {
    86  		return err
    87  	} else {
    88  		if !cmd.All() {
    89  			cmd.JSON = true
    90  		}
    91  		return cmd.WriteResult(infoResult(res))
    92  	}
    93  }