All URIs are relative to /dataservice
Method | HTTP request | Description |
---|---|---|
add_cloud_credentials | POST /cloudservices/credentials | |
connect | GET /cloudservices/connect | |
delete_webex_data_centers | DELETE /webex/datacenter | |
entity_ownership_info | GET /entityownership/tree | |
get_access_tokenfor_device | GET /cloudservices/accesstoken | |
get_azure_token | POST /cloudservices/authtoken | |
get_cloud_credentials | GET /cloudservices/credentials | |
get_cloud_settings | GET /dca/cloudservices | |
get_device_code | POST /cloudservices/devicecode | |
get_o365_preferred_path_from_v_analytics | POST /cloudservices/m365/preferredpath | |
get_otp | GET /dca/cloudservices/otp | |
get_telemetry_state | GET /cloudservices/telemetry | |
getv_analytics | POST /dca/cloudservices/vanalytics | |
is_staging | GET /cloudservices/staging | |
list_entity_ownership_info | GET /entityownership/list | |
opt_in | PUT /cloudservices/telemetry/optin | |
opt_out | DELETE /cloudservices/telemetry/optout | |
set_webex_data_centers_sync_status | PUT /webex/datacenter/syncstatus | |
update_webex_data_centers | POST /webex/datacenter/sync | |
updatet_otp | PUT /dca/cloudservices/otp |
{str: (bool, date, datetime, dict, float, int, list, str, none_type)} add_cloud_credentials()
Get cloud service settings
import time
import openapi_client
from openapi_client.api import system_cloud_service_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = system_cloud_service_api.SystemCloudServiceApi(api_client)
body = "body_example" # str | (optional)
# example passing only required values which don't have defaults set
# and optional values
try:
api_response = api_instance.add_cloud_credentials(body=body)
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling SystemCloudServiceApi->add_cloud_credentials: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
body | str | [optional] |
{str: (bool, date, datetime, dict, float, int, list, str, none_type)}
No authorization required
- Content-Type: Not defined
- Accept: application/octet-stream
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
400 | Bad Request | - |
403 | Forbidden | - |
500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
{str: (bool, date, datetime, dict, float, int, list, str, none_type)} connect()
Telemetry Opt In
import time
import openapi_client
from openapi_client.api import system_cloud_service_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = system_cloud_service_api.SystemCloudServiceApi(api_client)
# example, this endpoint has no required or optional parameters
try:
api_response = api_instance.connect()
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling SystemCloudServiceApi->connect: %s\n" % e)
This endpoint does not need any parameter.
{str: (bool, date, datetime, dict, float, int, list, str, none_type)}
No authorization required
- Content-Type: Not defined
- Accept: application/octet-stream
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
400 | Bad Request | - |
403 | Forbidden | - |
500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
{str: (bool, date, datetime, dict, float, int, list, str, none_type)} delete_webex_data_centers()
Delete webex data center data in DB
import time
import openapi_client
from openapi_client.api import system_cloud_service_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = system_cloud_service_api.SystemCloudServiceApi(api_client)
# example, this endpoint has no required or optional parameters
try:
api_response = api_instance.delete_webex_data_centers()
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling SystemCloudServiceApi->delete_webex_data_centers: %s\n" % e)
This endpoint does not need any parameter.
{str: (bool, date, datetime, dict, float, int, list, str, none_type)}
No authorization required
- Content-Type: Not defined
- Accept: application/octet-stream
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
400 | Bad Request | - |
403 | Forbidden | - |
500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
{str: (bool, date, datetime, dict, float, int, list, str, none_type)} entity_ownership_info()
Entity ownership info grouped by buckets
import time
import openapi_client
from openapi_client.api import system_cloud_service_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = system_cloud_service_api.SystemCloudServiceApi(api_client)
# example, this endpoint has no required or optional parameters
try:
api_response = api_instance.entity_ownership_info()
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling SystemCloudServiceApi->entity_ownership_info: %s\n" % e)
This endpoint does not need any parameter.
{str: (bool, date, datetime, dict, float, int, list, str, none_type)}
No authorization required
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
400 | Bad Request | - |
403 | Forbidden | - |
500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
get_access_tokenfor_device()
import time
import openapi_client
from openapi_client.api import system_cloud_service_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = system_cloud_service_api.SystemCloudServiceApi(api_client)
# example, this endpoint has no required or optional parameters
try:
api_instance.get_access_tokenfor_device()
except openapi_client.ApiException as e:
print("Exception when calling SystemCloudServiceApi->get_access_tokenfor_device: %s\n" % e)
This endpoint does not need any parameter.
void (empty response body)
No authorization required
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
0 | default response | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
{str: (bool, date, datetime, dict, float, int, list, str, none_type)} get_azure_token()
Get Azure token
import time
import openapi_client
from openapi_client.api import system_cloud_service_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = system_cloud_service_api.SystemCloudServiceApi(api_client)
body = "body_example" # str | (optional)
# example passing only required values which don't have defaults set
# and optional values
try:
api_response = api_instance.get_azure_token(body=body)
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling SystemCloudServiceApi->get_azure_token: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
body | str | [optional] |
{str: (bool, date, datetime, dict, float, int, list, str, none_type)}
No authorization required
- Content-Type: Not defined
- Accept: application/octet-stream
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
400 | Bad Request | - |
403 | Forbidden | - |
500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
{str: (bool, date, datetime, dict, float, int, list, str, none_type)} get_cloud_credentials()
Get cloud service credentials
import time
import openapi_client
from openapi_client.api import system_cloud_service_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = system_cloud_service_api.SystemCloudServiceApi(api_client)
# example, this endpoint has no required or optional parameters
try:
api_response = api_instance.get_cloud_credentials()
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling SystemCloudServiceApi->get_cloud_credentials: %s\n" % e)
This endpoint does not need any parameter.
{str: (bool, date, datetime, dict, float, int, list, str, none_type)}
No authorization required
- Content-Type: Not defined
- Accept: application/octet-stream
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
400 | Bad Request | - |
403 | Forbidden | - |
500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
{str: (bool, date, datetime, dict, float, int, list, str, none_type)} get_cloud_settings()
Get cloud service settings
import time
import openapi_client
from openapi_client.api import system_cloud_service_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = system_cloud_service_api.SystemCloudServiceApi(api_client)
# example, this endpoint has no required or optional parameters
try:
api_response = api_instance.get_cloud_settings()
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling SystemCloudServiceApi->get_cloud_settings: %s\n" % e)
This endpoint does not need any parameter.
{str: (bool, date, datetime, dict, float, int, list, str, none_type)}
No authorization required
- Content-Type: Not defined
- Accept: application/octet-stream
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
400 | Bad Request | - |
403 | Forbidden | - |
500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
{str: (bool, date, datetime, dict, float, int, list, str, none_type)} get_device_code()
Get Azure device code
import time
import openapi_client
from openapi_client.api import system_cloud_service_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = system_cloud_service_api.SystemCloudServiceApi(api_client)
# example, this endpoint has no required or optional parameters
try:
api_response = api_instance.get_device_code()
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling SystemCloudServiceApi->get_device_code: %s\n" % e)
This endpoint does not need any parameter.
{str: (bool, date, datetime, dict, float, int, list, str, none_type)}
No authorization required
- Content-Type: Not defined
- Accept: application/octet-stream
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
400 | Bad Request | - |
403 | Forbidden | - |
500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
get_o365_preferred_path_from_v_analytics()
Get vAnalytics Preferred Path for Office365 over time. The data can be filtered on time and other unique parameters based upon necessity and intended usage
import time
import openapi_client
from openapi_client.api import system_cloud_service_api
from openapi_client.model.get_o365_preferred_path_from_v_analytics_request import GetO365PreferredPathFromVAnalyticsRequest
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = system_cloud_service_api.SystemCloudServiceApi(api_client)
get_o365_preferred_path_from_v_analytics_request = GetO365PreferredPathFromVAnalyticsRequest(
key=GetO365PreferredPathFromVAnalyticsRequestValue(
value_type="ARRAY",
),
) # GetO365PreferredPathFromVAnalyticsRequest | (optional)
# example passing only required values which don't have defaults set
# and optional values
try:
api_instance.get_o365_preferred_path_from_v_analytics(get_o365_preferred_path_from_v_analytics_request=get_o365_preferred_path_from_v_analytics_request)
except openapi_client.ApiException as e:
print("Exception when calling SystemCloudServiceApi->get_o365_preferred_path_from_v_analytics: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
get_o365_preferred_path_from_v_analytics_request | GetO365PreferredPathFromVAnalyticsRequest | [optional] |
void (empty response body)
No authorization required
- Content-Type: application/json
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
0 | default response | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
{str: (bool, date, datetime, dict, float, int, list, str, none_type)} get_otp()
Get cloud service OTP value
import time
import openapi_client
from openapi_client.api import system_cloud_service_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = system_cloud_service_api.SystemCloudServiceApi(api_client)
# example, this endpoint has no required or optional parameters
try:
api_response = api_instance.get_otp()
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling SystemCloudServiceApi->get_otp: %s\n" % e)
This endpoint does not need any parameter.
{str: (bool, date, datetime, dict, float, int, list, str, none_type)}
No authorization required
- Content-Type: Not defined
- Accept: application/octet-stream
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
400 | Bad Request | - |
403 | Forbidden | - |
500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
{str: (bool, date, datetime, dict, float, int, list, str, none_type)} get_telemetry_state()
Get Telemetry state
import time
import openapi_client
from openapi_client.api import system_cloud_service_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = system_cloud_service_api.SystemCloudServiceApi(api_client)
# example, this endpoint has no required or optional parameters
try:
api_response = api_instance.get_telemetry_state()
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling SystemCloudServiceApi->get_telemetry_state: %s\n" % e)
This endpoint does not need any parameter.
{str: (bool, date, datetime, dict, float, int, list, str, none_type)}
No authorization required
- Content-Type: Not defined
- Accept: application/octet-stream
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
400 | Bad Request | - |
403 | Forbidden | - |
500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
{str: (bool, date, datetime, dict, float, int, list, str, none_type)} getv_analytics()
Get session from DCS for vAnalytics
import time
import openapi_client
from openapi_client.api import system_cloud_service_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = system_cloud_service_api.SystemCloudServiceApi(api_client)
body = "body_example" # str | (optional)
# example passing only required values which don't have defaults set
# and optional values
try:
api_response = api_instance.getv_analytics(body=body)
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling SystemCloudServiceApi->getv_analytics: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
body | str | [optional] |
{str: (bool, date, datetime, dict, float, int, list, str, none_type)}
No authorization required
- Content-Type: Not defined
- Accept: application/octet-stream
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
400 | Bad Request | - |
403 | Forbidden | - |
500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
{str: (bool, date, datetime, dict, float, int, list, str, none_type)} is_staging()
Check if testbed or production
import time
import openapi_client
from openapi_client.api import system_cloud_service_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = system_cloud_service_api.SystemCloudServiceApi(api_client)
# example, this endpoint has no required or optional parameters
try:
api_response = api_instance.is_staging()
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling SystemCloudServiceApi->is_staging: %s\n" % e)
This endpoint does not need any parameter.
{str: (bool, date, datetime, dict, float, int, list, str, none_type)}
No authorization required
- Content-Type: Not defined
- Accept: application/octet-stream
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
400 | Bad Request | - |
403 | Forbidden | - |
500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
{str: (bool, date, datetime, dict, float, int, list, str, none_type)} list_entity_ownership_info()
List all entity ownership info
import time
import openapi_client
from openapi_client.api import system_cloud_service_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = system_cloud_service_api.SystemCloudServiceApi(api_client)
# example, this endpoint has no required or optional parameters
try:
api_response = api_instance.list_entity_ownership_info()
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling SystemCloudServiceApi->list_entity_ownership_info: %s\n" % e)
This endpoint does not need any parameter.
{str: (bool, date, datetime, dict, float, int, list, str, none_type)}
No authorization required
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
400 | Bad Request | - |
403 | Forbidden | - |
500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
{str: (bool, date, datetime, dict, float, int, list, str, none_type)} opt_in()
Telemetry Opt In
import time
import openapi_client
from openapi_client.api import system_cloud_service_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = system_cloud_service_api.SystemCloudServiceApi(api_client)
body = "body_example" # str | (optional)
# example passing only required values which don't have defaults set
# and optional values
try:
api_response = api_instance.opt_in(body=body)
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling SystemCloudServiceApi->opt_in: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
body | str | [optional] |
{str: (bool, date, datetime, dict, float, int, list, str, none_type)}
No authorization required
- Content-Type: Not defined
- Accept: application/octet-stream
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
400 | Bad Request | - |
403 | Forbidden | - |
500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
{str: (bool, date, datetime, dict, float, int, list, str, none_type)} opt_out()
Telemetry Opt Out
import time
import openapi_client
from openapi_client.api import system_cloud_service_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = system_cloud_service_api.SystemCloudServiceApi(api_client)
body = "body_example" # str | (optional)
# example passing only required values which don't have defaults set
# and optional values
try:
api_response = api_instance.opt_out(body=body)
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling SystemCloudServiceApi->opt_out: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
body | str | [optional] |
{str: (bool, date, datetime, dict, float, int, list, str, none_type)}
No authorization required
- Content-Type: Not defined
- Accept: application/octet-stream
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
400 | Bad Request | - |
403 | Forbidden | - |
500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
{str: (bool, date, datetime, dict, float, int, list, str, none_type)} set_webex_data_centers_sync_status()
Set webex data center sync needed to false
import time
import openapi_client
from openapi_client.api import system_cloud_service_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = system_cloud_service_api.SystemCloudServiceApi(api_client)
# example, this endpoint has no required or optional parameters
try:
api_response = api_instance.set_webex_data_centers_sync_status()
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling SystemCloudServiceApi->set_webex_data_centers_sync_status: %s\n" % e)
This endpoint does not need any parameter.
{str: (bool, date, datetime, dict, float, int, list, str, none_type)}
No authorization required
- Content-Type: Not defined
- Accept: application/octet-stream
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
400 | Bad Request | - |
403 | Forbidden | - |
500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
{str: (bool, date, datetime, dict, float, int, list, str, none_type)} update_webex_data_centers()
TEMP-Update webex data center data in DB with data from Webex API
import time
import openapi_client
from openapi_client.api import system_cloud_service_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = system_cloud_service_api.SystemCloudServiceApi(api_client)
# example, this endpoint has no required or optional parameters
try:
api_response = api_instance.update_webex_data_centers()
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling SystemCloudServiceApi->update_webex_data_centers: %s\n" % e)
This endpoint does not need any parameter.
{str: (bool, date, datetime, dict, float, int, list, str, none_type)}
No authorization required
- Content-Type: Not defined
- Accept: application/octet-stream
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
400 | Bad Request | - |
403 | Forbidden | - |
500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
updatet_otp()
Update cloud service OTP value
import time
import openapi_client
from openapi_client.api import system_cloud_service_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = system_cloud_service_api.SystemCloudServiceApi(api_client)
body = {} # {str: (bool, date, datetime, dict, float, int, list, str, none_type)} | Cloud service OTP value (optional)
# example passing only required values which don't have defaults set
# and optional values
try:
api_instance.updatet_otp(body=body)
except openapi_client.ApiException as e:
print("Exception when calling SystemCloudServiceApi->updatet_otp: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
body | {str: (bool, date, datetime, dict, float, int, list, str, none_type)} | Cloud service OTP value | [optional] |
void (empty response body)
No authorization required
- Content-Type: application/octet-stream
- Accept: Not defined
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
400 | Bad Request | - |
403 | Forbidden | - |
500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]