k8s.io/client-go@v0.31.1/kubernetes/typed/admissionregistration/v1beta1/validatingwebhookconfiguration.go (about) 1 /* 2 Copyright The Kubernetes Authors. 3 4 Licensed under the Apache License, Version 2.0 (the "License"); 5 you may not use this file except in compliance with the License. 6 You may obtain a copy of the License at 7 8 http://www.apache.org/licenses/LICENSE-2.0 9 10 Unless required by applicable law or agreed to in writing, software 11 distributed under the License is distributed on an "AS IS" BASIS, 12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 See the License for the specific language governing permissions and 14 limitations under the License. 15 */ 16 17 // Code generated by client-gen. DO NOT EDIT. 18 19 package v1beta1 20 21 import ( 22 "context" 23 24 v1beta1 "k8s.io/api/admissionregistration/v1beta1" 25 v1 "k8s.io/apimachinery/pkg/apis/meta/v1" 26 types "k8s.io/apimachinery/pkg/types" 27 watch "k8s.io/apimachinery/pkg/watch" 28 admissionregistrationv1beta1 "k8s.io/client-go/applyconfigurations/admissionregistration/v1beta1" 29 gentype "k8s.io/client-go/gentype" 30 scheme "k8s.io/client-go/kubernetes/scheme" 31 ) 32 33 // ValidatingWebhookConfigurationsGetter has a method to return a ValidatingWebhookConfigurationInterface. 34 // A group's client should implement this interface. 35 type ValidatingWebhookConfigurationsGetter interface { 36 ValidatingWebhookConfigurations() ValidatingWebhookConfigurationInterface 37 } 38 39 // ValidatingWebhookConfigurationInterface has methods to work with ValidatingWebhookConfiguration resources. 40 type ValidatingWebhookConfigurationInterface interface { 41 Create(ctx context.Context, validatingWebhookConfiguration *v1beta1.ValidatingWebhookConfiguration, opts v1.CreateOptions) (*v1beta1.ValidatingWebhookConfiguration, error) 42 Update(ctx context.Context, validatingWebhookConfiguration *v1beta1.ValidatingWebhookConfiguration, opts v1.UpdateOptions) (*v1beta1.ValidatingWebhookConfiguration, error) 43 Delete(ctx context.Context, name string, opts v1.DeleteOptions) error 44 DeleteCollection(ctx context.Context, opts v1.DeleteOptions, listOpts v1.ListOptions) error 45 Get(ctx context.Context, name string, opts v1.GetOptions) (*v1beta1.ValidatingWebhookConfiguration, error) 46 List(ctx context.Context, opts v1.ListOptions) (*v1beta1.ValidatingWebhookConfigurationList, error) 47 Watch(ctx context.Context, opts v1.ListOptions) (watch.Interface, error) 48 Patch(ctx context.Context, name string, pt types.PatchType, data []byte, opts v1.PatchOptions, subresources ...string) (result *v1beta1.ValidatingWebhookConfiguration, err error) 49 Apply(ctx context.Context, validatingWebhookConfiguration *admissionregistrationv1beta1.ValidatingWebhookConfigurationApplyConfiguration, opts v1.ApplyOptions) (result *v1beta1.ValidatingWebhookConfiguration, err error) 50 ValidatingWebhookConfigurationExpansion 51 } 52 53 // validatingWebhookConfigurations implements ValidatingWebhookConfigurationInterface 54 type validatingWebhookConfigurations struct { 55 *gentype.ClientWithListAndApply[*v1beta1.ValidatingWebhookConfiguration, *v1beta1.ValidatingWebhookConfigurationList, *admissionregistrationv1beta1.ValidatingWebhookConfigurationApplyConfiguration] 56 } 57 58 // newValidatingWebhookConfigurations returns a ValidatingWebhookConfigurations 59 func newValidatingWebhookConfigurations(c *AdmissionregistrationV1beta1Client) *validatingWebhookConfigurations { 60 return &validatingWebhookConfigurations{ 61 gentype.NewClientWithListAndApply[*v1beta1.ValidatingWebhookConfiguration, *v1beta1.ValidatingWebhookConfigurationList, *admissionregistrationv1beta1.ValidatingWebhookConfigurationApplyConfiguration]( 62 "validatingwebhookconfigurations", 63 c.RESTClient(), 64 scheme.ParameterCodec, 65 "", 66 func() *v1beta1.ValidatingWebhookConfiguration { return &v1beta1.ValidatingWebhookConfiguration{} }, 67 func() *v1beta1.ValidatingWebhookConfigurationList { 68 return &v1beta1.ValidatingWebhookConfigurationList{} 69 }), 70 } 71 }