Struct k8s_openapi::v1_9::api::core::v1::ReplicationController[][src]

pub struct ReplicationController {
    pub api_version: Option<String>,
    pub kind: Option<String>,
    pub metadata: Option<ObjectMeta>,
    pub spec: Option<ReplicationControllerSpec>,
    pub status: Option<ReplicationControllerStatus>,
}

ReplicationController represents the configuration of a replication controller.

Fields

APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

If the Labels of a ReplicationController are empty, they are defaulted to be the same as the Pod(s) that the replication controller manages. Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata

Spec defines the specification of the desired behavior of the replication controller. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status

Status is the most recently observed status of the replication controller. This data may be out of date by some window of time. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status

Methods

impl ReplicationController
[src]

create a ReplicationController

Use CreateCoreV1NamespacedReplicationControllerResponse to parse the HTTP response.

impl ReplicationController
[src]

delete collection of ReplicationController

Use DeleteCoreV1CollectionNamespacedReplicationControllerResponse to parse the HTTP response.

impl ReplicationController
[src]

delete a ReplicationController

Use DeleteCoreV1NamespacedReplicationControllerResponse to parse the HTTP response.

impl ReplicationController
[src]

list or watch objects of kind ReplicationController

Use ListCoreV1NamespacedReplicationControllerResponse to parse the HTTP response.

impl ReplicationController
[src]

list or watch objects of kind ReplicationController

Use ListCoreV1ReplicationControllerForAllNamespacesResponse to parse the HTTP response.

impl ReplicationController
[src]

partially update the specified ReplicationController

Use PatchCoreV1NamespacedReplicationControllerResponse to parse the HTTP response.

impl ReplicationController
[src]

partially update status of the specified ReplicationController

Use PatchCoreV1NamespacedReplicationControllerStatusResponse to parse the HTTP response.

impl ReplicationController
[src]

read the specified ReplicationController

Use ReadCoreV1NamespacedReplicationControllerResponse to parse the HTTP response.

impl ReplicationController
[src]

read status of the specified ReplicationController

Use ReadCoreV1NamespacedReplicationControllerStatusResponse to parse the HTTP response.

impl ReplicationController
[src]

replace the specified ReplicationController

Use ReplaceCoreV1NamespacedReplicationControllerResponse to parse the HTTP response.

impl ReplicationController
[src]

replace status of the specified ReplicationController

Use ReplaceCoreV1NamespacedReplicationControllerStatusResponse to parse the HTTP response.

impl ReplicationController
[src]

watch changes to an object of kind ReplicationController

Use WatchCoreV1NamespacedReplicationControllerResponse to parse the HTTP response.

impl ReplicationController
[src]

watch individual changes to a list of ReplicationController

Use WatchCoreV1NamespacedReplicationControllerListResponse to parse the HTTP response.

impl ReplicationController
[src]

watch individual changes to a list of ReplicationController

Use WatchCoreV1ReplicationControllerListForAllNamespacesResponse to parse the HTTP response.

Trait Implementations

impl Clone for ReplicationController
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ReplicationController
[src]

Formats the value using the given formatter. Read more

impl Default for ReplicationController
[src]

Returns the "default value" for a type. Read more

impl PartialEq for ReplicationController
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<'de> Deserialize<'de> for ReplicationController
[src]

Deserialize this value from the given Serde deserializer. Read more

impl Serialize for ReplicationController
[src]

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations