Class: Verizon::PWNController

Inherits:
BaseController show all
Defined in:
lib/verizon/controllers/pwn_controller.rb

Overview

PWNController

Constant Summary

Constants inherited from BaseController

BaseController::GLOBAL_ERRORS

Instance Attribute Summary

Attributes inherited from BaseController

#config, #http_call_back

Instance Method Summary collapse

Methods inherited from BaseController

#initialize, #new_api_call_builder, #new_parameter, #new_request_builder, #new_response_handler, user_agent

Constructor Details

This class inherits a constructor from Verizon::BaseController

Instance Method Details

#change_pwn_device_ipaddress(body) ⇒ ApiResponse

TODO: type endpoint description here Example:

Parameters:

Returns:

  • (ApiResponse)

    the complete http response with raw body and status code.



113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
# File 'lib/verizon/controllers/pwn_controller.rb', line 113

def change_pwn_device_ipaddress(body)
  new_api_call_builder
    .request(new_request_builder(HttpMethodEnum::PUT,
                                 '/m2m/v1/devices/pwn/actions/ipaddress',
                                 Server::THINGSPACE)
               .header_param(new_parameter('application/json', key: 'Content-Type'))
               .body_param(new_parameter(body))
               .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(ChangePWNDeviceIpaddressResponse.method(:from_hash))
                .is_api_response(true))
    .execute
end

#change_pwn_device_profile(body) ⇒ ApiResponse

TODO: type endpoint description here

Parameters:

Returns:

  • (ApiResponse)

    the complete http response with raw body and status code.



92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
# File 'lib/verizon/controllers/pwn_controller.rb', line 92

def change_pwn_device_profile(body)
  new_api_call_builder
    .request(new_request_builder(HttpMethodEnum::POST,
                                 '/m2m/v1/devices/pwn/actions/profile',
                                 Server::THINGSPACE)
               .header_param(new_parameter('application/json', key: 'Content-Type'))
               .body_param(new_parameter(body))
               .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(ChangePWNDeviceProfileResponse.method(:from_hash))
                .is_api_response(true))
    .execute
end

#change_pwn_device_state_activate(body) ⇒ ApiResponse

TODO: type endpoint description here Example:

Parameters:

Returns:

  • (ApiResponse)

    the complete http response with raw body and status code.



51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# File 'lib/verizon/controllers/pwn_controller.rb', line 51

def change_pwn_device_state_activate(body)
  new_api_call_builder
    .request(new_request_builder(HttpMethodEnum::POST,
                                 '/m2m/v1/devices/pwn/actions/state/activate',
                                 Server::THINGSPACE)
               .header_param(new_parameter('application/json', key: 'Content-Type'))
               .body_param(new_parameter(body))
               .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(ChangePWNDeviceStateResponse.method(:from_hash))
                .is_api_response(true))
    .execute
end

#change_pwn_device_state_deactivate(body) ⇒ ApiResponse

TODO: type endpoint description here Example:

Parameters:

Returns:

  • (ApiResponse)

    the complete http response with raw body and status code.



72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
# File 'lib/verizon/controllers/pwn_controller.rb', line 72

def change_pwn_device_state_deactivate(body)
  new_api_call_builder
    .request(new_request_builder(HttpMethodEnum::POST,
                                 '/m2m/v1/devices/pwn/actions/state/deactivate',
                                 Server::THINGSPACE)
               .header_param(new_parameter('application/json', key: 'Content-Type'))
               .body_param(new_parameter(body))
               .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(ChangePWNDeviceStateResponse.method(:from_hash))
                .is_api_response(true))
    .execute
end

#get_profile_list(aname) ⇒ ApiResponse

TODO: type endpoint description here

Parameters:

  • aname (String)

    Required parameter: Account name.

Returns:

  • (ApiResponse)

    the complete http response with raw body and status code.



31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# File 'lib/verizon/controllers/pwn_controller.rb', line 31

def get_profile_list(aname)
  new_api_call_builder
    .request(new_request_builder(HttpMethodEnum::GET,
                                 '/m2m/v1/devices/pwn/profiles/list/{aname}',
                                 Server::THINGSPACE)
               .template_param(new_parameter(aname, key: 'aname')
                                .should_encode(true))
               .header_param(new_parameter('application/json', key: 'accept'))
               .auth(And.new('thingspace_oauth', 'VZ-M2M-Token')))
    .response(new_response_handler
                .deserializer(APIHelper.method(:custom_type_deserializer))
                .deserialize_into(PWNProfileList.method(:from_hash))
                .is_api_response(true))
    .execute
end

TODO: type endpoint description here

Parameters:

  • aname (String)

    Required parameter: Account name.

Returns:

  • (ApiResponse)

    the complete http response with raw body and status code.



133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
# File 'lib/verizon/controllers/pwn_controller.rb', line 133

def get_pwn_performance_consent(aname)
  new_api_call_builder
    .request(new_request_builder(HttpMethodEnum::GET,
                                 '/m2m/v1/devices/pwn/performance/consent/{aname}',
                                 Server::THINGSPACE)
               .template_param(new_parameter(aname, key: 'aname')
                                .should_encode(true))
               .header_param(new_parameter('application/json', key: 'accept'))
               .auth(And.new('thingspace_oauth', 'VZ-M2M-Token')))
    .response(new_response_handler
                .deserializer(APIHelper.method(:custom_type_deserializer))
                .deserialize_into(GetPWNPerformanceConsentResponse.method(:from_hash))
                .is_api_response(true))
    .execute
end

#kpi_list(aname) ⇒ ApiResponse

TODO: type endpoint description here

Parameters:

  • aname (String)

    Required parameter: Account name.

Returns:

  • (ApiResponse)

    the complete http response with raw body and status code.



12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# File 'lib/verizon/controllers/pwn_controller.rb', line 12

def kpi_list(aname)
  new_api_call_builder
    .request(new_request_builder(HttpMethodEnum::GET,
                                 '/m2m/v1/devices/pwn/kpi/list/{aname}',
                                 Server::THINGSPACE)
               .template_param(new_parameter(aname, key: 'aname')
                                .should_encode(true))
               .header_param(new_parameter('application/json', key: 'accept'))
               .auth(And.new('thingspace_oauth', 'VZ-M2M-Token')))
    .response(new_response_handler
                .deserializer(APIHelper.method(:custom_type_deserializer))
                .deserialize_into(KPIInfoList.method(:from_hash))
                .is_api_response(true))
    .execute
end