@@ -51,66 +51,66 @@ type Interface interface {
51
51
// version included in a Clientset.
52
52
type Clientset struct {
53
53
* discovery.DiscoveryClient
54
- * autoscalingv1.AutoscalingV1Client
55
- * batchv1.BatchV1Client
56
- * corev1.CoreV1Client
57
- * extensionsv1beta1.ExtensionsV1beta1Client
58
- * federationv1beta1.FederationV1beta1Client
54
+ autoscalingV1 * autoscalingv1.AutoscalingV1Client
55
+ batchV1 * batchv1.BatchV1Client
56
+ coreV1 * corev1.CoreV1Client
57
+ extensionsV1beta1 * extensionsv1beta1.ExtensionsV1beta1Client
58
+ federationV1beta1 * federationv1beta1.FederationV1beta1Client
59
59
}
60
60
61
61
// AutoscalingV1 retrieves the AutoscalingV1Client
62
62
func (c * Clientset ) AutoscalingV1 () autoscalingv1.AutoscalingV1Interface {
63
- return c .AutoscalingV1Client
63
+ return c .autoscalingV1
64
64
}
65
65
66
66
// Deprecated: Autoscaling retrieves the default version of AutoscalingClient.
67
67
// Please explicitly pick a version.
68
68
func (c * Clientset ) Autoscaling () autoscalingv1.AutoscalingV1Interface {
69
- return c .AutoscalingV1Client
69
+ return c .autoscalingV1
70
70
}
71
71
72
72
// BatchV1 retrieves the BatchV1Client
73
73
func (c * Clientset ) BatchV1 () batchv1.BatchV1Interface {
74
- return c .BatchV1Client
74
+ return c .batchV1
75
75
}
76
76
77
77
// Deprecated: Batch retrieves the default version of BatchClient.
78
78
// Please explicitly pick a version.
79
79
func (c * Clientset ) Batch () batchv1.BatchV1Interface {
80
- return c .BatchV1Client
80
+ return c .batchV1
81
81
}
82
82
83
83
// CoreV1 retrieves the CoreV1Client
84
84
func (c * Clientset ) CoreV1 () corev1.CoreV1Interface {
85
- return c .CoreV1Client
85
+ return c .coreV1
86
86
}
87
87
88
88
// Deprecated: Core retrieves the default version of CoreClient.
89
89
// Please explicitly pick a version.
90
90
func (c * Clientset ) Core () corev1.CoreV1Interface {
91
- return c .CoreV1Client
91
+ return c .coreV1
92
92
}
93
93
94
94
// ExtensionsV1beta1 retrieves the ExtensionsV1beta1Client
95
95
func (c * Clientset ) ExtensionsV1beta1 () extensionsv1beta1.ExtensionsV1beta1Interface {
96
- return c .ExtensionsV1beta1Client
96
+ return c .extensionsV1beta1
97
97
}
98
98
99
99
// Deprecated: Extensions retrieves the default version of ExtensionsClient.
100
100
// Please explicitly pick a version.
101
101
func (c * Clientset ) Extensions () extensionsv1beta1.ExtensionsV1beta1Interface {
102
- return c .ExtensionsV1beta1Client
102
+ return c .extensionsV1beta1
103
103
}
104
104
105
105
// FederationV1beta1 retrieves the FederationV1beta1Client
106
106
func (c * Clientset ) FederationV1beta1 () federationv1beta1.FederationV1beta1Interface {
107
- return c .FederationV1beta1Client
107
+ return c .federationV1beta1
108
108
}
109
109
110
110
// Deprecated: Federation retrieves the default version of FederationClient.
111
111
// Please explicitly pick a version.
112
112
func (c * Clientset ) Federation () federationv1beta1.FederationV1beta1Interface {
113
- return c .FederationV1beta1Client
113
+ return c .federationV1beta1
114
114
}
115
115
116
116
// Discovery retrieves the DiscoveryClient
@@ -129,23 +129,23 @@ func NewForConfig(c *rest.Config) (*Clientset, error) {
129
129
}
130
130
var cs Clientset
131
131
var err error
132
- cs .AutoscalingV1Client , err = autoscalingv1 .NewForConfig (& configShallowCopy )
132
+ cs .autoscalingV1 , err = autoscalingv1 .NewForConfig (& configShallowCopy )
133
133
if err != nil {
134
134
return nil , err
135
135
}
136
- cs .BatchV1Client , err = batchv1 .NewForConfig (& configShallowCopy )
136
+ cs .batchV1 , err = batchv1 .NewForConfig (& configShallowCopy )
137
137
if err != nil {
138
138
return nil , err
139
139
}
140
- cs .CoreV1Client , err = corev1 .NewForConfig (& configShallowCopy )
140
+ cs .coreV1 , err = corev1 .NewForConfig (& configShallowCopy )
141
141
if err != nil {
142
142
return nil , err
143
143
}
144
- cs .ExtensionsV1beta1Client , err = extensionsv1beta1 .NewForConfig (& configShallowCopy )
144
+ cs .extensionsV1beta1 , err = extensionsv1beta1 .NewForConfig (& configShallowCopy )
145
145
if err != nil {
146
146
return nil , err
147
147
}
148
- cs .FederationV1beta1Client , err = federationv1beta1 .NewForConfig (& configShallowCopy )
148
+ cs .federationV1beta1 , err = federationv1beta1 .NewForConfig (& configShallowCopy )
149
149
if err != nil {
150
150
return nil , err
151
151
}
@@ -162,11 +162,11 @@ func NewForConfig(c *rest.Config) (*Clientset, error) {
162
162
// panics if there is an error in the config.
163
163
func NewForConfigOrDie (c * rest.Config ) * Clientset {
164
164
var cs Clientset
165
- cs .AutoscalingV1Client = autoscalingv1 .NewForConfigOrDie (c )
166
- cs .BatchV1Client = batchv1 .NewForConfigOrDie (c )
167
- cs .CoreV1Client = corev1 .NewForConfigOrDie (c )
168
- cs .ExtensionsV1beta1Client = extensionsv1beta1 .NewForConfigOrDie (c )
169
- cs .FederationV1beta1Client = federationv1beta1 .NewForConfigOrDie (c )
165
+ cs .autoscalingV1 = autoscalingv1 .NewForConfigOrDie (c )
166
+ cs .batchV1 = batchv1 .NewForConfigOrDie (c )
167
+ cs .coreV1 = corev1 .NewForConfigOrDie (c )
168
+ cs .extensionsV1beta1 = extensionsv1beta1 .NewForConfigOrDie (c )
169
+ cs .federationV1beta1 = federationv1beta1 .NewForConfigOrDie (c )
170
170
171
171
cs .DiscoveryClient = discovery .NewDiscoveryClientForConfigOrDie (c )
172
172
return & cs
@@ -175,11 +175,11 @@ func NewForConfigOrDie(c *rest.Config) *Clientset {
175
175
// New creates a new Clientset for the given RESTClient.
176
176
func New (c rest.Interface ) * Clientset {
177
177
var cs Clientset
178
- cs .AutoscalingV1Client = autoscalingv1 .New (c )
179
- cs .BatchV1Client = batchv1 .New (c )
180
- cs .CoreV1Client = corev1 .New (c )
181
- cs .ExtensionsV1beta1Client = extensionsv1beta1 .New (c )
182
- cs .FederationV1beta1Client = federationv1beta1 .New (c )
178
+ cs .autoscalingV1 = autoscalingv1 .New (c )
179
+ cs .batchV1 = batchv1 .New (c )
180
+ cs .coreV1 = corev1 .New (c )
181
+ cs .extensionsV1beta1 = extensionsv1beta1 .New (c )
182
+ cs .federationV1beta1 = federationv1beta1 .New (c )
183
183
184
184
cs .DiscoveryClient = discovery .NewDiscoveryClient (c )
185
185
return & cs
0 commit comments