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
2017-12-12 08:27:55 -07:00
parent 4936f617e6
commit b00b71962e
12 changed files with 482 additions and 6 deletions

View File

@@ -7,8 +7,8 @@ import (
type Client struct {
clientbase.APIBaseClient
Node NodeOperations
Namespace NamespaceOperations
Node NodeOperations
}
func NewClient(opts *clientbase.ClientOpts) (*Client, error) {
@@ -21,8 +21,8 @@ func NewClient(opts *clientbase.ClientOpts) (*Client, error) {
APIBaseClient: baseClient,
}
client.Node = newNodeClient(client)
client.Namespace = newNamespaceClient(client)
client.Node = newNodeClient(client)
return client, nil
}

View File

@@ -0,0 +1,8 @@
package client
const (
NamespaceSpecType = "namespaceSpec"
)
type NamespaceSpec struct {
}