class Google::Apis::IamV1::CreateServiceAccountRequest
The service account create request.
Attributes
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 1-63 characters long, and match the regular expression [a-z](*[a-z0-9]) to comply with RFC1035. Corresponds to the JSON property `accountId` @return [String]
A service account in the Identity and Access Management API. To create a service account, you specify the project_id and #account_id for the account. The #account_id is unique within the project, and used to generate the service account email address and a stable unique id. All other methods can identify accounts using the format “projects/`project`/serviceAccounts/`account`”. Using '-' as a wildcard for the project, will infer the project from the account. The account value can be the email address or the unique_id of the service account. Corresponds to the JSON property `serviceAccount` @return [Google::Apis::IamV1::ServiceAccount]
Public Class Methods
# File generated/google/apis/iam_v1/classes.rb, line 145 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File generated/google/apis/iam_v1/classes.rb, line 150 def update!(**args) @account_id = args[:account_id] if args.key?(:account_id) @service_account = args[:service_account] if args.key?(:service_account) end