class Google::Apis::IamV1::SignBlobResponse

The service account sign blob response.

Attributes

key_id[RW]

The id of the key used to sign the blob. Corresponds to the JSON property `keyId` @return [String]

signature[RW]

The signed blob. Corresponds to the JSON property `signature` @return [String]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/iam_v1/classes.rb, line 290
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/iam_v1/classes.rb, line 295
def update!(**args)
  @key_id = args[:key_id] if args.key?(:key_id)
  @signature = args[:signature] if args.key?(:signature)
end