1
0
mirror of https://github.com/rancher/types.git synced 2025-08-31 21:00:16 +00:00

Update generated code

This commit is contained in:
Darren Shepherd
2018-03-26 18:11:11 -07:00
parent a6f730e83b
commit 329e9047b2
74 changed files with 130 additions and 130 deletions

View File

@@ -10,7 +10,7 @@ const (
type AWSElasticBlockStoreVolumeSource struct {
FSType string `json:"fsType,omitempty" yaml:"fsType,omitempty"`
Partition *int64 `json:"partition,omitempty" yaml:"partition,omitempty"`
Partition int64 `json:"partition,omitempty" yaml:"partition,omitempty"`
ReadOnly bool `json:"readOnly,omitempty" yaml:"readOnly,omitempty"`
VolumeID string `json:"volumeID,omitempty" yaml:"volumeID,omitempty"`
}

View File

@@ -11,6 +11,6 @@ const (
type GCEPersistentDiskVolumeSource struct {
FSType string `json:"fsType,omitempty" yaml:"fsType,omitempty"`
PDName string `json:"pdName,omitempty" yaml:"pdName,omitempty"`
Partition *int64 `json:"partition,omitempty" yaml:"partition,omitempty"`
Partition int64 `json:"partition,omitempty" yaml:"partition,omitempty"`
ReadOnly bool `json:"readOnly,omitempty" yaml:"readOnly,omitempty"`
}

View File

@@ -21,7 +21,7 @@ type ISCSIVolumeSource struct {
IQN string `json:"iqn,omitempty" yaml:"iqn,omitempty"`
ISCSIInterface string `json:"iscsiInterface,omitempty" yaml:"iscsiInterface,omitempty"`
InitiatorName string `json:"initiatorName,omitempty" yaml:"initiatorName,omitempty"`
Lun *int64 `json:"lun,omitempty" yaml:"lun,omitempty"`
Lun int64 `json:"lun,omitempty" yaml:"lun,omitempty"`
Portals []string `json:"portals,omitempty" yaml:"portals,omitempty"`
ReadOnly bool `json:"readOnly,omitempty" yaml:"readOnly,omitempty"`
SecretRef *LocalObjectReference `json:"secretRef,omitempty" yaml:"secretRef,omitempty"`

View File

@@ -14,7 +14,7 @@ const (
type Status struct {
APIVersion string `json:"apiVersion,omitempty" yaml:"apiVersion,omitempty"`
Code *int64 `json:"code,omitempty" yaml:"code,omitempty"`
Code int64 `json:"code,omitempty" yaml:"code,omitempty"`
Details *StatusDetails `json:"details,omitempty" yaml:"details,omitempty"`
Kind string `json:"kind,omitempty" yaml:"kind,omitempty"`
ListMeta *ListMeta `json:"metadata,omitempty" yaml:"metadata,omitempty"`

View File

@@ -15,6 +15,6 @@ type StatusDetails struct {
Group string `json:"group,omitempty" yaml:"group,omitempty"`
Kind string `json:"kind,omitempty" yaml:"kind,omitempty"`
Name string `json:"name,omitempty" yaml:"name,omitempty"`
RetryAfterSeconds *int64 `json:"retryAfterSeconds,omitempty" yaml:"retryAfterSeconds,omitempty"`
RetryAfterSeconds int64 `json:"retryAfterSeconds,omitempty" yaml:"retryAfterSeconds,omitempty"`
UID string `json:"uid,omitempty" yaml:"uid,omitempty"`
}