Struct gapi_grpc::google::cloud::shell::v1::StartEnvironmentRequest[][src]

pub struct StartEnvironmentRequest {
    pub name: String,
    pub access_token: String,
    pub public_keys: Vec<String>,
}

Request message for [StartEnvironment][google.cloud.shell.v1.CloudShellService.StartEnvironment].

Fields

name: String

Name of the resource that should be started, for example users/me/environments/default or users/someone@example.com/environments/default.

access_token: String

The initial access token passed to the environment. If this is present and valid, the environment will be pre-authenticated with gcloud so that the user can run gcloud commands in Cloud Shell without having to log in. This code can be updated later by calling AuthorizeEnvironment.

public_keys: Vec<String>

Public keys that should be added to the environment before it is started.

Trait Implementations

impl Clone for StartEnvironmentRequest[src]

impl Debug for StartEnvironmentRequest[src]

impl Default for StartEnvironmentRequest[src]

impl Message for StartEnvironmentRequest[src]

impl PartialEq<StartEnvironmentRequest> for StartEnvironmentRequest[src]

impl StructuralPartialEq for StartEnvironmentRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for StartEnvironmentRequest

impl Send for StartEnvironmentRequest

impl Sync for StartEnvironmentRequest

impl Unpin for StartEnvironmentRequest

impl UnwindSafe for StartEnvironmentRequest

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]