k8s.io/client-go@v0.22.2/kubernetes/typed/flowcontrol/v1beta1/flowcontrol_client.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 v1beta1 "k8s.io/api/flowcontrol/v1beta1" 23 "k8s.io/client-go/kubernetes/scheme" 24 rest "k8s.io/client-go/rest" 25 ) 26 27 type FlowcontrolV1beta1Interface interface { 28 RESTClient() rest.Interface 29 FlowSchemasGetter 30 PriorityLevelConfigurationsGetter 31 } 32 33 // FlowcontrolV1beta1Client is used to interact with features provided by the flowcontrol.apiserver.k8s.io group. 34 type FlowcontrolV1beta1Client struct { 35 restClient rest.Interface 36 } 37 38 func (c *FlowcontrolV1beta1Client) FlowSchemas() FlowSchemaInterface { 39 return newFlowSchemas(c) 40 } 41 42 func (c *FlowcontrolV1beta1Client) PriorityLevelConfigurations() PriorityLevelConfigurationInterface { 43 return newPriorityLevelConfigurations(c) 44 } 45 46 // NewForConfig creates a new FlowcontrolV1beta1Client for the given config. 47 func NewForConfig(c *rest.Config) (*FlowcontrolV1beta1Client, error) { 48 config := *c 49 if err := setConfigDefaults(&config); err != nil { 50 return nil, err 51 } 52 client, err := rest.RESTClientFor(&config) 53 if err != nil { 54 return nil, err 55 } 56 return &FlowcontrolV1beta1Client{client}, nil 57 } 58 59 // NewForConfigOrDie creates a new FlowcontrolV1beta1Client for the given config and 60 // panics if there is an error in the config. 61 func NewForConfigOrDie(c *rest.Config) *FlowcontrolV1beta1Client { 62 client, err := NewForConfig(c) 63 if err != nil { 64 panic(err) 65 } 66 return client 67 } 68 69 // New creates a new FlowcontrolV1beta1Client for the given RESTClient. 70 func New(c rest.Interface) *FlowcontrolV1beta1Client { 71 return &FlowcontrolV1beta1Client{c} 72 } 73 74 func setConfigDefaults(config *rest.Config) error { 75 gv := v1beta1.SchemeGroupVersion 76 config.GroupVersion = &gv 77 config.APIPath = "/apis" 78 config.NegotiatedSerializer = scheme.Codecs.WithoutConversion() 79 80 if config.UserAgent == "" { 81 config.UserAgent = rest.DefaultKubernetesUserAgent() 82 } 83 84 return nil 85 } 86 87 // RESTClient returns a RESTClient that is used to communicate 88 // with API server by this client implementation. 89 func (c *FlowcontrolV1beta1Client) RESTClient() rest.Interface { 90 if c == nil { 91 return nil 92 } 93 return c.restClient 94 }