Struct gapi_grpc::google::cloud::osconfig::v1::ExecutePatchJobRequest[][src]

pub struct ExecutePatchJobRequest {
    pub parent: String,
    pub description: String,
    pub instance_filter: Option<PatchInstanceFilter>,
    pub patch_config: Option<PatchConfig>,
    pub duration: Option<Duration>,
    pub dry_run: bool,
    pub display_name: String,
    pub rollout: Option<PatchRollout>,
}

A request message to initiate patching across Compute Engine instances.

Fields

parent: String

Required. The project in which to run this patch in the form projects/*

description: String

Description of the patch job. Length of the description is limited to 1024 characters.

instance_filter: Option<PatchInstanceFilter>

Required. Instances to patch, either explicitly or filtered by some criteria such as zone or labels.

patch_config: Option<PatchConfig>

Patch configuration being applied. If omitted, instances are patched using the default configurations.

duration: Option<Duration>

Duration of the patch job. After the duration ends, the patch job times out.

dry_run: bool

If this patch is a dry-run only, instances are contacted but will do nothing.

display_name: String

Display name for this patch job. This does not have to be unique.

rollout: Option<PatchRollout>

Rollout strategy of the patch job.

Trait Implementations

impl Clone for ExecutePatchJobRequest[src]

impl Debug for ExecutePatchJobRequest[src]

impl Default for ExecutePatchJobRequest[src]

impl Message for ExecutePatchJobRequest[src]

impl PartialEq<ExecutePatchJobRequest> for ExecutePatchJobRequest[src]

impl StructuralPartialEq for ExecutePatchJobRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for ExecutePatchJobRequest

impl Send for ExecutePatchJobRequest

impl Sync for ExecutePatchJobRequest

impl Unpin for ExecutePatchJobRequest

impl UnwindSafe for ExecutePatchJobRequest

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]