[][src]Struct gcp_client::google::cloud::osconfig::v1::CreatePatchDeploymentRequest

pub struct CreatePatchDeploymentRequest {
    pub parent: String,
    pub patch_deployment_id: String,
    pub patch_deployment: Option<PatchDeployment>,
}

A request message for creating a patch deployment.

Fields

parent: String

Required. The project to apply this patch deployment to in the form projects/*.

patch_deployment_id: String

Required. A name for the patch deployment in the project. When creating a name the following rules apply:

  • Must contain only lowercase letters, numbers, and hyphens.
  • Must start with a letter.
  • Must be between 1-63 characters.
  • Must end with a number or a letter.
  • Must be unique within the project.
patch_deployment: Option<PatchDeployment>

Required. The patch deployment to create.

Trait Implementations

impl Clone for CreatePatchDeploymentRequest[src]

impl Debug for CreatePatchDeploymentRequest[src]

impl Default for CreatePatchDeploymentRequest[src]

impl Message for CreatePatchDeploymentRequest[src]

impl PartialEq<CreatePatchDeploymentRequest> for CreatePatchDeploymentRequest[src]

impl StructuralPartialEq for CreatePatchDeploymentRequest[src]

Auto Trait Implementations

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, 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>, 

impl<T> WithSubscriber for T[src]