Class: Google::Apis::IamV1::SignBlobResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/iam_v1/classes.rb,
generated/google/apis/iam_v1/representations.rb,
generated/google/apis/iam_v1/representations.rb

Overview

The service account sign blob response.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ SignBlobResponse

Returns a new instance of SignBlobResponse



1491
1492
1493
# File 'generated/google/apis/iam_v1/classes.rb', line 1491

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#key_idString

The id of the key used to sign the blob. Corresponds to the JSON property keyId

Returns:

  • (String)


1483
1484
1485
# File 'generated/google/apis/iam_v1/classes.rb', line 1483

def key_id
  @key_id
end

#signatureString

The signed blob. Corresponds to the JSON property signature NOTE: Values are automatically base64 encoded/decoded in the client library.

Returns:

  • (String)


1489
1490
1491
# File 'generated/google/apis/iam_v1/classes.rb', line 1489

def signature
  @signature
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1496
1497
1498
1499
# File 'generated/google/apis/iam_v1/classes.rb', line 1496

def update!(**args)
  @key_id = args[:key_id] if args.key?(:key_id)
  @signature = args[:signature] if args.key?(:signature)
end