github.com/vmware/govmomi@v0.37.2/govc/library/subscriber/rm.go (about)

     1  /*
     2  Copyright (c) 2020 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 subscriber
    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/vapi/library"
    26  )
    27  
    28  type rm struct {
    29  	*flags.ClientFlag
    30  }
    31  
    32  func init() {
    33  	cli.Register("library.subscriber.rm", &rm{})
    34  }
    35  
    36  func (cmd *rm) Register(ctx context.Context, f *flag.FlagSet) {
    37  	cmd.ClientFlag, ctx = flags.NewClientFlag(ctx)
    38  	cmd.ClientFlag.Register(ctx, f)
    39  }
    40  
    41  func (cmd *rm) Usage() string {
    42  	return "SUBSCRIPTION-ID"
    43  }
    44  
    45  func (cmd *rm) Description() string {
    46  	return `Delete subscription of the published library.
    47  
    48  The subscribed library associated with the subscription will not be deleted.
    49  
    50  Examples:
    51    id=$(govc library-subscriber.ls | grep my-library-name | awk '{print $1}')
    52    govc library.subscriber.rm $id`
    53  }
    54  
    55  func (cmd *rm) Run(ctx context.Context, f *flag.FlagSet) error {
    56  	c, err := cmd.RestClient()
    57  	if err != nil {
    58  		return err
    59  	}
    60  
    61  	lib, err := flags.ContentLibrary(ctx, c, f.Arg(0))
    62  	if err != nil {
    63  		return err
    64  	}
    65  	m := library.NewManager(c)
    66  
    67  	return m.DeleteSubscriber(ctx, lib, f.Arg(0))
    68  }