sdksio-verizon-apis-sdk


Namesdksio-verizon-apis-sdk JSON
Version 1.5.0 PyPI version JSON
download
home_pageNone
SummaryUse the Verizon API for connectivity management, device diagnostics, device location, edge discovery service, edge performance, software management and much more.
upload_time2024-06-05 06:43:06
maintainerNone
docs_urlNone
authorNone
requires_python>=3.7
licenseNone
keywords thingspace api sdks verizon
VCS
bugtrack_url
requirements apimatic-core apimatic-core-interfaces apimatic-requests-client-adapter python-dateutil deprecation
Travis-CI No Travis.
coveralls test coverage No coveralls.
            
# Getting Started with Verizon

## Introduction

The Verizon Edge Discovery Service API can direct your application clients to connect to the optimal service endpoints for your Multi-access Edge Computing (MEC) applications for every session. The Edge Discovery Service takes into account the current location of a device, its IP anchor location, current network traffic and other factors to determine which 5G Edge platform a device should connect to.

Verizon Terms of Service: [https://www.verizon.com/business/5g-edge-portal/legal.html](https://www.verizon.com/business/5g-edge-portal/legal.html)

## Install the Package

The package is compatible with Python versions `3 >=3.7, <= 3.11`.
Install the package from PyPi using the following pip command:

```python
pip install sdksio-verizon-apis-sdk==1.5.0
```

You can also view the package at:
https://pypi.python.org/pypi/sdksio-verizon-apis-sdk/1.5.0

## Initialize the API Client

**_Note:_** Documentation for the client can be found [here.](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/client.md)

The following parameters are configurable for the API Client:

| Parameter | Type | Description |
|  --- | --- | --- |
| `environment` | `Environment` | The API environment. <br> **Default: `Environment.PRODUCTION`** |
| `http_client_instance` | `HttpClient` | The Http Client passed from the sdk user for making requests |
| `override_http_client_configuration` | `bool` | The value which determines to override properties of the passed Http Client from the sdk user |
| `http_call_back` | `HttpCallBack` | The callback value that is invoked before and after an HTTP call is made to an endpoint |
| `timeout` | `float` | The value to use for connection timeout. <br> **Default: 60** |
| `max_retries` | `int` | The number of times to retry an endpoint call if it fails. <br> **Default: 0** |
| `backoff_factor` | `float` | A backoff factor to apply between attempts after the second try. <br> **Default: 2** |
| `retry_statuses` | `Array of int` | The http statuses on which retry is to be done. <br> **Default: [408, 413, 429, 500, 502, 503, 504, 521, 522, 524]** |
| `retry_methods` | `Array of string` | The http methods on which retry is to be done. <br> **Default: ['GET', 'PUT']** |
| `thingspace_oauth_credentials` | [`ThingspaceOauthCredentials`](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/$a/https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/oauth-2-client-credentials-grant.md) | The credential object for OAuth 2 Client Credentials Grant |
| `vz_m2m_token_credentials` | [`VZM2mTokenCredentials`](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/$a/https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/custom-header-signature.md) | The credential object for Custom Header Signature |

The API client can be initialized as follows:

```python
client = VerizonClient(
    thingspace_oauth_credentials=ThingspaceOauthCredentials(
        oauth_client_id='OAuthClientId',
        oauth_client_secret='OAuthClientSecret',
        oauth_scopes=[
            OauthScopeThingspaceOauthEnum.DISCOVERYREAD,
            OauthScopeThingspaceOauthEnum.SERVICEPROFILEREAD
        ]
    ),
    vz_m2m_token_credentials=VZM2mTokenCredentials()
)
```

API calls return an `ApiResponse` object that includes the following fields:

| Field | Description |
|  --- | --- |
| `status_code` | Status code of the HTTP response |
| `reason_phrase` | Reason phrase of the HTTP response |
| `headers` | Headers of the HTTP response as a dictionary |
| `text` | The body of the HTTP response as a string |
| `request` | HTTP request info |
| `errors` | Errors, if they exist |
| `body` | The deserialized body of the HTTP response |

## Environments

The SDK can be configured to use a different environment for making API calls. Available environments are:

### Fields

| Name | Description |
|  --- | --- |
| Production | **Default** |
| Mock server for limited availability, see quick start | - |

## Authorization

This API uses the following authentication schemes.

* [`thingspace_oauth (OAuth 2 Client Credentials Grant)`](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/$a/https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/oauth-2-client-credentials-grant.md)
* [`VZ-M2M-Token (Custom Header Signature)`](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/$a/https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/custom-header-signature.md)

## List of APIs

* [5G Edge Platforms](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/5g-edge-platforms.md)
* [Service Endpoints](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/service-endpoints.md)
* [Service Profiles](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/service-profiles.md)
* [Device Management](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/device-management.md)
* [Device Groups](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/device-groups.md)
* [Session Management](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/session-management.md)
* [Connectivity Callbacks](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/connectivity-callbacks.md)
* [Account Requests](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/account-requests.md)
* [Service Plans](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/service-plans.md)
* [Device Diagnostics](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/device-diagnostics.md)
* [Device Profile Management](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/device-profile-management.md)
* [Device Monitoring](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/device-monitoring.md)
* [E UICC Device Profile Management](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/e-uicc-device-profile-management.md)
* [Devices Locations](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/devices-locations.md)
* [Devices Location Subscriptions](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/devices-location-subscriptions.md)
* [Device Location Callbacks](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/device-location-callbacks.md)
* [Usage Trigger Management](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/usage-trigger-management.md)
* [Software Management Subscriptions V1](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/software-management-subscriptions-v1.md)
* [Software Management Licenses V1](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/software-management-licenses-v1.md)
* [Firmware V1](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/firmware-v1.md)
* [Software Management Callbacks V1](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/software-management-callbacks-v1.md)
* [Software Management Reports V1](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/software-management-reports-v1.md)
* [Software Management Subscriptions V2](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/software-management-subscriptions-v2.md)
* [Software Management Licenses V2](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/software-management-licenses-v2.md)
* [Campaigns V2](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/campaigns-v2.md)
* [Software Management Callbacks V2](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/software-management-callbacks-v2.md)
* [Software Management Reports V2](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/software-management-reports-v2.md)
* [Client Logging](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/client-logging.md)
* [Server Logging](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/server-logging.md)
* [Configuration Files](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/configuration-files.md)
* [Software Management Subscriptions V3](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/software-management-subscriptions-v3.md)
* [Software Management Licenses V3](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/software-management-licenses-v3.md)
* [Campaigns V3](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/campaigns-v3.md)
* [Software Management Reports V3](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/software-management-reports-v3.md)
* [Firmware V3](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/firmware-v3.md)
* [Account Devices](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/account-devices.md)
* [Software Management Callbacks V3](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/software-management-callbacks-v3.md)
* [SIM Securefor Io T Licenses](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/sim-securefor-io-t-licenses.md)
* [Account Subscriptions](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/account-subscriptions.md)
* [Performance Metrics](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/performance-metrics.md)
* [Diagnostics Subscriptions](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/diagnostics-subscriptions.md)
* [Diagnostics Observations](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/diagnostics-observations.md)
* [Diagnostics History](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/diagnostics-history.md)
* [Diagnostics Settings](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/diagnostics-settings.md)
* [Diagnostics Callbacks](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/diagnostics-callbacks.md)
* [Diagnostics Factory Reset](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/diagnostics-factory-reset.md)
* [Cloud Connector Subscriptions](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/cloud-connector-subscriptions.md)
* [Cloud Connector Devices](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/cloud-connector-devices.md)
* [Device Service Management](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/device-service-management.md)
* [Device Reports](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/device-reports.md)
* [Hyper Precise Location Callbacks](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/hyper-precise-location-callbacks.md)
* [Anomaly Settings](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/anomaly-settings.md)
* [Anomaly Triggers](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/anomaly-triggers.md)
* [Anomaly Triggers V2](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/anomaly-triggers-v2.md)
* [Wireless Network Performance](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/wireless-network-performance.md)
* [Fixed Wireless Qualification](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/fixed-wireless-qualification.md)
* [Managinge SIM Profiles](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/managinge-sim-profiles.md)
* [Device SMS Messaging](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/device-sms-messaging.md)
* [Device Actions](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/device-actions.md)
* [Thing Space Qualityof Service API Actions](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/thing-space-qualityof-service-api-actions.md)
* [Promotion Period Information](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/promotion-period-information.md)
* [Retrievethe Triggers](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/retrievethe-triggers.md)
* [Update Triggers](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/update-triggers.md)
* [SIM Actions](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/sim-actions.md)
* [Global Reporting](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/global-reporting.md)
* [OAuth Authorization](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/oauth-authorization.md)
* [Accounts](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/accounts.md)
* [SMS](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/sms.md)
* [Exclusions](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/exclusions.md)
* [Billing](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/billing.md)
* [Targets](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/targets.md)
* [MEC](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/mec.md)
* [V2 Triggers](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/v2-triggers.md)

## Classes Documentation

* [Utility Classes](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/utility-classes.md)
* [HttpResponse](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/http-response.md)
* [HttpRequest](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/http-request.md)


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "sdksio-verizon-apis-sdk",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": "ThingSpace, API, SDKS, Verizon",
    "author": null,
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/e5/a5/749291a0def0247cf395718a3c9e775b9c4a684c15d6bd3fa9d89c427756/sdksio_verizon_apis_sdk-1.5.0.tar.gz",
    "platform": null,
    "description": "\n# Getting Started with Verizon\n\n## Introduction\n\nThe Verizon Edge Discovery Service API can direct your application clients to connect to the optimal service endpoints for your Multi-access Edge Computing (MEC) applications for every session. The Edge Discovery Service takes into account the current location of a device, its IP anchor location, current network traffic and other factors to determine which 5G Edge platform a device should connect to.\n\nVerizon Terms of Service: [https://www.verizon.com/business/5g-edge-portal/legal.html](https://www.verizon.com/business/5g-edge-portal/legal.html)\n\n## Install the Package\n\nThe package is compatible with Python versions `3 >=3.7, <= 3.11`.\nInstall the package from PyPi using the following pip command:\n\n```python\npip install sdksio-verizon-apis-sdk==1.5.0\n```\n\nYou can also view the package at:\nhttps://pypi.python.org/pypi/sdksio-verizon-apis-sdk/1.5.0\n\n## Initialize the API Client\n\n**_Note:_** Documentation for the client can be found [here.](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/client.md)\n\nThe following parameters are configurable for the API Client:\n\n| Parameter | Type | Description |\n|  --- | --- | --- |\n| `environment` | `Environment` | The API environment. <br> **Default: `Environment.PRODUCTION`** |\n| `http_client_instance` | `HttpClient` | The Http Client passed from the sdk user for making requests |\n| `override_http_client_configuration` | `bool` | The value which determines to override properties of the passed Http Client from the sdk user |\n| `http_call_back` | `HttpCallBack` | The callback value that is invoked before and after an HTTP call is made to an endpoint |\n| `timeout` | `float` | The value to use for connection timeout. <br> **Default: 60** |\n| `max_retries` | `int` | The number of times to retry an endpoint call if it fails. <br> **Default: 0** |\n| `backoff_factor` | `float` | A backoff factor to apply between attempts after the second try. <br> **Default: 2** |\n| `retry_statuses` | `Array of int` | The http statuses on which retry is to be done. <br> **Default: [408, 413, 429, 500, 502, 503, 504, 521, 522, 524]** |\n| `retry_methods` | `Array of string` | The http methods on which retry is to be done. <br> **Default: ['GET', 'PUT']** |\n| `thingspace_oauth_credentials` | [`ThingspaceOauthCredentials`](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/$a/https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/oauth-2-client-credentials-grant.md) | The credential object for OAuth 2 Client Credentials Grant |\n| `vz_m2m_token_credentials` | [`VZM2mTokenCredentials`](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/$a/https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/custom-header-signature.md) | The credential object for Custom Header Signature |\n\nThe API client can be initialized as follows:\n\n```python\nclient = VerizonClient(\n    thingspace_oauth_credentials=ThingspaceOauthCredentials(\n        oauth_client_id='OAuthClientId',\n        oauth_client_secret='OAuthClientSecret',\n        oauth_scopes=[\n            OauthScopeThingspaceOauthEnum.DISCOVERYREAD,\n            OauthScopeThingspaceOauthEnum.SERVICEPROFILEREAD\n        ]\n    ),\n    vz_m2m_token_credentials=VZM2mTokenCredentials()\n)\n```\n\nAPI calls return an `ApiResponse` object that includes the following fields:\n\n| Field | Description |\n|  --- | --- |\n| `status_code` | Status code of the HTTP response |\n| `reason_phrase` | Reason phrase of the HTTP response |\n| `headers` | Headers of the HTTP response as a dictionary |\n| `text` | The body of the HTTP response as a string |\n| `request` | HTTP request info |\n| `errors` | Errors, if they exist |\n| `body` | The deserialized body of the HTTP response |\n\n## Environments\n\nThe SDK can be configured to use a different environment for making API calls. Available environments are:\n\n### Fields\n\n| Name | Description |\n|  --- | --- |\n| Production | **Default** |\n| Mock server for limited availability, see quick start | - |\n\n## Authorization\n\nThis API uses the following authentication schemes.\n\n* [`thingspace_oauth (OAuth 2 Client Credentials Grant)`](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/$a/https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/oauth-2-client-credentials-grant.md)\n* [`VZ-M2M-Token (Custom Header Signature)`](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/$a/https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/custom-header-signature.md)\n\n## List of APIs\n\n* [5G Edge Platforms](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/5g-edge-platforms.md)\n* [Service Endpoints](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/service-endpoints.md)\n* [Service Profiles](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/service-profiles.md)\n* [Device Management](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/device-management.md)\n* [Device Groups](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/device-groups.md)\n* [Session Management](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/session-management.md)\n* [Connectivity Callbacks](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/connectivity-callbacks.md)\n* [Account Requests](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/account-requests.md)\n* [Service Plans](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/service-plans.md)\n* [Device Diagnostics](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/device-diagnostics.md)\n* [Device Profile Management](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/device-profile-management.md)\n* [Device Monitoring](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/device-monitoring.md)\n* [E UICC Device Profile Management](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/e-uicc-device-profile-management.md)\n* [Devices Locations](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/devices-locations.md)\n* [Devices Location Subscriptions](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/devices-location-subscriptions.md)\n* [Device Location Callbacks](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/device-location-callbacks.md)\n* [Usage Trigger Management](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/usage-trigger-management.md)\n* [Software Management Subscriptions V1](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/software-management-subscriptions-v1.md)\n* [Software Management Licenses V1](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/software-management-licenses-v1.md)\n* [Firmware V1](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/firmware-v1.md)\n* [Software Management Callbacks V1](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/software-management-callbacks-v1.md)\n* [Software Management Reports V1](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/software-management-reports-v1.md)\n* [Software Management Subscriptions V2](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/software-management-subscriptions-v2.md)\n* [Software Management Licenses V2](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/software-management-licenses-v2.md)\n* [Campaigns V2](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/campaigns-v2.md)\n* [Software Management Callbacks V2](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/software-management-callbacks-v2.md)\n* [Software Management Reports V2](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/software-management-reports-v2.md)\n* [Client Logging](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/client-logging.md)\n* [Server Logging](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/server-logging.md)\n* [Configuration Files](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/configuration-files.md)\n* [Software Management Subscriptions V3](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/software-management-subscriptions-v3.md)\n* [Software Management Licenses V3](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/software-management-licenses-v3.md)\n* [Campaigns V3](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/campaigns-v3.md)\n* [Software Management Reports V3](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/software-management-reports-v3.md)\n* [Firmware V3](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/firmware-v3.md)\n* [Account Devices](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/account-devices.md)\n* [Software Management Callbacks V3](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/software-management-callbacks-v3.md)\n* [SIM Securefor Io T Licenses](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/sim-securefor-io-t-licenses.md)\n* [Account Subscriptions](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/account-subscriptions.md)\n* [Performance Metrics](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/performance-metrics.md)\n* [Diagnostics Subscriptions](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/diagnostics-subscriptions.md)\n* [Diagnostics Observations](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/diagnostics-observations.md)\n* [Diagnostics History](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/diagnostics-history.md)\n* [Diagnostics Settings](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/diagnostics-settings.md)\n* [Diagnostics Callbacks](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/diagnostics-callbacks.md)\n* [Diagnostics Factory Reset](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/diagnostics-factory-reset.md)\n* [Cloud Connector Subscriptions](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/cloud-connector-subscriptions.md)\n* [Cloud Connector Devices](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/cloud-connector-devices.md)\n* [Device Service Management](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/device-service-management.md)\n* [Device Reports](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/device-reports.md)\n* [Hyper Precise Location Callbacks](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/hyper-precise-location-callbacks.md)\n* [Anomaly Settings](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/anomaly-settings.md)\n* [Anomaly Triggers](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/anomaly-triggers.md)\n* [Anomaly Triggers V2](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/anomaly-triggers-v2.md)\n* [Wireless Network Performance](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/wireless-network-performance.md)\n* [Fixed Wireless Qualification](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/fixed-wireless-qualification.md)\n* [Managinge SIM Profiles](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/managinge-sim-profiles.md)\n* [Device SMS Messaging](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/device-sms-messaging.md)\n* [Device Actions](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/device-actions.md)\n* [Thing Space Qualityof Service API Actions](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/thing-space-qualityof-service-api-actions.md)\n* [Promotion Period Information](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/promotion-period-information.md)\n* [Retrievethe Triggers](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/retrievethe-triggers.md)\n* [Update Triggers](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/update-triggers.md)\n* [SIM Actions](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/sim-actions.md)\n* [Global Reporting](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/global-reporting.md)\n* [OAuth Authorization](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/oauth-authorization.md)\n* [Accounts](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/accounts.md)\n* [SMS](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/sms.md)\n* [Exclusions](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/exclusions.md)\n* [Billing](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/billing.md)\n* [Targets](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/targets.md)\n* [MEC](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/mec.md)\n* [V2 Triggers](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/controllers/v2-triggers.md)\n\n## Classes Documentation\n\n* [Utility Classes](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/utility-classes.md)\n* [HttpResponse](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/http-response.md)\n* [HttpRequest](https://www.github.com/sdks-io/verizon-apis-python-sdk/tree/1.5.0/doc/http-request.md)\n\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Use the Verizon API for connectivity management, device diagnostics, device location, edge discovery service, edge performance, software management and much more.",
    "version": "1.5.0",
    "project_urls": {
        "Documentation": "https://www.verizon.com/business/5g-edge-portal/api-documentation.html#/http",
        "Issues": "https://github.com/sdks-io/verizon-apis-python-sdk/issues"
    },
    "split_keywords": [
        "thingspace",
        " api",
        " sdks",
        " verizon"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7a7419904a59e8f183093ba2f4ea0950e0b09995af04e410f2390950ec8cdf30",
                "md5": "5652fd3c5a5ff3eddba3117c88747646",
                "sha256": "e537a3fbdc1dd9b337ee209e548f90f855719dae7db188aa018d2911093047b8"
            },
            "downloads": -1,
            "filename": "sdksio_verizon_apis_sdk-1.5.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "5652fd3c5a5ff3eddba3117c88747646",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 719036,
            "upload_time": "2024-06-05T06:43:04",
            "upload_time_iso_8601": "2024-06-05T06:43:04.638047Z",
            "url": "https://files.pythonhosted.org/packages/7a/74/19904a59e8f183093ba2f4ea0950e0b09995af04e410f2390950ec8cdf30/sdksio_verizon_apis_sdk-1.5.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e5a5749291a0def0247cf395718a3c9e775b9c4a684c15d6bd3fa9d89c427756",
                "md5": "4051ea10ce815c3644cd1b8da5945cfd",
                "sha256": "5e290c41e3a841c1ff1292218be1850e4ce6b89fd49bea3dccd65b8430783351"
            },
            "downloads": -1,
            "filename": "sdksio_verizon_apis_sdk-1.5.0.tar.gz",
            "has_sig": false,
            "md5_digest": "4051ea10ce815c3644cd1b8da5945cfd",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 221858,
            "upload_time": "2024-06-05T06:43:06",
            "upload_time_iso_8601": "2024-06-05T06:43:06.644936Z",
            "url": "https://files.pythonhosted.org/packages/e5/a5/749291a0def0247cf395718a3c9e775b9c4a684c15d6bd3fa9d89c427756/sdksio_verizon_apis_sdk-1.5.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-06-05 06:43:06",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "sdks-io",
    "github_project": "verizon-apis-python-sdk",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "requirements": [
        {
            "name": "apimatic-core",
            "specs": [
                [
                    "~=",
                    "0.2.0"
                ]
            ]
        },
        {
            "name": "apimatic-core-interfaces",
            "specs": [
                [
                    "~=",
                    "0.1.0"
                ]
            ]
        },
        {
            "name": "apimatic-requests-client-adapter",
            "specs": [
                [
                    "~=",
                    "0.1.0"
                ]
            ]
        },
        {
            "name": "python-dateutil",
            "specs": [
                [
                    "~=",
                    "2.8.1"
                ]
            ]
        },
        {
            "name": "deprecation",
            "specs": [
                [
                    "~=",
                    "2.1"
                ]
            ]
        }
    ],
    "tox": true,
    "lcname": "sdksio-verizon-apis-sdk"
}
        
Elapsed time: 0.29893s