class Google::Apis::IamV1::SignBlobResponse

Deprecated. [Migrate to Service Account Credentials API](cloud.google. com/iam/help/credentials/migrate-api). The service account sign blob response.

Attributes

key_id[RW]

Deprecated. [Migrate to Service Account Credentials API](cloud.google. com/iam/help/credentials/migrate-api). The id of the key used to sign the blob. Corresponds to the JSON property `keyId` @return [String]

signature[RW]

Deprecated. [Migrate to Service Account Credentials API](cloud.google. com/iam/help/credentials/migrate-api). The signed blob. Corresponds to the JSON property `signature` 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 1604
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 1609
def update!(**args)
  @key_id = args[:key_id] if args.key?(:key_id)
  @signature = args[:signature] if args.key?(:signature)
end