pub struct UpdateDeploymentContainers {
pub name: String,
pub image: Option<String>,
pub imagePullPolicy: Option<String>,
pub command: Option<Vec<String>>,
pub resources: Option<DeploymentResources>,
pub ports: Option<Vec<DeploymentPorts>>,
pub livenessProbe: Option<DeploymentProbe>,
pub readinessProbe: Option<DeploymentProbe>,
pub env: Option<Vec<DeploymentEnvSpecs>>,
}Fields§
§name: String§image: Option<String>§imagePullPolicy: Option<String>§command: Option<Vec<String>>§resources: Option<DeploymentResources>§ports: Option<Vec<DeploymentPorts>>§livenessProbe: Option<DeploymentProbe>§readinessProbe: Option<DeploymentProbe>§env: Option<Vec<DeploymentEnvSpecs>>Trait Implementations§
Source§impl Debug for UpdateDeploymentContainers
impl Debug for UpdateDeploymentContainers
Source§impl Default for UpdateDeploymentContainers
impl Default for UpdateDeploymentContainers
Source§fn default() -> UpdateDeploymentContainers
fn default() -> UpdateDeploymentContainers
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateDeploymentContainers
impl<'de> Deserialize<'de> for UpdateDeploymentContainers
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for UpdateDeploymentContainers
impl RefUnwindSafe for UpdateDeploymentContainers
impl Send for UpdateDeploymentContainers
impl Sync for UpdateDeploymentContainers
impl Unpin for UpdateDeploymentContainers
impl UnsafeUnpin for UpdateDeploymentContainers
impl UnwindSafe for UpdateDeploymentContainers
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more