Class: Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1SignDataRequest

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/chromemanagement_v1/classes.rb,
lib/google/apis/chromemanagement_v1/representations.rb,
lib/google/apis/chromemanagement_v1/representations.rb

Overview

Request message for requesting a signature from the client that initated a certificate provisioning process.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleChromeManagementVersionsV1SignDataRequest

Returns a new instance of GoogleChromeManagementVersionsV1SignDataRequest.



5474
5475
5476
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 5474

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

Instance Attribute Details

#sign_dataString

Required. The data that the client was asked to sign. Corresponds to the JSON property signData NOTE: Values are automatically base64 encoded/decoded in the client library.

Returns:

  • (String)


5466
5467
5468
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 5466

def sign_data
  @sign_data
end

#signature_algorithmString

Required. The signature algorithm that the adapter expects the client and backend components to use when processing sign_data. Corresponds to the JSON property signatureAlgorithm

Returns:

  • (String)


5472
5473
5474
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 5472

def signature_algorithm
  @signature_algorithm
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5479
5480
5481
5482
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 5479

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