github.com/vmware/govmomi@v0.51.0/vapi/namespace/internal/internal.go (about)

     1  // © Broadcom. All Rights Reserved.
     2  // The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries.
     3  // SPDX-License-Identifier: Apache-2.0
     4  
     5  package internal
     6  
     7  const (
     8  	// NamespaceClusterPath is the rest endpoint for the namespace cluster management API
     9  	NamespaceClusterPath                    = "/api/vcenter/namespace-management/clusters"
    10  	NamespaceDistributedSwitchCompatibility = "/api/vcenter/namespace-management/distributed-switch-compatibility"
    11  	NamespaceEdgeClusterCompatibility       = "/api/vcenter/namespace-management/edge-cluster-compatibility"
    12  	SupervisorServicesPath                  = "/api/vcenter/namespace-management/supervisor-services"
    13  	SupervisorServicesVersionsPath          = "/versions"
    14  
    15  	NamespacesPath = "/api/vcenter/namespaces/instances"
    16  	VmClassesPath  = "/api/vcenter/namespace-management/virtual-machine-classes"
    17  )
    18  
    19  type SupportBundleToken struct {
    20  	Value string `json:"wcp-support-bundle-token"`
    21  }