Struct google_iam1::CreateServiceAccountKeyRequest[][src]

pub struct CreateServiceAccountKeyRequest {
    pub key_algorithm: Option<String>,
    pub private_key_type: Option<String>,
}

The service account key create request.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

Which type of key and algorithm to use for the key. The default is currently a 2K RSA key. However this may change in the future.

The output format of the private key. The default value is TYPE_GOOGLE_CREDENTIALS_FILE, which is the Google Credentials File format.

Trait Implementations

impl Default for CreateServiceAccountKeyRequest
[src]

Returns the "default value" for a type. Read more

impl Clone for CreateServiceAccountKeyRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for CreateServiceAccountKeyRequest
[src]

Formats the value using the given formatter. Read more

impl RequestValue for CreateServiceAccountKeyRequest
[src]

Auto Trait Implementations