[][src]Struct gcp_client::google::appengine::v1::UpdateServiceRequest

pub struct UpdateServiceRequest {
    pub name: String,
    pub service: Option<Service>,
    pub update_mask: Option<FieldMask>,
    pub migrate_traffic: bool,
}

Request message for Services.UpdateService.

Fields

name: String

Name of the resource to update. Example: apps/myapp/services/default.

service: Option<Service>

A Service resource containing the updated service. Only fields set in the field mask will be updated.

update_mask: Option<FieldMask>

Standard field mask for the set of fields to be updated.

migrate_traffic: bool

Set to true to gradually shift traffic from one version to another single version. By default, traffic is shifted immediately. For gradual traffic migration, the target version must be located within instances that are configured for both warmup requests and automatic scaling. You must specify the shardBy field in the Service resource. Gradual traffic migration is not supported in the App Engine flexible environment. For examples, see Migrating and Splitting Traffic.

Trait Implementations

impl Clone for UpdateServiceRequest[src]

impl Debug for UpdateServiceRequest[src]

impl Default for UpdateServiceRequest[src]

impl Message for UpdateServiceRequest[src]

impl PartialEq<UpdateServiceRequest> for UpdateServiceRequest[src]

impl StructuralPartialEq for UpdateServiceRequest[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]