Documentation ¶
Index ¶
- Variables
- type AddressRange
- type AviConfigCreateSpec
- type Cidr
- type ClusterSummary
- type ConfigStatus
- type DefaultImageRegistry
- type DirectPathIoDevice
- type DistributedSwitchCompatibilitySummary
- type EdgeClusterCompatibilitySummary
- type EnableClusterSpec
- type HAProxyConfigCreateSpec
- type ImageStorageSpec
- type IpAssignmentMode
- type IpRange
- type KubernetesStatus
- type LoadBalancerConfigSpec
- type LoadBalancerProvider
- type LoadBalancersServer
- type LocalizableMessage
- type Manager
- func (c *Manager) ActivateSupervisorServices(ctx context.Context, id string) error
- func (c *Manager) CreateNamespace(ctx context.Context, spec NamespacesInstanceCreateSpec) error
- func (c *Manager) CreateSupervisorService(ctx context.Context, service *SupervisorService) error
- func (c *Manager) CreateSupportBundle(ctx context.Context, id string) (*SupportBundleLocation, error)
- func (c *Manager) CreateVmClass(ctx context.Context, spec VirtualMachineClassCreateSpec) error
- func (c *Manager) DeactivateSupervisorServices(ctx context.Context, id string) error
- func (c *Manager) DeleteNamespace(ctx context.Context, namespace string) error
- func (c *Manager) DeleteVmClass(ctx context.Context, vmClass string) error
- func (c *Manager) DisableCluster(ctx context.Context, id string) error
- func (c *Manager) EnableCluster(ctx context.Context, id string, spec *EnableClusterSpec) error
- func (c *Manager) GetNamespace(ctx context.Context, namespace string) (NamespacesInstanceInfo, error)
- func (c *Manager) GetSupervisorService(ctx context.Context, id string) (SupervisorServiceInfo, error)
- func (c *Manager) GetVmClass(ctx context.Context, vmClass string) (VirtualMachineClassInfo, error)
- func (c *Manager) ListClusters(ctx context.Context) ([]ClusterSummary, error)
- func (c *Manager) ListCompatibleDistributedSwitches(ctx context.Context, clusterId string) (result []DistributedSwitchCompatibilitySummary, err error)
- func (c *Manager) ListCompatibleEdgeClusters(ctx context.Context, clusterId string, switchId string) (result []EdgeClusterCompatibilitySummary, err error)
- func (c *Manager) ListNamespaces(ctx context.Context) ([]NamespacesInstanceSummary, error)
- func (c *Manager) ListSupervisorServices(ctx context.Context) ([]SupervisorServiceSummary, error)
- func (c *Manager) ListVmClasses(ctx context.Context) ([]VirtualMachineClassInfo, error)
- func (c *Manager) RemoveSupervisorService(ctx context.Context, id string) error
- func (c *Manager) SupportBundleRequest(ctx context.Context, bundle *SupportBundleLocation) (*http.Request, error)
- func (c *Manager) UpdateNamespace(ctx context.Context, namespace string, spec NamespacesInstanceUpdateSpec) error
- func (c *Manager) UpdateVmClass(ctx context.Context, vmClass string, spec VirtualMachineClassUpdateSpec) error
- type MasterManagementNetwork
- type NamespacesInstanceCreateSpec
- type NamespacesInstanceInfo
- type NamespacesInstanceStats
- type NamespacesInstanceSummary
- type NamespacesInstanceUpdateSpec
- type NcpClusterNetworkSpec
- type NetworkProvider
- type NetworksCreateSpec
- type NsxNetwork
- type SizingHint
- type StorageSpec
- type SupervisorService
- type SupervisorServiceInfo
- type SupervisorServiceSummary
- type SupervisorServicesVSphereSpec
- type SupervisorServicesVSphereVersionCreateSpec
- type SupportBundleLocation
- type SupportBundleToken
- type VgpuDevice
- type VirtualDevices
- type VirtualMachineClassCreateSpec
- type VirtualMachineClassInfo
- type VirtualMachineClassUpdateSpec
- type VmServiceSpec
- type VsphereDVPGNetworkCreateSpec
- type WorkloadNetworksEnableSpec
Constants ¶
This section is empty.
Variables ¶
var ( UndefinedSizingHint = SizingHint{""} TinySizingHint = SizingHint{"TINY"} SmallSizingHint = SizingHint{"SMALL"} MediumSizingHint = SizingHint{"MEDIUM"} LargeSizingHint = SizingHint{"LARGE"} )
var ( UndefinedIpAssignmentMode = IpAssignmentMode{""} DhcpIpAssignmentMode = IpAssignmentMode{"DHCP"} StaticRangeIpAssignmentMode = IpAssignmentMode{"STATICRANGE"} )
var ( UndefinedNetworkProvider = NetworkProvider{""} NsxtContainerPluginNetworkProvider = NetworkProvider{"NSXT_CONTAINER_PLUGIN"} // Since 7.0u1:- VSphereNetworkProvider = NetworkProvider{"VSPHERE_NETWORK"} )
var ( UndefinedLoadBalancerProvider = LoadBalancerProvider{""} HAProxyLoadBalancerProvider = LoadBalancerProvider{"HA_PROXY"} AviLoadBalancerProvider = LoadBalancerProvider{"AVI"} )
var ( UndefinedKubernetesStatus = KubernetesStatus{""} ReadyKubernetesStatus = KubernetesStatus{"READY"} WarningKubernetesStatus = KubernetesStatus{"WARNING"} ErrorKubernetesStatus = KubernetesStatus{"ERROR"} )
var ( UndefinedConfigStatus = ConfigStatus{""} ConfiguringConfigStatus = ConfigStatus{"CONFIGURING"} RemovingConfigStatus = ConfigStatus{"REMOVING"} RunningConfigStatus = ConfigStatus{"RUNNING"} ErrorConfigStatus = ConfigStatus{"ERROR"} )
Functions ¶
This section is empty.
Types ¶
type AddressRange ¶
type AddressRange struct { SubnetMask string `json:"subnet_mask,omitempty"` StartingAddress string `json:"starting_address"` Gateway string `json:"gateway"` AddressCount int `json:"address_count,omitempty"` }
Since 7.0.0:-
type AviConfigCreateSpec ¶ added in v0.30.0
type AviConfigCreateSpec struct { CertificateAuthorityChain string `json:"certificate_authority_chain"` Password string `json:"password"` Server *LoadBalancersServer `json:"server"` Username string `json:"username"` }
AviConfigCreateSpec defines full information for the linking of a Tanzu Kubernetes Grid enabled vSphere cluster to an NSX Advanced Load Balancer (formerly Avi Load Balancer) See https://developer.vmware.com/apis/vsphere-automation/latest/vcenter/data-structures/NamespaceManagement/LoadBalancers/AviConfigCreateSpec/ Since 7.0u2:-
type Cidr ¶
Cidr defines an IPv4 CIDR range for a subnet. See https://developer.vmware.com/apis/vsphere-automation/latest/vcenter/data-structures/Namespaces/Instances/Ipv4Cidr/ TODO decide whether to rename this in the Go API to match the vSphere API. Since 7.0.0:-
type ClusterSummary ¶
type ClusterSummary struct { ID string `json:"cluster"` Name string `json:"cluster_name"` // Was string until #2860:- KubernetesStatus *KubernetesStatus `json:"kubernetes_status"` // Was string until #2860:- ConfigStatus *ConfigStatus `json:"config_status"` }
ClusterSummary for a cluster with vSphere Namespaces enabled. See https://developer.vmware.com/apis/vsphere-automation/latest/vcenter/data-structures/NamespaceManagement/Clusters/Summary/ TODO plural vs singular - consistency with REST API above vs Go Since 7.0.0:-
func (*ClusterSummary) Reference ¶
func (c *ClusterSummary) Reference() types.ManagedObjectReference
TODO whether to replace the below with a Go GUID (json to string) reference type? (I.e. replace ClusterSummary.ID string with ID ManagedObjectID) Reference implements the mo.Reference interface
type ConfigStatus ¶ added in v0.30.0
type ConfigStatus struct {
// contains filtered or unexported fields
}
func ConfigStatusFromString ¶ added in v0.30.0
func ConfigStatusFromString(s string) ConfigStatus
func (*ConfigStatus) FromString ¶ added in v0.30.0
func (v *ConfigStatus) FromString(s string)
func (ConfigStatus) MarshalJSON ¶ added in v0.30.0
func (v ConfigStatus) MarshalJSON() ([]byte, error)
func (ConfigStatus) String ¶ added in v0.30.0
func (v ConfigStatus) String() string
func (*ConfigStatus) UnmarshalJSON ¶ added in v0.30.0
func (v *ConfigStatus) UnmarshalJSON(b []byte) error
type DefaultImageRegistry ¶
type DefaultImageRegistry struct { Hostname string `json:"hostname"` Port int `json:"port,omitempty"` }
Since 7.0.0:-
type DirectPathIoDevice ¶ added in v0.37.0
type DirectPathIoDevice struct { CustomLabel string `json:"custom_label,omitempty"` DeviceId int64 `json:"device_id"` VendorId int64 `json:"vendor_id"` }
DirectPathIoDevice https://developer.vmware.com/apis/vsphere-automation/v7.0U3/vcenter/data-structures/NamespaceManagement/VirtualMachineClasses/DynamicDirectPathIODevice/
type DistributedSwitchCompatibilitySummary ¶
type DistributedSwitchCompatibilitySummary struct { Compatible bool `json:"compatible"` DistributedSwitch string `json:"distributed_switch"` }
Since 7.0.0:-
type EdgeClusterCompatibilitySummary ¶
type EdgeClusterCompatibilitySummary struct { Compatible bool `json:"compatible"` EdgeCluster string `json:"edge_cluster"` DisplayName string `json:"display_name"` }
Since 7.0.0:-
type EnableClusterSpec ¶
type EnableClusterSpec struct { MasterDNSSearchDomains []string `json:"master_DNS_search_domains,omitempty"` ImageStorage ImageStorageSpec `json:"image_storage"` NcpClusterNetworkSpec *NcpClusterNetworkSpec `json:"ncp_cluster_network_spec,omitempty"` // Note: NcpClusterNetworkSpec is replaced by WorkloadNetworksSpec in vSphere 7.0u2+ // Since 7.0u1:- WorkloadNetworksSpec *WorkloadNetworksEnableSpec `json:"workload_networks_spec,omitempty"` MasterManagementNetwork *MasterManagementNetwork `json:"master_management_network"` MasterDNSNames []string `json:"Master_DNS_names,omitempty"` MasterNTPServers []string `json:"master_NTP_servers,omitempty"` EphemeralStoragePolicy string `json:"ephemeral_storage_policy,omitempty"` DefaultImageRepository string `json:"default_image_repository,omitempty"` ServiceCidr *Cidr `json:"service_cidr"` LoginBanner string `json:"login_banner,omitempty"` // Was string until #2860:- SizeHint *SizingHint `json:"size_hint"` WorkerDNS []string `json:"worker_DNS,omitempty"` DefaultImageRegistry *DefaultImageRegistry `json:"default_image_registry,omitempty"` MasterDNS []string `json:"master_DNS,omitempty"` // Was string until #2860:- NetworkProvider *NetworkProvider `json:"network_provider"` MasterStoragePolicy string `json:"master_storage_policy,omitempty"` DefaultKubernetesServiceContentLibrary string `json:"default_kubernetes_service_content_library,omitempty"` WorkloadNTPServers []string `json:"workload_ntp_servers,omitempty"` LoadBalancerConfigSpec *LoadBalancerConfigSpec `json:"load_balancer_config_spec,omitempty"` }
EnableClusterSpec defines a Tanzu Supervisor Cluster for creation. See: https://developer.vmware.com/apis/vsphere-automation/latest/vcenter/data-structures/NamespaceManagement/Clusters/EnableSpec/ Since 7.0.0:-
type HAProxyConfigCreateSpec ¶ added in v0.30.0
type HAProxyConfigCreateSpec struct { CertificateAuthorityChain string `json:"certificate_authority_chain"` Password string `json:"password"` Servers []LoadBalancersServer `json:"servers"` Username string `json:"username"` }
HAProxyConfigCreateSpec defines full information for the linking of a Tanzu Kubernetes Grid enabled vSphere cluster to a HA Proxy Load Balancer. Note: HA Proxy is not supported in vSphere 7.0u3 and above. Use Avi
with vSphere networking, or NSX-T networking, instead.
See https://developer.vmware.com/apis/vsphere-automation/latest/vcenter/data-structures/NamespaceManagement/LoadBalancers/HAProxyConfigCreateSpec/ Since 7.0u1:-
type ImageStorageSpec ¶ added in v0.30.0
type ImageStorageSpec struct {
StoragePolicy string `json:"storage_policy"`
}
ImageStorageSpec defines the storage policy ID (not name) assigned to a Tanzu Kubernetes Grid cluster (supervisor or workload clusters) See https://developer.vmware.com/apis/vsphere-automation/latest/vcenter/data-structures/NamespaceManagement/Clusters/ImageStorageSpec/ Since 7.0.0:-
type IpAssignmentMode ¶ added in v0.30.0
type IpAssignmentMode struct {
// contains filtered or unexported fields
}
IpAssignmentMode specifies whether DHCP or a static range assignment method is used. This is used for both Supervisor Cluster and Workload Cluster networks in 7.0u3 and above. See https://developer.vmware.com/apis/vsphere-automation/latest/vcenter/data-structures/NamespaceManagement/Networks/IPAssignmentMode/ TODO decide whether to rename this in the Go API to match the vSphere API. Since 7.0u3:-
func IpAssignmentModeFromString ¶ added in v0.30.0
func IpAssignmentModeFromString(s string) IpAssignmentMode
func (*IpAssignmentMode) FromString ¶ added in v0.30.0
func (v *IpAssignmentMode) FromString(s string)
func (IpAssignmentMode) MarshalJSON ¶ added in v0.30.0
func (v IpAssignmentMode) MarshalJSON() ([]byte, error)
func (IpAssignmentMode) String ¶ added in v0.30.0
func (v IpAssignmentMode) String() string
func (*IpAssignmentMode) UnmarshalJSON ¶ added in v0.30.0
func (v *IpAssignmentMode) UnmarshalJSON(b []byte) error
type IpRange ¶ added in v0.30.0
type IpRange struct { Address string `json:"address,omitempty"` Count int `json:"count,omitempty"` }
IpRange specifies a contiguous set of IPv4 Addresses See https://developer.vmware.com/apis/vsphere-automation/latest/vcenter/data-structures/NamespaceManagement/IPRange/ TODO decide whether to rename this in the Go API to match the vSphere API. Note: omitempty allows AddressRanges: []IpRange to become json [] Since 7.0u1:-
type KubernetesStatus ¶ added in v0.30.0
type KubernetesStatus struct {
// contains filtered or unexported fields
}
func KubernetesStatusFromString ¶ added in v0.30.0
func KubernetesStatusFromString(s string) KubernetesStatus
func (*KubernetesStatus) FromString ¶ added in v0.30.0
func (v *KubernetesStatus) FromString(s string)
func (KubernetesStatus) MarshalJSON ¶ added in v0.30.0
func (v KubernetesStatus) MarshalJSON() ([]byte, error)
func (KubernetesStatus) String ¶ added in v0.30.0
func (v KubernetesStatus) String() string
func (*KubernetesStatus) UnmarshalJSON ¶ added in v0.30.0
func (v *KubernetesStatus) UnmarshalJSON(b []byte) error
type LoadBalancerConfigSpec ¶ added in v0.30.0
type LoadBalancerConfigSpec struct { // AddressRanges removed since 7.0u2:- (Now in workload network spec) AddressRanges []IpRange `json:"address_ranges,omitempty"` // omitempty to prevent null being the value HAProxyConfigCreateSpec *HAProxyConfigCreateSpec `json:"ha_proxy_config_create_spec,omitempty"` // Optional for create:- Id string `json:"id"` Provider *LoadBalancerProvider `json:"provider"` // Since 7.0u2:- AviConfigCreateSpec *AviConfigCreateSpec `json:"avi_config_create_spec,omitempty"` }
LoadBalancerConfigSpec defines LoadBalancer options for Tanzu Kubernetes Grid, both for the Supervisor Cluster and for Workload Cluster kubeapi endpoints, and services of type LoadBalancer See https://developer.vmware.com/apis/vsphere-automation/latest/vcenter/data-structures/NamespaceManagement/LoadBalancers/ConfigSpec/ Since 7.0u1:-
type LoadBalancerProvider ¶ added in v0.30.0
type LoadBalancerProvider struct {
// contains filtered or unexported fields
}
A LoadBalancerProvider is an enum type that defines the Load Balancer technology in use in a Tanzu Kubernetes Grid cluster. Note: If invalid or undefined (E.g. if a newer/older vSphere
version is used whose option isn't listed) then the UndefinedLoadBalancerProvider value shall be set. This translates to an empty string, removing its element from the produces JSON.
func LoadBalancerFromString ¶ added in v0.30.0
func LoadBalancerFromString(s string) LoadBalancerProvider
func (*LoadBalancerProvider) FromString ¶ added in v0.30.0
func (v *LoadBalancerProvider) FromString(s string)
func (LoadBalancerProvider) MarshalJSON ¶ added in v0.30.0
func (v LoadBalancerProvider) MarshalJSON() ([]byte, error)
func (LoadBalancerProvider) String ¶ added in v0.30.0
func (v LoadBalancerProvider) String() string
func (*LoadBalancerProvider) UnmarshalJSON ¶ added in v0.30.0
func (v *LoadBalancerProvider) UnmarshalJSON(b []byte) error
type LoadBalancersServer ¶ added in v0.30.0
LoadBalancersServer defines an Avi or HA Proxy load balancer location. Host can be an IP Address (normally an Avi Management Virtual IP for the Avi Controller(s)) or a hostname. See https://developer.vmware.com/apis/vsphere-automation/latest/vcenter/data-structures/NamespaceManagement/LoadBalancers/Server/ Since 7.0u1:-
type LocalizableMessage ¶ added in v0.37.0
type LocalizableMessage struct { Details interface{} `json:"details"` Severity string `json:"severity"` }
type Manager ¶
Manager extends rest.Client, adding namespace related methods.
func NewManager ¶
NewManager creates a new Manager instance with the given client.
func (*Manager) ActivateSupervisorServices ¶ added in v0.28.0
ActivateSupervisorServices activates a previously registered Supervisor Service.
func (*Manager) CreateNamespace ¶ added in v0.37.0
func (c *Manager) CreateNamespace(ctx context.Context, spec NamespacesInstanceCreateSpec) error
CreateNamespace https://developer.vmware.com/apis/vsphere-automation/v7.0U3/vcenter/api/vcenter/namespaces/instances/post/
func (*Manager) CreateSupervisorService ¶ added in v0.28.0
func (c *Manager) CreateSupervisorService(ctx context.Context, service *SupervisorService) error
CreateSupervisorService creates a new Supervisor Service on vSphere Namespaces endpoint.
func (*Manager) CreateSupportBundle ¶
func (c *Manager) CreateSupportBundle(ctx context.Context, id string) (*SupportBundleLocation, error)
CreateSupportBundle retrieves the cluster's Namespaces-related support bundle.
func (*Manager) CreateVmClass ¶ added in v0.37.0
func (c *Manager) CreateVmClass(ctx context.Context, spec VirtualMachineClassCreateSpec) error
func (*Manager) DeactivateSupervisorServices ¶ added in v0.28.0
DeactivateSupervisorServices deactivates a previously registered Supervisor Service.
func (*Manager) DeleteNamespace ¶ added in v0.37.0
DeleteNamespace https://developer.vmware.com/apis/vsphere-automation/v7.0U3/vcenter/api/vcenter/namespaces/instances/namespace/delete/
func (*Manager) DeleteVmClass ¶ added in v0.37.0
func (*Manager) DisableCluster ¶
EnableCluster enables vSphere Namespaces on the specified cluster, using the given spec.
func (*Manager) EnableCluster ¶
EnableCluster enables vSphere Namespaces on the specified cluster, using the given spec. See https://developer.vmware.com/apis/vsphere-automation/latest/vcenter/api/vcenter/namespace-management/clusters/clusteractionenable/post/
func (*Manager) GetNamespace ¶ added in v0.37.0
func (c *Manager) GetNamespace(ctx context.Context, namespace string) (NamespacesInstanceInfo, error)
GetNamespace https://developer.vmware.com/apis/vsphere-automation/v7.0U3/vcenter/api/vcenter/namespaces/instances/namespace/get/
func (*Manager) GetSupervisorService ¶ added in v0.28.0
func (c *Manager) GetSupervisorService(ctx context.Context, id string) (SupervisorServiceInfo, error)
GetSupervisorService gets the information of a specific supervisor service.
func (*Manager) GetVmClass ¶ added in v0.37.0
func (*Manager) ListClusters ¶
func (c *Manager) ListClusters(ctx context.Context) ([]ClusterSummary, error)
ListClusters returns a summary of all clusters with vSphere Namespaces enabled.
func (*Manager) ListCompatibleDistributedSwitches ¶
func (*Manager) ListCompatibleEdgeClusters ¶
func (*Manager) ListNamespaces ¶ added in v0.37.0
func (c *Manager) ListNamespaces(ctx context.Context) ([]NamespacesInstanceSummary, error)
ListNamespaces https://developer.vmware.com/apis/vsphere-automation/v7.0U3/vcenter/api/vcenter/namespaces/instances/get/
func (*Manager) ListSupervisorServices ¶ added in v0.28.0
func (c *Manager) ListSupervisorServices(ctx context.Context) ([]SupervisorServiceSummary, error)
ListSupervisorServices returns a summary of all clusters with vSphere Namespaces enabled.
func (*Manager) ListVmClasses ¶ added in v0.37.0
func (c *Manager) ListVmClasses(ctx context.Context) ([]VirtualMachineClassInfo, error)
func (*Manager) RemoveSupervisorService ¶ added in v0.28.0
RemoveSupervisorService removes a previously deactivated supervisor service.
func (*Manager) SupportBundleRequest ¶
func (c *Manager) SupportBundleRequest(ctx context.Context, bundle *SupportBundleLocation) (*http.Request, error)
SupportBundleRequest returns an http.Request which can be used to download the given support bundle.
func (*Manager) UpdateNamespace ¶ added in v0.37.0
func (c *Manager) UpdateNamespace(ctx context.Context, namespace string, spec NamespacesInstanceUpdateSpec) error
UpdateNamespace https://developer.vmware.com/apis/vsphere-automation/v7.0U3/vcenter/api/vcenter/namespaces/instances/namespace/patch/
func (*Manager) UpdateVmClass ¶ added in v0.37.0
type MasterManagementNetwork ¶
type MasterManagementNetwork struct { Mode *IpAssignmentMode `json:"mode"` FloatingIP string `json:"floating_IP,omitempty"` AddressRange *AddressRange `json:"address_range,omitempty"` Network string `json:"network"` }
Since 7.0.0:-
type NamespacesInstanceCreateSpec ¶ added in v0.37.0
type NamespacesInstanceCreateSpec struct { Cluster string `json:"cluster"` Namespace string `json:"namespace"` VmServiceSpec VmServiceSpec `json:"vm_service_spec,omitempty"` StorageSpecs []StorageSpec `json:"storage_specs,omitempty"` }
NamespacesInstanceCreateSpec https://developer.vmware.com/apis/vsphere-automation/v7.0U3/vcenter/data-structures/Namespaces/Instances/CreateSpec/
type NamespacesInstanceInfo ¶ added in v0.37.0
type NamespacesInstanceInfo struct { ClusterId string `json:"cluster"` ConfigStatus string `json:"config_status"` Description string `json:"description"` Stats NamespacesInstanceStats `json:"stats"` SelfServiceNamespace bool `json:"self_service_namespace,omitempty"` Messages []LocalizableMessage `json:"message"` VmServiceSpec VmServiceSpec `json:"vm_service_spec,omitempty"` StorageSpecs []StorageSpec `json:"storage_specs,omitempty"` }
NamespacesInstanceInfo https://developer.vmware.com/apis/vsphere-automation/v7.0U3/vcenter/data-structures/Namespaces/Instances/Info/
type NamespacesInstanceStats ¶ added in v0.37.0
type NamespacesInstanceStats struct { CpuUsed int64 `json:"cpu_used"` MemoryUsed int64 `json:"memory_used"` StorageUsed int64 `json:"storage_used"` }
NamespacesInstanceStats https://developer.vmware.com/apis/vsphere-automation/v7.0U3/vcenter/data-structures/Namespaces/Instances/Stats/
type NamespacesInstanceSummary ¶ added in v0.37.0
type NamespacesInstanceSummary struct { ClusterId string `json:"cluster"` Namespace string `json:"namespace"` ConfigStatus string `json:"config_status"` Description string `json:"description"` Stats NamespacesInstanceStats `json:"stats"` SelfServiceNamespace bool `json:"self_service_namespace,omitempty"` }
NamespacesInstanceSummary https://developer.vmware.com/apis/vsphere-automation/v7.0U3/vcenter/data-structures/Namespaces/Instances/Summary/
type NamespacesInstanceUpdateSpec ¶ added in v0.37.0
type NamespacesInstanceUpdateSpec struct { VmServiceSpec VmServiceSpec `json:"vm_service_spec,omitempty"` StorageSpecs []StorageSpec `json:"storage_specs,omitempty"` }
NamespacesInstanceUpdateSpec https://developer.vmware.com/apis/vsphere-automation/v7.0U3/vcenter/data-structures/Namespaces/Instances/UpdateSpec/
type NcpClusterNetworkSpec ¶
type NcpClusterNetworkSpec struct { NsxEdgeCluster string `json:"nsx_edge_cluster,omitempty"` PodCidrs []Cidr `json:"pod_cidrs"` EgressCidrs []Cidr `json:"egress_cidrs"` ClusterDistributedSwitch string `json:"cluster_distributed_switch,omitempty"` IngressCidrs []Cidr `json:"ingress_cidrs"` }
NcpClusterNetworkSpec defines an NSX-T network for a Tanzu Kubernetes Grid workload cluster in vSphere 7.0.0 until 7.0u1. Note: NcpClusterNetworkSpec is replaced by WorkloadNetworksSpec in 7.0u2+. See https://developer.vmware.com/apis/vsphere-automation/latest/vcenter/data-structures/NamespaceManagement/Clusters/NCPClusterNetworkEnableSpec/ TODO decide whether to rename this in the Go API to match the vSphere API. Since 7.0.0:-
type NetworkProvider ¶ added in v0.30.0
type NetworkProvider struct {
// contains filtered or unexported fields
}
NetworkProvider defines which type of See https://developer.vmware.com/apis/vsphere-automation/latest/vcenter/data-structures/NamespaceManagement/Clusters/NetworkProvider/ Since 7.0.0:-
func ClusterNetworkProviderFromString ¶ added in v0.30.0
func ClusterNetworkProviderFromString(s string) NetworkProvider
func (*NetworkProvider) FromString ¶ added in v0.30.0
func (v *NetworkProvider) FromString(s string)
func (NetworkProvider) MarshalJSON ¶ added in v0.30.0
func (v NetworkProvider) MarshalJSON() ([]byte, error)
func (NetworkProvider) String ¶ added in v0.30.0
func (v NetworkProvider) String() string
func (*NetworkProvider) UnmarshalJSON ¶ added in v0.30.0
func (v *NetworkProvider) UnmarshalJSON(b []byte) error
type NetworksCreateSpec ¶ added in v0.30.0
type NetworksCreateSpec struct { Network string `json:"network"` NetworkProvider *NetworkProvider `json:"network_provider"` VSphereNetwork *VsphereDVPGNetworkCreateSpec `json:"vsphere_network,omitempty"` // Since 7.0u3:- NsxNetwork *NsxNetwork `json:"nsx_network,omitempty"` }
NetworksCreateSpec specifies a Tanzu Kubernetes Grid Supervisor or Workload network that should be created. See https://developer.vmware.com/apis/vsphere-automation/latest/vcenter/data-structures/NamespaceManagement/Networks/CreateSpec/ Since 7.0u1:-
type NsxNetwork ¶ added in v0.30.0
type NsxNetwork struct { EgressCidrs []Cidr `json:"egress_cidrs"` IngressCidrs []Cidr `json:"ingress_cidrs"` LoadBalancerSize string `json:"load_balancer_size"` NamespaceNetworkCidrs []Cidr `json:"namespace_network_cidrs"` NsxTier0Gateway string `json:"nsx_tier0_gateway"` RoutedMode bool `json:"routed_mode"` SubnetPrefixLength int `json:"subnet_prefix_length"` }
NsxNetwork defines a supervisor or workload NSX-T network for use with a Tanzu Kubernetes Cluster. See https://developer.vmware.com/apis/vsphere-automation/latest/vcenter/data-structures/NamespaceManagement/Networks/NsxNetworkCreateSpec/ TODO decide whether to rename this in the Go API to match the vSphere API. Since 7.0u3:-
type SizingHint ¶ added in v0.30.0
type SizingHint struct {
// contains filtered or unexported fields
}
SizingHint determines the size of the Tanzu Kubernetes Grid Supervisor cluster's kubeapi instances. Note: Only use TinySizingHint in non-production environments. Note: This is a secure coding pattern to avoid Stringly typed fields. See https://developer.vmware.com/apis/vsphere-automation/latest/vcenter/data-structures/NamespaceManagement/SizingHint/ Since 7.0.0
func SizingHintFromString ¶ added in v0.30.0
func SizingHintFromString(s string) SizingHint
func (*SizingHint) FromString ¶ added in v0.30.0
func (v *SizingHint) FromString(s string)
func (SizingHint) MarshalJSON ¶ added in v0.30.0
func (v SizingHint) MarshalJSON() ([]byte, error)
func (SizingHint) String ¶ added in v0.30.0
func (v SizingHint) String() string
func (*SizingHint) UnmarshalJSON ¶ added in v0.30.0
func (v *SizingHint) UnmarshalJSON(b []byte) error
type StorageSpec ¶ added in v0.38.0
type SupervisorService ¶ added in v0.28.0
type SupervisorService struct {
VsphereService SupervisorServicesVSphereSpec `json:"vsphere_spec,omitempty"`
}
SupervisorService defines a new SupervisorService specification
type SupervisorServiceInfo ¶ added in v0.28.0
type SupervisorServiceInfo struct { Name string `json:"display_name"` State string `json:"state"` Description string `json:"description"` }
SupervisorServiceInfo for a supervisor service existent in vSphere.
type SupervisorServiceSummary ¶ added in v0.28.0
type SupervisorServiceSummary struct { ID string `json:"supervisor_service"` Name string `json:"display_name"` State string `json:"state"` }
SupervisorServiceSummary for a supervisor service existent in vSphere.
type SupervisorServicesVSphereSpec ¶ added in v0.28.0
type SupervisorServicesVSphereSpec struct {
VersionSpec SupervisorServicesVSphereVersionCreateSpec `json:"version_spec"`
}
SupervisorServicesVSphereSpec defines a new SupervisorService specification of vSphere type
type SupervisorServicesVSphereVersionCreateSpec ¶ added in v0.28.0
type SupervisorServicesVSphereVersionCreateSpec struct { Content string `json:"content"` TrustedProvider bool `json:"trusted_provider,omitempty"` AcceptEula bool `json:"accept_EULA,omitempty"` }
SupervisorServicesVSphereVersionCreateSpec defines a new SupervisorService specification for vSphere
type SupportBundleLocation ¶
type SupportBundleLocation struct { Token SupportBundleToken `json:"wcp_support_bundle_token"` URL string `json:"url"` }
SupportBundleLocation contains the URL to download the per-cluster support bundle from, as well as a token required. Since 7.0.0:-
type SupportBundleToken ¶
SupportBundleToken information about the token required in the HTTP GET request to generate the support bundle. Since 7.0.0:-
type VgpuDevice ¶ added in v0.37.0
type VgpuDevice struct {
ProfileName string `json:"profile_name"`
}
type VirtualDevices ¶ added in v0.37.0
type VirtualDevices struct { DirectPathIoDevices []DirectPathIoDevice `json:"direct_path_io_devices,omitempty"` VgpuDevices []VgpuDevice `json:"vgpu_devices,omitempty"` }
type VirtualMachineClassCreateSpec ¶ added in v0.37.0
type VirtualMachineClassCreateSpec struct { Id string `json:"id"` CpuCount int64 `json:"cpu_count"` MemoryMb int64 `json:"memory_MB"` CpuReservation int64 `json:"cpu_reservation,omitempty"` MemoryReservation int64 `json:"memory_reservation,omitempty"` Devices VirtualDevices `json:"devices"` }
VirtualMachineClassCreateSpec https://developer.vmware.com/apis/vsphere-automation/v7.0U3/vcenter/data-structures/NamespaceManagement/VirtualMachineClasses/CreateSpec/
type VirtualMachineClassInfo ¶ added in v0.37.0
type VirtualMachineClassInfo struct { ConfigStatus string `json:"config_status"` Description string `json:"description"` Id string `json:"id"` CpuCount int64 `json:"cpu_count"` MemoryMb int64 `json:"memory_mb"` Messages []LocalizableMessage `json:"messages"` Namespaces []string `json:"namespaces"` Vms []string `json:"vms"` Devices VirtualDevices `json:"devices"` CpuReservation int64 `json:"cpu_reservation,omitempty"` MemoryReservation int64 `json:"memory_reservation,omitempty"` }
VirtualMachineClassInfo https://developer.vmware.com/apis/vsphere-automation/v7.0U3/vcenter/data-structures/NamespaceManagement/VirtualMachineClasses/Info/
type VirtualMachineClassUpdateSpec ¶ added in v0.37.0
type VirtualMachineClassUpdateSpec struct { Id string `json:"id"` CpuCount int64 `json:"cpu_count"` MemoryMb int64 `json:"memory_MB"` CpuReservation int64 `json:"cpu_reservation,omitempty"` MemoryReservation int64 `json:"memory_reservation,omitempty"` Devices VirtualDevices `json:"devices"` }
VirtualMachineClassUpdateSpec https://developer.vmware.com/apis/vsphere-automation/v7.0U3/vcenter/data-structures/NamespaceManagement/VirtualMachineClasses/UpdateSpec/
type VmServiceSpec ¶ added in v0.37.0
type VmServiceSpec struct { ContentLibraries []string `json:"content_libraries,omitempty"` VmClasses []string `json:"vm_classes,omitempty"` }
VmServiceSpec https://developer.vmware.com/apis/vsphere-automation/v7.0U3/vcenter/data-structures/Namespaces/Instances/VMServiceSpec/
type VsphereDVPGNetworkCreateSpec ¶ added in v0.30.0
type VsphereDVPGNetworkCreateSpec struct { AddressRanges []IpRange `json:"address_ranges"` Gateway string `json:"gateway"` PortGroup string `json:"portgroup"` SubnetMask string `json:"subnet_mask"` // Since 7.0u3:- IpAssignmentMode *IpAssignmentMode `json:"ip_assignment_mode,omitempty"` }
See https://developer.vmware.com/apis/vsphere-automation/latest/vcenter/data-structures/NamespaceManagement/Networks/VsphereDVPGNetworkCreateSpec/ Since 7.0u1:-
type WorkloadNetworksEnableSpec ¶ added in v0.30.0
type WorkloadNetworksEnableSpec struct {
SupervisorPrimaryWorkloadNetwork *NetworksCreateSpec `json:"supervisor_primary_workload_network"`
}
WorkloadNetworksEnableSpec defines the primary workload network for a new Tanzu Kubernetes Grid supervisor cluster. This may be used by namespaces for workloads too. See https://developer.vmware.com/apis/vsphere-automation/latest/vcenter/data-structures/NamespaceManagement/Clusters/WorkloadNetworksEnableSpec/ TODO decide whether to rename this in the Go API to match the vSphere API. Since 7.0u1:-