github.com/vmware/govmomi@v0.37.2/govc/license/label.go (about)

     1  /*
     2  Copyright (c) 2019 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 license
    18  
    19  import (
    20  	"context"
    21  	"flag"
    22  
    23  	"github.com/vmware/govmomi/govc/cli"
    24  	"github.com/vmware/govmomi/govc/flags"
    25  	"github.com/vmware/govmomi/license"
    26  	"github.com/vmware/govmomi/vim25/methods"
    27  	"github.com/vmware/govmomi/vim25/types"
    28  )
    29  
    30  type label struct {
    31  	*flags.ClientFlag
    32  }
    33  
    34  func init() {
    35  	cli.Register("license.label.set", &label{})
    36  }
    37  
    38  func (cmd *label) Register(ctx context.Context, f *flag.FlagSet) {
    39  	cmd.ClientFlag, ctx = flags.NewClientFlag(ctx)
    40  	cmd.ClientFlag.Register(ctx, f)
    41  }
    42  
    43  func (cmd *label) Usage() string {
    44  	return "LICENSE KEY VAL"
    45  }
    46  
    47  func (cmd *label) Description() string {
    48  	return `Set license labels.
    49  
    50  Examples:
    51    govc license.label.set 00000-00000-00000-00000-00000 team cnx # add/set label
    52    govc license.label.set 00000-00000-00000-00000-00000 team ""  # remove label
    53    govc license.ls -json | jq '.[] | select(.labels[].key == "team") | .licenseKey'`
    54  }
    55  
    56  func (cmd *label) Run(ctx context.Context, f *flag.FlagSet) error {
    57  	client, err := cmd.Client()
    58  	if err != nil {
    59  		return err
    60  	}
    61  
    62  	m := license.NewManager(client)
    63  
    64  	if f.NArg() != 3 {
    65  		return flag.ErrHelp
    66  	}
    67  
    68  	req := types.UpdateLicenseLabel{
    69  		This:       m.Reference(),
    70  		LicenseKey: f.Arg(0),
    71  		LabelKey:   f.Arg(1),
    72  		LabelValue: f.Arg(2),
    73  	}
    74  
    75  	_, err = methods.UpdateLicenseLabel(ctx, m.Client(), &req)
    76  	return err
    77  }