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) RegisterVM(ctx context.Context, namespace string, spec RegisterVMSpec) (string, 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 RegisterVMSpec
- 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 ¶
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 ¶
type ConfigStatus struct {
// contains filtered or unexported fields
}
func ConfigStatusFromString ¶
func ConfigStatusFromString(s string) ConfigStatus
func (*ConfigStatus) FromString ¶
func (v *ConfigStatus) FromString(s string)
func (ConfigStatus) MarshalJSON ¶
func (v ConfigStatus) MarshalJSON() ([]byte, error)
func (ConfigStatus) String ¶
func (v ConfigStatus) String() string
func (*ConfigStatus) UnmarshalJSON ¶
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 ¶
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 ¶
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 ¶
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 ¶
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 ¶
func IpAssignmentModeFromString(s string) IpAssignmentMode
func (*IpAssignmentMode) FromString ¶
func (v *IpAssignmentMode) FromString(s string)
func (IpAssignmentMode) MarshalJSON ¶
func (v IpAssignmentMode) MarshalJSON() ([]byte, error)
func (IpAssignmentMode) String ¶
func (v IpAssignmentMode) String() string
func (*IpAssignmentMode) UnmarshalJSON ¶
func (v *IpAssignmentMode) UnmarshalJSON(b []byte) error
type IpRange ¶
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 ¶
type KubernetesStatus struct {
// contains filtered or unexported fields
}
func KubernetesStatusFromString ¶
func KubernetesStatusFromString(s string) KubernetesStatus
func (*KubernetesStatus) FromString ¶
func (v *KubernetesStatus) FromString(s string)
func (KubernetesStatus) MarshalJSON ¶
func (v KubernetesStatus) MarshalJSON() ([]byte, error)
func (KubernetesStatus) String ¶
func (v KubernetesStatus) String() string
func (*KubernetesStatus) UnmarshalJSON ¶
func (v *KubernetesStatus) UnmarshalJSON(b []byte) error
type LoadBalancerConfigSpec ¶
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 ¶
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 ¶
func LoadBalancerFromString(s string) LoadBalancerProvider
func (*LoadBalancerProvider) FromString ¶
func (v *LoadBalancerProvider) FromString(s string)
func (LoadBalancerProvider) MarshalJSON ¶
func (v LoadBalancerProvider) MarshalJSON() ([]byte, error)
func (LoadBalancerProvider) String ¶
func (v LoadBalancerProvider) String() string
func (*LoadBalancerProvider) UnmarshalJSON ¶
func (v *LoadBalancerProvider) UnmarshalJSON(b []byte) error
type LoadBalancersServer ¶
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 ¶
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 ¶
ActivateSupervisorServices activates a previously registered Supervisor Service.
func (*Manager) CreateNamespace ¶
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 ¶
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 ¶
func (c *Manager) CreateVmClass(ctx context.Context, spec VirtualMachineClassCreateSpec) error
func (*Manager) DeactivateSupervisorServices ¶
DeactivateSupervisorServices deactivates a previously registered Supervisor Service.
func (*Manager) DeleteNamespace ¶
DeleteNamespace https://developer.vmware.com/apis/vsphere-automation/v7.0U3/vcenter/api/vcenter/namespaces/instances/namespace/delete/
func (*Manager) DeleteVmClass ¶
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 ¶
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 ¶
func (c *Manager) GetSupervisorService(ctx context.Context, id string) (SupervisorServiceInfo, error)
GetSupervisorService gets the information of a specific supervisor service.
func (*Manager) GetVmClass ¶
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 ¶
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 ¶
func (c *Manager) ListSupervisorServices(ctx context.Context) ([]SupervisorServiceSummary, error)
ListSupervisorServices returns a summary of all clusters with vSphere Namespaces enabled.
func (*Manager) ListVmClasses ¶
func (c *Manager) ListVmClasses(ctx context.Context) ([]VirtualMachineClassInfo, error)
func (*Manager) RegisterVM ¶
func (*Manager) RemoveSupervisorService ¶
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 ¶
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 ¶
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 ¶
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 ¶
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 ¶
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 ¶
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 ¶
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 ¶
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 ¶
func ClusterNetworkProviderFromString(s string) NetworkProvider
func (*NetworkProvider) FromString ¶
func (v *NetworkProvider) FromString(s string)
func (NetworkProvider) MarshalJSON ¶
func (v NetworkProvider) MarshalJSON() ([]byte, error)
func (NetworkProvider) String ¶
func (v NetworkProvider) String() string
func (*NetworkProvider) UnmarshalJSON ¶
func (v *NetworkProvider) UnmarshalJSON(b []byte) error
type NetworksCreateSpec ¶
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 ¶
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 RegisterVMSpec ¶
type RegisterVMSpec struct {
VM string `json:"vm"`
}
RegisterVMSpec https://developer.broadcom.com/xapis/vsphere-automation-api/latest/vcenter/data-structures/Namespaces_Instances_RegisterVMSpec/
type SizingHint ¶
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 ¶
func SizingHintFromString(s string) SizingHint
func (*SizingHint) FromString ¶
func (v *SizingHint) FromString(s string)
func (SizingHint) MarshalJSON ¶
func (v SizingHint) MarshalJSON() ([]byte, error)
func (SizingHint) String ¶
func (v SizingHint) String() string
func (*SizingHint) UnmarshalJSON ¶
func (v *SizingHint) UnmarshalJSON(b []byte) error
type StorageSpec ¶
type SupervisorService ¶
type SupervisorService struct {
VsphereService SupervisorServicesVSphereSpec `json:"vsphere_spec,omitempty"`
}
SupervisorService defines a new SupervisorService specification
type SupervisorServiceInfo ¶
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 ¶
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 ¶
type SupervisorServicesVSphereSpec struct {
VersionSpec SupervisorServicesVSphereVersionCreateSpec `json:"version_spec"`
}
SupervisorServicesVSphereSpec defines a new SupervisorService specification of vSphere type
type SupervisorServicesVSphereVersionCreateSpec ¶
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 ¶
type VgpuDevice struct {
ProfileName string `json:"profile_name"`
}
type VirtualDevices ¶
type VirtualDevices struct { DirectPathIoDevices []DirectPathIoDevice `json:"direct_path_io_devices,omitempty"` VgpuDevices []VgpuDevice `json:"vgpu_devices,omitempty"` }
type VirtualMachineClassCreateSpec ¶
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 ¶
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 ¶
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 ¶
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 ¶
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 ¶
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:-