specs-sdk 1.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (600) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +30 -0
  3. data/README.md +168 -0
  4. data/lib/verizon/api_helper.rb +10 -0
  5. data/lib/verizon/client.rb +501 -0
  6. data/lib/verizon/configuration.rb +135 -0
  7. data/lib/verizon/controllers/account_devices_controller.rb +68 -0
  8. data/lib/verizon/controllers/account_requests_controller.rb +37 -0
  9. data/lib/verizon/controllers/account_subscriptions_controller.rb +56 -0
  10. data/lib/verizon/controllers/accounts_controller.rb +82 -0
  11. data/lib/verizon/controllers/anomaly_settings_controller.rb +80 -0
  12. data/lib/verizon/controllers/anomaly_triggers_controller.rb +195 -0
  13. data/lib/verizon/controllers/anomaly_triggers_v2_controller.rb +80 -0
  14. data/lib/verizon/controllers/base_controller.rb +66 -0
  15. data/lib/verizon/controllers/billing_controller.rb +111 -0
  16. data/lib/verizon/controllers/campaigns_v2_controller.rb +218 -0
  17. data/lib/verizon/controllers/campaigns_v3_controller.rb +162 -0
  18. data/lib/verizon/controllers/client_logging_controller.rb +162 -0
  19. data/lib/verizon/controllers/cloud_connector_devices_controller.rb +144 -0
  20. data/lib/verizon/controllers/cloud_connector_subscriptions_controller.rb +73 -0
  21. data/lib/verizon/controllers/configuration_files_controller.rb +80 -0
  22. data/lib/verizon/controllers/connectivity_callbacks_controller.rb +89 -0
  23. data/lib/verizon/controllers/device_actions_controller.rb +84 -0
  24. data/lib/verizon/controllers/device_diagnostics_controller.rb +58 -0
  25. data/lib/verizon/controllers/device_groups_controller.rb +150 -0
  26. data/lib/verizon/controllers/device_location_callbacks_controller.rb +87 -0
  27. data/lib/verizon/controllers/device_management_controller.rb +743 -0
  28. data/lib/verizon/controllers/device_monitoring_controller.rb +59 -0
  29. data/lib/verizon/controllers/device_profile_management_controller.rb +104 -0
  30. data/lib/verizon/controllers/device_reports_controller.rb +131 -0
  31. data/lib/verizon/controllers/device_service_management_controller.rb +89 -0
  32. data/lib/verizon/controllers/device_sms_messaging_controller.rb +108 -0
  33. data/lib/verizon/controllers/devices_location_subscriptions_controller.rb +57 -0
  34. data/lib/verizon/controllers/devices_locations_controller.rb +200 -0
  35. data/lib/verizon/controllers/diagnostics_callbacks_controller.rb +83 -0
  36. data/lib/verizon/controllers/diagnostics_factory_reset_controller.rb +34 -0
  37. data/lib/verizon/controllers/diagnostics_history_controller.rb +34 -0
  38. data/lib/verizon/controllers/diagnostics_observations_controller.rb +59 -0
  39. data/lib/verizon/controllers/diagnostics_settings_controller.rb +35 -0
  40. data/lib/verizon/controllers/diagnostics_subscriptions_controller.rb +30 -0
  41. data/lib/verizon/controllers/euicc_device_profile_management_controller.rb +130 -0
  42. data/lib/verizon/controllers/exclusions_controller.rb +88 -0
  43. data/lib/verizon/controllers/firmware_v1_controller.rb +150 -0
  44. data/lib/verizon/controllers/firmware_v3_controller.rb +90 -0
  45. data/lib/verizon/controllers/fixed_wireless_qualification_controller.rb +34 -0
  46. data/lib/verizon/controllers/global_reporting_controller.rb +95 -0
  47. data/lib/verizon/controllers/hyper_precise_location_callbacks_controller.rb +133 -0
  48. data/lib/verizon/controllers/m_5g_edge_platforms_controller.rb +87 -0
  49. data/lib/verizon/controllers/managing_esim_profiles_controller.rb +154 -0
  50. data/lib/verizon/controllers/mec_controller.rb +150 -0
  51. data/lib/verizon/controllers/oauth_authorization_controller.rb +77 -0
  52. data/lib/verizon/controllers/performance_metrics_controller.rb +49 -0
  53. data/lib/verizon/controllers/promotion_period_information_controller.rb +58 -0
  54. data/lib/verizon/controllers/retrieve_the_triggers_controller.rb +93 -0
  55. data/lib/verizon/controllers/server_logging_controller.rb +37 -0
  56. data/lib/verizon/controllers/service_endpoints_controller.rb +223 -0
  57. data/lib/verizon/controllers/service_plans_controller.rb +35 -0
  58. data/lib/verizon/controllers/service_profiles_controller.rb +164 -0
  59. data/lib/verizon/controllers/session_management_controller.rb +78 -0
  60. data/lib/verizon/controllers/sim_actions_controller.rb +92 -0
  61. data/lib/verizon/controllers/sim_secure_for_io_t_licenses_controller.rb +94 -0
  62. data/lib/verizon/controllers/sms_controller.rb +88 -0
  63. data/lib/verizon/controllers/software_management_callbacks_v1_controller.rb +93 -0
  64. data/lib/verizon/controllers/software_management_callbacks_v2_controller.rb +109 -0
  65. data/lib/verizon/controllers/software_management_callbacks_v3_controller.rb +109 -0
  66. data/lib/verizon/controllers/software_management_licenses_v1_controller.rb +162 -0
  67. data/lib/verizon/controllers/software_management_licenses_v2_controller.rb +177 -0
  68. data/lib/verizon/controllers/software_management_licenses_v3_controller.rb +89 -0
  69. data/lib/verizon/controllers/software_management_reports_v1_controller.rb +105 -0
  70. data/lib/verizon/controllers/software_management_reports_v2_controller.rb +159 -0
  71. data/lib/verizon/controllers/software_management_reports_v3_controller.rb +98 -0
  72. data/lib/verizon/controllers/software_management_subscriptions_v1_controller.rb +64 -0
  73. data/lib/verizon/controllers/software_management_subscriptions_v2_controller.rb +31 -0
  74. data/lib/verizon/controllers/software_management_subscriptions_v3_controller.rb +31 -0
  75. data/lib/verizon/controllers/targets_controller.rb +122 -0
  76. data/lib/verizon/controllers/thing_space_quality_of_service_api_actions_controller.rb +58 -0
  77. data/lib/verizon/controllers/update_triggers_controller.rb +32 -0
  78. data/lib/verizon/controllers/usage_trigger_management_controller.rb +89 -0
  79. data/lib/verizon/controllers/wireless_network_performance_controller.rb +132 -0
  80. data/lib/verizon/exceptions/api_exception.rb +10 -0
  81. data/lib/verizon/exceptions/connectivity_management_result_exception.rb +37 -0
  82. data/lib/verizon/exceptions/default_response_exception.rb +37 -0
  83. data/lib/verizon/exceptions/device_diagnostics_result_exception.rb +39 -0
  84. data/lib/verizon/exceptions/device_location_result_exception.rb +37 -0
  85. data/lib/verizon/exceptions/edge_discovery_result_exception.rb +43 -0
  86. data/lib/verizon/exceptions/edge_performance_result_exception.rb +37 -0
  87. data/lib/verizon/exceptions/esim_rest_error_response_exception.rb +37 -0
  88. data/lib/verizon/exceptions/fota_v1_result_exception.rb +37 -0
  89. data/lib/verizon/exceptions/fota_v2_result_exception.rb +37 -0
  90. data/lib/verizon/exceptions/fota_v3_result_exception.rb +37 -0
  91. data/lib/verizon/exceptions/gio_rest_error_response_exception.rb +37 -0
  92. data/lib/verizon/exceptions/hyper_precise_location_result_exception.rb +47 -0
  93. data/lib/verizon/exceptions/intelligence_result_exception.rb +37 -0
  94. data/lib/verizon/exceptions/oauth_provider_exception.rb +48 -0
  95. data/lib/verizon/exceptions/ready_sim_rest_error_response_exception.rb +37 -0
  96. data/lib/verizon/exceptions/rest_error_response_exception.rb +37 -0
  97. data/lib/verizon/exceptions/security_result_exception.rb +42 -0
  98. data/lib/verizon/exceptions/wnp_rest_error_response_exception.rb +37 -0
  99. data/lib/verizon/http/api_response.rb +21 -0
  100. data/lib/verizon/http/auth/oauth_2.rb +97 -0
  101. data/lib/verizon/http/auth/thingspace_oauth.rb +89 -0
  102. data/lib/verizon/http/http_call_back.rb +10 -0
  103. data/lib/verizon/http/http_method_enum.rb +10 -0
  104. data/lib/verizon/http/http_request.rb +10 -0
  105. data/lib/verizon/http/http_response.rb +10 -0
  106. data/lib/verizon/models/acceleration.rb +70 -0
  107. data/lib/verizon/models/account.rb +142 -0
  108. data/lib/verizon/models/account_device_list.rb +69 -0
  109. data/lib/verizon/models/account_device_list_filter.rb +58 -0
  110. data/lib/verizon/models/account_device_list_request.rb +164 -0
  111. data/lib/verizon/models/account_device_list_result.rb +71 -0
  112. data/lib/verizon/models/account_identifier.rb +52 -0
  113. data/lib/verizon/models/account_labels.rb +77 -0
  114. data/lib/verizon/models/account_lead.rb +72 -0
  115. data/lib/verizon/models/account_leads_result.rb +69 -0
  116. data/lib/verizon/models/account_license_device_list_item.rb +70 -0
  117. data/lib/verizon/models/account_license_info.rb +113 -0
  118. data/lib/verizon/models/account_service.rb +79 -0
  119. data/lib/verizon/models/account_states_and_services.rb +58 -0
  120. data/lib/verizon/models/accuracy_mode_enum.rb +20 -0
  121. data/lib/verizon/models/activate.rb +48 -0
  122. data/lib/verizon/models/activate_device_profile_request.rb +87 -0
  123. data/lib/verizon/models/active_anomaly_indicator.rb +51 -0
  124. data/lib/verizon/models/active_trigger_indicator.rb +51 -0
  125. data/lib/verizon/models/add_devices_request.rb +131 -0
  126. data/lib/verizon/models/add_devices_result.rb +70 -0
  127. data/lib/verizon/models/address.rb +137 -0
  128. data/lib/verizon/models/address_item.rb +110 -0
  129. data/lib/verizon/models/addressquery.rb +59 -0
  130. data/lib/verizon/models/aggregate_session_report.rb +92 -0
  131. data/lib/verizon/models/aggregate_session_report_request.rb +129 -0
  132. data/lib/verizon/models/aggregate_usage_error.rb +71 -0
  133. data/lib/verizon/models/aggregate_usage_item.rb +85 -0
  134. data/lib/verizon/models/aggregated_report_callback_result.rb +63 -0
  135. data/lib/verizon/models/aggregated_report_callback_status_enum.rb +24 -0
  136. data/lib/verizon/models/anomaly_detection_request.rb +73 -0
  137. data/lib/verizon/models/anomaly_detection_settings.rb +75 -0
  138. data/lib/verizon/models/anomaly_detection_trigger.rb +50 -0
  139. data/lib/verizon/models/anomaly_trigger_request.rb +108 -0
  140. data/lib/verizon/models/anomaly_trigger_result.rb +59 -0
  141. data/lib/verizon/models/anomaly_trigger_value.rb +123 -0
  142. data/lib/verizon/models/api_response_code.rb +57 -0
  143. data/lib/verizon/models/assign_license_request.rb +88 -0
  144. data/lib/verizon/models/associate_label_request.rb +58 -0
  145. data/lib/verizon/models/asynchronous_location_request_result.rb +71 -0
  146. data/lib/verizon/models/asynchronous_request_result.rb +60 -0
  147. data/lib/verizon/models/attribute_identifier_enum.rb +32 -0
  148. data/lib/verizon/models/attribute_setting.rb +110 -0
  149. data/lib/verizon/models/base_model.rb +62 -0
  150. data/lib/verizon/models/bill_usage_request.rb +78 -0
  151. data/lib/verizon/models/billable_usage_report.rb +124 -0
  152. data/lib/verizon/models/billedusage_list_request.rb +89 -0
  153. data/lib/verizon/models/billing_cycle.rb +60 -0
  154. data/lib/verizon/models/bullseye_service_request.rb +66 -0
  155. data/lib/verizon/models/bullseye_service_result.rb +80 -0
  156. data/lib/verizon/models/cache_mode_enum.rb +26 -0
  157. data/lib/verizon/models/callback_action_result.rb +60 -0
  158. data/lib/verizon/models/callback_created.rb +70 -0
  159. data/lib/verizon/models/callback_registered.rb +58 -0
  160. data/lib/verizon/models/callback_registration_request.rb +80 -0
  161. data/lib/verizon/models/callback_registration_result.rb +60 -0
  162. data/lib/verizon/models/callback_service_enum.rb +20 -0
  163. data/lib/verizon/models/callback_service_name_enum.rb +23 -0
  164. data/lib/verizon/models/callback_summary.rb +50 -0
  165. data/lib/verizon/models/campaign.rb +174 -0
  166. data/lib/verizon/models/campaign_firmware_upgrade.rb +135 -0
  167. data/lib/verizon/models/campaign_meta_info_protocol_enum.rb +23 -0
  168. data/lib/verizon/models/campaign_software.rb +215 -0
  169. data/lib/verizon/models/campaign_software_upgrade.rb +179 -0
  170. data/lib/verizon/models/campaign_status_enum.rb +41 -0
  171. data/lib/verizon/models/carrier_actions_request.rb +123 -0
  172. data/lib/verizon/models/carrier_activate_request.rb +207 -0
  173. data/lib/verizon/models/carrier_deactivate_request.rb +147 -0
  174. data/lib/verizon/models/carrier_information.rb +72 -0
  175. data/lib/verizon/models/change_configuration_request.rb +74 -0
  176. data/lib/verizon/models/change_configuration_response.rb +163 -0
  177. data/lib/verizon/models/change_device_id_request.rb +155 -0
  178. data/lib/verizon/models/change_mec_device_ip_address_response.rb +51 -0
  179. data/lib/verizon/models/change_mec_device_profile_response.rb +51 -0
  180. data/lib/verizon/models/change_mec_device_state_response.rb +51 -0
  181. data/lib/verizon/models/change_pmec_device_i_paddress_bulk_request.rb +66 -0
  182. data/lib/verizon/models/change_pmec_device_i_paddress_request.rb +66 -0
  183. data/lib/verizon/models/change_pmec_device_profile_bulk_request.rb +75 -0
  184. data/lib/verizon/models/change_pmec_device_profile_request.rb +75 -0
  185. data/lib/verizon/models/change_pmec_device_state_activate_request.rb +75 -0
  186. data/lib/verizon/models/change_pmec_device_state_bulk_activate_request.rb +75 -0
  187. data/lib/verizon/models/change_pmec_device_state_bulk_deactivate_request.rb +66 -0
  188. data/lib/verizon/models/change_pmec_device_state_deactivate_request.rb +66 -0
  189. data/lib/verizon/models/check_in_history_item.rb +91 -0
  190. data/lib/verizon/models/check_order_status_request.rb +80 -0
  191. data/lib/verizon/models/client_type_enum.rb +44 -0
  192. data/lib/verizon/models/compute_resources_type.rb +70 -0
  193. data/lib/verizon/models/condition.rb +59 -0
  194. data/lib/verizon/models/configuration.rb +50 -0
  195. data/lib/verizon/models/connection_event.rb +91 -0
  196. data/lib/verizon/models/connection_history_result.rb +74 -0
  197. data/lib/verizon/models/connectivity_management_callback.rb +95 -0
  198. data/lib/verizon/models/connectivity_management_success_result.rb +51 -0
  199. data/lib/verizon/models/consent_delete_request.rb +60 -0
  200. data/lib/verizon/models/consent_request.rb +79 -0
  201. data/lib/verizon/models/contact_info_update_request.rb +88 -0
  202. data/lib/verizon/models/coordinates.rb +60 -0
  203. data/lib/verizon/models/create_device_group_request.rb +91 -0
  204. data/lib/verizon/models/create_io_t_application_request.rb +135 -0
  205. data/lib/verizon/models/create_io_t_application_response.rb +74 -0
  206. data/lib/verizon/models/create_service_profile_result.rb +52 -0
  207. data/lib/verizon/models/create_subscription_request.rb +154 -0
  208. data/lib/verizon/models/create_target_request.rb +170 -0
  209. data/lib/verizon/models/create_target_request_fields.rb +60 -0
  210. data/lib/verizon/models/create_trigger_request.rb +135 -0
  211. data/lib/verizon/models/create_trigger_request_options.rb +105 -0
  212. data/lib/verizon/models/custom_fields.rb +57 -0
  213. data/lib/verizon/models/custom_fields_update_request.rb +133 -0
  214. data/lib/verizon/models/customer_name.rb +88 -0
  215. data/lib/verizon/models/customernamequery.rb +59 -0
  216. data/lib/verizon/models/cycle_type_enum.rb +23 -0
  217. data/lib/verizon/models/daily_usage_item.rb +70 -0
  218. data/lib/verizon/models/data_percentage100_trigger_attribute.rb +61 -0
  219. data/lib/verizon/models/data_percentage50_trigger_attribute.rb +61 -0
  220. data/lib/verizon/models/data_percentage75_trigger_attribute.rb +61 -0
  221. data/lib/verizon/models/data_percentage90_trigger_attribute.rb +61 -0
  222. data/lib/verizon/models/data_trigger_request.rb +70 -0
  223. data/lib/verizon/models/date_filter.rb +57 -0
  224. data/lib/verizon/models/deactivate_device_list.rb +59 -0
  225. data/lib/verizon/models/deactivate_device_profile_request.rb +107 -0
  226. data/lib/verizon/models/delete_devices_request.rb +70 -0
  227. data/lib/verizon/models/delete_devices_result.rb +73 -0
  228. data/lib/verizon/models/delete_service_profile_result.rb +60 -0
  229. data/lib/verizon/models/delete_subscription_request.rb +64 -0
  230. data/lib/verizon/models/delete_target_request.rb +64 -0
  231. data/lib/verizon/models/deregister_service_endpoint_result.rb +61 -0
  232. data/lib/verizon/models/device.rb +57 -0
  233. data/lib/verizon/models/device_activation_request.rb +67 -0
  234. data/lib/verizon/models/device_aggregate_usage_list_request.rb +121 -0
  235. data/lib/verizon/models/device_connection_list_request.rb +67 -0
  236. data/lib/verizon/models/device_cost_center_request.rb +153 -0
  237. data/lib/verizon/models/device_diagnostics_callback.rb +95 -0
  238. data/lib/verizon/models/device_extended_diagnostics_request.rb +68 -0
  239. data/lib/verizon/models/device_extended_diagnostics_result.rb +61 -0
  240. data/lib/verizon/models/device_filter.rb +91 -0
  241. data/lib/verizon/models/device_filter_without_account.rb +80 -0
  242. data/lib/verizon/models/device_firmware_list.rb +71 -0
  243. data/lib/verizon/models/device_firmware_upgrade.rb +135 -0
  244. data/lib/verizon/models/device_firmware_version.rb +101 -0
  245. data/lib/verizon/models/device_firmware_version_update_result.rb +57 -0
  246. data/lib/verizon/models/device_group.rb +90 -0
  247. data/lib/verizon/models/device_group_devices_data.rb +90 -0
  248. data/lib/verizon/models/device_group_update_request.rb +105 -0
  249. data/lib/verizon/models/device_id.rb +59 -0
  250. data/lib/verizon/models/device_id2.rb +60 -0
  251. data/lib/verizon/models/device_id_search.rb +81 -0
  252. data/lib/verizon/models/device_identifier.rb +68 -0
  253. data/lib/verizon/models/device_imei.rb +48 -0
  254. data/lib/verizon/models/device_info.rb +67 -0
  255. data/lib/verizon/models/device_labels.rb +57 -0
  256. data/lib/verizon/models/device_list.rb +59 -0
  257. data/lib/verizon/models/device_list1.rb +75 -0
  258. data/lib/verizon/models/device_list2.rb +59 -0
  259. data/lib/verizon/models/device_list7.rb +66 -0
  260. data/lib/verizon/models/device_list_query_item.rb +123 -0
  261. data/lib/verizon/models/device_list_query_result.rb +91 -0
  262. data/lib/verizon/models/device_list_result.rb +75 -0
  263. data/lib/verizon/models/device_location_callback.rb +57 -0
  264. data/lib/verizon/models/device_location_subscription.rb +80 -0
  265. data/lib/verizon/models/device_location_success_result.rb +50 -0
  266. data/lib/verizon/models/device_log.rb +103 -0
  267. data/lib/verizon/models/device_logging_request.rb +48 -0
  268. data/lib/verizon/models/device_logging_status.rb +57 -0
  269. data/lib/verizon/models/device_management_result.rb +52 -0
  270. data/lib/verizon/models/device_mismatch_list_request.rb +92 -0
  271. data/lib/verizon/models/device_mismatch_list_result.rb +61 -0
  272. data/lib/verizon/models/device_prl_list_request.rb +119 -0
  273. data/lib/verizon/models/device_profile_request.rb +79 -0
  274. data/lib/verizon/models/device_propertylocation.rb +60 -0
  275. data/lib/verizon/models/device_provisioning_history_list_request.rb +67 -0
  276. data/lib/verizon/models/device_provisioning_history_list_result.rb +72 -0
  277. data/lib/verizon/models/device_reset_request.rb +80 -0
  278. data/lib/verizon/models/device_service_information.rb +70 -0
  279. data/lib/verizon/models/device_service_request.rb +58 -0
  280. data/lib/verizon/models/device_software_upgrade.rb +104 -0
  281. data/lib/verizon/models/device_suspension_status_request.rb +80 -0
  282. data/lib/verizon/models/device_upgrade_history.rb +131 -0
  283. data/lib/verizon/models/device_upload_request.rb +93 -0
  284. data/lib/verizon/models/device_usage_list_request.rb +79 -0
  285. data/lib/verizon/models/device_usage_list_result.rb +71 -0
  286. data/lib/verizon/models/devices_consent_result.rb +100 -0
  287. data/lib/verizon/models/devices_protocol_enum.rb +26 -0
  288. data/lib/verizon/models/diagnostic_observation_setting.rb +81 -0
  289. data/lib/verizon/models/diagnostics_category.rb +71 -0
  290. data/lib/verizon/models/diagnostics_observation_result.rb +73 -0
  291. data/lib/verizon/models/diagnostics_subscription.rb +107 -0
  292. data/lib/verizon/models/download_time_window.rb +60 -0
  293. data/lib/verizon/models/edge_discovery_result_data.rb +52 -0
  294. data/lib/verizon/models/enable_promo_exp.rb +51 -0
  295. data/lib/verizon/models/enable_promo_exp1.rb +60 -0
  296. data/lib/verizon/models/engagement.rb +79 -0
  297. data/lib/verizon/models/error_response_code_enum.rb +29 -0
  298. data/lib/verizon/models/esi_msubrequest.rb +70 -0
  299. data/lib/verizon/models/esim_device_id.rb +60 -0
  300. data/lib/verizon/models/esim_device_list.rb +59 -0
  301. data/lib/verizon/models/esim_profile_request.rb +99 -0
  302. data/lib/verizon/models/esim_provhistory_request.rb +106 -0
  303. data/lib/verizon/models/esim_request_response.rb +50 -0
  304. data/lib/verizon/models/esim_status_response.rb +79 -0
  305. data/lib/verizon/models/extended_attributes.rb +60 -0
  306. data/lib/verizon/models/fields.rb +50 -0
  307. data/lib/verizon/models/fields1.rb +50 -0
  308. data/lib/verizon/models/fields2.rb +50 -0
  309. data/lib/verizon/models/fields_http_headers.rb +50 -0
  310. data/lib/verizon/models/filtercriteria.rb +59 -0
  311. data/lib/verizon/models/filtercriteria2.rb +51 -0
  312. data/lib/verizon/models/find_device_by_property_response.rb +182 -0
  313. data/lib/verizon/models/find_device_by_property_response_list.rb +60 -0
  314. data/lib/verizon/models/firmware.rb +130 -0
  315. data/lib/verizon/models/firmware_campaign.rb +172 -0
  316. data/lib/verizon/models/firmware_imei.rb +49 -0
  317. data/lib/verizon/models/firmware_package.rb +118 -0
  318. data/lib/verizon/models/firmware_protocol_enum.rb +26 -0
  319. data/lib/verizon/models/firmware_type_list_enum.rb +23 -0
  320. data/lib/verizon/models/firmware_upgrade.rb +122 -0
  321. data/lib/verizon/models/firmware_upgrade_change_request.rb +57 -0
  322. data/lib/verizon/models/firmware_upgrade_change_result.rb +81 -0
  323. data/lib/verizon/models/firmware_upgrade_device_list_item.rb +73 -0
  324. data/lib/verizon/models/firmware_upgrade_request.rb +93 -0
  325. data/lib/verizon/models/flow_info.rb +90 -0
  326. data/lib/verizon/models/fota_v1_callback_registration_request.rb +80 -0
  327. data/lib/verizon/models/fota_v1_callback_registration_result.rb +62 -0
  328. data/lib/verizon/models/fota_v1_success_result.rb +50 -0
  329. data/lib/verizon/models/fota_v2_callback_registration_request.rb +50 -0
  330. data/lib/verizon/models/fota_v2_callback_registration_result.rb +50 -0
  331. data/lib/verizon/models/fota_v2_subscription.rb +91 -0
  332. data/lib/verizon/models/fota_v2_success_result.rb +48 -0
  333. data/lib/verizon/models/fota_v3_callback_registration_request.rb +50 -0
  334. data/lib/verizon/models/fota_v3_callback_registration_result.rb +50 -0
  335. data/lib/verizon/models/fota_v3_callback_summary.rb +50 -0
  336. data/lib/verizon/models/fota_v3_subscription.rb +91 -0
  337. data/lib/verizon/models/fota_v3_success_result.rb +48 -0
  338. data/lib/verizon/models/generate_external_id_request.rb +52 -0
  339. data/lib/verizon/models/generate_external_id_result.rb +50 -0
  340. data/lib/verizon/models/get_device_experience_score_bulk_request.rb +66 -0
  341. data/lib/verizon/models/get_device_experience_score_history_request.rb +57 -0
  342. data/lib/verizon/models/get_device_list_with_profiles_request.rb +104 -0
  343. data/lib/verizon/models/get_mec_performance_consent_response.rb +50 -0
  344. data/lib/verizon/models/get_network_conditions_request.rb +66 -0
  345. data/lib/verizon/models/get_trigger_response.rb +200 -0
  346. data/lib/verizon/models/get_trigger_response_list.rb +59 -0
  347. data/lib/verizon/models/get_wireless_coverage_request.rb +93 -0
  348. data/lib/verizon/models/get_wireless_coverage_request_fwa.rb +93 -0
  349. data/lib/verizon/models/gio_deactivate_device_profile_request.rb +99 -0
  350. data/lib/verizon/models/gio_device_id.rb +57 -0
  351. data/lib/verizon/models/gio_device_list.rb +59 -0
  352. data/lib/verizon/models/gio_profile_request.rb +87 -0
  353. data/lib/verizon/models/gio_request_response.rb +50 -0
  354. data/lib/verizon/models/gio_sms_message.rb +88 -0
  355. data/lib/verizon/models/giosms_send_request.rb +136 -0
  356. data/lib/verizon/models/go_to_state_request.rb +222 -0
  357. data/lib/verizon/models/gpu.rb +83 -0
  358. data/lib/verizon/models/history.rb +69 -0
  359. data/lib/verizon/models/history_attribute_value.rb +79 -0
  360. data/lib/verizon/models/history_search_filter.rb +69 -0
  361. data/lib/verizon/models/history_search_filter_attributes.rb +50 -0
  362. data/lib/verizon/models/history_search_limit_time.rb +70 -0
  363. data/lib/verizon/models/history_search_request.rb +84 -0
  364. data/lib/verizon/models/http_status_code_enum.rb +228 -0
  365. data/lib/verizon/models/hyper_precise_location_callback.rb +61 -0
  366. data/lib/verizon/models/hyper_precise_location_fault.rb +70 -0
  367. data/lib/verizon/models/i_error_message.rb +82 -0
  368. data/lib/verizon/models/id.rb +62 -0
  369. data/lib/verizon/models/intelligence_success_result.rb +50 -0
  370. data/lib/verizon/models/ip_pool.rb +71 -0
  371. data/lib/verizon/models/key_data_percentage50.rb +60 -0
  372. data/lib/verizon/models/key_service_plan.rb +50 -0
  373. data/lib/verizon/models/keyschunk2.rb +139 -0
  374. data/lib/verizon/models/keysms_percentage50.rb +60 -0
  375. data/lib/verizon/models/kpi_info.rb +121 -0
  376. data/lib/verizon/models/kpi_info_list.rb +59 -0
  377. data/lib/verizon/models/kv_pair.rb +60 -0
  378. data/lib/verizon/models/label.rb +60 -0
  379. data/lib/verizon/models/labels_list.rb +59 -0
  380. data/lib/verizon/models/license_device_id.rb +62 -0
  381. data/lib/verizon/models/license_device_list.rb +69 -0
  382. data/lib/verizon/models/list_all_service_endpoints_result.rb +60 -0
  383. data/lib/verizon/models/list_mec_platforms_result.rb +62 -0
  384. data/lib/verizon/models/list_optimal_service_endpoints_result.rb +59 -0
  385. data/lib/verizon/models/list_regions_result.rb +61 -0
  386. data/lib/verizon/models/list_service_profiles_result.rb +61 -0
  387. data/lib/verizon/models/location.rb +70 -0
  388. data/lib/verizon/models/location_report.rb +102 -0
  389. data/lib/verizon/models/location_report_status.rb +60 -0
  390. data/lib/verizon/models/location_request.rb +88 -0
  391. data/lib/verizon/models/locations.rb +59 -0
  392. data/lib/verizon/models/locationscoord.rb +57 -0
  393. data/lib/verizon/models/log_in_request.rb +58 -0
  394. data/lib/verizon/models/log_in_result.rb +52 -0
  395. data/lib/verizon/models/log_out_request.rb +50 -0
  396. data/lib/verizon/models/m201success.rb +50 -0
  397. data/lib/verizon/models/managed_acc_added_list.rb +60 -0
  398. data/lib/verizon/models/managed_acc_provisioned_list.rb +60 -0
  399. data/lib/verizon/models/managed_account_cancel_request.rb +84 -0
  400. data/lib/verizon/models/managed_account_cancel_response.rb +93 -0
  401. data/lib/verizon/models/managed_accounts_add_request.rb +76 -0
  402. data/lib/verizon/models/managed_accounts_add_response.rb +69 -0
  403. data/lib/verizon/models/managed_accounts_get_all_response.rb +91 -0
  404. data/lib/verizon/models/managed_accounts_provision_request.rb +84 -0
  405. data/lib/verizon/models/managed_accounts_provision_response.rb +100 -0
  406. data/lib/verizon/models/mec_device_id.rb +57 -0
  407. data/lib/verizon/models/mec_device_list.rb +57 -0
  408. data/lib/verizon/models/mec_performance_metrics.rb +90 -0
  409. data/lib/verizon/models/mec_performance_query_result.rb +60 -0
  410. data/lib/verizon/models/mec_platform_resource.rb +95 -0
  411. data/lib/verizon/models/mec_platform_status_enum.rb +26 -0
  412. data/lib/verizon/models/mec_platforms_additional_support_info.rb +60 -0
  413. data/lib/verizon/models/mec_platforms_additional_support_info_data.rb +51 -0
  414. data/lib/verizon/models/mec_profile.rb +60 -0
  415. data/lib/verizon/models/mec_profile_list.rb +59 -0
  416. data/lib/verizon/models/mismatched_device.rb +112 -0
  417. data/lib/verizon/models/move_device_request.rb +137 -0
  418. data/lib/verizon/models/network_resources_type.rb +98 -0
  419. data/lib/verizon/models/network_type.rb +50 -0
  420. data/lib/verizon/models/no_of_days_b4_promo_exp.rb +60 -0
  421. data/lib/verizon/models/notification.rb +179 -0
  422. data/lib/verizon/models/notification_group_name_trigger_attribute.rb +50 -0
  423. data/lib/verizon/models/notification_report_request.rb +85 -0
  424. data/lib/verizon/models/notification_report_status_request.rb +78 -0
  425. data/lib/verizon/models/numerical_data.rb +60 -0
  426. data/lib/verizon/models/numerical_data_unit_enum.rb +29 -0
  427. data/lib/verizon/models/oauth_provider_error_enum.rb +45 -0
  428. data/lib/verizon/models/oauth_scope_oauth_2enum.rb +63 -0
  429. data/lib/verizon/models/oauth_token.rb +100 -0
  430. data/lib/verizon/models/observation_request.rb +107 -0
  431. data/lib/verizon/models/observation_request_attribute.rb +50 -0
  432. data/lib/verizon/models/place_of_use.rb +63 -0
  433. data/lib/verizon/models/position_data.rb +100 -0
  434. data/lib/verizon/models/position_error.rb +80 -0
  435. data/lib/verizon/models/primary_place_of_use.rb +78 -0
  436. data/lib/verizon/models/profile_change_state_request.rb +75 -0
  437. data/lib/verizon/models/profile_request.rb +137 -0
  438. data/lib/verizon/models/profile_request2.rb +109 -0
  439. data/lib/verizon/models/promo_alert.rb +89 -0
  440. data/lib/verizon/models/promo_alert1.rb +81 -0
  441. data/lib/verizon/models/promo_alert_trigger_request.rb +117 -0
  442. data/lib/verizon/models/property_device_id.rb +62 -0
  443. data/lib/verizon/models/provhistory_request.rb +106 -0
  444. data/lib/verizon/models/provisioning_history.rb +130 -0
  445. data/lib/verizon/models/qos_device_id.rb +60 -0
  446. data/lib/verizon/models/qos_device_info.rb +78 -0
  447. data/lib/verizon/models/query_mec_performance_metrics_request.rb +57 -0
  448. data/lib/verizon/models/query_subscription_request.rb +78 -0
  449. data/lib/verizon/models/query_target_request.rb +78 -0
  450. data/lib/verizon/models/ready_sim_device_id.rb +60 -0
  451. data/lib/verizon/models/ready_sim_service_plan.rb +50 -0
  452. data/lib/verizon/models/region.rb +100 -0
  453. data/lib/verizon/models/register_callback_request.rb +80 -0
  454. data/lib/verizon/models/register_service_endpoint_result.rb +53 -0
  455. data/lib/verizon/models/registered_callbacks.rb +92 -0
  456. data/lib/verizon/models/remove_device_request.rb +61 -0
  457. data/lib/verizon/models/report_status_enum.rb +26 -0
  458. data/lib/verizon/models/request_body_for_usage.rb +106 -0
  459. data/lib/verizon/models/request_body_for_usage1.rb +96 -0
  460. data/lib/verizon/models/request_response.rb +50 -0
  461. data/lib/verizon/models/request_status_enum.rb +26 -0
  462. data/lib/verizon/models/request_trigger.rb +111 -0
  463. data/lib/verizon/models/resource_identifier.rb +61 -0
  464. data/lib/verizon/models/resources_edge_hosted_service.rb +96 -0
  465. data/lib/verizon/models/resources_edge_hosted_service_with_profile_id.rb +107 -0
  466. data/lib/verizon/models/resources_service_endpoint.rb +90 -0
  467. data/lib/verizon/models/resources_service_profile.rb +119 -0
  468. data/lib/verizon/models/resources_service_profile_with_id.rb +129 -0
  469. data/lib/verizon/models/response_code_enum.rb +29 -0
  470. data/lib/verizon/models/response_to_usage_query.rb +79 -0
  471. data/lib/verizon/models/retrieve_monitors_request.rb +78 -0
  472. data/lib/verizon/models/retrieves_available_files_response.rb +124 -0
  473. data/lib/verizon/models/retrieves_available_files_response_list.rb +59 -0
  474. data/lib/verizon/models/schedules_software_upgrade_request.rb +186 -0
  475. data/lib/verizon/models/search_device_by_property_fields.rb +122 -0
  476. data/lib/verizon/models/search_device_by_property_response.rb +192 -0
  477. data/lib/verizon/models/search_device_by_property_response_list.rb +59 -0
  478. data/lib/verizon/models/search_device_event_history_request.rb +96 -0
  479. data/lib/verizon/models/search_device_event_history_response_list.rb +62 -0
  480. data/lib/verizon/models/search_device_response.rb +173 -0
  481. data/lib/verizon/models/search_sensor_history_request.rb +82 -0
  482. data/lib/verizon/models/search_sensor_history_response_list.rb +59 -0
  483. data/lib/verizon/models/security_subscription.rb +114 -0
  484. data/lib/verizon/models/security_subscription_request.rb +67 -0
  485. data/lib/verizon/models/security_subscription_result.rb +70 -0
  486. data/lib/verizon/models/security_success_result.rb +54 -0
  487. data/lib/verizon/models/sensitivity_parameters.rb +86 -0
  488. data/lib/verizon/models/service_name_enum.rb +23 -0
  489. data/lib/verizon/models/service_plan.rb +103 -0
  490. data/lib/verizon/models/service_plan_trigger_attribute.rb +50 -0
  491. data/lib/verizon/models/service_plan_update_request.rb +154 -0
  492. data/lib/verizon/models/service_usage.rb +61 -0
  493. data/lib/verizon/models/session_report.rb +96 -0
  494. data/lib/verizon/models/session_report_request.rb +105 -0
  495. data/lib/verizon/models/session_reset_password_request.rb +48 -0
  496. data/lib/verizon/models/session_reset_password_result.rb +50 -0
  497. data/lib/verizon/models/session_trigger_request.rb +60 -0
  498. data/lib/verizon/models/set_fallback_attribute_request.rb +77 -0
  499. data/lib/verizon/models/sms_event_history_request.rb +86 -0
  500. data/lib/verizon/models/sms_message.rb +80 -0
  501. data/lib/verizon/models/sms_messages_query_result.rb +72 -0
  502. data/lib/verizon/models/sms_messages_response.rb +69 -0
  503. data/lib/verizon/models/sms_number.rb +60 -0
  504. data/lib/verizon/models/sms_options_send_request.rb +60 -0
  505. data/lib/verizon/models/sms_send_request.rb +132 -0
  506. data/lib/verizon/models/sms_trigger_request.rb +70 -0
  507. data/lib/verizon/models/software_package.rb +106 -0
  508. data/lib/verizon/models/state.rb +72 -0
  509. data/lib/verizon/models/status.rb +50 -0
  510. data/lib/verizon/models/status1_enum.rb +23 -0
  511. data/lib/verizon/models/status_list.rb +70 -0
  512. data/lib/verizon/models/status_response.rb +79 -0
  513. data/lib/verizon/models/stop_monitor_request.rb +57 -0
  514. data/lib/verizon/models/subrequest.rb +60 -0
  515. data/lib/verizon/models/subscribe_request.rb +66 -0
  516. data/lib/verizon/models/subscription.rb +245 -0
  517. data/lib/verizon/models/success.rb +50 -0
  518. data/lib/verizon/models/success_response.rb +50 -0
  519. data/lib/verizon/models/synchronous_location_request_result.rb +57 -0
  520. data/lib/verizon/models/target.rb +171 -0
  521. data/lib/verizon/models/target_authentication.rb +60 -0
  522. data/lib/verizon/models/target_authentication_body.rb +90 -0
  523. data/lib/verizon/models/target_authentication_body_headers.rb +60 -0
  524. data/lib/verizon/models/target_authentication_body_host.rb +50 -0
  525. data/lib/verizon/models/thingspace_device.rb +213 -0
  526. data/lib/verizon/models/transaction_id.rb +51 -0
  527. data/lib/verizon/models/trigger_attributes_options.rb +61 -0
  528. data/lib/verizon/models/trigger_type1.rb +94 -0
  529. data/lib/verizon/models/trigger_type2.rb +61 -0
  530. data/lib/verizon/models/trigger_type3.rb +104 -0
  531. data/lib/verizon/models/trigger_value_response.rb +59 -0
  532. data/lib/verizon/models/trigger_value_response2.rb +59 -0
  533. data/lib/verizon/models/triggers_list_options.rb +144 -0
  534. data/lib/verizon/models/triggervalues.rb +148 -0
  535. data/lib/verizon/models/triggervalues2.rb +158 -0
  536. data/lib/verizon/models/update_service_endpoint_result.rb +60 -0
  537. data/lib/verizon/models/update_service_profile_result.rb +60 -0
  538. data/lib/verizon/models/update_trigger_request.rb +170 -0
  539. data/lib/verizon/models/update_trigger_request_options.rb +115 -0
  540. data/lib/verizon/models/upgrade_list_query_result.rb +83 -0
  541. data/lib/verizon/models/upgrade_status_enum.rb +35 -0
  542. data/lib/verizon/models/upload_and_schedule_file_request.rb +176 -0
  543. data/lib/verizon/models/upload_and_schedule_file_response.rb +256 -0
  544. data/lib/verizon/models/upload_configuration_files_response.rb +133 -0
  545. data/lib/verizon/models/uploads_activates_device_request.rb +128 -0
  546. data/lib/verizon/models/usage.rb +111 -0
  547. data/lib/verizon/models/usage_anomaly_attributes.rb +119 -0
  548. data/lib/verizon/models/usage_history.rb +119 -0
  549. data/lib/verizon/models/usage_request_response.rb +50 -0
  550. data/lib/verizon/models/usage_trigger_add_request.rb +135 -0
  551. data/lib/verizon/models/usage_trigger_response.rb +152 -0
  552. data/lib/verizon/models/usage_trigger_update_request.rb +94 -0
  553. data/lib/verizon/models/user_equipment_identity_type_enum.rb +20 -0
  554. data/lib/verizon/models/v1_account_subscription.rb +91 -0
  555. data/lib/verizon/models/v1_device_list_item.rb +72 -0
  556. data/lib/verizon/models/v1_licenses_assigned_removed_request.rb +48 -0
  557. data/lib/verizon/models/v1_licenses_assigned_removed_result.rb +89 -0
  558. data/lib/verizon/models/v1_list_of_licenses_to_remove.rb +89 -0
  559. data/lib/verizon/models/v1_list_of_licenses_to_remove_request.rb +62 -0
  560. data/lib/verizon/models/v1_list_of_licenses_to_remove_result.rb +60 -0
  561. data/lib/verizon/models/v2_account_device.rb +173 -0
  562. data/lib/verizon/models/v2_account_device_list.rb +96 -0
  563. data/lib/verizon/models/v2_add_or_remove_device_request.rb +57 -0
  564. data/lib/verizon/models/v2_add_or_remove_device_result.rb +66 -0
  565. data/lib/verizon/models/v2_campaign_device.rb +97 -0
  566. data/lib/verizon/models/v2_campaign_history.rb +80 -0
  567. data/lib/verizon/models/v2_campaign_meta_info.rb +215 -0
  568. data/lib/verizon/models/v2_change_campaign_dates_request.rb +125 -0
  569. data/lib/verizon/models/v2_device_status.rb +68 -0
  570. data/lib/verizon/models/v2_license_device.rb +60 -0
  571. data/lib/verizon/models/v2_license_imei.rb +59 -0
  572. data/lib/verizon/models/v2_license_summary.rb +117 -0
  573. data/lib/verizon/models/v2_licenses_assigned_removed_result.rb +84 -0
  574. data/lib/verizon/models/v2_list_of_licenses_to_remove.rb +75 -0
  575. data/lib/verizon/models/v2_list_of_licenses_to_remove_request.rb +69 -0
  576. data/lib/verizon/models/v2_list_of_licenses_to_remove_result.rb +57 -0
  577. data/lib/verizon/models/v2_software_info.rb +66 -0
  578. data/lib/verizon/models/v2_time_window.rb +57 -0
  579. data/lib/verizon/models/v3_account_device.rb +200 -0
  580. data/lib/verizon/models/v3_account_device_list.rb +96 -0
  581. data/lib/verizon/models/v3_add_or_remove_device_request.rb +57 -0
  582. data/lib/verizon/models/v3_add_or_remove_device_result.rb +75 -0
  583. data/lib/verizon/models/v3_campaign_device.rb +97 -0
  584. data/lib/verizon/models/v3_campaign_history.rb +80 -0
  585. data/lib/verizon/models/v3_campaign_meta_info.rb +175 -0
  586. data/lib/verizon/models/v3_change_campaign_dates_request.rb +80 -0
  587. data/lib/verizon/models/v3_device.rb +248 -0
  588. data/lib/verizon/models/v3_device_list_item.rb +70 -0
  589. data/lib/verizon/models/v3_device_status.rb +123 -0
  590. data/lib/verizon/models/v3_license_assigned_removed_result.rb +84 -0
  591. data/lib/verizon/models/v3_license_device.rb +60 -0
  592. data/lib/verizon/models/v3_license_imei.rb +48 -0
  593. data/lib/verizon/models/v3_license_summary.rb +117 -0
  594. data/lib/verizon/models/v3_software_info.rb +66 -0
  595. data/lib/verizon/models/v3_time_window.rb +57 -0
  596. data/lib/verizon/models/wnp_request_response.rb +50 -0
  597. data/lib/verizon/utilities/date_time_helper.rb +11 -0
  598. data/lib/verizon/utilities/file_wrapper.rb +16 -0
  599. data/lib/verizon.rb +630 -0
  600. metadata +683 -0
