Class: Verizon::MECController

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

Overview

MECController

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_pmec_device_i_paddress_bulk(body) ⇒ ChangeMecDeviceIPAddressResponse

TODO: type endpoint description here parameter: Example:

Parameters:

Returns:



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

def change_pmec_device_i_paddress_bulk(body)
  new_api_call_builder
    .request(new_request_builder(HttpMethodEnum::PUT,
                                 '/m2m/v1/devices/mec/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(Single.new('thingspace_oauth')))
    .response(new_response_handler
               .deserializer(APIHelper.method(:custom_type_deserializer))
               .deserialize_into(ChangeMecDeviceIPAddressResponse.method(:from_hash))
               .is_api_response(true))
    .execute
end

#change_pmec_device_profile(body) ⇒ ChangeMecDeviceProfileResponse

TODO: type endpoint description here Example:

Parameters:

Returns:



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

def change_pmec_device_profile(body)
  new_api_call_builder
    .request(new_request_builder(HttpMethodEnum::POST,
                                 '/m2m/v1/devices/mec/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(Single.new('thingspace_oauth')))
    .response(new_response_handler
               .deserializer(APIHelper.method(:custom_type_deserializer))
               .deserialize_into(ChangeMecDeviceProfileResponse.method(:from_hash))
               .is_api_response(true))
    .execute
end

#change_pmec_device_state_activate(body) ⇒ ChangeMecDeviceStateResponse

TODO: type endpoint description here Example:

Parameters:

Returns:



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

def change_pmec_device_state_activate(body)
  new_api_call_builder
    .request(new_request_builder(HttpMethodEnum::POST,
                                 '/m2m/v1/devices/mec/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(Single.new('thingspace_oauth')))
    .response(new_response_handler
               .deserializer(APIHelper.method(:custom_type_deserializer))
               .deserialize_into(ChangeMecDeviceStateResponse.method(:from_hash))
               .is_api_response(true))
    .execute
end

#change_pmec_device_state_bulk_deactivate(body) ⇒ ChangeMecDeviceStateResponse

TODO: type endpoint description here parameter: Example:

Parameters:

Returns:



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

def change_pmec_device_state_bulk_deactivate(body)
  new_api_call_builder
    .request(new_request_builder(HttpMethodEnum::POST,
                                 '/m2m/v1/devices/mec/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(Single.new('thingspace_oauth')))
    .response(new_response_handler
               .deserializer(APIHelper.method(:custom_type_deserializer))
               .deserialize_into(ChangeMecDeviceStateResponse.method(:from_hash))
               .is_api_response(true))
    .execute
end

TODO: type endpoint description here

Parameters:

  • aname (String)

    Required parameter: Account name.

Returns:



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

def get_mec_performance_consent(aname)
  new_api_call_builder
    .request(new_request_builder(HttpMethodEnum::GET,
                                 '/m2m/v1/devices/mec/performance/consent/{aname}',
                                 Server::THINGSPACE)
               .template_param(new_parameter(aname, key: 'aname')
                                .should_encode(true))
               .header_param(new_parameter('application/json', key: 'accept'))
               .auth(Single.new('thingspace_oauth')))
    .response(new_response_handler
               .deserializer(APIHelper.method(:custom_type_deserializer))
               .deserialize_into(GetMECPerformanceConsentResponse.method(:from_hash))
               .is_api_response(true))
    .execute
end

#get_profile_list(aname) ⇒ MECProfileList

TODO: type endpoint description here

Parameters:

  • aname (String)

    Required parameter: Account name.

Returns:



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

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

#kpi_list(aname) ⇒ KPIInfoList

TODO: type endpoint description here

Parameters:

  • aname (String)

    Required parameter: Account name.

Returns:



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

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