github.com/vmware/govmomi@v0.37.2/govc/namespace/service/deactivate.go (about)

     1  /*
     2  Copyright (c) 2021 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 service
    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/namespace"
    26  )
    27  
    28  type deactivate struct {
    29  	*flags.ClientFlag
    30  }
    31  
    32  func init() {
    33  	cli.Register("namespace.service.deactivate", &deactivate{})
    34  }
    35  
    36  func (cmd *deactivate) 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 *deactivate) Description() string {
    42  	return `Deactivates a vSphere Namespace Supervisor Service.
    43  
    44  Examples:
    45    govc namespace.service.deactivate my-supervisor-service other-supervisor-service`
    46  }
    47  
    48  func (cmd *deactivate) Usage() string {
    49  	return "NAME..."
    50  }
    51  
    52  func (cmd *deactivate) Run(ctx context.Context, f *flag.FlagSet) error {
    53  
    54  	services := f.Args()
    55  	if len(services) < 1 {
    56  		return flag.ErrHelp
    57  	}
    58  
    59  	c, err := cmd.RestClient()
    60  	if err != nil {
    61  		return err
    62  	}
    63  
    64  	m := namespace.NewManager(c)
    65  	for _, svc := range services {
    66  		if err := m.DeactivateSupervisorServices(ctx, svc); err != nil {
    67  			return err
    68  		}
    69  	}
    70  
    71  	return nil
    72  }