@@ -0,0 +1,90 @@
1
+ # verizon
2
+ #
3
+ # This file was automatically generated by APIMATIC v2.0
4
+ # ( https://apimatic.io ).
5
+
6
+ module Verizon
7
+ # TargetAuthenticationBody Model.
8
+ class TargetAuthenticationBody < BaseModel
9
+ SKIP = Object.new
10
+ private_constant :SKIP
11
+
12
+ # Authentication grant type.
13
+ # @return [String]
14
+ attr_accessor :grant_type
15
+
16
+ # Refresh token.
17
+ # @return [String]
18
+ attr_accessor :refresh_token
19
+
20
+ # Authentication scopes.
21
+ # @return [String]
22
+ attr_accessor :scope
23
+
24
+ # Authentication headers.
25
+ # @return [TargetAuthenticationBodyHeaders]
26
+ attr_accessor :headers
27
+
28
+ # Host information.
29
+ # @return [TargetAuthenticationBodyHost]
30
+ attr_accessor :host
31
+
32
+ # A mapping from model property names to API property names.
33
+ def self.names
34
+ @_hash = {} if @_hash.nil?
35
+ @_hash['grant_type'] = 'grant_type'
36
+ @_hash['refresh_token'] = 'refresh_token'
37
+ @_hash['scope'] = 'scope'
38
+ @_hash['headers'] = 'headers'
39
+ @_hash['host'] = 'host'
40
+ @_hash
41
+ end
42
+
43
+ # An array for optional fields
44
+ def self.optionals
45
+ %w[
46
+ grant_type
47
+ refresh_token
48
+ scope
49
+ headers
50
+ host
51
+ ]
52
+ end
53
+
54
+ # An array for nullable fields
55
+ def self.nullables
56
+ []
57
+ end
58
+
59
+ def initialize(grant_type = SKIP,
60
+ refresh_token = SKIP,
61
+ scope = SKIP,
62
+ headers = SKIP,
63
+ host = SKIP)
64
+ @grant_type = grant_type unless grant_type == SKIP
65
+ @refresh_token = refresh_token unless refresh_token == SKIP
66
+ @scope = scope unless scope == SKIP
67
+ @headers = headers unless headers == SKIP
68
+ @host = host unless host == SKIP
69
+ end
70
+
71
+ # Creates an instance of the object from a hash.
72
+ def self.from_hash(hash)
73
+ return nil unless hash
74
+
75
+ # Extract variables from the hash.
76
+ grant_type = hash.key?('grant_type') ? hash['grant_type'] : SKIP
77
+ refresh_token = hash.key?('refresh_token') ? hash['refresh_token'] : SKIP
78
+ scope = hash.key?('scope') ? hash['scope'] : SKIP
79
+ headers = TargetAuthenticationBodyHeaders.from_hash(hash['headers']) if hash['headers']
80
+ host = TargetAuthenticationBodyHost.from_hash(hash['host']) if hash['host']
81
+
82
+ # Create object from extracted values.
83
+ TargetAuthenticationBody.new(grant_type,
84
+ refresh_token,
85
+ scope,
86
+ headers,
87
+ host)
88
+ end
89
+ end
90
+ end
@@ -0,0 +1,60 @@
1
+ # verizon
2
+ #
3
+ # This file was automatically generated by APIMATIC v2.0
4
+ # ( https://apimatic.io ).
5
+
6
+ module Verizon
7
+ # Authentication headers.
8
+ class TargetAuthenticationBodyHeaders < BaseModel
9
+ SKIP = Object.new
10
+ private_constant :SKIP
11
+
12
+ # Authorization header.
13
+ # @return [String]
14
+ attr_accessor :authorization
15
+
16
+ # Content-Type header.
17
+ # @return [String]
18
+ attr_accessor :content_type
19
+
20
+ # A mapping from model property names to API property names.
21
+ def self.names
22
+ @_hash = {} if @_hash.nil?
23
+ @_hash['authorization'] = 'Authorization'
24
+ @_hash['content_type'] = 'Content-Type'
25
+ @_hash
26
+ end
27
+
28
+ # An array for optional fields
29
+ def self.optionals
30
+ %w[
31
+ authorization
32
+ content_type
33
+ ]
34
+ end
35
+
36
+ # An array for nullable fields
37
+ def self.nullables
38
+ []
39
+ end
40
+
41
+ def initialize(authorization = SKIP,
42
+ content_type = SKIP)
43
+ @authorization = authorization unless authorization == SKIP
44
+ @content_type = content_type unless content_type == SKIP
45
+ end
46
+
47
+ # Creates an instance of the object from a hash.
48
+ def self.from_hash(hash)
49
+ return nil unless hash
50
+
51
+ # Extract variables from the hash.
52
+ authorization = hash.key?('Authorization') ? hash['Authorization'] : SKIP
53
+ content_type = hash.key?('Content-Type') ? hash['Content-Type'] : SKIP
54
+
55
+ # Create object from extracted values.
56
+ TargetAuthenticationBodyHeaders.new(authorization,
57
+ content_type)
58
+ end
59
+ end
60
+ end
@@ -0,0 +1,50 @@
1
+ # verizon
2
+ #
3
+ # This file was automatically generated by APIMATIC v2.0
4
+ # ( https://apimatic.io ).
5
+
6
+ module Verizon
7
+ # Host information.
8
+ class TargetAuthenticationBodyHost < BaseModel
9
+ SKIP = Object.new
10
+ private_constant :SKIP
11
+
12
+ # TODO: Write general description for this method
13
+ # @return [String]
14
+ attr_accessor :hostandpath
15
+
16
+ # A mapping from model property names to API property names.
17
+ def self.names
18
+ @_hash = {} if @_hash.nil?
19
+ @_hash['hostandpath'] = 'hostandpath'
20
+ @_hash
21
+ end
22
+
23
+ # An array for optional fields
24
+ def self.optionals
25
+ %w[
26
+ hostandpath
27
+ ]
28
+ end
29
+
30
+ # An array for nullable fields
31
+ def self.nullables
32
+ []
33
+ end
34
+
35
+ def initialize(hostandpath = SKIP)
36
+ @hostandpath = hostandpath unless hostandpath == SKIP
37
+ end
38
+
39
+ # Creates an instance of the object from a hash.
40
+ def self.from_hash(hash)
41
+ return nil unless hash
42
+
43
+ # Extract variables from the hash.
44
+ hostandpath = hash.key?('hostandpath') ? hash['hostandpath'] : SKIP
45
+
46
+ # Create object from extracted values.
47
+ TargetAuthenticationBodyHost.new(hostandpath)
48
+ end
49
+ end
50
+ end
@@ -0,0 +1,213 @@
1
+ # verizon
2
+ #
3
+ # This file was automatically generated by APIMATIC v2.0
4
+ # ( https://apimatic.io ).
5
+
6
+ module Verizon
7
+ # Device that exist in Verizon Mobile Device Management (MDM).
8
+ class ThingspaceDevice < BaseModel
9
+ SKIP = Object.new
10
+ private_constant :SKIP
11
+
12
+ # The billing account that the device is associated with.
13
+ # @return [String]
14
+ attr_accessor :account_name
15
+
16
+ # The date that the device's current billing cycle ends.
17
+ # @return [String]
18
+ attr_accessor :billing_cycle_end_date
19
+
20
+ # The carrier information associated with the device.
21
+ # @return [Array[CarrierInformation]]
22
+ attr_accessor :carrier_informations
23
+
24
+ # True if the device is connected; false if it is not.
25
+ # @return [TrueClass | FalseClass]
26
+ attr_accessor :connected
27
+
28
+ # The date and time that the device was added to the system.
29
+ # @return [String]
30
+ attr_accessor :created_at
31
+
32
+ # The custom fields and values that have been set for the device.
33
+ # @return [Array[CustomFields]]
34
+ attr_accessor :custom_fields
35
+
36
+ # All identifiers for the device.
37
+ # @return [Array[DeviceId]]
38
+ attr_accessor :device_ids
39
+
40
+ # Any extended attributes for the device, as Key and Value pairs. The pairs
41
+ # listed below are returned as part of the response for a single device, but
42
+ # are not included if the request was for information about multiple
43
+ # devices.
44
+ # @return [Array[CustomFields]]
45
+ attr_accessor :extended_attributes
46
+
47
+ # The device groups that the device belongs to.
48
+ # @return [Array[String]]
49
+ attr_accessor :group_names
50
+
51
+ # The IP address of the device.
52
+ # @return [String]
53
+ attr_accessor :ip_address
54
+
55
+ # The user who last activated the device.
56
+ # @return [String]
57
+ attr_accessor :last_activation_by
58
+
59
+ # The date and time that the device was last activated.
60
+ # @return [String]
61
+ attr_accessor :last_activation_date
62
+
63
+ # The most recent connection date and time.
64
+ # @return [String]
65
+ attr_accessor :last_connection_date
66
+
67
+ # A mapping from model property names to API property names.
68
+ def self.names
69
+ @_hash = {} if @_hash.nil?
70
+ @_hash['account_name'] = 'accountName'
71
+ @_hash['billing_cycle_end_date'] = 'billingCycleEndDate'
72
+ @_hash['carrier_informations'] = 'carrierInformations'
73
+ @_hash['connected'] = 'connected'
74
+ @_hash['created_at'] = 'createdAt'
75
+ @_hash['custom_fields'] = 'customFields'
76
+ @_hash['device_ids'] = 'deviceIds'
77
+ @_hash['extended_attributes'] = 'extendedAttributes'
78
+ @_hash['group_names'] = 'groupNames'
79
+ @_hash['ip_address'] = 'ipAddress'
80
+ @_hash['last_activation_by'] = 'lastActivationBy'
81
+ @_hash['last_activation_date'] = 'lastActivationDate'
82
+ @_hash['last_connection_date'] = 'lastConnectionDate'
83
+ @_hash
84
+ end
85
+
86
+ # An array for optional fields
87
+ def self.optionals
88
+ %w[
89
+ account_name
90
+ billing_cycle_end_date
91
+ carrier_informations
92
+ connected
93
+ created_at
94
+ custom_fields
95
+ device_ids
96
+ extended_attributes
97
+ group_names
98
+ ip_address
99
+ last_activation_by
100
+ last_activation_date
101
+ last_connection_date
102
+ ]
103
+ end
104
+
105
+ # An array for nullable fields
106
+ def self.nullables
107
+ []
108
+ end
109
+
110
+ def initialize(account_name = SKIP,
111
+ billing_cycle_end_date = SKIP,
112
+ carrier_informations = SKIP,
113
+ connected = SKIP,
114
+ created_at = SKIP,
115
+ custom_fields = SKIP,
116
+ device_ids = SKIP,
117
+ extended_attributes = SKIP,
118
+ group_names = SKIP,
119
+ ip_address = SKIP,
120
+ last_activation_by = SKIP,
121
+ last_activation_date = SKIP,
122
+ last_connection_date = SKIP)
123
+ @account_name = account_name unless account_name == SKIP
124
+ @billing_cycle_end_date = billing_cycle_end_date unless billing_cycle_end_date == SKIP
125
+ @carrier_informations = carrier_informations unless carrier_informations == SKIP
126
+ @connected = connected unless connected == SKIP
127
+ @created_at = created_at unless created_at == SKIP
128
+ @custom_fields = custom_fields unless custom_fields == SKIP
129
+ @device_ids = device_ids unless device_ids == SKIP
130
+ @extended_attributes = extended_attributes unless extended_attributes == SKIP
131
+ @group_names = group_names unless group_names == SKIP
132
+ @ip_address = ip_address unless ip_address == SKIP
133
+ @last_activation_by = last_activation_by unless last_activation_by == SKIP
134
+ @last_activation_date = last_activation_date unless last_activation_date == SKIP
135
+ @last_connection_date = last_connection_date unless last_connection_date == SKIP
136
+ end
137
+
138
+ # Creates an instance of the object from a hash.
139
+ def self.from_hash(hash)
140
+ return nil unless hash
141
+
142
+ # Extract variables from the hash.
143
+ account_name = hash.key?('accountName') ? hash['accountName'] : SKIP
144
+ billing_cycle_end_date =
145
+ hash.key?('billingCycleEndDate') ? hash['billingCycleEndDate'] : SKIP
146
+ # Parameter is an array, so we need to iterate through it
147
+ carrier_informations = nil
148
+ unless hash['carrierInformations'].nil?
149
+ carrier_informations = []
150
+ hash['carrierInformations'].each do |structure|
151
+ carrier_informations << (CarrierInformation.from_hash(structure) if structure)
152
+ end
153
+ end
154
+
155
+ carrier_informations = SKIP unless hash.key?('carrierInformations')
156
+ connected = hash.key?('connected') ? hash['connected'] : SKIP
157
+ created_at = hash.key?('createdAt') ? hash['createdAt'] : SKIP
158
+ # Parameter is an array, so we need to iterate through it
159
+ custom_fields = nil
160
+ unless hash['customFields'].nil?
161
+ custom_fields = []
162
+ hash['customFields'].each do |structure|
163
+ custom_fields << (CustomFields.from_hash(structure) if structure)
164
+ end
165
+ end
166
+
167
+ custom_fields = SKIP unless hash.key?('customFields')
168
+ # Parameter is an array, so we need to iterate through it
169
+ device_ids = nil
170
+ unless hash['deviceIds'].nil?
171
+ device_ids = []
172
+ hash['deviceIds'].each do |structure|
173
+ device_ids << (DeviceId.from_hash(structure) if structure)
174
+ end
175
+ end
176
+
177
+ device_ids = SKIP unless hash.key?('deviceIds')
178
+ # Parameter is an array, so we need to iterate through it
179
+ extended_attributes = nil
180
+ unless hash['extendedAttributes'].nil?
181
+ extended_attributes = []
182
+ hash['extendedAttributes'].each do |structure|
183
+ extended_attributes << (CustomFields.from_hash(structure) if structure)
184
+ end
185
+ end
186
+
187
+ extended_attributes = SKIP unless hash.key?('extendedAttributes')
188
+ group_names = hash.key?('groupNames') ? hash['groupNames'] : SKIP
189
+ ip_address = hash.key?('ipAddress') ? hash['ipAddress'] : SKIP
190
+ last_activation_by =
191
+ hash.key?('lastActivationBy') ? hash['lastActivationBy'] : SKIP
192
+ last_activation_date =
193
+ hash.key?('lastActivationDate') ? hash['lastActivationDate'] : SKIP
194
+ last_connection_date =
195
+ hash.key?('lastConnectionDate') ? hash['lastConnectionDate'] : SKIP
196
+
197
+ # Create object from extracted values.
198
+ ThingspaceDevice.new(account_name,
199
+ billing_cycle_end_date,
200
+ carrier_informations,
201
+ connected,
202
+ created_at,
203
+ custom_fields,
204
+ device_ids,
205
+ extended_attributes,
206
+ group_names,
207
+ ip_address,
208
+ last_activation_by,
209
+ last_activation_date,
210
+ last_connection_date)
211
+ end
212
+ end
213
+ end
@@ -0,0 +1,51 @@
1
+ # verizon
2
+ #
3
+ # This file was automatically generated by APIMATIC v2.0
4
+ # ( https://apimatic.io ).
5
+
6
+ module Verizon
7
+ # The transaction ID of the request that you want to cancel, from the POST
8
+ # /devicelocations synchronus response.
9
+ class TransactionID < BaseModel
10
+ SKIP = Object.new
11
+ private_constant :SKIP
12
+
13
+ # TODO: Write general description for this method
14
+ # @return [String]
15
+ attr_accessor :txid
16
+
17
+ # A mapping from model property names to API property names.
18
+ def self.names
19
+ @_hash = {} if @_hash.nil?
20
+ @_hash['txid'] = 'txid'
21
+ @_hash
22
+ end
23
+
24
+ # An array for optional fields
25
+ def self.optionals
26
+ %w[
27
+ txid
28
+ ]
29
+ end
30
+
31
+ # An array for nullable fields
32
+ def self.nullables
33
+ []
34
+ end
35
+
36
+ def initialize(txid = SKIP)
37
+ @txid = txid unless txid == SKIP
38
+ end
39
+
40
+ # Creates an instance of the object from a hash.
41
+ def self.from_hash(hash)
42
+ return nil unless hash
43
+
44
+ # Extract variables from the hash.
45
+ txid = hash.key?('txid') ? hash['txid'] : SKIP
46
+
47
+ # Create object from extracted values.
48
+ TransactionID.new(txid)
49
+ end
50
+ end
51
+ end
@@ -0,0 +1,61 @@
1
+ # verizon
2
+ #
3
+ # This file was automatically generated by APIMATIC v2.0
4
+ # ( https://apimatic.io ).
5
+
6
+ module Verizon
7
+ # TriggerAttributesOptions Model.
8
+ class TriggerAttributesOptions < BaseModel
9
+ SKIP = Object.new
10
+ private_constant :SKIP
11
+
12
+ # If present, the NotificationGroupName will be listed here.
13
+ # @return [String]
14
+ attr_accessor :key
15
+
16
+ # DataPercentage50<br />True - Trigger on Data percentage is over 50%
17
+ # used<br />False - Do not trigger when over 50% used.
18
+ # @return [TrueClass | FalseClass]
19
+ attr_accessor :value
20
+
21
+ # A mapping from model property names to API property names.
22
+ def self.names
23
+ @_hash = {} if @_hash.nil?
24
+ @_hash['key'] = 'key'
25
+ @_hash['value'] = 'value'
26
+ @_hash
27
+ end
28
+
29
+ # An array for optional fields
30
+ def self.optionals
31
+ %w[
32
+ key
33
+ value
34
+ ]
35
+ end
36
+
37
+ # An array for nullable fields
38
+ def self.nullables
39
+ []
40
+ end
41
+
42
+ def initialize(key = SKIP,
43
+ value = SKIP)
44
+ @key = key unless key == SKIP
45
+ @value = value unless value == SKIP
46
+ end
47
+
48
+ # Creates an instance of the object from a hash.
49
+ def self.from_hash(hash)
50
+ return nil unless hash
51
+
52
+ # Extract variables from the hash.
53
+ key = hash.key?('key') ? hash['key'] : SKIP
54
+ value = hash.key?('value') ? hash['value'] : SKIP
55
+
56
+ # Create object from extracted values.
57
+ TriggerAttributesOptions.new(key,
58
+ value)
59
+ end
60
+ end
61
+ end
@@ -0,0 +1,94 @@
1
+ # verizon
2
+ #
3
+ # This file was automatically generated by APIMATIC v2.0
4
+ # ( https://apimatic.io ).
5
+
6
+ module Verizon
7
+ # Trigger details.
8
+ class TriggerType1 < BaseModel
9
+ SKIP = Object.new
10
+ private_constant :SKIP
11
+
12
+ # Trigger name.
13
+ # @return [String]
14
+ attr_accessor :name
15
+
16
+ # This is the value to use in the request body to detect anomalous
17
+ # behaivior. The values in this table will only be relevant when this
18
+ # parameter is set to this value.
19
+ # @return [String]
20
+ attr_accessor :trigger_category
21
+
22
+ # Account name.
23
+ # @return [String]
24
+ attr_accessor :account_name
25
+
26
+ # The details of the UsageAnomaly trigger.
27
+ # @return [AnomalyTriggerRequest]
28
+ attr_accessor :anomaly_trigger_request
29
+
30
+ # The notification details of the trigger.
31
+ # @return [Notification]
32
+ attr_accessor :notification
33
+
34
+ # A mapping from model property names to API property names.
35
+ def self.names
36
+ @_hash = {} if @_hash.nil?
37
+ @_hash['name'] = 'name'
38
+ @_hash['trigger_category'] = 'triggerCategory'
39
+ @_hash['account_name'] = 'accountName'
40
+ @_hash['anomaly_trigger_request'] = 'anomalyTriggerRequest'
41
+ @_hash['notification'] = 'notification'
42
+ @_hash
43
+ end
44
+
45
+ # An array for optional fields
46
+ def self.optionals
47
+ %w[
48
+ name
49
+ trigger_category
50
+ account_name
51
+ anomaly_trigger_request
52
+ notification
53
+ ]
54
+ end
55
+
56
+ # An array for nullable fields
57
+ def self.nullables
58
+ []
59
+ end
60
+
61
+ def initialize(name = SKIP,
62
+ trigger_category = SKIP,
63
+ account_name = SKIP,
64
+ anomaly_trigger_request = SKIP,
65
+ notification = SKIP)
66
+ @name = name unless name == SKIP
67
+ @trigger_category = trigger_category unless trigger_category == SKIP
68
+ @account_name = account_name unless account_name == SKIP
69
+ @anomaly_trigger_request = anomaly_trigger_request unless anomaly_trigger_request == SKIP
70
+ @notification = notification unless notification == SKIP
71
+ end
72
+
73
+ # Creates an instance of the object from a hash.
74
+ def self.from_hash(hash)
75
+ return nil unless hash
76
+
77
+ # Extract variables from the hash.
78
+ name = hash.key?('name') ? hash['name'] : SKIP
79
+ trigger_category =
80
+ hash.key?('triggerCategory') ? hash['triggerCategory'] : SKIP
81
+ account_name = hash.key?('accountName') ? hash['accountName'] : SKIP
82
+ anomaly_trigger_request = AnomalyTriggerRequest.from_hash(hash['anomalyTriggerRequest']) if
83
+ hash['anomalyTriggerRequest']
84
+ notification = Notification.from_hash(hash['notification']) if hash['notification']
85
+
86
+ # Create object from extracted values.
87
+ TriggerType1.new(name,
88
+ trigger_category,
89
+ account_name,
90
+ anomaly_trigger_request,
91
+ notification)
92
+ end
93
+ end
94
+ end
@@ -0,0 +1,61 @@
1
+ # verizon
2
+ #
3
+ # This file was automatically generated by APIMATIC v2.0
4
+ # ( https://apimatic.io ).
5
+
6
+ module Verizon
7
+ # Trigger details.
8
+ class TriggerType2 < BaseModel
9
+ SKIP = Object.new
10
+ private_constant :SKIP
11
+
12
+ # The details of the UsageAnomaly trigger.
13
+ # @return [UsageAnomalyAttributes]
14
+ attr_accessor :anomalyattributes
15
+
16
+ # The notification details of the trigger.
17
+ # @return [Notification]
18
+ attr_accessor :notification
19
+
20
+ # A mapping from model property names to API property names.
21
+ def self.names
22
+ @_hash = {} if @_hash.nil?
23
+ @_hash['anomalyattributes'] = 'anomalyattributes'
24
+ @_hash['notification'] = 'notification'
25
+ @_hash
26
+ end
27
+
28
+ # An array for optional fields
29
+ def self.optionals
30
+ %w[
31
+ anomalyattributes
32
+ notification
33
+ ]
34
+ end
35
+
36
+ # An array for nullable fields
37
+ def self.nullables
38
+ []
39
+ end
40
+
41
+ def initialize(anomalyattributes = SKIP,
42
+ notification = SKIP)
43
+ @anomalyattributes = anomalyattributes unless anomalyattributes == SKIP
44
+ @notification = notification unless notification == SKIP
45
+ end
46
+
47
+ # Creates an instance of the object from a hash.
48
+ def self.from_hash(hash)
49
+ return nil unless hash
50
+
51
+ # Extract variables from the hash.
52
+ anomalyattributes = UsageAnomalyAttributes.from_hash(hash['anomalyattributes']) if
53
+ hash['anomalyattributes']
54
+ notification = Notification.from_hash(hash['notification']) if hash['notification']
55
+
56
+ # Create object from extracted values.
57
+ TriggerType2.new(anomalyattributes,
58
+ notification)
59
+ end
60
+ end
61
+ end