k8s.io/client-go@v0.31.1/kubernetes/typed/admissionregistration/v1/mutatingwebhookconfiguration.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 v1
    20  
    21  import (
    22  	"context"
    23  
    24  	v1 "k8s.io/api/admissionregistration/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  	admissionregistrationv1 "k8s.io/client-go/applyconfigurations/admissionregistration/v1"
    29  	gentype "k8s.io/client-go/gentype"
    30  	scheme "k8s.io/client-go/kubernetes/scheme"
    31  )
    32  
    33  // MutatingWebhookConfigurationsGetter has a method to return a MutatingWebhookConfigurationInterface.
    34  // A group's client should implement this interface.
    35  type MutatingWebhookConfigurationsGetter interface {
    36  	MutatingWebhookConfigurations() MutatingWebhookConfigurationInterface
    37  }
    38  
    39  // MutatingWebhookConfigurationInterface has methods to work with MutatingWebhookConfiguration resources.
    40  type MutatingWebhookConfigurationInterface interface {
    41  	Create(ctx context.Context, mutatingWebhookConfiguration *v1.MutatingWebhookConfiguration, opts metav1.CreateOptions) (*v1.MutatingWebhookConfiguration, error)
    42  	Update(ctx context.Context, mutatingWebhookConfiguration *v1.MutatingWebhookConfiguration, opts metav1.UpdateOptions) (*v1.MutatingWebhookConfiguration, error)
    43  	Delete(ctx context.Context, name string, opts metav1.DeleteOptions) error
    44  	DeleteCollection(ctx context.Context, opts metav1.DeleteOptions, listOpts metav1.ListOptions) error
    45  	Get(ctx context.Context, name string, opts metav1.GetOptions) (*v1.MutatingWebhookConfiguration, error)
    46  	List(ctx context.Context, opts metav1.ListOptions) (*v1.MutatingWebhookConfigurationList, error)
    47  	Watch(ctx context.Context, opts metav1.ListOptions) (watch.Interface, error)
    48  	Patch(ctx context.Context, name string, pt types.PatchType, data []byte, opts metav1.PatchOptions, subresources ...string) (result *v1.MutatingWebhookConfiguration, err error)
    49  	Apply(ctx context.Context, mutatingWebhookConfiguration *admissionregistrationv1.MutatingWebhookConfigurationApplyConfiguration, opts metav1.ApplyOptions) (result *v1.MutatingWebhookConfiguration, err error)
    50  	MutatingWebhookConfigurationExpansion
    51  }
    52  
    53  // mutatingWebhookConfigurations implements MutatingWebhookConfigurationInterface
    54  type mutatingWebhookConfigurations struct {
    55  	*gentype.ClientWithListAndApply[*v1.MutatingWebhookConfiguration, *v1.MutatingWebhookConfigurationList, *admissionregistrationv1.MutatingWebhookConfigurationApplyConfiguration]
    56  }
    57  
    58  // newMutatingWebhookConfigurations returns a MutatingWebhookConfigurations
    59  func newMutatingWebhookConfigurations(c *AdmissionregistrationV1Client) *mutatingWebhookConfigurations {
    60  	return &mutatingWebhookConfigurations{
    61  		gentype.NewClientWithListAndApply[*v1.MutatingWebhookConfiguration, *v1.MutatingWebhookConfigurationList, *admissionregistrationv1.MutatingWebhookConfigurationApplyConfiguration](
    62  			"mutatingwebhookconfigurations",
    63  			c.RESTClient(),
    64  			scheme.ParameterCodec,
    65  			"",
    66  			func() *v1.MutatingWebhookConfiguration { return &v1.MutatingWebhookConfiguration{} },
    67  			func() *v1.MutatingWebhookConfigurationList { return &v1.MutatingWebhookConfigurationList{} }),
    68  	}
    69  }