huaweicloud-sdk-python-v3/examples/IoTDA/V5/AsyncCommandManagement.py

59 lines
1.8 KiB
Python

# coding: utf-8
from huaweicloudsdkcore.http.http_config import HttpConfig
from huaweicloudsdkcore.auth.credentials import BasicCredentials
from huaweicloudsdkcore.exceptions import exceptions
from huaweicloudsdkiotda.v5 import *
def createAsyncCommand(client):
try:
send_strategy = "immediately"
command_name = "reboot"
paras = {
"value": "1"
}
body = AsyncDeviceCommandRequest(paras=paras, send_strategy=send_strategy, command_name=command_name)
device_id = "dasdf"
request = CreateAsyncCommandRequest(device_id=device_id, body=body)
response = client.create_async_command(request)
print(response)
except exceptions.ClientRequestException as e:
print(e.status_code)
print(e.request_id)
print(e.error_code)
print(e.error_msg)
def showAsyncDeviceCommand(client):
try:
device_id = "dasdf"
command_id = "reboot"
request = ShowAsyncDeviceCommandRequest(device_id=device_id, command_id=command_id)
response = client.show_async_device_command(request)
print(response)
except exceptions.ClientRequestException as e:
print(e.status_code)
print(e.request_id)
print(e.error_code)
print(e.error_msg)
if __name__ == '__main__':
ak = "{your ak string}"
sk = "{your sk string}"
endpoint = "{your endpoint}"
project_id = "{your project id}"
config = HttpConfig.get_default_config()
config.ignore_ssl_verification = True
credentials = BasicCredentials(ak, sk, project_id)
iotda_client = IoTDAClient().new_builder(IoTDAClient) \
.with_http_config(config) \
.with_credentials(credentials) \
.with_endpoint(endpoint) \
.build()
createAsyncCommand(iotda_client)
showAsyncDeviceCommand(iotda_client)