From bca7fe2c260e3b3aa4bf5fc181a73e1f6e3f8df7 Mon Sep 17 00:00:00 2001 From: kinarashah Date: Thu, 7 Jun 2018 17:09:43 -0700 Subject: [PATCH] go generate --- .../management/v3/zz_generated_node_spec.go | 68 ++++++++++--------- 1 file changed, 35 insertions(+), 33 deletions(-) diff --git a/client/management/v3/zz_generated_node_spec.go b/client/management/v3/zz_generated_node_spec.go index 733e9e32..615016b6 100644 --- a/client/management/v3/zz_generated_node_spec.go +++ b/client/management/v3/zz_generated_node_spec.go @@ -1,40 +1,42 @@ package client const ( - NodeSpecType = "nodeSpec" - NodeSpecFieldControlPlane = "controlPlane" - NodeSpecFieldCustomConfig = "customConfig" - NodeSpecFieldDescription = "description" - NodeSpecFieldDesiredNodeAnnotations = "desiredNodeAnnotations" - NodeSpecFieldDesiredNodeLabels = "desiredNodeLabels" - NodeSpecFieldDisplayName = "displayName" - NodeSpecFieldEtcd = "etcd" - NodeSpecFieldImported = "imported" - NodeSpecFieldNodePoolId = "nodePoolId" - NodeSpecFieldNodeTemplateId = "nodeTemplateId" - NodeSpecFieldPodCidr = "podCidr" - NodeSpecFieldProviderId = "providerId" - NodeSpecFieldRequestedHostname = "requestedHostname" - NodeSpecFieldTaints = "taints" - NodeSpecFieldUnschedulable = "unschedulable" - NodeSpecFieldWorker = "worker" + NodeSpecType = "nodeSpec" + NodeSpecFieldControlPlane = "controlPlane" + NodeSpecFieldCustomConfig = "customConfig" + NodeSpecFieldDescription = "description" + NodeSpecFieldDesiredNodeAnnotations = "desiredNodeAnnotations" + NodeSpecFieldDesiredNodeLabels = "desiredNodeLabels" + NodeSpecFieldDesiredNodeUnschedulable = "desiredNodeUnschedulable" + NodeSpecFieldDisplayName = "displayName" + NodeSpecFieldEtcd = "etcd" + NodeSpecFieldImported = "imported" + NodeSpecFieldNodePoolId = "nodePoolId" + NodeSpecFieldNodeTemplateId = "nodeTemplateId" + NodeSpecFieldPodCidr = "podCidr" + NodeSpecFieldProviderId = "providerId" + NodeSpecFieldRequestedHostname = "requestedHostname" + NodeSpecFieldTaints = "taints" + NodeSpecFieldUnschedulable = "unschedulable" + NodeSpecFieldWorker = "worker" ) type NodeSpec struct { - ControlPlane bool `json:"controlPlane,omitempty" yaml:"controlPlane,omitempty"` - CustomConfig *CustomConfig `json:"customConfig,omitempty" yaml:"customConfig,omitempty"` - Description string `json:"description,omitempty" yaml:"description,omitempty"` - DesiredNodeAnnotations map[string]string `json:"desiredNodeAnnotations,omitempty" yaml:"desiredNodeAnnotations,omitempty"` - DesiredNodeLabels map[string]string `json:"desiredNodeLabels,omitempty" yaml:"desiredNodeLabels,omitempty"` - DisplayName string `json:"displayName,omitempty" yaml:"displayName,omitempty"` - Etcd bool `json:"etcd,omitempty" yaml:"etcd,omitempty"` - Imported bool `json:"imported,omitempty" yaml:"imported,omitempty"` - NodePoolId string `json:"nodePoolId,omitempty" yaml:"nodePoolId,omitempty"` - NodeTemplateId string `json:"nodeTemplateId,omitempty" yaml:"nodeTemplateId,omitempty"` - PodCidr string `json:"podCidr,omitempty" yaml:"podCidr,omitempty"` - ProviderId string `json:"providerId,omitempty" yaml:"providerId,omitempty"` - RequestedHostname string `json:"requestedHostname,omitempty" yaml:"requestedHostname,omitempty"` - Taints []Taint `json:"taints,omitempty" yaml:"taints,omitempty"` - Unschedulable bool `json:"unschedulable,omitempty" yaml:"unschedulable,omitempty"` - Worker bool `json:"worker,omitempty" yaml:"worker,omitempty"` + ControlPlane bool `json:"controlPlane,omitempty" yaml:"controlPlane,omitempty"` + CustomConfig *CustomConfig `json:"customConfig,omitempty" yaml:"customConfig,omitempty"` + Description string `json:"description,omitempty" yaml:"description,omitempty"` + DesiredNodeAnnotations map[string]string `json:"desiredNodeAnnotations,omitempty" yaml:"desiredNodeAnnotations,omitempty"` + DesiredNodeLabels map[string]string `json:"desiredNodeLabels,omitempty" yaml:"desiredNodeLabels,omitempty"` + DesiredNodeUnschedulable string `json:"desiredNodeUnschedulable,omitempty" yaml:"desiredNodeUnschedulable,omitempty"` + DisplayName string `json:"displayName,omitempty" yaml:"displayName,omitempty"` + Etcd bool `json:"etcd,omitempty" yaml:"etcd,omitempty"` + Imported bool `json:"imported,omitempty" yaml:"imported,omitempty"` + NodePoolId string `json:"nodePoolId,omitempty" yaml:"nodePoolId,omitempty"` + NodeTemplateId string `json:"nodeTemplateId,omitempty" yaml:"nodeTemplateId,omitempty"` + PodCidr string `json:"podCidr,omitempty" yaml:"podCidr,omitempty"` + ProviderId string `json:"providerId,omitempty" yaml:"providerId,omitempty"` + RequestedHostname string `json:"requestedHostname,omitempty" yaml:"requestedHostname,omitempty"` + Taints []Taint `json:"taints,omitempty" yaml:"taints,omitempty"` + Unschedulable bool `json:"unschedulable,omitempty" yaml:"unschedulable,omitempty"` + Worker bool `json:"worker,omitempty" yaml:"worker,omitempty"` }