Struct google_iam1::CreateServiceAccountRequest[][src]

pub struct CreateServiceAccountRequest {
    pub service_account: Option<ServiceAccount>,
    pub account_id: Option<String>,
}

The service account 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

The ServiceAccount resource to create. Currently, only the following values are user assignable: display_name .

Required. The account id that is used to generate the service account email address and a stable unique id. It is unique within a project, must be 6-30 characters long, and match the regular expression [a-z]([-a-z0-9]*[a-z0-9]) to comply with RFC1035.

Trait Implementations

impl Default for CreateServiceAccountRequest
[src]

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

impl Clone for CreateServiceAccountRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for CreateServiceAccountRequest
[src]

Formats the value using the given formatter. Read more

impl RequestValue for CreateServiceAccountRequest
[src]

Auto Trait Implementations