sdksio-verizon-apis-sdk 1.0.0 → 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.
- checksums.yaml +4 -4
- data/LICENSE +30 -0
- data/README.md +162 -0
- data/lib/verizon/api_helper.rb +10 -0
- data/lib/verizon/client.rb +496 -0
- data/lib/verizon/configuration.rb +198 -0
- data/lib/verizon/controllers/account_devices_controller.rb +68 -0
- data/lib/verizon/controllers/account_requests_controller.rb +37 -0
- data/lib/verizon/controllers/account_subscriptions_controller.rb +56 -0
- data/lib/verizon/controllers/accounts_controller.rb +82 -0
- data/lib/verizon/controllers/anomaly_settings_controller.rb +80 -0
- data/lib/verizon/controllers/anomaly_triggers_controller.rb +195 -0
- data/lib/verizon/controllers/anomaly_triggers_v2_controller.rb +80 -0
- data/lib/verizon/controllers/base_controller.rb +66 -0
- data/lib/verizon/controllers/billing_controller.rb +111 -0
- data/lib/verizon/controllers/campaigns_v2_controller.rb +218 -0
- data/lib/verizon/controllers/campaigns_v3_controller.rb +162 -0
- data/lib/verizon/controllers/client_logging_controller.rb +162 -0
- data/lib/verizon/controllers/cloud_connector_devices_controller.rb +144 -0
- data/lib/verizon/controllers/cloud_connector_subscriptions_controller.rb +73 -0
- data/lib/verizon/controllers/configuration_files_controller.rb +80 -0
- data/lib/verizon/controllers/connectivity_callbacks_controller.rb +89 -0
- data/lib/verizon/controllers/device_actions_controller.rb +84 -0
- data/lib/verizon/controllers/device_diagnostics_controller.rb +58 -0
- data/lib/verizon/controllers/device_groups_controller.rb +150 -0
- data/lib/verizon/controllers/device_location_callbacks_controller.rb +87 -0
- data/lib/verizon/controllers/device_management_controller.rb +743 -0
- data/lib/verizon/controllers/device_monitoring_controller.rb +59 -0
- data/lib/verizon/controllers/device_profile_management_controller.rb +104 -0
- data/lib/verizon/controllers/device_reports_controller.rb +131 -0
- data/lib/verizon/controllers/device_service_management_controller.rb +89 -0
- data/lib/verizon/controllers/device_sms_messaging_controller.rb +108 -0
- data/lib/verizon/controllers/devices_location_subscriptions_controller.rb +57 -0
- data/lib/verizon/controllers/devices_locations_controller.rb +200 -0
- data/lib/verizon/controllers/diagnostics_callbacks_controller.rb +83 -0
- data/lib/verizon/controllers/diagnostics_factory_reset_controller.rb +34 -0
- data/lib/verizon/controllers/diagnostics_history_controller.rb +34 -0
- data/lib/verizon/controllers/diagnostics_observations_controller.rb +59 -0
- data/lib/verizon/controllers/diagnostics_settings_controller.rb +35 -0
- data/lib/verizon/controllers/diagnostics_subscriptions_controller.rb +30 -0
- data/lib/verizon/controllers/euicc_device_profile_management_controller.rb +130 -0
- data/lib/verizon/controllers/exclusions_controller.rb +88 -0
- data/lib/verizon/controllers/firmware_v1_controller.rb +150 -0
- data/lib/verizon/controllers/firmware_v3_controller.rb +90 -0
- data/lib/verizon/controllers/fixed_wireless_qualification_controller.rb +34 -0
- data/lib/verizon/controllers/global_reporting_controller.rb +95 -0
- data/lib/verizon/controllers/hyper_precise_location_callbacks_controller.rb +133 -0
- data/lib/verizon/controllers/m_5g_edge_platforms_controller.rb +87 -0
- data/lib/verizon/controllers/managing_esim_profiles_controller.rb +154 -0
- data/lib/verizon/controllers/mec_controller.rb +150 -0
- data/lib/verizon/controllers/oauth_authorization_controller.rb +43 -0
- data/lib/verizon/controllers/performance_metrics_controller.rb +49 -0
- data/lib/verizon/controllers/promotion_period_information_controller.rb +58 -0
- data/lib/verizon/controllers/retrieve_the_triggers_controller.rb +93 -0
- data/lib/verizon/controllers/server_logging_controller.rb +37 -0
- data/lib/verizon/controllers/service_endpoints_controller.rb +223 -0
- data/lib/verizon/controllers/service_plans_controller.rb +35 -0
- data/lib/verizon/controllers/service_profiles_controller.rb +164 -0
- data/lib/verizon/controllers/session_management_controller.rb +78 -0
- data/lib/verizon/controllers/sim_actions_controller.rb +92 -0
- data/lib/verizon/controllers/sim_secure_for_io_t_licenses_controller.rb +94 -0
- data/lib/verizon/controllers/sms_controller.rb +88 -0
- data/lib/verizon/controllers/software_management_callbacks_v1_controller.rb +93 -0
- data/lib/verizon/controllers/software_management_callbacks_v2_controller.rb +109 -0
- data/lib/verizon/controllers/software_management_callbacks_v3_controller.rb +109 -0
- data/lib/verizon/controllers/software_management_licenses_v1_controller.rb +162 -0
- data/lib/verizon/controllers/software_management_licenses_v2_controller.rb +177 -0
- data/lib/verizon/controllers/software_management_licenses_v3_controller.rb +89 -0
- data/lib/verizon/controllers/software_management_reports_v1_controller.rb +105 -0
- data/lib/verizon/controllers/software_management_reports_v2_controller.rb +159 -0
- data/lib/verizon/controllers/software_management_reports_v3_controller.rb +98 -0
- data/lib/verizon/controllers/software_management_subscriptions_v1_controller.rb +64 -0
- data/lib/verizon/controllers/software_management_subscriptions_v2_controller.rb +31 -0
- data/lib/verizon/controllers/software_management_subscriptions_v3_controller.rb +31 -0
- data/lib/verizon/controllers/targets_controller.rb +122 -0
- data/lib/verizon/controllers/thing_space_quality_of_service_api_actions_controller.rb +58 -0
- data/lib/verizon/controllers/update_triggers_controller.rb +32 -0
- data/lib/verizon/controllers/usage_trigger_management_controller.rb +89 -0
- data/lib/verizon/controllers/wireless_network_performance_controller.rb +132 -0
- data/lib/verizon/exceptions/api_exception.rb +10 -0
- data/lib/verizon/exceptions/connectivity_management_result_exception.rb +37 -0
- data/lib/verizon/exceptions/default_response_exception.rb +37 -0
- data/lib/verizon/exceptions/device_diagnostics_result_exception.rb +39 -0
- data/lib/verizon/exceptions/device_location_result_exception.rb +37 -0
- data/lib/verizon/exceptions/edge_discovery_result_exception.rb +43 -0
- data/lib/verizon/exceptions/edge_performance_result_exception.rb +37 -0
- data/lib/verizon/exceptions/esim_rest_error_response_exception.rb +37 -0
- data/lib/verizon/exceptions/fota_v1_result_exception.rb +37 -0
- data/lib/verizon/exceptions/fota_v2_result_exception.rb +37 -0
- data/lib/verizon/exceptions/fota_v3_result_exception.rb +37 -0
- data/lib/verizon/exceptions/gio_rest_error_response_exception.rb +37 -0
- data/lib/verizon/exceptions/hyper_precise_location_result_exception.rb +42 -0
- data/lib/verizon/exceptions/intelligence_result_exception.rb +37 -0
- data/lib/verizon/exceptions/oauth_provider_exception.rb +48 -0
- data/lib/verizon/exceptions/ready_sim_rest_error_response_exception.rb +37 -0
- data/lib/verizon/exceptions/rest_error_response_exception.rb +37 -0
- data/lib/verizon/exceptions/security_result_exception.rb +42 -0
- data/lib/verizon/exceptions/wnp_rest_error_response_exception.rb +37 -0
- data/lib/verizon/http/api_response.rb +21 -0
- data/lib/verizon/http/auth/oauth_2.rb +98 -0
- data/lib/verizon/http/http_call_back.rb +10 -0
- data/lib/verizon/http/http_method_enum.rb +10 -0
- data/lib/verizon/http/http_request.rb +10 -0
- data/lib/verizon/http/http_response.rb +10 -0
- data/lib/verizon/models/acceleration.rb +70 -0
- data/lib/verizon/models/account.rb +142 -0
- data/lib/verizon/models/account_device_list.rb +69 -0
- data/lib/verizon/models/account_device_list_filter.rb +58 -0
- data/lib/verizon/models/account_device_list_request.rb +164 -0
- data/lib/verizon/models/account_device_list_result.rb +71 -0
- data/lib/verizon/models/account_identifier.rb +52 -0
- data/lib/verizon/models/account_labels.rb +77 -0
- data/lib/verizon/models/account_lead.rb +72 -0
- data/lib/verizon/models/account_leads_result.rb +69 -0
- data/lib/verizon/models/account_license_device_list_item.rb +70 -0
- data/lib/verizon/models/account_license_info.rb +113 -0
- data/lib/verizon/models/account_service.rb +79 -0
- data/lib/verizon/models/account_states_and_services.rb +58 -0
- data/lib/verizon/models/accuracy_mode_enum.rb +20 -0
- data/lib/verizon/models/activate.rb +48 -0
- data/lib/verizon/models/activate_device_profile_request.rb +87 -0
- data/lib/verizon/models/active_anomaly_indicator.rb +51 -0
- data/lib/verizon/models/active_trigger_indicator.rb +51 -0
- data/lib/verizon/models/add_devices_request.rb +131 -0
- data/lib/verizon/models/add_devices_result.rb +70 -0
- data/lib/verizon/models/address.rb +137 -0
- data/lib/verizon/models/address_item.rb +110 -0
- data/lib/verizon/models/addressquery.rb +59 -0
- data/lib/verizon/models/aggregate_session_report.rb +92 -0
- data/lib/verizon/models/aggregate_session_report_request.rb +129 -0
- data/lib/verizon/models/aggregate_usage_error.rb +71 -0
- data/lib/verizon/models/aggregate_usage_item.rb +74 -0
- data/lib/verizon/models/aggregated_report_callback_result.rb +63 -0
- data/lib/verizon/models/aggregated_report_callback_status_enum.rb +24 -0
- data/lib/verizon/models/anomaly_detection_request.rb +73 -0
- data/lib/verizon/models/anomaly_detection_settings.rb +75 -0
- data/lib/verizon/models/anomaly_detection_trigger.rb +50 -0
- data/lib/verizon/models/anomaly_trigger_request.rb +108 -0
- data/lib/verizon/models/anomaly_trigger_result.rb +59 -0
- data/lib/verizon/models/anomaly_trigger_value.rb +123 -0
- data/lib/verizon/models/api_response_code.rb +57 -0
- data/lib/verizon/models/assign_license_request.rb +88 -0
- data/lib/verizon/models/associate_label_request.rb +58 -0
- data/lib/verizon/models/asynchronous_location_request_result.rb +71 -0
- data/lib/verizon/models/asynchronous_request_result.rb +60 -0
- data/lib/verizon/models/attribute_identifier_enum.rb +32 -0
- data/lib/verizon/models/attribute_setting.rb +110 -0
- data/lib/verizon/models/base_model.rb +62 -0
- data/lib/verizon/models/bill_usage_request.rb +78 -0
- data/lib/verizon/models/billable_usage_report.rb +124 -0
- data/lib/verizon/models/billedusage_list_request.rb +89 -0
- data/lib/verizon/models/billing_cycle.rb +60 -0
- data/lib/verizon/models/bullseye_service_request.rb +66 -0
- data/lib/verizon/models/bullseye_service_result.rb +80 -0
- data/lib/verizon/models/cache_mode_enum.rb +26 -0
- data/lib/verizon/models/callback_action_result.rb +60 -0
- data/lib/verizon/models/callback_created.rb +70 -0
- data/lib/verizon/models/callback_registered.rb +58 -0
- data/lib/verizon/models/callback_registration_request.rb +80 -0
- data/lib/verizon/models/callback_registration_result.rb +60 -0
- data/lib/verizon/models/callback_service_enum.rb +20 -0
- data/lib/verizon/models/callback_service_name_enum.rb +23 -0
- data/lib/verizon/models/callback_summary.rb +50 -0
- data/lib/verizon/models/campaign.rb +174 -0
- data/lib/verizon/models/campaign_firmware_upgrade.rb +135 -0
- data/lib/verizon/models/campaign_meta_info_protocol_enum.rb +23 -0
- data/lib/verizon/models/campaign_software.rb +215 -0
- data/lib/verizon/models/campaign_software_upgrade.rb +179 -0
- data/lib/verizon/models/campaign_status_enum.rb +41 -0
- data/lib/verizon/models/carrier_actions_request.rb +123 -0
- data/lib/verizon/models/carrier_activate_request.rb +207 -0
- data/lib/verizon/models/carrier_deactivate_request.rb +147 -0
- data/lib/verizon/models/carrier_information.rb +72 -0
- data/lib/verizon/models/change_configuration_request.rb +74 -0
- data/lib/verizon/models/change_configuration_response.rb +163 -0
- data/lib/verizon/models/change_device_id_request.rb +155 -0
- data/lib/verizon/models/change_mec_device_ip_address_response.rb +51 -0
- data/lib/verizon/models/change_mec_device_profile_response.rb +51 -0
- data/lib/verizon/models/change_mec_device_state_response.rb +51 -0
- data/lib/verizon/models/change_pmec_device_i_paddress_bulk_request.rb +66 -0
- data/lib/verizon/models/change_pmec_device_i_paddress_request.rb +66 -0
- data/lib/verizon/models/change_pmec_device_profile_bulk_request.rb +75 -0
- data/lib/verizon/models/change_pmec_device_profile_request.rb +75 -0
- data/lib/verizon/models/change_pmec_device_state_activate_request.rb +75 -0
- data/lib/verizon/models/change_pmec_device_state_bulk_activate_request.rb +75 -0
- data/lib/verizon/models/change_pmec_device_state_bulk_deactivate_request.rb +66 -0
- data/lib/verizon/models/change_pmec_device_state_deactivate_request.rb +66 -0
- data/lib/verizon/models/check_in_history_item.rb +91 -0
- data/lib/verizon/models/check_order_status_request.rb +80 -0
- data/lib/verizon/models/client_type_enum.rb +44 -0
- data/lib/verizon/models/compute_resources_type.rb +70 -0
- data/lib/verizon/models/condition.rb +59 -0
- data/lib/verizon/models/configuration.rb +50 -0
- data/lib/verizon/models/connection_event.rb +91 -0
- data/lib/verizon/models/connection_history_result.rb +74 -0
- data/lib/verizon/models/connectivity_management_callback.rb +95 -0
- data/lib/verizon/models/connectivity_management_success_result.rb +51 -0
- data/lib/verizon/models/consent_delete_request.rb +60 -0
- data/lib/verizon/models/consent_request.rb +79 -0
- data/lib/verizon/models/contact_info_update_request.rb +88 -0
- data/lib/verizon/models/coordinates.rb +60 -0
- data/lib/verizon/models/create_device_group_request.rb +91 -0
- data/lib/verizon/models/create_io_t_application_request.rb +135 -0
- data/lib/verizon/models/create_io_t_application_response.rb +74 -0
- data/lib/verizon/models/create_service_profile_result.rb +52 -0
- data/lib/verizon/models/create_subscription_request.rb +154 -0
- data/lib/verizon/models/create_target_request.rb +170 -0
- data/lib/verizon/models/create_target_request_fields.rb +60 -0
- data/lib/verizon/models/create_trigger_request.rb +135 -0
- data/lib/verizon/models/create_trigger_request_options.rb +105 -0
- data/lib/verizon/models/custom_fields.rb +57 -0
- data/lib/verizon/models/custom_fields_update_request.rb +133 -0
- data/lib/verizon/models/customer_name.rb +88 -0
- data/lib/verizon/models/customernamequery.rb +59 -0
- data/lib/verizon/models/cycle_type_enum.rb +23 -0
- data/lib/verizon/models/daily_usage_item.rb +70 -0
- data/lib/verizon/models/data_percentage100_trigger_attribute.rb +61 -0
- data/lib/verizon/models/data_percentage50_trigger_attribute.rb +61 -0
- data/lib/verizon/models/data_percentage75_trigger_attribute.rb +61 -0
- data/lib/verizon/models/data_percentage90_trigger_attribute.rb +61 -0
- data/lib/verizon/models/data_trigger_request.rb +70 -0
- data/lib/verizon/models/date_filter.rb +57 -0
- data/lib/verizon/models/deactivate_device_list.rb +59 -0
- data/lib/verizon/models/deactivate_device_profile_request.rb +107 -0
- data/lib/verizon/models/delete_devices_request.rb +70 -0
- data/lib/verizon/models/delete_devices_result.rb +73 -0
- data/lib/verizon/models/delete_service_profile_result.rb +60 -0
- data/lib/verizon/models/delete_subscription_request.rb +64 -0
- data/lib/verizon/models/delete_target_request.rb +64 -0
- data/lib/verizon/models/deregister_service_endpoint_result.rb +61 -0
- data/lib/verizon/models/device.rb +57 -0
- data/lib/verizon/models/device_activation_request.rb +67 -0
- data/lib/verizon/models/device_aggregate_usage_list_request.rb +121 -0
- data/lib/verizon/models/device_connection_list_request.rb +67 -0
- data/lib/verizon/models/device_cost_center_request.rb +153 -0
- data/lib/verizon/models/device_diagnostics_callback.rb +95 -0
- data/lib/verizon/models/device_extended_diagnostics_request.rb +68 -0
- data/lib/verizon/models/device_extended_diagnostics_result.rb +61 -0
- data/lib/verizon/models/device_filter.rb +91 -0
- data/lib/verizon/models/device_filter_without_account.rb +80 -0
- data/lib/verizon/models/device_firmware_list.rb +71 -0
- data/lib/verizon/models/device_firmware_upgrade.rb +135 -0
- data/lib/verizon/models/device_firmware_version.rb +101 -0
- data/lib/verizon/models/device_firmware_version_update_result.rb +57 -0
- data/lib/verizon/models/device_group.rb +90 -0
- data/lib/verizon/models/device_group_devices_data.rb +90 -0
- data/lib/verizon/models/device_group_update_request.rb +105 -0
- data/lib/verizon/models/device_id.rb +59 -0
- data/lib/verizon/models/device_id2.rb +60 -0
- data/lib/verizon/models/device_id_search.rb +81 -0
- data/lib/verizon/models/device_identifier.rb +68 -0
- data/lib/verizon/models/device_imei.rb +48 -0
- data/lib/verizon/models/device_info.rb +67 -0
- data/lib/verizon/models/device_labels.rb +57 -0
- data/lib/verizon/models/device_list.rb +59 -0
- data/lib/verizon/models/device_list1.rb +75 -0
- data/lib/verizon/models/device_list2.rb +59 -0
- data/lib/verizon/models/device_list7.rb +66 -0
- data/lib/verizon/models/device_list_query_item.rb +123 -0
- data/lib/verizon/models/device_list_query_result.rb +91 -0
- data/lib/verizon/models/device_list_result.rb +75 -0
- data/lib/verizon/models/device_location_callback.rb +57 -0
- data/lib/verizon/models/device_location_subscription.rb +80 -0
- data/lib/verizon/models/device_location_success_result.rb +50 -0
- data/lib/verizon/models/device_log.rb +103 -0
- data/lib/verizon/models/device_logging_request.rb +48 -0
- data/lib/verizon/models/device_logging_status.rb +57 -0
- data/lib/verizon/models/device_management_result.rb +52 -0
- data/lib/verizon/models/device_mismatch_list_request.rb +92 -0
- data/lib/verizon/models/device_mismatch_list_result.rb +61 -0
- data/lib/verizon/models/device_prl_list_request.rb +119 -0
- data/lib/verizon/models/device_profile_request.rb +79 -0
- data/lib/verizon/models/device_propertylocation.rb +60 -0
- data/lib/verizon/models/device_provisioning_history_list_request.rb +67 -0
- data/lib/verizon/models/device_provisioning_history_list_result.rb +72 -0
- data/lib/verizon/models/device_reset_request.rb +80 -0
- data/lib/verizon/models/device_service_information.rb +70 -0
- data/lib/verizon/models/device_service_request.rb +58 -0
- data/lib/verizon/models/device_software_upgrade.rb +104 -0
- data/lib/verizon/models/device_suspension_status_request.rb +80 -0
- data/lib/verizon/models/device_upgrade_history.rb +131 -0
- data/lib/verizon/models/device_upload_request.rb +93 -0
- data/lib/verizon/models/device_usage_list_request.rb +79 -0
- data/lib/verizon/models/device_usage_list_result.rb +71 -0
- data/lib/verizon/models/devices_consent_result.rb +100 -0
- data/lib/verizon/models/devices_protocol_enum.rb +26 -0
- data/lib/verizon/models/diagnostic_observation_setting.rb +81 -0
- data/lib/verizon/models/diagnostics_category.rb +71 -0
- data/lib/verizon/models/diagnostics_observation_result.rb +73 -0
- data/lib/verizon/models/diagnostics_subscription.rb +107 -0
- data/lib/verizon/models/download_time_window.rb +60 -0
- data/lib/verizon/models/edge_discovery_result_data.rb +52 -0
- data/lib/verizon/models/enable_promo_exp.rb +51 -0
- data/lib/verizon/models/enable_promo_exp1.rb +60 -0
- data/lib/verizon/models/engagement.rb +79 -0
- data/lib/verizon/models/error_response_code_enum.rb +29 -0
- data/lib/verizon/models/esi_msubrequest.rb +70 -0
- data/lib/verizon/models/esim_device_id.rb +60 -0
- data/lib/verizon/models/esim_device_list.rb +59 -0
- data/lib/verizon/models/esim_profile_request.rb +99 -0
- data/lib/verizon/models/esim_provhistory_request.rb +106 -0
- data/lib/verizon/models/esim_request_response.rb +50 -0
- data/lib/verizon/models/esim_status_response.rb +79 -0
- data/lib/verizon/models/extended_attributes.rb +60 -0
- data/lib/verizon/models/fields.rb +50 -0
- data/lib/verizon/models/fields1.rb +50 -0
- data/lib/verizon/models/fields2.rb +50 -0
- data/lib/verizon/models/fields_http_headers.rb +50 -0
- data/lib/verizon/models/filtercriteria.rb +59 -0
- data/lib/verizon/models/filtercriteria2.rb +51 -0
- data/lib/verizon/models/find_device_by_property_response.rb +182 -0
- data/lib/verizon/models/find_device_by_property_response_list.rb +60 -0
- data/lib/verizon/models/firmware.rb +130 -0
- data/lib/verizon/models/firmware_campaign.rb +172 -0
- data/lib/verizon/models/firmware_imei.rb +49 -0
- data/lib/verizon/models/firmware_package.rb +118 -0
- data/lib/verizon/models/firmware_protocol_enum.rb +26 -0
- data/lib/verizon/models/firmware_type_list_enum.rb +23 -0
- data/lib/verizon/models/firmware_upgrade.rb +122 -0
- data/lib/verizon/models/firmware_upgrade_change_request.rb +57 -0
- data/lib/verizon/models/firmware_upgrade_change_result.rb +81 -0
- data/lib/verizon/models/firmware_upgrade_device_list_item.rb +73 -0
- data/lib/verizon/models/firmware_upgrade_request.rb +93 -0
- data/lib/verizon/models/flow_info.rb +90 -0
- data/lib/verizon/models/fota_v1_callback_registration_request.rb +80 -0
- data/lib/verizon/models/fota_v1_callback_registration_result.rb +62 -0
- data/lib/verizon/models/fota_v1_success_result.rb +50 -0
- data/lib/verizon/models/fota_v2_callback_registration_request.rb +50 -0
- data/lib/verizon/models/fota_v2_callback_registration_result.rb +50 -0
- data/lib/verizon/models/fota_v2_subscription.rb +91 -0
- data/lib/verizon/models/fota_v2_success_result.rb +48 -0
- data/lib/verizon/models/fota_v3_callback_registration_request.rb +50 -0
- data/lib/verizon/models/fota_v3_callback_registration_result.rb +50 -0
- data/lib/verizon/models/fota_v3_callback_summary.rb +50 -0
- data/lib/verizon/models/fota_v3_subscription.rb +91 -0
- data/lib/verizon/models/fota_v3_success_result.rb +48 -0
- data/lib/verizon/models/generate_external_id_request.rb +52 -0
- data/lib/verizon/models/generate_external_id_result.rb +50 -0
- data/lib/verizon/models/get_device_experience_score_bulk_request.rb +66 -0
- data/lib/verizon/models/get_device_experience_score_history_request.rb +57 -0
- data/lib/verizon/models/get_device_list_with_profiles_request.rb +104 -0
- data/lib/verizon/models/get_mec_performance_consent_response.rb +50 -0
- data/lib/verizon/models/get_network_conditions_request.rb +66 -0
- data/lib/verizon/models/get_trigger_response.rb +200 -0
- data/lib/verizon/models/get_trigger_response_list.rb +59 -0
- data/lib/verizon/models/get_wireless_coverage_request.rb +93 -0
- data/lib/verizon/models/get_wireless_coverage_request_fwa.rb +93 -0
- data/lib/verizon/models/gio_deactivate_device_profile_request.rb +99 -0
- data/lib/verizon/models/gio_device_id.rb +57 -0
- data/lib/verizon/models/gio_device_list.rb +59 -0
- data/lib/verizon/models/gio_profile_request.rb +87 -0
- data/lib/verizon/models/gio_request_response.rb +50 -0
- data/lib/verizon/models/gio_sms_message.rb +88 -0
- data/lib/verizon/models/giosms_send_request.rb +136 -0
- data/lib/verizon/models/go_to_state_request.rb +222 -0
- data/lib/verizon/models/gpu.rb +83 -0
- data/lib/verizon/models/history.rb +69 -0
- data/lib/verizon/models/history_attribute_value.rb +79 -0
- data/lib/verizon/models/history_search_filter.rb +69 -0
- data/lib/verizon/models/history_search_filter_attributes.rb +50 -0
- data/lib/verizon/models/history_search_limit_time.rb +70 -0
- data/lib/verizon/models/history_search_request.rb +84 -0
- data/lib/verizon/models/http_status_code_enum.rb +228 -0
- data/lib/verizon/models/hyper_precise_location_callback.rb +61 -0
- data/lib/verizon/models/hyper_precise_location_fault.rb +70 -0
- data/lib/verizon/models/i_error_message.rb +82 -0
- data/lib/verizon/models/id.rb +62 -0
- data/lib/verizon/models/intelligence_success_result.rb +50 -0
- data/lib/verizon/models/ip_pool.rb +71 -0
- data/lib/verizon/models/key_data_percentage50.rb +60 -0
- data/lib/verizon/models/key_service_plan.rb +50 -0
- data/lib/verizon/models/keyschunk2.rb +139 -0
- data/lib/verizon/models/keysms_percentage50.rb +60 -0
- data/lib/verizon/models/kpi_info.rb +121 -0
- data/lib/verizon/models/kpi_info_list.rb +59 -0
- data/lib/verizon/models/kv_pair.rb +60 -0
- data/lib/verizon/models/label.rb +60 -0
- data/lib/verizon/models/labels_list.rb +59 -0
- data/lib/verizon/models/license_device_id.rb +62 -0
- data/lib/verizon/models/license_device_list.rb +69 -0
- data/lib/verizon/models/list_all_service_endpoints_result.rb +60 -0
- data/lib/verizon/models/list_mec_platforms_result.rb +62 -0
- data/lib/verizon/models/list_optimal_service_endpoints_result.rb +59 -0
- data/lib/verizon/models/list_regions_result.rb +61 -0
- data/lib/verizon/models/list_service_profiles_result.rb +61 -0
- data/lib/verizon/models/location.rb +70 -0
- data/lib/verizon/models/location_report.rb +102 -0
- data/lib/verizon/models/location_report_status.rb +60 -0
- data/lib/verizon/models/location_request.rb +88 -0
- data/lib/verizon/models/locations.rb +59 -0
- data/lib/verizon/models/locationscoord.rb +57 -0
- data/lib/verizon/models/log_in_request.rb +58 -0
- data/lib/verizon/models/log_in_result.rb +52 -0
- data/lib/verizon/models/log_out_request.rb +50 -0
- data/lib/verizon/models/m201success.rb +50 -0
- data/lib/verizon/models/managed_acc_added_list.rb +60 -0
- data/lib/verizon/models/managed_acc_provisioned_list.rb +60 -0
- data/lib/verizon/models/managed_account_cancel_request.rb +84 -0
- data/lib/verizon/models/managed_account_cancel_response.rb +93 -0
- data/lib/verizon/models/managed_accounts_add_request.rb +76 -0
- data/lib/verizon/models/managed_accounts_add_response.rb +69 -0
- data/lib/verizon/models/managed_accounts_get_all_response.rb +91 -0
- data/lib/verizon/models/managed_accounts_provision_request.rb +84 -0
- data/lib/verizon/models/managed_accounts_provision_response.rb +100 -0
- data/lib/verizon/models/mec_device_id.rb +57 -0
- data/lib/verizon/models/mec_device_list.rb +57 -0
- data/lib/verizon/models/mec_performance_metrics.rb +90 -0
- data/lib/verizon/models/mec_performance_query_result.rb +60 -0
- data/lib/verizon/models/mec_platform_resource.rb +95 -0
- data/lib/verizon/models/mec_platform_status_enum.rb +26 -0
- data/lib/verizon/models/mec_platforms_additional_support_info.rb +60 -0
- data/lib/verizon/models/mec_platforms_additional_support_info_data.rb +51 -0
- data/lib/verizon/models/mec_profile.rb +60 -0
- data/lib/verizon/models/mec_profile_list.rb +59 -0
- data/lib/verizon/models/mismatched_device.rb +112 -0
- data/lib/verizon/models/move_device_request.rb +137 -0
- data/lib/verizon/models/network_resources_type.rb +98 -0
- data/lib/verizon/models/network_type.rb +50 -0
- data/lib/verizon/models/no_of_days_b4_promo_exp.rb +60 -0
- data/lib/verizon/models/notification.rb +179 -0
- data/lib/verizon/models/notification_group_name_trigger_attribute.rb +50 -0
- data/lib/verizon/models/notification_report_request.rb +85 -0
- data/lib/verizon/models/notification_report_status_request.rb +78 -0
- data/lib/verizon/models/numerical_data.rb +60 -0
- data/lib/verizon/models/numerical_data_unit_enum.rb +29 -0
- data/lib/verizon/models/oauth_provider_error_enum.rb +45 -0
- data/lib/verizon/models/oauth_scope_enum.rb +48 -0
- data/lib/verizon/models/oauth_token.rb +100 -0
- data/lib/verizon/models/observation_request.rb +107 -0
- data/lib/verizon/models/observation_request_attribute.rb +50 -0
- data/lib/verizon/models/place_of_use.rb +63 -0
- data/lib/verizon/models/position_data.rb +100 -0
- data/lib/verizon/models/position_error.rb +80 -0
- data/lib/verizon/models/primary_place_of_use.rb +78 -0
- data/lib/verizon/models/profile_change_state_request.rb +75 -0
- data/lib/verizon/models/profile_request.rb +137 -0
- data/lib/verizon/models/profile_request2.rb +109 -0
- data/lib/verizon/models/promo_alert.rb +89 -0
- data/lib/verizon/models/promo_alert1.rb +81 -0
- data/lib/verizon/models/promo_alert_trigger_request.rb +117 -0
- data/lib/verizon/models/property_device_id.rb +62 -0
- data/lib/verizon/models/provhistory_request.rb +106 -0
- data/lib/verizon/models/provisioning_history.rb +130 -0
- data/lib/verizon/models/qos_device_id.rb +60 -0
- data/lib/verizon/models/qos_device_info.rb +78 -0
- data/lib/verizon/models/query_mec_performance_metrics_request.rb +57 -0
- data/lib/verizon/models/query_subscription_request.rb +78 -0
- data/lib/verizon/models/query_target_request.rb +78 -0
- data/lib/verizon/models/ready_sim_device_id.rb +60 -0
- data/lib/verizon/models/ready_sim_service_plan.rb +50 -0
- data/lib/verizon/models/region.rb +100 -0
- data/lib/verizon/models/register_callback_request.rb +80 -0
- data/lib/verizon/models/register_service_endpoint_result.rb +53 -0
- data/lib/verizon/models/registered_callbacks.rb +92 -0
- data/lib/verizon/models/remove_device_request.rb +61 -0
- data/lib/verizon/models/report_status_enum.rb +26 -0
- data/lib/verizon/models/request_body_for_usage.rb +96 -0
- data/lib/verizon/models/request_response.rb +50 -0
- data/lib/verizon/models/request_status_enum.rb +26 -0
- data/lib/verizon/models/request_trigger.rb +111 -0
- data/lib/verizon/models/resource_identifier.rb +61 -0
- data/lib/verizon/models/resources_edge_hosted_service.rb +96 -0
- data/lib/verizon/models/resources_edge_hosted_service_with_profile_id.rb +107 -0
- data/lib/verizon/models/resources_service_endpoint.rb +90 -0
- data/lib/verizon/models/resources_service_profile.rb +119 -0
- data/lib/verizon/models/resources_service_profile_with_id.rb +129 -0
- data/lib/verizon/models/response_code_enum.rb +29 -0
- data/lib/verizon/models/response_to_usage_query.rb +79 -0
- data/lib/verizon/models/retrieve_monitors_request.rb +78 -0
- data/lib/verizon/models/retrieves_available_files_response.rb +124 -0
- data/lib/verizon/models/retrieves_available_files_response_list.rb +59 -0
- data/lib/verizon/models/schedules_software_upgrade_request.rb +186 -0
- data/lib/verizon/models/search_device_by_property_fields.rb +122 -0
- data/lib/verizon/models/search_device_by_property_response.rb +192 -0
- data/lib/verizon/models/search_device_by_property_response_list.rb +59 -0
- data/lib/verizon/models/search_device_event_history_request.rb +96 -0
- data/lib/verizon/models/search_device_event_history_response_list.rb +62 -0
- data/lib/verizon/models/search_device_response.rb +173 -0
- data/lib/verizon/models/search_sensor_history_request.rb +82 -0
- data/lib/verizon/models/search_sensor_history_response_list.rb +59 -0
- data/lib/verizon/models/security_subscription.rb +114 -0
- data/lib/verizon/models/security_subscription_request.rb +67 -0
- data/lib/verizon/models/security_subscription_result.rb +70 -0
- data/lib/verizon/models/security_success_result.rb +54 -0
- data/lib/verizon/models/sensitivity_parameters.rb +86 -0
- data/lib/verizon/models/service_name_enum.rb +23 -0
- data/lib/verizon/models/service_plan.rb +103 -0
- data/lib/verizon/models/service_plan_trigger_attribute.rb +50 -0
- data/lib/verizon/models/service_plan_update_request.rb +154 -0
- data/lib/verizon/models/service_usage.rb +61 -0
- data/lib/verizon/models/session_report.rb +83 -0
- data/lib/verizon/models/session_report_request.rb +105 -0
- data/lib/verizon/models/session_reset_password_request.rb +48 -0
- data/lib/verizon/models/session_reset_password_result.rb +50 -0
- data/lib/verizon/models/session_trigger_request.rb +60 -0
- data/lib/verizon/models/set_fallback_attribute_request.rb +77 -0
- data/lib/verizon/models/sms_event_history_request.rb +86 -0
- data/lib/verizon/models/sms_message.rb +80 -0
- data/lib/verizon/models/sms_messages_query_result.rb +72 -0
- data/lib/verizon/models/sms_messages_response.rb +69 -0
- data/lib/verizon/models/sms_number.rb +60 -0
- data/lib/verizon/models/sms_options_send_request.rb +60 -0
- data/lib/verizon/models/sms_send_request.rb +132 -0
- data/lib/verizon/models/sms_trigger_request.rb +70 -0
- data/lib/verizon/models/software_package.rb +106 -0
- data/lib/verizon/models/state.rb +72 -0
- data/lib/verizon/models/status.rb +50 -0
- data/lib/verizon/models/status1_enum.rb +23 -0
- data/lib/verizon/models/status_list.rb +70 -0
- data/lib/verizon/models/status_response.rb +79 -0
- data/lib/verizon/models/stop_monitor_request.rb +57 -0
- data/lib/verizon/models/subrequest.rb +60 -0
- data/lib/verizon/models/subscribe_request.rb +66 -0
- data/lib/verizon/models/subscription.rb +245 -0
- data/lib/verizon/models/success.rb +50 -0
- data/lib/verizon/models/success_response.rb +50 -0
- data/lib/verizon/models/synchronous_location_request_result.rb +57 -0
- data/lib/verizon/models/target.rb +171 -0
- data/lib/verizon/models/target_authentication.rb +60 -0
- data/lib/verizon/models/target_authentication_body.rb +90 -0
- data/lib/verizon/models/target_authentication_body_headers.rb +60 -0
- data/lib/verizon/models/target_authentication_body_host.rb +50 -0
- data/lib/verizon/models/thingspace_device.rb +213 -0
- data/lib/verizon/models/transaction_id.rb +51 -0
- data/lib/verizon/models/trigger_attributes_options.rb +61 -0
- data/lib/verizon/models/trigger_type1.rb +94 -0
- data/lib/verizon/models/trigger_type2.rb +61 -0
- data/lib/verizon/models/trigger_type3.rb +104 -0
- data/lib/verizon/models/trigger_value_response.rb +59 -0
- data/lib/verizon/models/trigger_value_response2.rb +59 -0
- data/lib/verizon/models/triggers_list_options.rb +144 -0
- data/lib/verizon/models/triggervalues.rb +148 -0
- data/lib/verizon/models/triggervalues2.rb +158 -0
- data/lib/verizon/models/update_service_endpoint_result.rb +60 -0
- data/lib/verizon/models/update_service_profile_result.rb +60 -0
- data/lib/verizon/models/update_trigger_request.rb +170 -0
- data/lib/verizon/models/update_trigger_request_options.rb +115 -0
- data/lib/verizon/models/upgrade_list_query_result.rb +83 -0
- data/lib/verizon/models/upgrade_status_enum.rb +35 -0
- data/lib/verizon/models/upload_and_schedule_file_request.rb +176 -0
- data/lib/verizon/models/upload_and_schedule_file_response.rb +256 -0
- data/lib/verizon/models/upload_configuration_files_response.rb +133 -0
- data/lib/verizon/models/uploads_activates_device_request.rb +128 -0
- data/lib/verizon/models/usage.rb +111 -0
- data/lib/verizon/models/usage_anomaly_attributes.rb +119 -0
- data/lib/verizon/models/usage_history.rb +119 -0
- data/lib/verizon/models/usage_request_body.rb +106 -0
- data/lib/verizon/models/usage_request_response.rb +50 -0
- data/lib/verizon/models/usage_trigger_add_request.rb +135 -0
- data/lib/verizon/models/usage_trigger_response.rb +152 -0
- data/lib/verizon/models/usage_trigger_update_request.rb +94 -0
- data/lib/verizon/models/user_equipment_identity_type_enum.rb +20 -0
- data/lib/verizon/models/v1_account_subscription.rb +91 -0
- data/lib/verizon/models/v1_device_list_item.rb +72 -0
- data/lib/verizon/models/v1_licenses_assigned_removed_request.rb +48 -0
- data/lib/verizon/models/v1_licenses_assigned_removed_result.rb +89 -0
- data/lib/verizon/models/v1_list_of_licenses_to_remove.rb +89 -0
- data/lib/verizon/models/v1_list_of_licenses_to_remove_request.rb +62 -0
- data/lib/verizon/models/v1_list_of_licenses_to_remove_result.rb +60 -0
- data/lib/verizon/models/v2_account_device.rb +173 -0
- data/lib/verizon/models/v2_account_device_list.rb +96 -0
- data/lib/verizon/models/v2_add_or_remove_device_request.rb +57 -0
- data/lib/verizon/models/v2_add_or_remove_device_result.rb +66 -0
- data/lib/verizon/models/v2_campaign_device.rb +97 -0
- data/lib/verizon/models/v2_campaign_history.rb +80 -0
- data/lib/verizon/models/v2_campaign_meta_info.rb +215 -0
- data/lib/verizon/models/v2_change_campaign_dates_request.rb +125 -0
- data/lib/verizon/models/v2_device_status.rb +68 -0
- data/lib/verizon/models/v2_license_device.rb +60 -0
- data/lib/verizon/models/v2_license_imei.rb +59 -0
- data/lib/verizon/models/v2_license_summary.rb +117 -0
- data/lib/verizon/models/v2_licenses_assigned_removed_result.rb +84 -0
- data/lib/verizon/models/v2_list_of_licenses_to_remove.rb +75 -0
- data/lib/verizon/models/v2_list_of_licenses_to_remove_request.rb +69 -0
- data/lib/verizon/models/v2_list_of_licenses_to_remove_result.rb +57 -0
- data/lib/verizon/models/v2_software_info.rb +66 -0
- data/lib/verizon/models/v2_time_window.rb +57 -0
- data/lib/verizon/models/v3_account_device.rb +200 -0
- data/lib/verizon/models/v3_account_device_list.rb +96 -0
- data/lib/verizon/models/v3_add_or_remove_device_request.rb +57 -0
- data/lib/verizon/models/v3_add_or_remove_device_result.rb +75 -0
- data/lib/verizon/models/v3_campaign_device.rb +97 -0
- data/lib/verizon/models/v3_campaign_history.rb +80 -0
- data/lib/verizon/models/v3_campaign_meta_info.rb +175 -0
- data/lib/verizon/models/v3_change_campaign_dates_request.rb +80 -0
- data/lib/verizon/models/v3_device.rb +248 -0
- data/lib/verizon/models/v3_device_list_item.rb +70 -0
- data/lib/verizon/models/v3_device_status.rb +123 -0
- data/lib/verizon/models/v3_license_assigned_removed_result.rb +84 -0
- data/lib/verizon/models/v3_license_device.rb +60 -0
- data/lib/verizon/models/v3_license_imei.rb +48 -0
- data/lib/verizon/models/v3_license_summary.rb +117 -0
- data/lib/verizon/models/v3_software_info.rb +66 -0
- data/lib/verizon/models/v3_time_window.rb +57 -0
- data/lib/verizon/models/wnp_request_response.rb +50 -0
- data/lib/verizon/utilities/date_time_helper.rb +11 -0
- data/lib/verizon/utilities/file_wrapper.rb +16 -0
- data/lib/verizon.rb +629 -0
- metadata +603 -107
- data/bin/arch +0 -1
- data/bin/ash +0 -1
- data/bin/base64 +0 -1
- data/bin/bbconfig +0 -1
- data/bin/busybox +0 -0
- data/bin/cat +0 -1
- data/bin/chattr +0 -1
- data/bin/chgrp +0 -1
- data/bin/chmod +0 -1
- data/bin/chown +0 -1
- data/bin/cp +0 -1
- data/bin/date +0 -1
- data/bin/dd +0 -1
- data/bin/df +0 -1
- data/bin/dmesg +0 -1
- data/bin/dnsdomainname +0 -1
- data/bin/dumpkmap +0 -1
- data/bin/echo +0 -1
- data/bin/ed +0 -1
- data/bin/egrep +0 -1
- data/bin/false +0 -1
- data/bin/fatattr +0 -1
- data/bin/fdflush +0 -1
- data/bin/fgrep +0 -1
- data/bin/fsync +0 -1
- data/bin/getopt +0 -1
- data/bin/grep +0 -1
- data/bin/gunzip +0 -1
- data/bin/gzip +0 -1
- data/bin/hostname +0 -1
- data/bin/ionice +0 -1
- data/bin/iostat +0 -1
- data/bin/ipcalc +0 -1
- data/bin/kbd_mode +0 -1
- data/bin/kill +0 -1
- data/bin/link +0 -1
- data/bin/linux32 +0 -1
- data/bin/linux64 +0 -1
- data/bin/ln +0 -1
- data/bin/login +0 -1
- data/bin/ls +0 -1
- data/bin/lsattr +0 -1
- data/bin/lzop +0 -1
- data/bin/makemime +0 -1
- data/bin/mkdir +0 -1
- data/bin/mknod +0 -1
- data/bin/mktemp +0 -1
- data/bin/more +0 -1
- data/bin/mount +0 -1
- data/bin/mountpoint +0 -1
- data/bin/mpstat +0 -1
- data/bin/mv +0 -1
- data/bin/netstat +0 -1
- data/bin/nice +0 -1
- data/bin/pidof +0 -0
- data/bin/ping +0 -1
- data/bin/ping6 +0 -1
- data/bin/pipe_progress +0 -1
- data/bin/printenv +0 -1
- data/bin/ps +0 -0
- data/bin/pwait +0 -0
- data/bin/pwd +0 -1
- data/bin/reformime +0 -1
- data/bin/rev +0 -1
- data/bin/rm +0 -1
- data/bin/rmdir +0 -1
- data/bin/run-parts +0 -1
- data/bin/sed +0 -1
- data/bin/setpriv +0 -1
- data/bin/setserial +0 -1
- data/bin/sh +0 -1
- data/bin/slabtop +0 -0
- data/bin/sleep +0 -1
- data/bin/stat +0 -1
- data/bin/stty +0 -1
- data/bin/su +0 -1
- data/bin/sync +0 -1
- data/bin/tar +0 -1
- data/bin/tload +0 -0
- data/bin/touch +0 -1
- data/bin/true +0 -1
- data/bin/umount +0 -1
- data/bin/uname +0 -1
- data/bin/usleep +0 -1
- data/bin/vmstat +0 -0
- data/bin/w +0 -0
- data/bin/watch +0 -0
- data/bin/zcat +0 -1
- data/lib/apk/db/installed +0 -3582
- data/lib/apk/db/lock +0 -0
- data/lib/apk/db/scripts.tar +0 -0
- data/lib/apk/db/triggers +0 -2
- data/lib/ld-musl-x86_64.so.1 +0 -0
- data/lib/libapk.so.3.12.0 +0 -0
- data/lib/libc.musl-x86_64.so.1 +0 -1
- data/lib/libcrypto.so.1.1 +0 -0
- data/lib/libprocps.so.8 +0 -1
- data/lib/libprocps.so.8.0.3 +0 -0
- data/lib/libssl.so.1.1 +0 -0
- data/lib/libz.so +0 -1
- data/lib/libz.so.1 +0 -1
- data/lib/libz.so.1.2.12 +0 -0
- data/lib/sysctl.d/00-alpine.conf +0 -40
@@ -0,0 +1,91 @@
|
|
1
|
+
# verizon
|
2
|
+
#
|
3
|
+
# This file was automatically generated by APIMATIC v2.0
|
4
|
+
# ( https://apimatic.io ).
|
5
|
+
|
6
|
+
module Verizon
|
7
|
+
# Create request for a new device group and optionally add devices to the
|
8
|
+
# group.
|
9
|
+
class CreateDeviceGroupRequest < BaseModel
|
10
|
+
SKIP = Object.new
|
11
|
+
private_constant :SKIP
|
12
|
+
|
13
|
+
# The Verizon billing account that the device group will belong to. An
|
14
|
+
# account name is usually numeric, and must include any leading zeros.
|
15
|
+
# @return [String]
|
16
|
+
attr_accessor :account_name
|
17
|
+
|
18
|
+
# A description for the device group.
|
19
|
+
# @return [String]
|
20
|
+
attr_accessor :group_description
|
21
|
+
|
22
|
+
# The name for the new device group. This name must be unique within the
|
23
|
+
# specified account.
|
24
|
+
# @return [String]
|
25
|
+
attr_accessor :group_name
|
26
|
+
|
27
|
+
# Zero or more devices to add to the device group. You can use POST
|
28
|
+
# /devices/actions/list to get a list of all devices in the account.
|
29
|
+
# @return [Array[DeviceId]]
|
30
|
+
attr_accessor :devices_to_add
|
31
|
+
|
32
|
+
# A mapping from model property names to API property names.
|
33
|
+
def self.names
|
34
|
+
@_hash = {} if @_hash.nil?
|
35
|
+
@_hash['account_name'] = 'accountName'
|
36
|
+
@_hash['group_description'] = 'groupDescription'
|
37
|
+
@_hash['group_name'] = 'groupName'
|
38
|
+
@_hash['devices_to_add'] = 'devicesToAdd'
|
39
|
+
@_hash
|
40
|
+
end
|
41
|
+
|
42
|
+
# An array for optional fields
|
43
|
+
def self.optionals
|
44
|
+
%w[
|
45
|
+
devices_to_add
|
46
|
+
]
|
47
|
+
end
|
48
|
+
|
49
|
+
# An array for nullable fields
|
50
|
+
def self.nullables
|
51
|
+
[]
|
52
|
+
end
|
53
|
+
|
54
|
+
def initialize(account_name = nil,
|
55
|
+
group_description = nil,
|
56
|
+
group_name = nil,
|
57
|
+
devices_to_add = SKIP)
|
58
|
+
@account_name = account_name
|
59
|
+
@group_description = group_description
|
60
|
+
@group_name = group_name
|
61
|
+
@devices_to_add = devices_to_add unless devices_to_add == SKIP
|
62
|
+
end
|
63
|
+
|
64
|
+
# Creates an instance of the object from a hash.
|
65
|
+
def self.from_hash(hash)
|
66
|
+
return nil unless hash
|
67
|
+
|
68
|
+
# Extract variables from the hash.
|
69
|
+
account_name = hash.key?('accountName') ? hash['accountName'] : nil
|
70
|
+
group_description =
|
71
|
+
hash.key?('groupDescription') ? hash['groupDescription'] : nil
|
72
|
+
group_name = hash.key?('groupName') ? hash['groupName'] : nil
|
73
|
+
# Parameter is an array, so we need to iterate through it
|
74
|
+
devices_to_add = nil
|
75
|
+
unless hash['devicesToAdd'].nil?
|
76
|
+
devices_to_add = []
|
77
|
+
hash['devicesToAdd'].each do |structure|
|
78
|
+
devices_to_add << (DeviceId.from_hash(structure) if structure)
|
79
|
+
end
|
80
|
+
end
|
81
|
+
|
82
|
+
devices_to_add = SKIP unless hash.key?('devicesToAdd')
|
83
|
+
|
84
|
+
# Create object from extracted values.
|
85
|
+
CreateDeviceGroupRequest.new(account_name,
|
86
|
+
group_description,
|
87
|
+
group_name,
|
88
|
+
devices_to_add)
|
89
|
+
end
|
90
|
+
end
|
91
|
+
end
|
@@ -0,0 +1,135 @@
|
|
1
|
+
# verizon
|
2
|
+
#
|
3
|
+
# This file was automatically generated by APIMATIC v2.0
|
4
|
+
# ( https://apimatic.io ).
|
5
|
+
|
6
|
+
module Verizon
|
7
|
+
# The request body must include the UUID of the subscription that you want to
|
8
|
+
# update plus any properties that you want to change.
|
9
|
+
class CreateIoTApplicationRequest < BaseModel
|
10
|
+
SKIP = Object.new
|
11
|
+
private_constant :SKIP
|
12
|
+
|
13
|
+
# A user defined name for the application being deployed in Azure IoT
|
14
|
+
# Central.
|
15
|
+
# @return [String]
|
16
|
+
attr_accessor :app_name
|
17
|
+
|
18
|
+
# The ThingSpace ID of the authenticating billing account
|
19
|
+
# @return [String]
|
20
|
+
attr_accessor :billing_account_id
|
21
|
+
|
22
|
+
# The Azure ClientID of the associated Azure target account
|
23
|
+
# @return [String]
|
24
|
+
attr_accessor :client_id
|
25
|
+
|
26
|
+
# The Azure Client Secret of the associated Azure target account
|
27
|
+
# @return [String]
|
28
|
+
attr_accessor :client_secret
|
29
|
+
|
30
|
+
# The “email IDs” to be added to/sent to with this API.
|
31
|
+
# @return [String]
|
32
|
+
attr_accessor :email_i_ds
|
33
|
+
|
34
|
+
# The Azure Resource group of the associated Azure target account
|
35
|
+
# @return [String]
|
36
|
+
attr_accessor :resourcegroup
|
37
|
+
|
38
|
+
# This is the reference Azure IoT Central application developed by Verizon.
|
39
|
+
# @return [String]
|
40
|
+
attr_accessor :sample_io_tc_app
|
41
|
+
|
42
|
+
# The Azure Subscription ID of the associated Azure target account
|
43
|
+
# @return [String]
|
44
|
+
attr_accessor :subscription_id
|
45
|
+
|
46
|
+
# The Azure Tenant ID of the associated Azure target account
|
47
|
+
# @return [String]
|
48
|
+
attr_accessor :tenant_id
|
49
|
+
|
50
|
+
# A mapping from model property names to API property names.
|
51
|
+
def self.names
|
52
|
+
@_hash = {} if @_hash.nil?
|
53
|
+
@_hash['app_name'] = 'appName'
|
54
|
+
@_hash['billing_account_id'] = 'billingAccountID'
|
55
|
+
@_hash['client_id'] = 'clientID'
|
56
|
+
@_hash['client_secret'] = 'clientSecret'
|
57
|
+
@_hash['email_i_ds'] = 'emailIDs'
|
58
|
+
@_hash['resourcegroup'] = 'resourcegroup'
|
59
|
+
@_hash['sample_io_tc_app'] = 'sampleIOTcApp'
|
60
|
+
@_hash['subscription_id'] = 'subscriptionID'
|
61
|
+
@_hash['tenant_id'] = 'tenantID'
|
62
|
+
@_hash
|
63
|
+
end
|
64
|
+
|
65
|
+
# An array for optional fields
|
66
|
+
def self.optionals
|
67
|
+
%w[
|
68
|
+
app_name
|
69
|
+
billing_account_id
|
70
|
+
client_id
|
71
|
+
client_secret
|
72
|
+
email_i_ds
|
73
|
+
resourcegroup
|
74
|
+
sample_io_tc_app
|
75
|
+
subscription_id
|
76
|
+
tenant_id
|
77
|
+
]
|
78
|
+
end
|
79
|
+
|
80
|
+
# An array for nullable fields
|
81
|
+
def self.nullables
|
82
|
+
[]
|
83
|
+
end
|
84
|
+
|
85
|
+
def initialize(app_name = SKIP,
|
86
|
+
billing_account_id = SKIP,
|
87
|
+
client_id = SKIP,
|
88
|
+
client_secret = SKIP,
|
89
|
+
email_i_ds = SKIP,
|
90
|
+
resourcegroup = SKIP,
|
91
|
+
sample_io_tc_app = SKIP,
|
92
|
+
subscription_id = SKIP,
|
93
|
+
tenant_id = SKIP)
|
94
|
+
@app_name = app_name unless app_name == SKIP
|
95
|
+
@billing_account_id = billing_account_id unless billing_account_id == SKIP
|
96
|
+
@client_id = client_id unless client_id == SKIP
|
97
|
+
@client_secret = client_secret unless client_secret == SKIP
|
98
|
+
@email_i_ds = email_i_ds unless email_i_ds == SKIP
|
99
|
+
@resourcegroup = resourcegroup unless resourcegroup == SKIP
|
100
|
+
@sample_io_tc_app = sample_io_tc_app unless sample_io_tc_app == SKIP
|
101
|
+
@subscription_id = subscription_id unless subscription_id == SKIP
|
102
|
+
@tenant_id = tenant_id unless tenant_id == SKIP
|
103
|
+
end
|
104
|
+
|
105
|
+
# Creates an instance of the object from a hash.
|
106
|
+
def self.from_hash(hash)
|
107
|
+
return nil unless hash
|
108
|
+
|
109
|
+
# Extract variables from the hash.
|
110
|
+
app_name = hash.key?('appName') ? hash['appName'] : SKIP
|
111
|
+
billing_account_id =
|
112
|
+
hash.key?('billingAccountID') ? hash['billingAccountID'] : SKIP
|
113
|
+
client_id = hash.key?('clientID') ? hash['clientID'] : SKIP
|
114
|
+
client_secret = hash.key?('clientSecret') ? hash['clientSecret'] : SKIP
|
115
|
+
email_i_ds = hash.key?('emailIDs') ? hash['emailIDs'] : SKIP
|
116
|
+
resourcegroup = hash.key?('resourcegroup') ? hash['resourcegroup'] : SKIP
|
117
|
+
sample_io_tc_app =
|
118
|
+
hash.key?('sampleIOTcApp') ? hash['sampleIOTcApp'] : SKIP
|
119
|
+
subscription_id =
|
120
|
+
hash.key?('subscriptionID') ? hash['subscriptionID'] : SKIP
|
121
|
+
tenant_id = hash.key?('tenantID') ? hash['tenantID'] : SKIP
|
122
|
+
|
123
|
+
# Create object from extracted values.
|
124
|
+
CreateIoTApplicationRequest.new(app_name,
|
125
|
+
billing_account_id,
|
126
|
+
client_id,
|
127
|
+
client_secret,
|
128
|
+
email_i_ds,
|
129
|
+
resourcegroup,
|
130
|
+
sample_io_tc_app,
|
131
|
+
subscription_id,
|
132
|
+
tenant_id)
|
133
|
+
end
|
134
|
+
end
|
135
|
+
end
|
@@ -0,0 +1,74 @@
|
|
1
|
+
# verizon
|
2
|
+
#
|
3
|
+
# This file was automatically generated by APIMATIC v2.0
|
4
|
+
# ( https://apimatic.io ).
|
5
|
+
|
6
|
+
module Verizon
|
7
|
+
# A success response includes an array of all matching events. Each event
|
8
|
+
# includes the full event resource definition.
|
9
|
+
class CreateIoTApplicationResponse < BaseModel
|
10
|
+
SKIP = Object.new
|
11
|
+
private_constant :SKIP
|
12
|
+
|
13
|
+
# An application will be created under the user's Azure subscription with
|
14
|
+
# this name and of type IOT central.
|
15
|
+
# @return [String]
|
16
|
+
attr_accessor :app_name
|
17
|
+
|
18
|
+
# Part of the user credentials (from Azure) the user needs to use for
|
19
|
+
# calling further TS Core APIs for setting up Azure cloud connector.
|
20
|
+
# @return [String]
|
21
|
+
attr_accessor :shared_secret
|
22
|
+
|
23
|
+
# An IOT central endpoint the user can use to see the data that is being
|
24
|
+
# streamed.
|
25
|
+
# @return [String]
|
26
|
+
attr_accessor :url
|
27
|
+
|
28
|
+
# A mapping from model property names to API property names.
|
29
|
+
def self.names
|
30
|
+
@_hash = {} if @_hash.nil?
|
31
|
+
@_hash['app_name'] = 'appName'
|
32
|
+
@_hash['shared_secret'] = 'sharedSecret'
|
33
|
+
@_hash['url'] = 'url'
|
34
|
+
@_hash
|
35
|
+
end
|
36
|
+
|
37
|
+
# An array for optional fields
|
38
|
+
def self.optionals
|
39
|
+
%w[
|
40
|
+
app_name
|
41
|
+
shared_secret
|
42
|
+
url
|
43
|
+
]
|
44
|
+
end
|
45
|
+
|
46
|
+
# An array for nullable fields
|
47
|
+
def self.nullables
|
48
|
+
[]
|
49
|
+
end
|
50
|
+
|
51
|
+
def initialize(app_name = SKIP,
|
52
|
+
shared_secret = SKIP,
|
53
|
+
url = SKIP)
|
54
|
+
@app_name = app_name unless app_name == SKIP
|
55
|
+
@shared_secret = shared_secret unless shared_secret == SKIP
|
56
|
+
@url = url unless url == SKIP
|
57
|
+
end
|
58
|
+
|
59
|
+
# Creates an instance of the object from a hash.
|
60
|
+
def self.from_hash(hash)
|
61
|
+
return nil unless hash
|
62
|
+
|
63
|
+
# Extract variables from the hash.
|
64
|
+
app_name = hash.key?('appName') ? hash['appName'] : SKIP
|
65
|
+
shared_secret = hash.key?('sharedSecret') ? hash['sharedSecret'] : SKIP
|
66
|
+
url = hash.key?('url') ? hash['url'] : SKIP
|
67
|
+
|
68
|
+
# Create object from extracted values.
|
69
|
+
CreateIoTApplicationResponse.new(app_name,
|
70
|
+
shared_secret,
|
71
|
+
url)
|
72
|
+
end
|
73
|
+
end
|
74
|
+
end
|
@@ -0,0 +1,52 @@
|
|
1
|
+
# verizon
|
2
|
+
#
|
3
|
+
# This file was automatically generated by APIMATIC v2.0
|
4
|
+
# ( https://apimatic.io ).
|
5
|
+
|
6
|
+
module Verizon
|
7
|
+
# A successful request returns a serviceProfileId that you can use in
|
8
|
+
# subsequent requests.
|
9
|
+
class CreateServiceProfileResult < BaseModel
|
10
|
+
SKIP = Object.new
|
11
|
+
private_constant :SKIP
|
12
|
+
|
13
|
+
# Unique identifier for a service profile.
|
14
|
+
# @return [String]
|
15
|
+
attr_accessor :service_profile_id
|
16
|
+
|
17
|
+
# A mapping from model property names to API property names.
|
18
|
+
def self.names
|
19
|
+
@_hash = {} if @_hash.nil?
|
20
|
+
@_hash['service_profile_id'] = 'serviceProfileId'
|
21
|
+
@_hash
|
22
|
+
end
|
23
|
+
|
24
|
+
# An array for optional fields
|
25
|
+
def self.optionals
|
26
|
+
%w[
|
27
|
+
service_profile_id
|
28
|
+
]
|
29
|
+
end
|
30
|
+
|
31
|
+
# An array for nullable fields
|
32
|
+
def self.nullables
|
33
|
+
[]
|
34
|
+
end
|
35
|
+
|
36
|
+
def initialize(service_profile_id = SKIP)
|
37
|
+
@service_profile_id = service_profile_id unless service_profile_id == 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
|
+
service_profile_id =
|
46
|
+
hash.key?('serviceProfileId') ? hash['serviceProfileId'] : SKIP
|
47
|
+
|
48
|
+
# Create object from extracted values.
|
49
|
+
CreateServiceProfileResult.new(service_profile_id)
|
50
|
+
end
|
51
|
+
end
|
52
|
+
end
|
@@ -0,0 +1,154 @@
|
|
1
|
+
# verizon
|
2
|
+
#
|
3
|
+
# This file was automatically generated by APIMATIC v2.0
|
4
|
+
# ( https://apimatic.io ).
|
5
|
+
|
6
|
+
module Verizon
|
7
|
+
# The details of the subscription that you want to create.
|
8
|
+
class CreateSubscriptionRequest < BaseModel
|
9
|
+
SKIP = Object.new
|
10
|
+
private_constant :SKIP
|
11
|
+
|
12
|
+
# The ID of the authenticating billing account, in the format
|
13
|
+
# `{"billingaccountid":"1234567890-12345"}`.
|
14
|
+
# @return [AccountIdentifier]
|
15
|
+
attr_accessor :accountidentifier
|
16
|
+
|
17
|
+
# Descriptive information about the subscription.
|
18
|
+
# @return [String]
|
19
|
+
attr_accessor :description
|
20
|
+
|
21
|
+
# Enable or disable the subscription. A disabled subscription will not send
|
22
|
+
# any data.
|
23
|
+
# @return [TrueClass | FalseClass]
|
24
|
+
attr_accessor :disabled
|
25
|
+
|
26
|
+
# The address to which any error reports should be delivered.
|
27
|
+
# @return [String]
|
28
|
+
attr_accessor :email
|
29
|
+
|
30
|
+
# String containing a $filter object with a property and value to filter out
|
31
|
+
# non-matching events.
|
32
|
+
# @return [String]
|
33
|
+
attr_accessor :filter
|
34
|
+
|
35
|
+
# String containing a $filter object with a property and value to filter out
|
36
|
+
# non-matching events.
|
37
|
+
# @return [String]
|
38
|
+
attr_accessor :billingaccountid
|
39
|
+
|
40
|
+
# The type of event data to send via this subscription. This will be
|
41
|
+
# `ts.event` in most cases. Other event types are `ts.event.diagnostics` for
|
42
|
+
# device diagnostic data, `ts.event.configuration` for device configuration
|
43
|
+
# events, or `ts.event.security`. Note that the device ThingSpace client
|
44
|
+
# must support sending specific event types for anything other than
|
45
|
+
# `ts.event`.
|
46
|
+
# @return [String]
|
47
|
+
attr_accessor :streamkind
|
48
|
+
|
49
|
+
# The ID of the target resource to be used when dispatching events. The
|
50
|
+
# corresponding target should have a “stream” addressscheme.
|
51
|
+
# @return [String]
|
52
|
+
attr_accessor :targetid
|
53
|
+
|
54
|
+
# Name of the subscription.
|
55
|
+
# @return [String]
|
56
|
+
attr_accessor :name
|
57
|
+
|
58
|
+
# Setting this value to `false` prevents the data returned from being
|
59
|
+
# aggregated and makes the data easier to parse.
|
60
|
+
# @return [TrueClass | FalseClass]
|
61
|
+
attr_accessor :allowaggregation
|
62
|
+
|
63
|
+
# A mapping from model property names to API property names.
|
64
|
+
def self.names
|
65
|
+
@_hash = {} if @_hash.nil?
|
66
|
+
@_hash['accountidentifier'] = 'accountidentifier'
|
67
|
+
@_hash['description'] = 'description'
|
68
|
+
@_hash['disabled'] = 'disabled'
|
69
|
+
@_hash['email'] = 'email'
|
70
|
+
@_hash['filter'] = 'filter'
|
71
|
+
@_hash['billingaccountid'] = 'billingaccountid'
|
72
|
+
@_hash['streamkind'] = 'streamkind'
|
73
|
+
@_hash['targetid'] = 'targetid'
|
74
|
+
@_hash['name'] = 'name'
|
75
|
+
@_hash['allowaggregation'] = 'allowaggregation'
|
76
|
+
@_hash
|
77
|
+
end
|
78
|
+
|
79
|
+
# An array for optional fields
|
80
|
+
def self.optionals
|
81
|
+
%w[
|
82
|
+
accountidentifier
|
83
|
+
description
|
84
|
+
disabled
|
85
|
+
email
|
86
|
+
filter
|
87
|
+
billingaccountid
|
88
|
+
streamkind
|
89
|
+
targetid
|
90
|
+
name
|
91
|
+
allowaggregation
|
92
|
+
]
|
93
|
+
end
|
94
|
+
|
95
|
+
# An array for nullable fields
|
96
|
+
def self.nullables
|
97
|
+
[]
|
98
|
+
end
|
99
|
+
|
100
|
+
def initialize(accountidentifier = SKIP,
|
101
|
+
description = SKIP,
|
102
|
+
disabled = SKIP,
|
103
|
+
email = SKIP,
|
104
|
+
filter = SKIP,
|
105
|
+
billingaccountid = SKIP,
|
106
|
+
streamkind = SKIP,
|
107
|
+
targetid = SKIP,
|
108
|
+
name = SKIP,
|
109
|
+
allowaggregation = SKIP)
|
110
|
+
@accountidentifier = accountidentifier unless accountidentifier == SKIP
|
111
|
+
@description = description unless description == SKIP
|
112
|
+
@disabled = disabled unless disabled == SKIP
|
113
|
+
@email = email unless email == SKIP
|
114
|
+
@filter = filter unless filter == SKIP
|
115
|
+
@billingaccountid = billingaccountid unless billingaccountid == SKIP
|
116
|
+
@streamkind = streamkind unless streamkind == SKIP
|
117
|
+
@targetid = targetid unless targetid == SKIP
|
118
|
+
@name = name unless name == SKIP
|
119
|
+
@allowaggregation = allowaggregation unless allowaggregation == SKIP
|
120
|
+
end
|
121
|
+
|
122
|
+
# Creates an instance of the object from a hash.
|
123
|
+
def self.from_hash(hash)
|
124
|
+
return nil unless hash
|
125
|
+
|
126
|
+
# Extract variables from the hash.
|
127
|
+
accountidentifier = AccountIdentifier.from_hash(hash['accountidentifier']) if
|
128
|
+
hash['accountidentifier']
|
129
|
+
description = hash.key?('description') ? hash['description'] : SKIP
|
130
|
+
disabled = hash.key?('disabled') ? hash['disabled'] : SKIP
|
131
|
+
email = hash.key?('email') ? hash['email'] : SKIP
|
132
|
+
filter = hash.key?('filter') ? hash['filter'] : SKIP
|
133
|
+
billingaccountid =
|
134
|
+
hash.key?('billingaccountid') ? hash['billingaccountid'] : SKIP
|
135
|
+
streamkind = hash.key?('streamkind') ? hash['streamkind'] : SKIP
|
136
|
+
targetid = hash.key?('targetid') ? hash['targetid'] : SKIP
|
137
|
+
name = hash.key?('name') ? hash['name'] : SKIP
|
138
|
+
allowaggregation =
|
139
|
+
hash.key?('allowaggregation') ? hash['allowaggregation'] : SKIP
|
140
|
+
|
141
|
+
# Create object from extracted values.
|
142
|
+
CreateSubscriptionRequest.new(accountidentifier,
|
143
|
+
description,
|
144
|
+
disabled,
|
145
|
+
email,
|
146
|
+
filter,
|
147
|
+
billingaccountid,
|
148
|
+
streamkind,
|
149
|
+
targetid,
|
150
|
+
name,
|
151
|
+
allowaggregation)
|
152
|
+
end
|
153
|
+
end
|
154
|
+
end
|
@@ -0,0 +1,170 @@
|
|
1
|
+
# verizon
|
2
|
+
#
|
3
|
+
# This file was automatically generated by APIMATIC v2.0
|
4
|
+
# ( https://apimatic.io ).
|
5
|
+
|
6
|
+
module Verizon
|
7
|
+
# Details of the target that you want to create.
|
8
|
+
class CreateTargetRequest < BaseModel
|
9
|
+
SKIP = Object.new
|
10
|
+
private_constant :SKIP
|
11
|
+
|
12
|
+
# The ID of the authenticating billing account, in the format
|
13
|
+
# `{"billingaccountid":"1234567890-12345"}`.
|
14
|
+
# @return [AccountIdentifier]
|
15
|
+
attr_accessor :accountidentifier
|
16
|
+
|
17
|
+
# The ID of the authenticating billing account.
|
18
|
+
# @return [String]
|
19
|
+
attr_accessor :billingaccountid
|
20
|
+
|
21
|
+
# Identifies the resource kind. Targets are ts.target.
|
22
|
+
# @return [String]
|
23
|
+
attr_accessor :kind
|
24
|
+
|
25
|
+
# The endpoint for notifications or data streams. The format depends on the
|
26
|
+
# selected `addressscheme`.<br />`streamrest` requires a `host:port` value
|
27
|
+
# <br />`streamawsiot` requres a valid ARN.
|
28
|
+
# @return [String]
|
29
|
+
attr_accessor :address
|
30
|
+
|
31
|
+
# The transport format. Valid values are: <br />streamawsiot - streamed data
|
32
|
+
# to an AWS account <br />streamrest - streamed REST data to a defined
|
33
|
+
# endpoint.
|
34
|
+
# @return [String]
|
35
|
+
attr_accessor :addressscheme
|
36
|
+
|
37
|
+
# The transport format. Valid values are: <br />streamawsiot - streamed data
|
38
|
+
# to an AWS account <br />streamrest - streamed REST data to a defined
|
39
|
+
# endpoint.
|
40
|
+
# @return [CreateTargetRequestFields]
|
41
|
+
attr_accessor :fields
|
42
|
+
|
43
|
+
# Descriptive information about the target.
|
44
|
+
# @return [String]
|
45
|
+
attr_accessor :description
|
46
|
+
|
47
|
+
# Security identification string created by a POST /targets/actions/newextid
|
48
|
+
# request.
|
49
|
+
# @return [String]
|
50
|
+
attr_accessor :externalid
|
51
|
+
|
52
|
+
# Name of the target.
|
53
|
+
# @return [String]
|
54
|
+
attr_accessor :name
|
55
|
+
|
56
|
+
# AWS region value.
|
57
|
+
# @return [String]
|
58
|
+
attr_accessor :region
|
59
|
+
|
60
|
+
# OAuth 2.0 bearer token.
|
61
|
+
# @return [String]
|
62
|
+
attr_accessor :key1
|
63
|
+
|
64
|
+
# OAuth 2 token and refresh token for TS to stream events to Target.
|
65
|
+
# @return [TargetAuthentication]
|
66
|
+
attr_accessor :oauth
|
67
|
+
|
68
|
+
# A mapping from model property names to API property names.
|
69
|
+
def self.names
|
70
|
+
@_hash = {} if @_hash.nil?
|
71
|
+
@_hash['accountidentifier'] = 'accountidentifier'
|
72
|
+
@_hash['billingaccountid'] = 'billingaccountid'
|
73
|
+
@_hash['kind'] = 'kind'
|
74
|
+
@_hash['address'] = 'address'
|
75
|
+
@_hash['addressscheme'] = 'addressscheme'
|
76
|
+
@_hash['fields'] = 'fields'
|
77
|
+
@_hash['description'] = 'description'
|
78
|
+
@_hash['externalid'] = 'externalid'
|
79
|
+
@_hash['name'] = 'name'
|
80
|
+
@_hash['region'] = 'region'
|
81
|
+
@_hash['key1'] = 'key1'
|
82
|
+
@_hash['oauth'] = 'oauth'
|
83
|
+
@_hash
|
84
|
+
end
|
85
|
+
|
86
|
+
# An array for optional fields
|
87
|
+
def self.optionals
|
88
|
+
%w[
|
89
|
+
accountidentifier
|
90
|
+
billingaccountid
|
91
|
+
kind
|
92
|
+
address
|
93
|
+
addressscheme
|
94
|
+
fields
|
95
|
+
description
|
96
|
+
externalid
|
97
|
+
name
|
98
|
+
region
|
99
|
+
key1
|
100
|
+
oauth
|
101
|
+
]
|
102
|
+
end
|
103
|
+
|
104
|
+
# An array for nullable fields
|
105
|
+
def self.nullables
|
106
|
+
[]
|
107
|
+
end
|
108
|
+
|
109
|
+
def initialize(accountidentifier = SKIP,
|
110
|
+
billingaccountid = SKIP,
|
111
|
+
kind = SKIP,
|
112
|
+
address = SKIP,
|
113
|
+
addressscheme = SKIP,
|
114
|
+
fields = SKIP,
|
115
|
+
description = SKIP,
|
116
|
+
externalid = SKIP,
|
117
|
+
name = SKIP,
|
118
|
+
region = SKIP,
|
119
|
+
key1 = SKIP,
|
120
|
+
oauth = SKIP)
|
121
|
+
@accountidentifier = accountidentifier unless accountidentifier == SKIP
|
122
|
+
@billingaccountid = billingaccountid unless billingaccountid == SKIP
|
123
|
+
@kind = kind unless kind == SKIP
|
124
|
+
@address = address unless address == SKIP
|
125
|
+
@addressscheme = addressscheme unless addressscheme == SKIP
|
126
|
+
@fields = fields unless fields == SKIP
|
127
|
+
@description = description unless description == SKIP
|
128
|
+
@externalid = externalid unless externalid == SKIP
|
129
|
+
@name = name unless name == SKIP
|
130
|
+
@region = region unless region == SKIP
|
131
|
+
@key1 = key1 unless key1 == SKIP
|
132
|
+
@oauth = oauth unless oauth == SKIP
|
133
|
+
end
|
134
|
+
|
135
|
+
# Creates an instance of the object from a hash.
|
136
|
+
def self.from_hash(hash)
|
137
|
+
return nil unless hash
|
138
|
+
|
139
|
+
# Extract variables from the hash.
|
140
|
+
accountidentifier = AccountIdentifier.from_hash(hash['accountidentifier']) if
|
141
|
+
hash['accountidentifier']
|
142
|
+
billingaccountid =
|
143
|
+
hash.key?('billingaccountid') ? hash['billingaccountid'] : SKIP
|
144
|
+
kind = hash.key?('kind') ? hash['kind'] : SKIP
|
145
|
+
address = hash.key?('address') ? hash['address'] : SKIP
|
146
|
+
addressscheme = hash.key?('addressscheme') ? hash['addressscheme'] : SKIP
|
147
|
+
fields = CreateTargetRequestFields.from_hash(hash['fields']) if hash['fields']
|
148
|
+
description = hash.key?('description') ? hash['description'] : SKIP
|
149
|
+
externalid = hash.key?('externalid') ? hash['externalid'] : SKIP
|
150
|
+
name = hash.key?('name') ? hash['name'] : SKIP
|
151
|
+
region = hash.key?('region') ? hash['region'] : SKIP
|
152
|
+
key1 = hash.key?('key1') ? hash['key1'] : SKIP
|
153
|
+
oauth = TargetAuthentication.from_hash(hash['oauth']) if hash['oauth']
|
154
|
+
|
155
|
+
# Create object from extracted values.
|
156
|
+
CreateTargetRequest.new(accountidentifier,
|
157
|
+
billingaccountid,
|
158
|
+
kind,
|
159
|
+
address,
|
160
|
+
addressscheme,
|
161
|
+
fields,
|
162
|
+
description,
|
163
|
+
externalid,
|
164
|
+
name,
|
165
|
+
region,
|
166
|
+
key1,
|
167
|
+
oauth)
|
168
|
+
end
|
169
|
+
end
|
170
|
+
end
|