1/*
2Copyright The Kubernetes Authors.
3
4Licensed under the Apache License, Version 2.0 (the "License");
5you may not use this file except in compliance with the License.
6You may obtain a copy of the License at
7
8    http://www.apache.org/licenses/LICENSE-2.0
9
10Unless required by applicable law or agreed to in writing, software
11distributed under the License is distributed on an "AS IS" BASIS,
12WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13See the License for the specific language governing permissions and
14limitations under the License.
15*/
16
17// Code generated by client-gen. DO NOT EDIT.
18
19package v1
20
21import (
22	"time"
23
24	v1 "k8s.io/api/core/v1"
25	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
26	types "k8s.io/apimachinery/pkg/types"
27	watch "k8s.io/apimachinery/pkg/watch"
28	scheme "k8s.io/client-go/kubernetes/scheme"
29	rest "k8s.io/client-go/rest"
30)
31
32// NamespacesGetter has a method to return a NamespaceInterface.
33// A group's client should implement this interface.
34type NamespacesGetter interface {
35	Namespaces() NamespaceInterface
36}
37
38// NamespaceInterface has methods to work with Namespace resources.
39type NamespaceInterface interface {
40	Create(*v1.Namespace) (*v1.Namespace, error)
41	Update(*v1.Namespace) (*v1.Namespace, error)
42	UpdateStatus(*v1.Namespace) (*v1.Namespace, error)
43	Delete(name string, options *metav1.DeleteOptions) error
44	Get(name string, options metav1.GetOptions) (*v1.Namespace, error)
45	List(opts metav1.ListOptions) (*v1.NamespaceList, error)
46	Watch(opts metav1.ListOptions) (watch.Interface, error)
47	Patch(name string, pt types.PatchType, data []byte, subresources ...string) (result *v1.Namespace, err error)
48	NamespaceExpansion
49}
50
51// namespaces implements NamespaceInterface
52type namespaces struct {
53	client rest.Interface
54}
55
56// newNamespaces returns a Namespaces
57func newNamespaces(c *CoreV1Client) *namespaces {
58	return &namespaces{
59		client: c.RESTClient(),
60	}
61}
62
63// Get takes name of the namespace, and returns the corresponding namespace object, and an error if there is any.
64func (c *namespaces) Get(name string, options metav1.GetOptions) (result *v1.Namespace, err error) {
65	result = &v1.Namespace{}
66	err = c.client.Get().
67		Resource("namespaces").
68		Name(name).
69		VersionedParams(&options, scheme.ParameterCodec).
70		Do().
71		Into(result)
72	return
73}
74
75// List takes label and field selectors, and returns the list of Namespaces that match those selectors.
76func (c *namespaces) List(opts metav1.ListOptions) (result *v1.NamespaceList, err error) {
77	var timeout time.Duration
78	if opts.TimeoutSeconds != nil {
79		timeout = time.Duration(*opts.TimeoutSeconds) * time.Second
80	}
81	result = &v1.NamespaceList{}
82	err = c.client.Get().
83		Resource("namespaces").
84		VersionedParams(&opts, scheme.ParameterCodec).
85		Timeout(timeout).
86		Do().
87		Into(result)
88	return
89}
90
91// Watch returns a watch.Interface that watches the requested namespaces.
92func (c *namespaces) Watch(opts metav1.ListOptions) (watch.Interface, error) {
93	var timeout time.Duration
94	if opts.TimeoutSeconds != nil {
95		timeout = time.Duration(*opts.TimeoutSeconds) * time.Second
96	}
97	opts.Watch = true
98	return c.client.Get().
99		Resource("namespaces").
100		VersionedParams(&opts, scheme.ParameterCodec).
101		Timeout(timeout).
102		Watch()
103}
104
105// Create takes the representation of a namespace and creates it.  Returns the server's representation of the namespace, and an error, if there is any.
106func (c *namespaces) Create(namespace *v1.Namespace) (result *v1.Namespace, err error) {
107	result = &v1.Namespace{}
108	err = c.client.Post().
109		Resource("namespaces").
110		Body(namespace).
111		Do().
112		Into(result)
113	return
114}
115
116// Update takes the representation of a namespace and updates it. Returns the server's representation of the namespace, and an error, if there is any.
117func (c *namespaces) Update(namespace *v1.Namespace) (result *v1.Namespace, err error) {
118	result = &v1.Namespace{}
119	err = c.client.Put().
120		Resource("namespaces").
121		Name(namespace.Name).
122		Body(namespace).
123		Do().
124		Into(result)
125	return
126}
127
128// UpdateStatus was generated because the type contains a Status member.
129// Add a +genclient:noStatus comment above the type to avoid generating UpdateStatus().
130
131func (c *namespaces) UpdateStatus(namespace *v1.Namespace) (result *v1.Namespace, err error) {
132	result = &v1.Namespace{}
133	err = c.client.Put().
134		Resource("namespaces").
135		Name(namespace.Name).
136		SubResource("status").
137		Body(namespace).
138		Do().
139		Into(result)
140	return
141}
142
143// Delete takes name of the namespace and deletes it. Returns an error if one occurs.
144func (c *namespaces) Delete(name string, options *metav1.DeleteOptions) error {
145	return c.client.Delete().
146		Resource("namespaces").
147		Name(name).
148		Body(options).
149		Do().
150		Error()
151}
152
153// Patch applies the patch and returns the patched namespace.
154func (c *namespaces) Patch(name string, pt types.PatchType, data []byte, subresources ...string) (result *v1.Namespace, err error) {
155	result = &v1.Namespace{}
156	err = c.client.Patch(pt).
157		Resource("namespaces").
158		SubResource(subresources...).
159		Name(name).
160		Body(data).
161		Do().
162		Into(result)
163	return
164}
165