Class: Verizon::DeviceCredentialManagementApi
- Defined in:
- lib/verizon/apis/device_credential_management_api.rb
Overview
DeviceCredentialManagementApi
Constant Summary
Constants inherited from BaseApi
Instance Attribute Summary
Attributes inherited from BaseApi
Instance Method Summary collapse
-
#drop_credentials(body) ⇒ ApiResponse
TODO: type endpoint description here description here.
-
#generate_credentials(body) ⇒ ApiResponse
TODO: type endpoint description here description here.
-
#reset_credentials(body) ⇒ ApiResponse
TODO: type endpoint description here description here.
-
#retrieve_credentials(body) ⇒ ApiResponse
TODO: type endpoint description here description here.
Methods inherited from BaseApi
#initialize, #new_parameter, #new_request_builder, #new_response_handler, user_agent, user_agent_parameters
Constructor Details
This class inherits a constructor from Verizon::BaseApi
Instance Method Details
#drop_credentials(body) ⇒ ApiResponse
TODO: type endpoint description here description here
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 |
# File 'lib/verizon/apis/device_credential_management_api.rb', line 91 def drop_credentials(body) @api_call .request(new_request_builder(HttpMethodEnum::POST, '/credentials/drop', Server::HYPER_PRECISE_CREDENTIALS) .header_param(new_parameter('application/json', key: 'Content-Type')) .body_param(new_parameter(body) .is_required(true)) .header_param(new_parameter('application/json', key: 'accept')) .body_serializer(proc do |param| param.to_json unless param.nil? end) .auth(And.new('thingspace_oauth', 'VZ-M2M-Token'))) .response(new_response_handler .deserializer(APIHelper.method(:custom_type_deserializer)) .deserialize_into(DropResponse.method(:from_hash)) .is_api_response(true) .local_error('400', 'Bad Request', ErrorResponseException)) .execute end |
#generate_credentials(body) ⇒ ApiResponse
TODO: type endpoint description here description here
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 |
# File 'lib/verizon/apis/device_credential_management_api.rb', line 41 def generate_credentials(body) @api_call .request(new_request_builder(HttpMethodEnum::POST, '/credentials/generate', Server::HYPER_PRECISE_CREDENTIALS) .header_param(new_parameter('application/json', key: 'Content-Type')) .body_param(new_parameter(body) .is_required(true)) .header_param(new_parameter('application/json', key: 'accept')) .body_serializer(proc do |param| param.to_json unless param.nil? end) .auth(And.new('thingspace_oauth', 'VZ-M2M-Token'))) .response(new_response_handler .deserializer(APIHelper.method(:custom_type_deserializer)) .deserialize_into(GenerateResponse.method(:from_hash)) .is_api_response(true) .local_error('400', 'Bad Request', ErrorResponseException)) .execute end |
#reset_credentials(body) ⇒ ApiResponse
TODO: type endpoint description here description here
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 |
# File 'lib/verizon/apis/device_credential_management_api.rb', line 66 def reset_credentials(body) @api_call .request(new_request_builder(HttpMethodEnum::POST, '/credentials/reset', Server::HYPER_PRECISE_CREDENTIALS) .header_param(new_parameter('application/json', key: 'Content-Type')) .body_param(new_parameter(body) .is_required(true)) .header_param(new_parameter('application/json', key: 'accept')) .body_serializer(proc do |param| param.to_json unless param.nil? end) .auth(And.new('thingspace_oauth', 'VZ-M2M-Token'))) .response(new_response_handler .deserializer(APIHelper.method(:custom_type_deserializer)) .deserialize_into(GenerateResponse.method(:from_hash)) .is_api_response(true) .local_error('400', 'Bad Request', ErrorResponseException)) .execute end |
#retrieve_credentials(body) ⇒ ApiResponse
TODO: type endpoint description here description here
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
# File 'lib/verizon/apis/device_credential_management_api.rb', line 13 def retrieve_credentials(body) @api_call .request(new_request_builder(HttpMethodEnum::POST, '/credentials/retrieve', Server::HYPER_PRECISE_CREDENTIALS) .header_param(new_parameter('application/json', key: 'Content-Type')) .body_param(new_parameter(body) .is_required(true)) .header_param(new_parameter('application/json', key: 'accept')) .body_serializer(proc do |param| param.to_json unless param.nil? end) .auth(And.new('thingspace_oauth', 'VZ-M2M-Token'))) .response(new_response_handler .deserializer(APIHelper.method(:custom_type_deserializer)) .deserialize_into(RetrieveResponse.method(:from_hash)) .is_api_response(true) .local_error('400', 'Bad Request / Verification Failure', ErrorResponseException) .local_error('401', 'Unauthorized', APIException)) .execute end |