class Google::Apis::IamV1::UploadServiceAccountKeyRequest
The service account key upload request.
Attributes
public_key_data[RW]
A field that allows clients to upload their own public key. If set, use this public key data to create a service account key for given service account. Please note, the expected format for this field is X509_PEM. Corresponds to the JSON property `publicKeyData` NOTE: Values are automatically base64 encoded/decoded in the client library. @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/iam_v1/classes.rb, line 1845 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/iam_v1/classes.rb, line 1850 def update!(**args) @public_key_data = args[:public_key_data] if args.key?(:public_key_data) end