kubernetes/staging/src/k8s.io/client-go/kubernetes/typed/core/v1/core_client.go

type CoreV1Interface

type CoreV1Client

func (c *CoreV1Client) ComponentStatuses() ComponentStatusInterface {}

func (c *CoreV1Client) ConfigMaps(namespace string) ConfigMapInterface {}

func (c *CoreV1Client) Endpoints(namespace string) EndpointsInterface {}

func (c *CoreV1Client) Events(namespace string) EventInterface {}

func (c *CoreV1Client) LimitRanges(namespace string) LimitRangeInterface {}

func (c *CoreV1Client) Namespaces() NamespaceInterface {}

func (c *CoreV1Client) Nodes() NodeInterface {}

func (c *CoreV1Client) PersistentVolumes() PersistentVolumeInterface {}

func (c *CoreV1Client) PersistentVolumeClaims(namespace string) PersistentVolumeClaimInterface {}

func (c *CoreV1Client) Pods(namespace string) PodInterface {}

func (c *CoreV1Client) PodTemplates(namespace string) PodTemplateInterface {}

func (c *CoreV1Client) ReplicationControllers(namespace string) ReplicationControllerInterface {}

func (c *CoreV1Client) ResourceQuotas(namespace string) ResourceQuotaInterface {}

func (c *CoreV1Client) Secrets(namespace string) SecretInterface {}

func (c *CoreV1Client) Services(namespace string) ServiceInterface {}

func (c *CoreV1Client) ServiceAccounts(namespace string) ServiceAccountInterface {}

// NewForConfig creates a new CoreV1Client for the given config.
// NewForConfig is equivalent to NewForConfigAndClient(c, httpClient),
// where httpClient was generated with rest.HTTPClientFor(c).
func NewForConfig(c *rest.Config) (*CoreV1Client, error) {}

// NewForConfigAndClient creates a new CoreV1Client for the given config and http client.
// Note the http client provided takes precedence over the configured transport values.
func NewForConfigAndClient(c *rest.Config, h *http.Client) (*CoreV1Client, error) {}

// NewForConfigOrDie creates a new CoreV1Client for the given config and
// panics if there is an error in the config.
func NewForConfigOrDie(c *rest.Config) *CoreV1Client {}

// New creates a new CoreV1Client for the given RESTClient.
func New(c rest.Interface) *CoreV1Client {}

func setConfigDefaults(config *rest.Config) error {}

// RESTClient returns a RESTClient that is used to communicate
// with API server by this client implementation.
func (c *CoreV1Client) RESTClient() rest.Interface {}