[][src]Struct gcp_client::google::storage::v1::ListHmacKeysRequest

pub struct ListHmacKeysRequest {
    pub project_id: String,
    pub service_account_email: String,
    pub show_deleted_keys: bool,
    pub max_results: i32,
    pub page_token: String,
    pub common_request_params: Option<CommonRequestParams>,
}

Request to fetch a list of HMAC keys under a given project.

Fields

project_id: String

Required. The project id to list HMAC keys for.

service_account_email: String

An optional filter to only return HMAC keys for one service account.

show_deleted_keys: bool

An optional bool to return deleted keys that have not been wiped out yet.

max_results: i32

The maximum number of keys to return.

page_token: String

A previously returned token from ListHmacKeysResponse to get the next page.

common_request_params: Option<CommonRequestParams>

A set of parameters common to all Storage API requests.

Trait Implementations

impl Clone for ListHmacKeysRequest[src]

impl Debug for ListHmacKeysRequest[src]

impl Default for ListHmacKeysRequest[src]

impl Message for ListHmacKeysRequest[src]

impl PartialEq<ListHmacKeysRequest> for ListHmacKeysRequest[src]

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