2549 lines
83 KiB
Python
2549 lines
83 KiB
Python
# coding: utf-8
|
||
|
||
from __future__ import absolute_import
|
||
|
||
import datetime
|
||
import re
|
||
import importlib
|
||
|
||
import six
|
||
|
||
from huaweicloudsdkcore.client import Client, ClientBuilder
|
||
from huaweicloudsdkcore.exceptions import exceptions
|
||
from huaweicloudsdkcore.utils import http_utils
|
||
from huaweicloudsdkcore.sdk_stream_request import SdkStreamRequest
|
||
|
||
|
||
class SmnAsyncClient(Client):
|
||
"""
|
||
:param configuration: .Configuration object for this client
|
||
:param pool_threads: The number of threads to use for async requests
|
||
to the API. More threads means more concurrent API requests.
|
||
"""
|
||
|
||
PRIMITIVE_TYPES = (float, bool, bytes, six.text_type) + six.integer_types
|
||
NATIVE_TYPES_MAPPING = {
|
||
'int': int,
|
||
'long': int if six.PY3 else long,
|
||
'float': float,
|
||
'str': str,
|
||
'bool': bool,
|
||
'date': datetime.date,
|
||
'datetime': datetime.datetime,
|
||
'object': object,
|
||
}
|
||
|
||
def __init__(self):
|
||
super(SmnAsyncClient, self).__init__()
|
||
self.model_package = importlib.import_module("huaweicloudsdksmn.v2.model")
|
||
self.preset_headers = {'User-Agent': 'HuaweiCloud-SDK-Python'}
|
||
|
||
@classmethod
|
||
def new_builder(cls, clazz=None):
|
||
if clazz is None:
|
||
return ClientBuilder(cls)
|
||
|
||
if clazz.__name__ != "SmnClient":
|
||
raise TypeError("client type error, support client type is SmnClient")
|
||
|
||
return ClientBuilder(clazz)
|
||
|
||
def add_subscription_async(self, request):
|
||
"""订阅
|
||
|
||
为指定Topic添加一个订阅者,如果订阅者的状态为未确认,则向订阅者发送一个确认的消息。待订阅者进行ConfirmSubscription确认后,该订阅者才能收到Topic发布的消息。单Topic默认可添加10000个订阅者,高并发场景下,可能会出现订阅者数量超过10000仍添加成功的情况,此为正常现象。接口是幂等的,如果添加已存在的订阅者,则返回成功,且status code为200,否则status code为201。
|
||
|
||
:param AddSubscriptionRequest request
|
||
:return: AddSubscriptionResponse
|
||
"""
|
||
return self.add_subscription_with_http_info(request)
|
||
|
||
def add_subscription_with_http_info(self, request):
|
||
"""订阅
|
||
|
||
为指定Topic添加一个订阅者,如果订阅者的状态为未确认,则向订阅者发送一个确认的消息。待订阅者进行ConfirmSubscription确认后,该订阅者才能收到Topic发布的消息。单Topic默认可添加10000个订阅者,高并发场景下,可能会出现订阅者数量超过10000仍添加成功的情况,此为正常现象。接口是幂等的,如果添加已存在的订阅者,则返回成功,且status code为200,否则status code为201。
|
||
|
||
:param AddSubscriptionRequest request
|
||
:return: AddSubscriptionResponse
|
||
"""
|
||
|
||
all_params = ['topic_urn', 'add_subscription_request_body']
|
||
local_var_params = {}
|
||
for attr in request.attribute_map:
|
||
if hasattr(request, attr):
|
||
local_var_params[attr] = getattr(request, attr)
|
||
|
||
collection_formats = {}
|
||
|
||
path_params = {}
|
||
if 'topic_urn' in local_var_params:
|
||
path_params['topic_urn'] = local_var_params['topic_urn']
|
||
|
||
query_params = []
|
||
|
||
header_params = {}
|
||
|
||
form_params = {}
|
||
|
||
body_params = None
|
||
if 'body' in local_var_params:
|
||
body_params = local_var_params['body']
|
||
if isinstance(request, SdkStreamRequest):
|
||
body_params = request.get_file_stream()
|
||
|
||
response_headers = []
|
||
|
||
header_params['Content-Type'] = http_utils.select_header_content_type(
|
||
['application/json;charset=UTF-8'])
|
||
|
||
auth_settings = []
|
||
|
||
return self.call_api(
|
||
resource_path='/v2/{project_id}/notifications/topics/{topic_urn}/subscriptions',
|
||
method='POST',
|
||
path_params=path_params,
|
||
query_params=query_params,
|
||
header_params=header_params,
|
||
body=body_params,
|
||
post_params=form_params,
|
||
response_type='AddSubscriptionResponse',
|
||
response_headers=response_headers,
|
||
auth_settings=auth_settings,
|
||
collection_formats=collection_formats,
|
||
request_type=request.__class__.__name__)
|
||
|
||
|
||
def batch_create_or_delete_resource_tags_async(self, request):
|
||
"""批量添加删除资源标签
|
||
|
||
为指定实例批量添加或删除标签。一个资源上最多有10个标签。 此接口为幂等接口:创建时如果请求体中存在重复key则报错。 创建时,不允许重复key,如果数据库存在就覆盖。 删除时,如果删除的标签不存在,默认处理成功,删除时不对标签字符集范围做校验。
|
||
|
||
:param BatchCreateOrDeleteResourceTagsRequest request
|
||
:return: BatchCreateOrDeleteResourceTagsResponse
|
||
"""
|
||
return self.batch_create_or_delete_resource_tags_with_http_info(request)
|
||
|
||
def batch_create_or_delete_resource_tags_with_http_info(self, request):
|
||
"""批量添加删除资源标签
|
||
|
||
为指定实例批量添加或删除标签。一个资源上最多有10个标签。 此接口为幂等接口:创建时如果请求体中存在重复key则报错。 创建时,不允许重复key,如果数据库存在就覆盖。 删除时,如果删除的标签不存在,默认处理成功,删除时不对标签字符集范围做校验。
|
||
|
||
:param BatchCreateOrDeleteResourceTagsRequest request
|
||
:return: BatchCreateOrDeleteResourceTagsResponse
|
||
"""
|
||
|
||
all_params = ['resource_type', 'resource_id', 'batch_create_or_delete_resource_tags_request_body']
|
||
local_var_params = {}
|
||
for attr in request.attribute_map:
|
||
if hasattr(request, attr):
|
||
local_var_params[attr] = getattr(request, attr)
|
||
|
||
collection_formats = {}
|
||
|
||
path_params = {}
|
||
if 'resource_type' in local_var_params:
|
||
path_params['resource_type'] = local_var_params['resource_type']
|
||
if 'resource_id' in local_var_params:
|
||
path_params['resource_id'] = local_var_params['resource_id']
|
||
|
||
query_params = []
|
||
|
||
header_params = {}
|
||
|
||
form_params = {}
|
||
|
||
body_params = None
|
||
if 'body' in local_var_params:
|
||
body_params = local_var_params['body']
|
||
if isinstance(request, SdkStreamRequest):
|
||
body_params = request.get_file_stream()
|
||
|
||
response_headers = []
|
||
|
||
header_params['Content-Type'] = http_utils.select_header_content_type(
|
||
['application/json;charset=UTF-8'])
|
||
|
||
auth_settings = []
|
||
|
||
return self.call_api(
|
||
resource_path='/v2/{project_id}/{resource_type}/{resource_id}/tags/action',
|
||
method='POST',
|
||
path_params=path_params,
|
||
query_params=query_params,
|
||
header_params=header_params,
|
||
body=body_params,
|
||
post_params=form_params,
|
||
response_type='BatchCreateOrDeleteResourceTagsResponse',
|
||
response_headers=response_headers,
|
||
auth_settings=auth_settings,
|
||
collection_formats=collection_formats,
|
||
request_type=request.__class__.__name__)
|
||
|
||
|
||
def cancel_subscription_async(self, request):
|
||
"""取消订阅
|
||
|
||
删除指定的订阅者。
|
||
|
||
:param CancelSubscriptionRequest request
|
||
:return: CancelSubscriptionResponse
|
||
"""
|
||
return self.cancel_subscription_with_http_info(request)
|
||
|
||
def cancel_subscription_with_http_info(self, request):
|
||
"""取消订阅
|
||
|
||
删除指定的订阅者。
|
||
|
||
:param CancelSubscriptionRequest request
|
||
:return: CancelSubscriptionResponse
|
||
"""
|
||
|
||
all_params = ['subscription_urn']
|
||
local_var_params = {}
|
||
for attr in request.attribute_map:
|
||
if hasattr(request, attr):
|
||
local_var_params[attr] = getattr(request, attr)
|
||
|
||
collection_formats = {}
|
||
|
||
path_params = {}
|
||
if 'subscription_urn' in local_var_params:
|
||
path_params['subscription_urn'] = local_var_params['subscription_urn']
|
||
|
||
query_params = []
|
||
|
||
header_params = {}
|
||
|
||
form_params = {}
|
||
|
||
body_params = None
|
||
if isinstance(request, SdkStreamRequest):
|
||
body_params = request.get_file_stream()
|
||
|
||
response_headers = []
|
||
|
||
header_params['Content-Type'] = http_utils.select_header_content_type(
|
||
['application/json'])
|
||
|
||
auth_settings = []
|
||
|
||
return self.call_api(
|
||
resource_path='/v2/{project_id}/notifications/subscriptions/{subscription_urn}',
|
||
method='DELETE',
|
||
path_params=path_params,
|
||
query_params=query_params,
|
||
header_params=header_params,
|
||
body=body_params,
|
||
post_params=form_params,
|
||
response_type='CancelSubscriptionResponse',
|
||
response_headers=response_headers,
|
||
auth_settings=auth_settings,
|
||
collection_formats=collection_formats,
|
||
request_type=request.__class__.__name__)
|
||
|
||
|
||
def create_message_template_async(self, request):
|
||
"""创建消息模板
|
||
|
||
创建一个模板,用户可以按照模板去发送消息,这样可以减少请求的数据量。 单用户默认可创建100个消息模板,高并发场景下,可能会出现消息模板数量超过100仍创建成功的情况,此为正常现象。
|
||
|
||
:param CreateMessageTemplateRequest request
|
||
:return: CreateMessageTemplateResponse
|
||
"""
|
||
return self.create_message_template_with_http_info(request)
|
||
|
||
def create_message_template_with_http_info(self, request):
|
||
"""创建消息模板
|
||
|
||
创建一个模板,用户可以按照模板去发送消息,这样可以减少请求的数据量。 单用户默认可创建100个消息模板,高并发场景下,可能会出现消息模板数量超过100仍创建成功的情况,此为正常现象。
|
||
|
||
:param CreateMessageTemplateRequest request
|
||
:return: CreateMessageTemplateResponse
|
||
"""
|
||
|
||
all_params = ['create_message_template_request_body']
|
||
local_var_params = {}
|
||
for attr in request.attribute_map:
|
||
if hasattr(request, attr):
|
||
local_var_params[attr] = getattr(request, attr)
|
||
|
||
collection_formats = {}
|
||
|
||
path_params = {}
|
||
|
||
query_params = []
|
||
|
||
header_params = {}
|
||
|
||
form_params = {}
|
||
|
||
body_params = None
|
||
if 'body' in local_var_params:
|
||
body_params = local_var_params['body']
|
||
if isinstance(request, SdkStreamRequest):
|
||
body_params = request.get_file_stream()
|
||
|
||
response_headers = []
|
||
|
||
header_params['Content-Type'] = http_utils.select_header_content_type(
|
||
['application/json;charset=UTF-8'])
|
||
|
||
auth_settings = []
|
||
|
||
return self.call_api(
|
||
resource_path='/v2/{project_id}/notifications/message_template',
|
||
method='POST',
|
||
path_params=path_params,
|
||
query_params=query_params,
|
||
header_params=header_params,
|
||
body=body_params,
|
||
post_params=form_params,
|
||
response_type='CreateMessageTemplateResponse',
|
||
response_headers=response_headers,
|
||
auth_settings=auth_settings,
|
||
collection_formats=collection_formats,
|
||
request_type=request.__class__.__name__)
|
||
|
||
|
||
def create_resource_tag_async(self, request):
|
||
"""添加资源标签
|
||
|
||
一个资源上最多有10个标签。此接口为幂等接口:创建时,如果创建的标签已经存在(key相同),则覆盖。
|
||
|
||
:param CreateResourceTagRequest request
|
||
:return: CreateResourceTagResponse
|
||
"""
|
||
return self.create_resource_tag_with_http_info(request)
|
||
|
||
def create_resource_tag_with_http_info(self, request):
|
||
"""添加资源标签
|
||
|
||
一个资源上最多有10个标签。此接口为幂等接口:创建时,如果创建的标签已经存在(key相同),则覆盖。
|
||
|
||
:param CreateResourceTagRequest request
|
||
:return: CreateResourceTagResponse
|
||
"""
|
||
|
||
all_params = ['resource_type', 'resource_id', 'create_resource_tag_request_body']
|
||
local_var_params = {}
|
||
for attr in request.attribute_map:
|
||
if hasattr(request, attr):
|
||
local_var_params[attr] = getattr(request, attr)
|
||
|
||
collection_formats = {}
|
||
|
||
path_params = {}
|
||
if 'resource_type' in local_var_params:
|
||
path_params['resource_type'] = local_var_params['resource_type']
|
||
if 'resource_id' in local_var_params:
|
||
path_params['resource_id'] = local_var_params['resource_id']
|
||
|
||
query_params = []
|
||
|
||
header_params = {}
|
||
|
||
form_params = {}
|
||
|
||
body_params = None
|
||
if 'body' in local_var_params:
|
||
body_params = local_var_params['body']
|
||
if isinstance(request, SdkStreamRequest):
|
||
body_params = request.get_file_stream()
|
||
|
||
response_headers = []
|
||
|
||
header_params['Content-Type'] = http_utils.select_header_content_type(
|
||
['application/json;charset=UTF-8'])
|
||
|
||
auth_settings = []
|
||
|
||
return self.call_api(
|
||
resource_path='/v2/{project_id}/{resource_type}/{resource_id}/tags',
|
||
method='POST',
|
||
path_params=path_params,
|
||
query_params=query_params,
|
||
header_params=header_params,
|
||
body=body_params,
|
||
post_params=form_params,
|
||
response_type='CreateResourceTagResponse',
|
||
response_headers=response_headers,
|
||
auth_settings=auth_settings,
|
||
collection_formats=collection_formats,
|
||
request_type=request.__class__.__name__)
|
||
|
||
|
||
def create_topic_async(self, request):
|
||
"""创建主题
|
||
|
||
创建Topic,单用户默认配额为3000。高并发场景下,可能会出现Topic数量超过3000仍创建成功的情况,此为正常现象。 接口是幂等的,接口调用返回成功时,若已存在同名的Topic,返回的status code为200,否则返回的status code为201
|
||
|
||
:param CreateTopicRequest request
|
||
:return: CreateTopicResponse
|
||
"""
|
||
return self.create_topic_with_http_info(request)
|
||
|
||
def create_topic_with_http_info(self, request):
|
||
"""创建主题
|
||
|
||
创建Topic,单用户默认配额为3000。高并发场景下,可能会出现Topic数量超过3000仍创建成功的情况,此为正常现象。 接口是幂等的,接口调用返回成功时,若已存在同名的Topic,返回的status code为200,否则返回的status code为201
|
||
|
||
:param CreateTopicRequest request
|
||
:return: CreateTopicResponse
|
||
"""
|
||
|
||
all_params = ['create_topic_request_body']
|
||
local_var_params = {}
|
||
for attr in request.attribute_map:
|
||
if hasattr(request, attr):
|
||
local_var_params[attr] = getattr(request, attr)
|
||
|
||
collection_formats = {}
|
||
|
||
path_params = {}
|
||
|
||
query_params = []
|
||
|
||
header_params = {}
|
||
|
||
form_params = {}
|
||
|
||
body_params = None
|
||
if 'body' in local_var_params:
|
||
body_params = local_var_params['body']
|
||
if isinstance(request, SdkStreamRequest):
|
||
body_params = request.get_file_stream()
|
||
|
||
response_headers = []
|
||
|
||
header_params['Content-Type'] = http_utils.select_header_content_type(
|
||
['application/json;charset=UTF-8'])
|
||
|
||
auth_settings = []
|
||
|
||
return self.call_api(
|
||
resource_path='/v2/{project_id}/notifications/topics',
|
||
method='POST',
|
||
path_params=path_params,
|
||
query_params=query_params,
|
||
header_params=header_params,
|
||
body=body_params,
|
||
post_params=form_params,
|
||
response_type='CreateTopicResponse',
|
||
response_headers=response_headers,
|
||
auth_settings=auth_settings,
|
||
collection_formats=collection_formats,
|
||
request_type=request.__class__.__name__)
|
||
|
||
|
||
def delete_message_template_async(self, request):
|
||
"""删除消息模板
|
||
|
||
删除消息模板。删除模板之前的消息请求都可以使用该模板发送,删除之后无法再使用该模板发送消息。
|
||
|
||
:param DeleteMessageTemplateRequest request
|
||
:return: DeleteMessageTemplateResponse
|
||
"""
|
||
return self.delete_message_template_with_http_info(request)
|
||
|
||
def delete_message_template_with_http_info(self, request):
|
||
"""删除消息模板
|
||
|
||
删除消息模板。删除模板之前的消息请求都可以使用该模板发送,删除之后无法再使用该模板发送消息。
|
||
|
||
:param DeleteMessageTemplateRequest request
|
||
:return: DeleteMessageTemplateResponse
|
||
"""
|
||
|
||
all_params = ['message_template_id']
|
||
local_var_params = {}
|
||
for attr in request.attribute_map:
|
||
if hasattr(request, attr):
|
||
local_var_params[attr] = getattr(request, attr)
|
||
|
||
collection_formats = {}
|
||
|
||
path_params = {}
|
||
if 'message_template_id' in local_var_params:
|
||
path_params['message_template_id'] = local_var_params['message_template_id']
|
||
|
||
query_params = []
|
||
|
||
header_params = {}
|
||
|
||
form_params = {}
|
||
|
||
body_params = None
|
||
if isinstance(request, SdkStreamRequest):
|
||
body_params = request.get_file_stream()
|
||
|
||
response_headers = []
|
||
|
||
header_params['Content-Type'] = http_utils.select_header_content_type(
|
||
['application/json'])
|
||
|
||
auth_settings = []
|
||
|
||
return self.call_api(
|
||
resource_path='/v2/{project_id}/notifications/message_template/{message_template_id}',
|
||
method='DELETE',
|
||
path_params=path_params,
|
||
query_params=query_params,
|
||
header_params=header_params,
|
||
body=body_params,
|
||
post_params=form_params,
|
||
response_type='DeleteMessageTemplateResponse',
|
||
response_headers=response_headers,
|
||
auth_settings=auth_settings,
|
||
collection_formats=collection_formats,
|
||
request_type=request.__class__.__name__)
|
||
|
||
|
||
def delete_resource_tag_async(self, request):
|
||
"""删除资源标签
|
||
|
||
幂等接口:删除时,不对标签做校验。删除的key不存在报404,key不能为空或者空字符串。
|
||
|
||
:param DeleteResourceTagRequest request
|
||
:return: DeleteResourceTagResponse
|
||
"""
|
||
return self.delete_resource_tag_with_http_info(request)
|
||
|
||
def delete_resource_tag_with_http_info(self, request):
|
||
"""删除资源标签
|
||
|
||
幂等接口:删除时,不对标签做校验。删除的key不存在报404,key不能为空或者空字符串。
|
||
|
||
:param DeleteResourceTagRequest request
|
||
:return: DeleteResourceTagResponse
|
||
"""
|
||
|
||
all_params = ['resource_type', 'resource_id', 'key']
|
||
local_var_params = {}
|
||
for attr in request.attribute_map:
|
||
if hasattr(request, attr):
|
||
local_var_params[attr] = getattr(request, attr)
|
||
|
||
collection_formats = {}
|
||
|
||
path_params = {}
|
||
if 'resource_type' in local_var_params:
|
||
path_params['resource_type'] = local_var_params['resource_type']
|
||
if 'resource_id' in local_var_params:
|
||
path_params['resource_id'] = local_var_params['resource_id']
|
||
if 'key' in local_var_params:
|
||
path_params['key'] = local_var_params['key']
|
||
|
||
query_params = []
|
||
|
||
header_params = {}
|
||
|
||
form_params = {}
|
||
|
||
body_params = None
|
||
if isinstance(request, SdkStreamRequest):
|
||
body_params = request.get_file_stream()
|
||
|
||
response_headers = []
|
||
|
||
header_params['Content-Type'] = http_utils.select_header_content_type(
|
||
['application/json'])
|
||
|
||
auth_settings = []
|
||
|
||
return self.call_api(
|
||
resource_path='/v2/{project_id}/{resource_type}/{resource_id}/tags/{key}',
|
||
method='DELETE',
|
||
path_params=path_params,
|
||
query_params=query_params,
|
||
header_params=header_params,
|
||
body=body_params,
|
||
post_params=form_params,
|
||
response_type='DeleteResourceTagResponse',
|
||
response_headers=response_headers,
|
||
auth_settings=auth_settings,
|
||
collection_formats=collection_formats,
|
||
request_type=request.__class__.__name__)
|
||
|
||
|
||
def delete_topic_async(self, request):
|
||
"""删除主题
|
||
|
||
删除主题。
|
||
|
||
:param DeleteTopicRequest request
|
||
:return: DeleteTopicResponse
|
||
"""
|
||
return self.delete_topic_with_http_info(request)
|
||
|
||
def delete_topic_with_http_info(self, request):
|
||
"""删除主题
|
||
|
||
删除主题。
|
||
|
||
:param DeleteTopicRequest request
|
||
:return: DeleteTopicResponse
|
||
"""
|
||
|
||
all_params = ['topic_urn']
|
||
local_var_params = {}
|
||
for attr in request.attribute_map:
|
||
if hasattr(request, attr):
|
||
local_var_params[attr] = getattr(request, attr)
|
||
|
||
collection_formats = {}
|
||
|
||
path_params = {}
|
||
if 'topic_urn' in local_var_params:
|
||
path_params['topic_urn'] = local_var_params['topic_urn']
|
||
|
||
query_params = []
|
||
|
||
header_params = {}
|
||
|
||
form_params = {}
|
||
|
||
body_params = None
|
||
if isinstance(request, SdkStreamRequest):
|
||
body_params = request.get_file_stream()
|
||
|
||
response_headers = []
|
||
|
||
header_params['Content-Type'] = http_utils.select_header_content_type(
|
||
['application/json'])
|
||
|
||
auth_settings = []
|
||
|
||
return self.call_api(
|
||
resource_path='/v2/{project_id}/notifications/topics/{topic_urn}',
|
||
method='DELETE',
|
||
path_params=path_params,
|
||
query_params=query_params,
|
||
header_params=header_params,
|
||
body=body_params,
|
||
post_params=form_params,
|
||
response_type='DeleteTopicResponse',
|
||
response_headers=response_headers,
|
||
auth_settings=auth_settings,
|
||
collection_formats=collection_formats,
|
||
request_type=request.__class__.__name__)
|
||
|
||
|
||
def delete_topic_attribute_by_name_async(self, request):
|
||
"""删除指定名称的主题策略
|
||
|
||
删除指定名称的主题策略。
|
||
|
||
:param DeleteTopicAttributeByNameRequest request
|
||
:return: DeleteTopicAttributeByNameResponse
|
||
"""
|
||
return self.delete_topic_attribute_by_name_with_http_info(request)
|
||
|
||
def delete_topic_attribute_by_name_with_http_info(self, request):
|
||
"""删除指定名称的主题策略
|
||
|
||
删除指定名称的主题策略。
|
||
|
||
:param DeleteTopicAttributeByNameRequest request
|
||
:return: DeleteTopicAttributeByNameResponse
|
||
"""
|
||
|
||
all_params = ['topic_urn', 'name']
|
||
local_var_params = {}
|
||
for attr in request.attribute_map:
|
||
if hasattr(request, attr):
|
||
local_var_params[attr] = getattr(request, attr)
|
||
|
||
collection_formats = {}
|
||
|
||
path_params = {}
|
||
if 'topic_urn' in local_var_params:
|
||
path_params['topic_urn'] = local_var_params['topic_urn']
|
||
if 'name' in local_var_params:
|
||
path_params['name'] = local_var_params['name']
|
||
|
||
query_params = []
|
||
|
||
header_params = {}
|
||
|
||
form_params = {}
|
||
|
||
body_params = None
|
||
if isinstance(request, SdkStreamRequest):
|
||
body_params = request.get_file_stream()
|
||
|
||
response_headers = []
|
||
|
||
header_params['Content-Type'] = http_utils.select_header_content_type(
|
||
['application/json'])
|
||
|
||
auth_settings = []
|
||
|
||
return self.call_api(
|
||
resource_path='/v2/{project_id}/notifications/topics/{topic_urn}/attributes/{name}',
|
||
method='DELETE',
|
||
path_params=path_params,
|
||
query_params=query_params,
|
||
header_params=header_params,
|
||
body=body_params,
|
||
post_params=form_params,
|
||
response_type='DeleteTopicAttributeByNameResponse',
|
||
response_headers=response_headers,
|
||
auth_settings=auth_settings,
|
||
collection_formats=collection_formats,
|
||
request_type=request.__class__.__name__)
|
||
|
||
|
||
def delete_topic_attributes_async(self, request):
|
||
"""删除所有主题策略
|
||
|
||
删除所有主题策略。
|
||
|
||
:param DeleteTopicAttributesRequest request
|
||
:return: DeleteTopicAttributesResponse
|
||
"""
|
||
return self.delete_topic_attributes_with_http_info(request)
|
||
|
||
def delete_topic_attributes_with_http_info(self, request):
|
||
"""删除所有主题策略
|
||
|
||
删除所有主题策略。
|
||
|
||
:param DeleteTopicAttributesRequest request
|
||
:return: DeleteTopicAttributesResponse
|
||
"""
|
||
|
||
all_params = ['topic_urn']
|
||
local_var_params = {}
|
||
for attr in request.attribute_map:
|
||
if hasattr(request, attr):
|
||
local_var_params[attr] = getattr(request, attr)
|
||
|
||
collection_formats = {}
|
||
|
||
path_params = {}
|
||
if 'topic_urn' in local_var_params:
|
||
path_params['topic_urn'] = local_var_params['topic_urn']
|
||
|
||
query_params = []
|
||
|
||
header_params = {}
|
||
|
||
form_params = {}
|
||
|
||
body_params = None
|
||
if isinstance(request, SdkStreamRequest):
|
||
body_params = request.get_file_stream()
|
||
|
||
response_headers = []
|
||
|
||
header_params['Content-Type'] = http_utils.select_header_content_type(
|
||
['application/json'])
|
||
|
||
auth_settings = []
|
||
|
||
return self.call_api(
|
||
resource_path='/v2/{project_id}/notifications/topics/{topic_urn}/attributes',
|
||
method='DELETE',
|
||
path_params=path_params,
|
||
query_params=query_params,
|
||
header_params=header_params,
|
||
body=body_params,
|
||
post_params=form_params,
|
||
response_type='DeleteTopicAttributesResponse',
|
||
response_headers=response_headers,
|
||
auth_settings=auth_settings,
|
||
collection_formats=collection_formats,
|
||
request_type=request.__class__.__name__)
|
||
|
||
|
||
def list_message_template_details_async(self, request):
|
||
"""查询消息模板详情
|
||
|
||
查询模板详情,包括模板内容。
|
||
|
||
:param ListMessageTemplateDetailsRequest request
|
||
:return: ListMessageTemplateDetailsResponse
|
||
"""
|
||
return self.list_message_template_details_with_http_info(request)
|
||
|
||
def list_message_template_details_with_http_info(self, request):
|
||
"""查询消息模板详情
|
||
|
||
查询模板详情,包括模板内容。
|
||
|
||
:param ListMessageTemplateDetailsRequest request
|
||
:return: ListMessageTemplateDetailsResponse
|
||
"""
|
||
|
||
all_params = ['message_template_id']
|
||
local_var_params = {}
|
||
for attr in request.attribute_map:
|
||
if hasattr(request, attr):
|
||
local_var_params[attr] = getattr(request, attr)
|
||
|
||
collection_formats = {}
|
||
|
||
path_params = {}
|
||
if 'message_template_id' in local_var_params:
|
||
path_params['message_template_id'] = local_var_params['message_template_id']
|
||
|
||
query_params = []
|
||
|
||
header_params = {}
|
||
|
||
form_params = {}
|
||
|
||
body_params = None
|
||
if isinstance(request, SdkStreamRequest):
|
||
body_params = request.get_file_stream()
|
||
|
||
response_headers = []
|
||
|
||
header_params['Content-Type'] = http_utils.select_header_content_type(
|
||
['application/json'])
|
||
|
||
auth_settings = []
|
||
|
||
return self.call_api(
|
||
resource_path='/v2/{project_id}/notifications/message_template/{message_template_id}',
|
||
method='GET',
|
||
path_params=path_params,
|
||
query_params=query_params,
|
||
header_params=header_params,
|
||
body=body_params,
|
||
post_params=form_params,
|
||
response_type='ListMessageTemplateDetailsResponse',
|
||
response_headers=response_headers,
|
||
auth_settings=auth_settings,
|
||
collection_formats=collection_formats,
|
||
request_type=request.__class__.__name__)
|
||
|
||
|
||
def list_message_templates_async(self, request):
|
||
"""查询消息模板列表
|
||
|
||
分页查询模板列表,模板列表按照创建时间进行升序排列。分页查询可以指定offset以及limit。如果不存在模板,则返回空列表。额外的查询参数分别有message_template_name和protocol。
|
||
|
||
:param ListMessageTemplatesRequest request
|
||
:return: ListMessageTemplatesResponse
|
||
"""
|
||
return self.list_message_templates_with_http_info(request)
|
||
|
||
def list_message_templates_with_http_info(self, request):
|
||
"""查询消息模板列表
|
||
|
||
分页查询模板列表,模板列表按照创建时间进行升序排列。分页查询可以指定offset以及limit。如果不存在模板,则返回空列表。额外的查询参数分别有message_template_name和protocol。
|
||
|
||
:param ListMessageTemplatesRequest request
|
||
:return: ListMessageTemplatesResponse
|
||
"""
|
||
|
||
all_params = ['offset', 'limit', 'message_template_name', 'protocol']
|
||
local_var_params = {}
|
||
for attr in request.attribute_map:
|
||
if hasattr(request, attr):
|
||
local_var_params[attr] = getattr(request, attr)
|
||
|
||
collection_formats = {}
|
||
|
||
path_params = {}
|
||
|
||
query_params = []
|
||
if 'offset' in local_var_params:
|
||
query_params.append(('offset', local_var_params['offset']))
|
||
if 'limit' in local_var_params:
|
||
query_params.append(('limit', local_var_params['limit']))
|
||
if 'message_template_name' in local_var_params:
|
||
query_params.append(('message_template_name', local_var_params['message_template_name']))
|
||
if 'protocol' in local_var_params:
|
||
query_params.append(('protocol', local_var_params['protocol']))
|
||
|
||
header_params = {}
|
||
|
||
form_params = {}
|
||
|
||
body_params = None
|
||
if isinstance(request, SdkStreamRequest):
|
||
body_params = request.get_file_stream()
|
||
|
||
response_headers = []
|
||
|
||
header_params['Content-Type'] = http_utils.select_header_content_type(
|
||
['application/json'])
|
||
|
||
auth_settings = []
|
||
|
||
return self.call_api(
|
||
resource_path='/v2/{project_id}/notifications/message_template',
|
||
method='GET',
|
||
path_params=path_params,
|
||
query_params=query_params,
|
||
header_params=header_params,
|
||
body=body_params,
|
||
post_params=form_params,
|
||
response_type='ListMessageTemplatesResponse',
|
||
response_headers=response_headers,
|
||
auth_settings=auth_settings,
|
||
collection_formats=collection_formats,
|
||
request_type=request.__class__.__name__)
|
||
|
||
|
||
def list_project_tags_async(self, request):
|
||
"""查询项目标签
|
||
|
||
查询租户在指定Region和实例类型的所有标签集合。
|
||
|
||
:param ListProjectTagsRequest request
|
||
:return: ListProjectTagsResponse
|
||
"""
|
||
return self.list_project_tags_with_http_info(request)
|
||
|
||
def list_project_tags_with_http_info(self, request):
|
||
"""查询项目标签
|
||
|
||
查询租户在指定Region和实例类型的所有标签集合。
|
||
|
||
:param ListProjectTagsRequest request
|
||
:return: ListProjectTagsResponse
|
||
"""
|
||
|
||
all_params = ['resource_type']
|
||
local_var_params = {}
|
||
for attr in request.attribute_map:
|
||
if hasattr(request, attr):
|
||
local_var_params[attr] = getattr(request, attr)
|
||
|
||
collection_formats = {}
|
||
|
||
path_params = {}
|
||
if 'resource_type' in local_var_params:
|
||
path_params['resource_type'] = local_var_params['resource_type']
|
||
|
||
query_params = []
|
||
|
||
header_params = {}
|
||
|
||
form_params = {}
|
||
|
||
body_params = None
|
||
if isinstance(request, SdkStreamRequest):
|
||
body_params = request.get_file_stream()
|
||
|
||
response_headers = []
|
||
|
||
header_params['Content-Type'] = http_utils.select_header_content_type(
|
||
['application/json'])
|
||
|
||
auth_settings = []
|
||
|
||
return self.call_api(
|
||
resource_path='/v2/{project_id}/{resource_type}/tags',
|
||
method='GET',
|
||
path_params=path_params,
|
||
query_params=query_params,
|
||
header_params=header_params,
|
||
body=body_params,
|
||
post_params=form_params,
|
||
response_type='ListProjectTagsResponse',
|
||
response_headers=response_headers,
|
||
auth_settings=auth_settings,
|
||
collection_formats=collection_formats,
|
||
request_type=request.__class__.__name__)
|
||
|
||
|
||
def list_resource_instances_async(self, request):
|
||
"""查询资源实例
|
||
|
||
使用标签过滤实例。
|
||
|
||
:param ListResourceInstancesRequest request
|
||
:return: ListResourceInstancesResponse
|
||
"""
|
||
return self.list_resource_instances_with_http_info(request)
|
||
|
||
def list_resource_instances_with_http_info(self, request):
|
||
"""查询资源实例
|
||
|
||
使用标签过滤实例。
|
||
|
||
:param ListResourceInstancesRequest request
|
||
:return: ListResourceInstancesResponse
|
||
"""
|
||
|
||
all_params = ['resource_type', 'list_instances_request_body']
|
||
local_var_params = {}
|
||
for attr in request.attribute_map:
|
||
if hasattr(request, attr):
|
||
local_var_params[attr] = getattr(request, attr)
|
||
|
||
collection_formats = {}
|
||
|
||
path_params = {}
|
||
if 'resource_type' in local_var_params:
|
||
path_params['resource_type'] = local_var_params['resource_type']
|
||
|
||
query_params = []
|
||
|
||
header_params = {}
|
||
|
||
form_params = {}
|
||
|
||
body_params = None
|
||
if 'body' in local_var_params:
|
||
body_params = local_var_params['body']
|
||
if isinstance(request, SdkStreamRequest):
|
||
body_params = request.get_file_stream()
|
||
|
||
response_headers = []
|
||
|
||
header_params['Content-Type'] = http_utils.select_header_content_type(
|
||
['application/json;charset=UTF-8'])
|
||
|
||
auth_settings = []
|
||
|
||
return self.call_api(
|
||
resource_path='/v2/{project_id}/{resource_type}/resource_instances/action',
|
||
method='POST',
|
||
path_params=path_params,
|
||
query_params=query_params,
|
||
header_params=header_params,
|
||
body=body_params,
|
||
post_params=form_params,
|
||
response_type='ListResourceInstancesResponse',
|
||
response_headers=response_headers,
|
||
auth_settings=auth_settings,
|
||
collection_formats=collection_formats,
|
||
request_type=request.__class__.__name__)
|
||
|
||
|
||
def list_resource_tags_async(self, request):
|
||
"""查询资源标签
|
||
|
||
查询指定实例的标签信息。
|
||
|
||
:param ListResourceTagsRequest request
|
||
:return: ListResourceTagsResponse
|
||
"""
|
||
return self.list_resource_tags_with_http_info(request)
|
||
|
||
def list_resource_tags_with_http_info(self, request):
|
||
"""查询资源标签
|
||
|
||
查询指定实例的标签信息。
|
||
|
||
:param ListResourceTagsRequest request
|
||
:return: ListResourceTagsResponse
|
||
"""
|
||
|
||
all_params = ['resource_type', 'resource_id']
|
||
local_var_params = {}
|
||
for attr in request.attribute_map:
|
||
if hasattr(request, attr):
|
||
local_var_params[attr] = getattr(request, attr)
|
||
|
||
collection_formats = {}
|
||
|
||
path_params = {}
|
||
if 'resource_type' in local_var_params:
|
||
path_params['resource_type'] = local_var_params['resource_type']
|
||
if 'resource_id' in local_var_params:
|
||
path_params['resource_id'] = local_var_params['resource_id']
|
||
|
||
query_params = []
|
||
|
||
header_params = {}
|
||
|
||
form_params = {}
|
||
|
||
body_params = None
|
||
if isinstance(request, SdkStreamRequest):
|
||
body_params = request.get_file_stream()
|
||
|
||
response_headers = []
|
||
|
||
header_params['Content-Type'] = http_utils.select_header_content_type(
|
||
['application/json'])
|
||
|
||
auth_settings = []
|
||
|
||
return self.call_api(
|
||
resource_path='/v2/{project_id}/{resource_type}/{resource_id}/tags',
|
||
method='GET',
|
||
path_params=path_params,
|
||
query_params=query_params,
|
||
header_params=header_params,
|
||
body=body_params,
|
||
post_params=form_params,
|
||
response_type='ListResourceTagsResponse',
|
||
response_headers=response_headers,
|
||
auth_settings=auth_settings,
|
||
collection_formats=collection_formats,
|
||
request_type=request.__class__.__name__)
|
||
|
||
|
||
def list_subscriptions_async(self, request):
|
||
"""查询订阅者列表
|
||
|
||
分页返回请求者的所有的订阅列表,订阅列表按照订阅创建时间进行升序排列。分页查询可以指定offset以及limit。如果订阅者不存在,返回空列表。
|
||
|
||
:param ListSubscriptionsRequest request
|
||
:return: ListSubscriptionsResponse
|
||
"""
|
||
return self.list_subscriptions_with_http_info(request)
|
||
|
||
def list_subscriptions_with_http_info(self, request):
|
||
"""查询订阅者列表
|
||
|
||
分页返回请求者的所有的订阅列表,订阅列表按照订阅创建时间进行升序排列。分页查询可以指定offset以及limit。如果订阅者不存在,返回空列表。
|
||
|
||
:param ListSubscriptionsRequest request
|
||
:return: ListSubscriptionsResponse
|
||
"""
|
||
|
||
all_params = ['offset', 'limit']
|
||
local_var_params = {}
|
||
for attr in request.attribute_map:
|
||
if hasattr(request, attr):
|
||
local_var_params[attr] = getattr(request, attr)
|
||
|
||
collection_formats = {}
|
||
|
||
path_params = {}
|
||
|
||
query_params = []
|
||
if 'offset' in local_var_params:
|
||
query_params.append(('offset', local_var_params['offset']))
|
||
if 'limit' in local_var_params:
|
||
query_params.append(('limit', local_var_params['limit']))
|
||
|
||
header_params = {}
|
||
|
||
form_params = {}
|
||
|
||
body_params = None
|
||
if isinstance(request, SdkStreamRequest):
|
||
body_params = request.get_file_stream()
|
||
|
||
response_headers = []
|
||
|
||
header_params['Content-Type'] = http_utils.select_header_content_type(
|
||
['application/json'])
|
||
|
||
auth_settings = []
|
||
|
||
return self.call_api(
|
||
resource_path='/v2/{project_id}/notifications/subscriptions',
|
||
method='GET',
|
||
path_params=path_params,
|
||
query_params=query_params,
|
||
header_params=header_params,
|
||
body=body_params,
|
||
post_params=form_params,
|
||
response_type='ListSubscriptionsResponse',
|
||
response_headers=response_headers,
|
||
auth_settings=auth_settings,
|
||
collection_formats=collection_formats,
|
||
request_type=request.__class__.__name__)
|
||
|
||
|
||
def list_subscriptions_by_topic_async(self, request):
|
||
"""查询指定Topic的订阅者列表
|
||
|
||
分页获取特定Topic的订阅列表,订阅列表按照订阅创建时间进行升序排列。分页查询可以指定offset以及limit。如果指定Topic不存在订阅者,返回空列表。
|
||
|
||
:param ListSubscriptionsByTopicRequest request
|
||
:return: ListSubscriptionsByTopicResponse
|
||
"""
|
||
return self.list_subscriptions_by_topic_with_http_info(request)
|
||
|
||
def list_subscriptions_by_topic_with_http_info(self, request):
|
||
"""查询指定Topic的订阅者列表
|
||
|
||
分页获取特定Topic的订阅列表,订阅列表按照订阅创建时间进行升序排列。分页查询可以指定offset以及limit。如果指定Topic不存在订阅者,返回空列表。
|
||
|
||
:param ListSubscriptionsByTopicRequest request
|
||
:return: ListSubscriptionsByTopicResponse
|
||
"""
|
||
|
||
all_params = ['topic_urn', 'offset', 'limit']
|
||
local_var_params = {}
|
||
for attr in request.attribute_map:
|
||
if hasattr(request, attr):
|
||
local_var_params[attr] = getattr(request, attr)
|
||
|
||
collection_formats = {}
|
||
|
||
path_params = {}
|
||
if 'topic_urn' in local_var_params:
|
||
path_params['topic_urn'] = local_var_params['topic_urn']
|
||
|
||
query_params = []
|
||
if 'offset' in local_var_params:
|
||
query_params.append(('offset', local_var_params['offset']))
|
||
if 'limit' in local_var_params:
|
||
query_params.append(('limit', local_var_params['limit']))
|
||
|
||
header_params = {}
|
||
|
||
form_params = {}
|
||
|
||
body_params = None
|
||
if isinstance(request, SdkStreamRequest):
|
||
body_params = request.get_file_stream()
|
||
|
||
response_headers = []
|
||
|
||
header_params['Content-Type'] = http_utils.select_header_content_type(
|
||
['application/json'])
|
||
|
||
auth_settings = []
|
||
|
||
return self.call_api(
|
||
resource_path='/v2/{project_id}/notifications/topics/{topic_urn}/subscriptions',
|
||
method='GET',
|
||
path_params=path_params,
|
||
query_params=query_params,
|
||
header_params=header_params,
|
||
body=body_params,
|
||
post_params=form_params,
|
||
response_type='ListSubscriptionsByTopicResponse',
|
||
response_headers=response_headers,
|
||
auth_settings=auth_settings,
|
||
collection_formats=collection_formats,
|
||
request_type=request.__class__.__name__)
|
||
|
||
|
||
def list_topic_attributes_async(self, request):
|
||
"""查询主题策略
|
||
|
||
查询主题的策略信息。
|
||
|
||
:param ListTopicAttributesRequest request
|
||
:return: ListTopicAttributesResponse
|
||
"""
|
||
return self.list_topic_attributes_with_http_info(request)
|
||
|
||
def list_topic_attributes_with_http_info(self, request):
|
||
"""查询主题策略
|
||
|
||
查询主题的策略信息。
|
||
|
||
:param ListTopicAttributesRequest request
|
||
:return: ListTopicAttributesResponse
|
||
"""
|
||
|
||
all_params = ['topic_urn', 'name']
|
||
local_var_params = {}
|
||
for attr in request.attribute_map:
|
||
if hasattr(request, attr):
|
||
local_var_params[attr] = getattr(request, attr)
|
||
|
||
collection_formats = {}
|
||
|
||
path_params = {}
|
||
if 'topic_urn' in local_var_params:
|
||
path_params['topic_urn'] = local_var_params['topic_urn']
|
||
|
||
query_params = []
|
||
if 'name' in local_var_params:
|
||
query_params.append(('name', local_var_params['name']))
|
||
|
||
header_params = {}
|
||
|
||
form_params = {}
|
||
|
||
body_params = None
|
||
if isinstance(request, SdkStreamRequest):
|
||
body_params = request.get_file_stream()
|
||
|
||
response_headers = []
|
||
|
||
header_params['Content-Type'] = http_utils.select_header_content_type(
|
||
['application/json'])
|
||
|
||
auth_settings = []
|
||
|
||
return self.call_api(
|
||
resource_path='/v2/{project_id}/notifications/topics/{topic_urn}/attributes',
|
||
method='GET',
|
||
path_params=path_params,
|
||
query_params=query_params,
|
||
header_params=header_params,
|
||
body=body_params,
|
||
post_params=form_params,
|
||
response_type='ListTopicAttributesResponse',
|
||
response_headers=response_headers,
|
||
auth_settings=auth_settings,
|
||
collection_formats=collection_formats,
|
||
request_type=request.__class__.__name__)
|
||
|
||
|
||
def list_topic_details_async(self, request):
|
||
"""查询主题详情
|
||
|
||
查询Topic的详细信息。
|
||
|
||
:param ListTopicDetailsRequest request
|
||
:return: ListTopicDetailsResponse
|
||
"""
|
||
return self.list_topic_details_with_http_info(request)
|
||
|
||
def list_topic_details_with_http_info(self, request):
|
||
"""查询主题详情
|
||
|
||
查询Topic的详细信息。
|
||
|
||
:param ListTopicDetailsRequest request
|
||
:return: ListTopicDetailsResponse
|
||
"""
|
||
|
||
all_params = ['topic_urn']
|
||
local_var_params = {}
|
||
for attr in request.attribute_map:
|
||
if hasattr(request, attr):
|
||
local_var_params[attr] = getattr(request, attr)
|
||
|
||
collection_formats = {}
|
||
|
||
path_params = {}
|
||
if 'topic_urn' in local_var_params:
|
||
path_params['topic_urn'] = local_var_params['topic_urn']
|
||
|
||
query_params = []
|
||
|
||
header_params = {}
|
||
|
||
form_params = {}
|
||
|
||
body_params = None
|
||
if isinstance(request, SdkStreamRequest):
|
||
body_params = request.get_file_stream()
|
||
|
||
response_headers = []
|
||
|
||
header_params['Content-Type'] = http_utils.select_header_content_type(
|
||
['application/json'])
|
||
|
||
auth_settings = []
|
||
|
||
return self.call_api(
|
||
resource_path='/v2/{project_id}/notifications/topics/{topic_urn}',
|
||
method='GET',
|
||
path_params=path_params,
|
||
query_params=query_params,
|
||
header_params=header_params,
|
||
body=body_params,
|
||
post_params=form_params,
|
||
response_type='ListTopicDetailsResponse',
|
||
response_headers=response_headers,
|
||
auth_settings=auth_settings,
|
||
collection_formats=collection_formats,
|
||
request_type=request.__class__.__name__)
|
||
|
||
|
||
def list_topics_async(self, request):
|
||
"""查询主题列表
|
||
|
||
分页查询Topic列表,Topic列表按照Topic创建时间进行降序排列。分页查询可以指定offset以及limit。如果不存在Topic,则返回空列表。
|
||
|
||
:param ListTopicsRequest request
|
||
:return: ListTopicsResponse
|
||
"""
|
||
return self.list_topics_with_http_info(request)
|
||
|
||
def list_topics_with_http_info(self, request):
|
||
"""查询主题列表
|
||
|
||
分页查询Topic列表,Topic列表按照Topic创建时间进行降序排列。分页查询可以指定offset以及limit。如果不存在Topic,则返回空列表。
|
||
|
||
:param ListTopicsRequest request
|
||
:return: ListTopicsResponse
|
||
"""
|
||
|
||
all_params = ['offset', 'limit']
|
||
local_var_params = {}
|
||
for attr in request.attribute_map:
|
||
if hasattr(request, attr):
|
||
local_var_params[attr] = getattr(request, attr)
|
||
|
||
collection_formats = {}
|
||
|
||
path_params = {}
|
||
|
||
query_params = []
|
||
if 'offset' in local_var_params:
|
||
query_params.append(('offset', local_var_params['offset']))
|
||
if 'limit' in local_var_params:
|
||
query_params.append(('limit', local_var_params['limit']))
|
||
|
||
header_params = {}
|
||
|
||
form_params = {}
|
||
|
||
body_params = None
|
||
if isinstance(request, SdkStreamRequest):
|
||
body_params = request.get_file_stream()
|
||
|
||
response_headers = []
|
||
|
||
header_params['Content-Type'] = http_utils.select_header_content_type(
|
||
['application/json'])
|
||
|
||
auth_settings = []
|
||
|
||
return self.call_api(
|
||
resource_path='/v2/{project_id}/notifications/topics',
|
||
method='GET',
|
||
path_params=path_params,
|
||
query_params=query_params,
|
||
header_params=header_params,
|
||
body=body_params,
|
||
post_params=form_params,
|
||
response_type='ListTopicsResponse',
|
||
response_headers=response_headers,
|
||
auth_settings=auth_settings,
|
||
collection_formats=collection_formats,
|
||
request_type=request.__class__.__name__)
|
||
|
||
|
||
def list_version_async(self, request):
|
||
"""查询SMN API V2版本信息
|
||
|
||
查询SMN API V2版本信息。
|
||
|
||
:param ListVersionRequest request
|
||
:return: ListVersionResponse
|
||
"""
|
||
return self.list_version_with_http_info(request)
|
||
|
||
def list_version_with_http_info(self, request):
|
||
"""查询SMN API V2版本信息
|
||
|
||
查询SMN API V2版本信息。
|
||
|
||
:param ListVersionRequest request
|
||
:return: ListVersionResponse
|
||
"""
|
||
|
||
all_params = ['api_version']
|
||
local_var_params = {}
|
||
for attr in request.attribute_map:
|
||
if hasattr(request, attr):
|
||
local_var_params[attr] = getattr(request, attr)
|
||
|
||
collection_formats = {}
|
||
|
||
path_params = {}
|
||
if 'api_version' in local_var_params:
|
||
path_params['api_version'] = local_var_params['api_version']
|
||
|
||
query_params = []
|
||
|
||
header_params = {}
|
||
|
||
form_params = {}
|
||
|
||
body_params = None
|
||
if isinstance(request, SdkStreamRequest):
|
||
body_params = request.get_file_stream()
|
||
|
||
response_headers = []
|
||
|
||
header_params['Content-Type'] = http_utils.select_header_content_type(
|
||
['application/json'])
|
||
|
||
auth_settings = []
|
||
|
||
return self.call_api(
|
||
resource_path='/{api_version}',
|
||
method='GET',
|
||
path_params=path_params,
|
||
query_params=query_params,
|
||
header_params=header_params,
|
||
body=body_params,
|
||
post_params=form_params,
|
||
response_type='ListVersionResponse',
|
||
response_headers=response_headers,
|
||
auth_settings=auth_settings,
|
||
collection_formats=collection_formats,
|
||
request_type=request.__class__.__name__)
|
||
|
||
|
||
def list_versions_async(self, request):
|
||
"""查询SMN支持的API版本号信息
|
||
|
||
查询SMN开放API支持的版本号。
|
||
|
||
:param ListVersionsRequest request
|
||
:return: ListVersionsResponse
|
||
"""
|
||
return self.list_versions_with_http_info(request)
|
||
|
||
def list_versions_with_http_info(self, request):
|
||
"""查询SMN支持的API版本号信息
|
||
|
||
查询SMN开放API支持的版本号。
|
||
|
||
:param ListVersionsRequest request
|
||
:return: ListVersionsResponse
|
||
"""
|
||
|
||
all_params = []
|
||
local_var_params = {}
|
||
for attr in request.attribute_map:
|
||
if hasattr(request, attr):
|
||
local_var_params[attr] = getattr(request, attr)
|
||
|
||
collection_formats = {}
|
||
|
||
path_params = {}
|
||
|
||
query_params = []
|
||
|
||
header_params = {}
|
||
|
||
form_params = {}
|
||
|
||
body_params = None
|
||
if isinstance(request, SdkStreamRequest):
|
||
body_params = request.get_file_stream()
|
||
|
||
response_headers = []
|
||
|
||
header_params['Content-Type'] = http_utils.select_header_content_type(
|
||
['application/json'])
|
||
|
||
auth_settings = []
|
||
|
||
return self.call_api(
|
||
resource_path='/',
|
||
method='GET',
|
||
path_params=path_params,
|
||
query_params=query_params,
|
||
header_params=header_params,
|
||
body=body_params,
|
||
post_params=form_params,
|
||
response_type='ListVersionsResponse',
|
||
response_headers=response_headers,
|
||
auth_settings=auth_settings,
|
||
collection_formats=collection_formats,
|
||
request_type=request.__class__.__name__)
|
||
|
||
|
||
def publish_message_async(self, request):
|
||
"""消息发布
|
||
|
||
将消息发送给Topic的所有订阅端点。当返回消息ID时,该消息已被保存并开始尝试将其推送给Topic的订阅者。三种消息发送方式 message message_structure message_template_name 只需要设置其中一个,如果同时设置,生效的优先级为 message_structure > message_template_name > message。
|
||
|
||
:param PublishMessageRequest request
|
||
:return: PublishMessageResponse
|
||
"""
|
||
return self.publish_message_with_http_info(request)
|
||
|
||
def publish_message_with_http_info(self, request):
|
||
"""消息发布
|
||
|
||
将消息发送给Topic的所有订阅端点。当返回消息ID时,该消息已被保存并开始尝试将其推送给Topic的订阅者。三种消息发送方式 message message_structure message_template_name 只需要设置其中一个,如果同时设置,生效的优先级为 message_structure > message_template_name > message。
|
||
|
||
:param PublishMessageRequest request
|
||
:return: PublishMessageResponse
|
||
"""
|
||
|
||
all_params = ['topic_urn', 'publish_message_request_body']
|
||
local_var_params = {}
|
||
for attr in request.attribute_map:
|
||
if hasattr(request, attr):
|
||
local_var_params[attr] = getattr(request, attr)
|
||
|
||
collection_formats = {}
|
||
|
||
path_params = {}
|
||
if 'topic_urn' in local_var_params:
|
||
path_params['topic_urn'] = local_var_params['topic_urn']
|
||
|
||
query_params = []
|
||
|
||
header_params = {}
|
||
|
||
form_params = {}
|
||
|
||
body_params = None
|
||
if 'body' in local_var_params:
|
||
body_params = local_var_params['body']
|
||
if isinstance(request, SdkStreamRequest):
|
||
body_params = request.get_file_stream()
|
||
|
||
response_headers = []
|
||
|
||
header_params['Content-Type'] = http_utils.select_header_content_type(
|
||
['application/json;charset=UTF-8'])
|
||
|
||
auth_settings = []
|
||
|
||
return self.call_api(
|
||
resource_path='/v2/{project_id}/notifications/topics/{topic_urn}/publish',
|
||
method='POST',
|
||
path_params=path_params,
|
||
query_params=query_params,
|
||
header_params=header_params,
|
||
body=body_params,
|
||
post_params=form_params,
|
||
response_type='PublishMessageResponse',
|
||
response_headers=response_headers,
|
||
auth_settings=auth_settings,
|
||
collection_formats=collection_formats,
|
||
request_type=request.__class__.__name__)
|
||
|
||
|
||
def update_message_template_async(self, request):
|
||
"""更新消息模板
|
||
|
||
修改消息模板的内容。
|
||
|
||
:param UpdateMessageTemplateRequest request
|
||
:return: UpdateMessageTemplateResponse
|
||
"""
|
||
return self.update_message_template_with_http_info(request)
|
||
|
||
def update_message_template_with_http_info(self, request):
|
||
"""更新消息模板
|
||
|
||
修改消息模板的内容。
|
||
|
||
:param UpdateMessageTemplateRequest request
|
||
:return: UpdateMessageTemplateResponse
|
||
"""
|
||
|
||
all_params = ['message_template_id', 'update_message_template_request_body']
|
||
local_var_params = {}
|
||
for attr in request.attribute_map:
|
||
if hasattr(request, attr):
|
||
local_var_params[attr] = getattr(request, attr)
|
||
|
||
collection_formats = {}
|
||
|
||
path_params = {}
|
||
if 'message_template_id' in local_var_params:
|
||
path_params['message_template_id'] = local_var_params['message_template_id']
|
||
|
||
query_params = []
|
||
|
||
header_params = {}
|
||
|
||
form_params = {}
|
||
|
||
body_params = None
|
||
if 'body' in local_var_params:
|
||
body_params = local_var_params['body']
|
||
if isinstance(request, SdkStreamRequest):
|
||
body_params = request.get_file_stream()
|
||
|
||
response_headers = []
|
||
|
||
header_params['Content-Type'] = http_utils.select_header_content_type(
|
||
['application/json;charset=UTF-8'])
|
||
|
||
auth_settings = []
|
||
|
||
return self.call_api(
|
||
resource_path='/v2/{project_id}/notifications/message_template/{message_template_id}',
|
||
method='PUT',
|
||
path_params=path_params,
|
||
query_params=query_params,
|
||
header_params=header_params,
|
||
body=body_params,
|
||
post_params=form_params,
|
||
response_type='UpdateMessageTemplateResponse',
|
||
response_headers=response_headers,
|
||
auth_settings=auth_settings,
|
||
collection_formats=collection_formats,
|
||
request_type=request.__class__.__name__)
|
||
|
||
|
||
def update_topic_async(self, request):
|
||
"""更新主题
|
||
|
||
更新显示名。
|
||
|
||
:param UpdateTopicRequest request
|
||
:return: UpdateTopicResponse
|
||
"""
|
||
return self.update_topic_with_http_info(request)
|
||
|
||
def update_topic_with_http_info(self, request):
|
||
"""更新主题
|
||
|
||
更新显示名。
|
||
|
||
:param UpdateTopicRequest request
|
||
:return: UpdateTopicResponse
|
||
"""
|
||
|
||
all_params = ['topic_urn', 'update_topic_request_body']
|
||
local_var_params = {}
|
||
for attr in request.attribute_map:
|
||
if hasattr(request, attr):
|
||
local_var_params[attr] = getattr(request, attr)
|
||
|
||
collection_formats = {}
|
||
|
||
path_params = {}
|
||
if 'topic_urn' in local_var_params:
|
||
path_params['topic_urn'] = local_var_params['topic_urn']
|
||
|
||
query_params = []
|
||
|
||
header_params = {}
|
||
|
||
form_params = {}
|
||
|
||
body_params = None
|
||
if 'body' in local_var_params:
|
||
body_params = local_var_params['body']
|
||
if isinstance(request, SdkStreamRequest):
|
||
body_params = request.get_file_stream()
|
||
|
||
response_headers = []
|
||
|
||
header_params['Content-Type'] = http_utils.select_header_content_type(
|
||
['application/json;charset=UTF-8'])
|
||
|
||
auth_settings = []
|
||
|
||
return self.call_api(
|
||
resource_path='/v2/{project_id}/notifications/topics/{topic_urn}',
|
||
method='PUT',
|
||
path_params=path_params,
|
||
query_params=query_params,
|
||
header_params=header_params,
|
||
body=body_params,
|
||
post_params=form_params,
|
||
response_type='UpdateTopicResponse',
|
||
response_headers=response_headers,
|
||
auth_settings=auth_settings,
|
||
collection_formats=collection_formats,
|
||
request_type=request.__class__.__name__)
|
||
|
||
|
||
def update_topic_attribute_async(self, request):
|
||
"""更新主题策略
|
||
|
||
更新主题的策略信息。
|
||
|
||
:param UpdateTopicAttributeRequest request
|
||
:return: UpdateTopicAttributeResponse
|
||
"""
|
||
return self.update_topic_attribute_with_http_info(request)
|
||
|
||
def update_topic_attribute_with_http_info(self, request):
|
||
"""更新主题策略
|
||
|
||
更新主题的策略信息。
|
||
|
||
:param UpdateTopicAttributeRequest request
|
||
:return: UpdateTopicAttributeResponse
|
||
"""
|
||
|
||
all_params = ['topic_urn', 'name', 'update_topic_attribute_request_body']
|
||
local_var_params = {}
|
||
for attr in request.attribute_map:
|
||
if hasattr(request, attr):
|
||
local_var_params[attr] = getattr(request, attr)
|
||
|
||
collection_formats = {}
|
||
|
||
path_params = {}
|
||
if 'topic_urn' in local_var_params:
|
||
path_params['topic_urn'] = local_var_params['topic_urn']
|
||
if 'name' in local_var_params:
|
||
path_params['name'] = local_var_params['name']
|
||
|
||
query_params = []
|
||
|
||
header_params = {}
|
||
|
||
form_params = {}
|
||
|
||
body_params = None
|
||
if 'body' in local_var_params:
|
||
body_params = local_var_params['body']
|
||
if isinstance(request, SdkStreamRequest):
|
||
body_params = request.get_file_stream()
|
||
|
||
response_headers = []
|
||
|
||
header_params['Content-Type'] = http_utils.select_header_content_type(
|
||
['application/json;charset=UTF-8'])
|
||
|
||
auth_settings = []
|
||
|
||
return self.call_api(
|
||
resource_path='/v2/{project_id}/notifications/topics/{topic_urn}/attributes/{name}',
|
||
method='PUT',
|
||
path_params=path_params,
|
||
query_params=query_params,
|
||
header_params=header_params,
|
||
body=body_params,
|
||
post_params=form_params,
|
||
response_type='UpdateTopicAttributeResponse',
|
||
response_headers=response_headers,
|
||
auth_settings=auth_settings,
|
||
collection_formats=collection_formats,
|
||
request_type=request.__class__.__name__)
|
||
|
||
|
||
def create_application_async(self, request):
|
||
"""创建Application
|
||
|
||
创建平台应用。
|
||
|
||
:param CreateApplicationRequest request
|
||
:return: CreateApplicationResponse
|
||
"""
|
||
return self.create_application_with_http_info(request)
|
||
|
||
def create_application_with_http_info(self, request):
|
||
"""创建Application
|
||
|
||
创建平台应用。
|
||
|
||
:param CreateApplicationRequest request
|
||
:return: CreateApplicationResponse
|
||
"""
|
||
|
||
all_params = ['create_application_request_body']
|
||
local_var_params = {}
|
||
for attr in request.attribute_map:
|
||
if hasattr(request, attr):
|
||
local_var_params[attr] = getattr(request, attr)
|
||
|
||
collection_formats = {}
|
||
|
||
path_params = {}
|
||
|
||
query_params = []
|
||
|
||
header_params = {}
|
||
|
||
form_params = {}
|
||
|
||
body_params = None
|
||
if 'body' in local_var_params:
|
||
body_params = local_var_params['body']
|
||
if isinstance(request, SdkStreamRequest):
|
||
body_params = request.get_file_stream()
|
||
|
||
response_headers = []
|
||
|
||
header_params['Content-Type'] = http_utils.select_header_content_type(
|
||
['application/json;charset=UTF-8'])
|
||
|
||
auth_settings = []
|
||
|
||
return self.call_api(
|
||
resource_path='/v2/{project_id}/notifications/applications',
|
||
method='POST',
|
||
path_params=path_params,
|
||
query_params=query_params,
|
||
header_params=header_params,
|
||
body=body_params,
|
||
post_params=form_params,
|
||
response_type='CreateApplicationResponse',
|
||
response_headers=response_headers,
|
||
auth_settings=auth_settings,
|
||
collection_formats=collection_formats,
|
||
request_type=request.__class__.__name__)
|
||
|
||
|
||
def delete_application_async(self, request):
|
||
"""删除Application
|
||
|
||
删除平台应用。
|
||
|
||
:param DeleteApplicationRequest request
|
||
:return: DeleteApplicationResponse
|
||
"""
|
||
return self.delete_application_with_http_info(request)
|
||
|
||
def delete_application_with_http_info(self, request):
|
||
"""删除Application
|
||
|
||
删除平台应用。
|
||
|
||
:param DeleteApplicationRequest request
|
||
:return: DeleteApplicationResponse
|
||
"""
|
||
|
||
all_params = ['application_urn']
|
||
local_var_params = {}
|
||
for attr in request.attribute_map:
|
||
if hasattr(request, attr):
|
||
local_var_params[attr] = getattr(request, attr)
|
||
|
||
collection_formats = {}
|
||
|
||
path_params = {}
|
||
if 'application_urn' in local_var_params:
|
||
path_params['application_urn'] = local_var_params['application_urn']
|
||
|
||
query_params = []
|
||
|
||
header_params = {}
|
||
|
||
form_params = {}
|
||
|
||
body_params = None
|
||
if isinstance(request, SdkStreamRequest):
|
||
body_params = request.get_file_stream()
|
||
|
||
response_headers = []
|
||
|
||
header_params['Content-Type'] = http_utils.select_header_content_type(
|
||
['application/json'])
|
||
|
||
auth_settings = []
|
||
|
||
return self.call_api(
|
||
resource_path='/v2/{project_id}/notifications/applications/{application_urn}',
|
||
method='DELETE',
|
||
path_params=path_params,
|
||
query_params=query_params,
|
||
header_params=header_params,
|
||
body=body_params,
|
||
post_params=form_params,
|
||
response_type='DeleteApplicationResponse',
|
||
response_headers=response_headers,
|
||
auth_settings=auth_settings,
|
||
collection_formats=collection_formats,
|
||
request_type=request.__class__.__name__)
|
||
|
||
|
||
def list_application_attributes_async(self, request):
|
||
"""查询Application属性
|
||
|
||
获取应用平台属性。
|
||
|
||
:param ListApplicationAttributesRequest request
|
||
:return: ListApplicationAttributesResponse
|
||
"""
|
||
return self.list_application_attributes_with_http_info(request)
|
||
|
||
def list_application_attributes_with_http_info(self, request):
|
||
"""查询Application属性
|
||
|
||
获取应用平台属性。
|
||
|
||
:param ListApplicationAttributesRequest request
|
||
:return: ListApplicationAttributesResponse
|
||
"""
|
||
|
||
all_params = ['application_urn']
|
||
local_var_params = {}
|
||
for attr in request.attribute_map:
|
||
if hasattr(request, attr):
|
||
local_var_params[attr] = getattr(request, attr)
|
||
|
||
collection_formats = {}
|
||
|
||
path_params = {}
|
||
if 'application_urn' in local_var_params:
|
||
path_params['application_urn'] = local_var_params['application_urn']
|
||
|
||
query_params = []
|
||
|
||
header_params = {}
|
||
|
||
form_params = {}
|
||
|
||
body_params = None
|
||
if isinstance(request, SdkStreamRequest):
|
||
body_params = request.get_file_stream()
|
||
|
||
response_headers = []
|
||
|
||
header_params['Content-Type'] = http_utils.select_header_content_type(
|
||
['application/json'])
|
||
|
||
auth_settings = []
|
||
|
||
return self.call_api(
|
||
resource_path='/v2/{project_id}/notifications/applications/{application_urn}',
|
||
method='GET',
|
||
path_params=path_params,
|
||
query_params=query_params,
|
||
header_params=header_params,
|
||
body=body_params,
|
||
post_params=form_params,
|
||
response_type='ListApplicationAttributesResponse',
|
||
response_headers=response_headers,
|
||
auth_settings=auth_settings,
|
||
collection_formats=collection_formats,
|
||
request_type=request.__class__.__name__)
|
||
|
||
|
||
def list_applications_async(self, request):
|
||
"""查询Application
|
||
|
||
查询应用平台列表。
|
||
|
||
:param ListApplicationsRequest request
|
||
:return: ListApplicationsResponse
|
||
"""
|
||
return self.list_applications_with_http_info(request)
|
||
|
||
def list_applications_with_http_info(self, request):
|
||
"""查询Application
|
||
|
||
查询应用平台列表。
|
||
|
||
:param ListApplicationsRequest request
|
||
:return: ListApplicationsResponse
|
||
"""
|
||
|
||
all_params = ['offset', 'limit', 'name', 'platform']
|
||
local_var_params = {}
|
||
for attr in request.attribute_map:
|
||
if hasattr(request, attr):
|
||
local_var_params[attr] = getattr(request, attr)
|
||
|
||
collection_formats = {}
|
||
|
||
path_params = {}
|
||
|
||
query_params = []
|
||
if 'offset' in local_var_params:
|
||
query_params.append(('offset', local_var_params['offset']))
|
||
if 'limit' in local_var_params:
|
||
query_params.append(('limit', local_var_params['limit']))
|
||
if 'name' in local_var_params:
|
||
query_params.append(('name', local_var_params['name']))
|
||
if 'platform' in local_var_params:
|
||
query_params.append(('platform', local_var_params['platform']))
|
||
|
||
header_params = {}
|
||
|
||
form_params = {}
|
||
|
||
body_params = None
|
||
if isinstance(request, SdkStreamRequest):
|
||
body_params = request.get_file_stream()
|
||
|
||
response_headers = []
|
||
|
||
header_params['Content-Type'] = http_utils.select_header_content_type(
|
||
['application/json'])
|
||
|
||
auth_settings = []
|
||
|
||
return self.call_api(
|
||
resource_path='/v2/{project_id}/notifications/applications',
|
||
method='GET',
|
||
path_params=path_params,
|
||
query_params=query_params,
|
||
header_params=header_params,
|
||
body=body_params,
|
||
post_params=form_params,
|
||
response_type='ListApplicationsResponse',
|
||
response_headers=response_headers,
|
||
auth_settings=auth_settings,
|
||
collection_formats=collection_formats,
|
||
request_type=request.__class__.__name__)
|
||
|
||
|
||
def publish_app_message_async(self, request):
|
||
"""App消息发布
|
||
|
||
将消息直发给endpoint设备。
|
||
|
||
:param PublishAppMessageRequest request
|
||
:return: PublishAppMessageResponse
|
||
"""
|
||
return self.publish_app_message_with_http_info(request)
|
||
|
||
def publish_app_message_with_http_info(self, request):
|
||
"""App消息发布
|
||
|
||
将消息直发给endpoint设备。
|
||
|
||
:param PublishAppMessageRequest request
|
||
:return: PublishAppMessageResponse
|
||
"""
|
||
|
||
all_params = ['endpoint_urn', 'publish_app_message_request_body']
|
||
local_var_params = {}
|
||
for attr in request.attribute_map:
|
||
if hasattr(request, attr):
|
||
local_var_params[attr] = getattr(request, attr)
|
||
|
||
collection_formats = {}
|
||
|
||
path_params = {}
|
||
if 'endpoint_urn' in local_var_params:
|
||
path_params['endpoint_urn'] = local_var_params['endpoint_urn']
|
||
|
||
query_params = []
|
||
|
||
header_params = {}
|
||
|
||
form_params = {}
|
||
|
||
body_params = None
|
||
if 'body' in local_var_params:
|
||
body_params = local_var_params['body']
|
||
if isinstance(request, SdkStreamRequest):
|
||
body_params = request.get_file_stream()
|
||
|
||
response_headers = []
|
||
|
||
header_params['Content-Type'] = http_utils.select_header_content_type(
|
||
['application/json;charset=UTF-8'])
|
||
|
||
auth_settings = []
|
||
|
||
return self.call_api(
|
||
resource_path='/v2/{project_id}/notifications/endpoints/{endpoint_urn}/publish',
|
||
method='POST',
|
||
path_params=path_params,
|
||
query_params=query_params,
|
||
header_params=header_params,
|
||
body=body_params,
|
||
post_params=form_params,
|
||
response_type='PublishAppMessageResponse',
|
||
response_headers=response_headers,
|
||
auth_settings=auth_settings,
|
||
collection_formats=collection_formats,
|
||
request_type=request.__class__.__name__)
|
||
|
||
|
||
def update_application_async(self, request):
|
||
"""更新Application
|
||
|
||
更新应用平台。
|
||
|
||
:param UpdateApplicationRequest request
|
||
:return: UpdateApplicationResponse
|
||
"""
|
||
return self.update_application_with_http_info(request)
|
||
|
||
def update_application_with_http_info(self, request):
|
||
"""更新Application
|
||
|
||
更新应用平台。
|
||
|
||
:param UpdateApplicationRequest request
|
||
:return: UpdateApplicationResponse
|
||
"""
|
||
|
||
all_params = ['application_urn', 'update_application_request_body']
|
||
local_var_params = {}
|
||
for attr in request.attribute_map:
|
||
if hasattr(request, attr):
|
||
local_var_params[attr] = getattr(request, attr)
|
||
|
||
collection_formats = {}
|
||
|
||
path_params = {}
|
||
if 'application_urn' in local_var_params:
|
||
path_params['application_urn'] = local_var_params['application_urn']
|
||
|
||
query_params = []
|
||
|
||
header_params = {}
|
||
|
||
form_params = {}
|
||
|
||
body_params = None
|
||
if 'body' in local_var_params:
|
||
body_params = local_var_params['body']
|
||
if isinstance(request, SdkStreamRequest):
|
||
body_params = request.get_file_stream()
|
||
|
||
response_headers = []
|
||
|
||
header_params['Content-Type'] = http_utils.select_header_content_type(
|
||
['application/json;charset=UTF-8'])
|
||
|
||
auth_settings = []
|
||
|
||
return self.call_api(
|
||
resource_path='/v2/{project_id}/notifications/applications/{application_urn}',
|
||
method='PUT',
|
||
path_params=path_params,
|
||
query_params=query_params,
|
||
header_params=header_params,
|
||
body=body_params,
|
||
post_params=form_params,
|
||
response_type='UpdateApplicationResponse',
|
||
response_headers=response_headers,
|
||
auth_settings=auth_settings,
|
||
collection_formats=collection_formats,
|
||
request_type=request.__class__.__name__)
|
||
|
||
|
||
def create_application_endpoint_async(self, request):
|
||
"""创建Application endpoint
|
||
|
||
创建应用平台的endpoint终端。
|
||
|
||
:param CreateApplicationEndpointRequest request
|
||
:return: CreateApplicationEndpointResponse
|
||
"""
|
||
return self.create_application_endpoint_with_http_info(request)
|
||
|
||
def create_application_endpoint_with_http_info(self, request):
|
||
"""创建Application endpoint
|
||
|
||
创建应用平台的endpoint终端。
|
||
|
||
:param CreateApplicationEndpointRequest request
|
||
:return: CreateApplicationEndpointResponse
|
||
"""
|
||
|
||
all_params = ['application_urn', 'create_application_endpoint_request_body']
|
||
local_var_params = {}
|
||
for attr in request.attribute_map:
|
||
if hasattr(request, attr):
|
||
local_var_params[attr] = getattr(request, attr)
|
||
|
||
collection_formats = {}
|
||
|
||
path_params = {}
|
||
if 'application_urn' in local_var_params:
|
||
path_params['application_urn'] = local_var_params['application_urn']
|
||
|
||
query_params = []
|
||
|
||
header_params = {}
|
||
|
||
form_params = {}
|
||
|
||
body_params = None
|
||
if 'body' in local_var_params:
|
||
body_params = local_var_params['body']
|
||
if isinstance(request, SdkStreamRequest):
|
||
body_params = request.get_file_stream()
|
||
|
||
response_headers = []
|
||
|
||
header_params['Content-Type'] = http_utils.select_header_content_type(
|
||
['application/json;charset=UTF-8'])
|
||
|
||
auth_settings = []
|
||
|
||
return self.call_api(
|
||
resource_path='/v2/{project_id}/notifications/applications/{application_urn}/endpoints',
|
||
method='POST',
|
||
path_params=path_params,
|
||
query_params=query_params,
|
||
header_params=header_params,
|
||
body=body_params,
|
||
post_params=form_params,
|
||
response_type='CreateApplicationEndpointResponse',
|
||
response_headers=response_headers,
|
||
auth_settings=auth_settings,
|
||
collection_formats=collection_formats,
|
||
request_type=request.__class__.__name__)
|
||
|
||
|
||
def delete_application_endpoint_async(self, request):
|
||
"""删除Application endpoint
|
||
|
||
删除设备。
|
||
|
||
:param DeleteApplicationEndpointRequest request
|
||
:return: DeleteApplicationEndpointResponse
|
||
"""
|
||
return self.delete_application_endpoint_with_http_info(request)
|
||
|
||
def delete_application_endpoint_with_http_info(self, request):
|
||
"""删除Application endpoint
|
||
|
||
删除设备。
|
||
|
||
:param DeleteApplicationEndpointRequest request
|
||
:return: DeleteApplicationEndpointResponse
|
||
"""
|
||
|
||
all_params = ['endpoint_urn']
|
||
local_var_params = {}
|
||
for attr in request.attribute_map:
|
||
if hasattr(request, attr):
|
||
local_var_params[attr] = getattr(request, attr)
|
||
|
||
collection_formats = {}
|
||
|
||
path_params = {}
|
||
if 'endpoint_urn' in local_var_params:
|
||
path_params['endpoint_urn'] = local_var_params['endpoint_urn']
|
||
|
||
query_params = []
|
||
|
||
header_params = {}
|
||
|
||
form_params = {}
|
||
|
||
body_params = None
|
||
if isinstance(request, SdkStreamRequest):
|
||
body_params = request.get_file_stream()
|
||
|
||
response_headers = []
|
||
|
||
header_params['Content-Type'] = http_utils.select_header_content_type(
|
||
['application/json'])
|
||
|
||
auth_settings = []
|
||
|
||
return self.call_api(
|
||
resource_path='/v2/{project_id}/notifications/endpoints/{endpoint_urn}',
|
||
method='DELETE',
|
||
path_params=path_params,
|
||
query_params=query_params,
|
||
header_params=header_params,
|
||
body=body_params,
|
||
post_params=form_params,
|
||
response_type='DeleteApplicationEndpointResponse',
|
||
response_headers=response_headers,
|
||
auth_settings=auth_settings,
|
||
collection_formats=collection_formats,
|
||
request_type=request.__class__.__name__)
|
||
|
||
|
||
def list_application_endpoint_attributes_async(self, request):
|
||
"""查询Application的Endpoint属性
|
||
|
||
获取endpoint的属性。
|
||
|
||
:param ListApplicationEndpointAttributesRequest request
|
||
:return: ListApplicationEndpointAttributesResponse
|
||
"""
|
||
return self.list_application_endpoint_attributes_with_http_info(request)
|
||
|
||
def list_application_endpoint_attributes_with_http_info(self, request):
|
||
"""查询Application的Endpoint属性
|
||
|
||
获取endpoint的属性。
|
||
|
||
:param ListApplicationEndpointAttributesRequest request
|
||
:return: ListApplicationEndpointAttributesResponse
|
||
"""
|
||
|
||
all_params = ['endpoint_urn']
|
||
local_var_params = {}
|
||
for attr in request.attribute_map:
|
||
if hasattr(request, attr):
|
||
local_var_params[attr] = getattr(request, attr)
|
||
|
||
collection_formats = {}
|
||
|
||
path_params = {}
|
||
if 'endpoint_urn' in local_var_params:
|
||
path_params['endpoint_urn'] = local_var_params['endpoint_urn']
|
||
|
||
query_params = []
|
||
|
||
header_params = {}
|
||
|
||
form_params = {}
|
||
|
||
body_params = None
|
||
if isinstance(request, SdkStreamRequest):
|
||
body_params = request.get_file_stream()
|
||
|
||
response_headers = []
|
||
|
||
header_params['Content-Type'] = http_utils.select_header_content_type(
|
||
['application/json'])
|
||
|
||
auth_settings = []
|
||
|
||
return self.call_api(
|
||
resource_path='/v2/{project_id}/notifications/endpoints/{endpoint_urn}',
|
||
method='GET',
|
||
path_params=path_params,
|
||
query_params=query_params,
|
||
header_params=header_params,
|
||
body=body_params,
|
||
post_params=form_params,
|
||
response_type='ListApplicationEndpointAttributesResponse',
|
||
response_headers=response_headers,
|
||
auth_settings=auth_settings,
|
||
collection_formats=collection_formats,
|
||
request_type=request.__class__.__name__)
|
||
|
||
|
||
def list_application_endpoints_async(self, request):
|
||
"""查询Application的Endpoint列表
|
||
|
||
查询平台的endpoint列表。
|
||
|
||
:param ListApplicationEndpointsRequest request
|
||
:return: ListApplicationEndpointsResponse
|
||
"""
|
||
return self.list_application_endpoints_with_http_info(request)
|
||
|
||
def list_application_endpoints_with_http_info(self, request):
|
||
"""查询Application的Endpoint列表
|
||
|
||
查询平台的endpoint列表。
|
||
|
||
:param ListApplicationEndpointsRequest request
|
||
:return: ListApplicationEndpointsResponse
|
||
"""
|
||
|
||
all_params = ['application_urn', 'offset', 'limit', 'enabled', 'token', 'user_data']
|
||
local_var_params = {}
|
||
for attr in request.attribute_map:
|
||
if hasattr(request, attr):
|
||
local_var_params[attr] = getattr(request, attr)
|
||
|
||
collection_formats = {}
|
||
|
||
path_params = {}
|
||
if 'application_urn' in local_var_params:
|
||
path_params['application_urn'] = local_var_params['application_urn']
|
||
|
||
query_params = []
|
||
if 'offset' in local_var_params:
|
||
query_params.append(('offset', local_var_params['offset']))
|
||
if 'limit' in local_var_params:
|
||
query_params.append(('limit', local_var_params['limit']))
|
||
if 'enabled' in local_var_params:
|
||
query_params.append(('enabled', local_var_params['enabled']))
|
||
if 'token' in local_var_params:
|
||
query_params.append(('token', local_var_params['token']))
|
||
if 'user_data' in local_var_params:
|
||
query_params.append(('user_data', local_var_params['user_data']))
|
||
|
||
header_params = {}
|
||
|
||
form_params = {}
|
||
|
||
body_params = None
|
||
if isinstance(request, SdkStreamRequest):
|
||
body_params = request.get_file_stream()
|
||
|
||
response_headers = []
|
||
|
||
header_params['Content-Type'] = http_utils.select_header_content_type(
|
||
['application/json'])
|
||
|
||
auth_settings = []
|
||
|
||
return self.call_api(
|
||
resource_path='/v2/{project_id}/notifications/applications/{application_urn}/endpoints',
|
||
method='GET',
|
||
path_params=path_params,
|
||
query_params=query_params,
|
||
header_params=header_params,
|
||
body=body_params,
|
||
post_params=form_params,
|
||
response_type='ListApplicationEndpointsResponse',
|
||
response_headers=response_headers,
|
||
auth_settings=auth_settings,
|
||
collection_formats=collection_formats,
|
||
request_type=request.__class__.__name__)
|
||
|
||
|
||
def update_application_endpoint_async(self, request):
|
||
"""更新Application endpoint
|
||
|
||
更新设备属性。
|
||
|
||
:param UpdateApplicationEndpointRequest request
|
||
:return: UpdateApplicationEndpointResponse
|
||
"""
|
||
return self.update_application_endpoint_with_http_info(request)
|
||
|
||
def update_application_endpoint_with_http_info(self, request):
|
||
"""更新Application endpoint
|
||
|
||
更新设备属性。
|
||
|
||
:param UpdateApplicationEndpointRequest request
|
||
:return: UpdateApplicationEndpointResponse
|
||
"""
|
||
|
||
all_params = ['endpoint_urn', 'update_application_endpoint_request_body']
|
||
local_var_params = {}
|
||
for attr in request.attribute_map:
|
||
if hasattr(request, attr):
|
||
local_var_params[attr] = getattr(request, attr)
|
||
|
||
collection_formats = {}
|
||
|
||
path_params = {}
|
||
if 'endpoint_urn' in local_var_params:
|
||
path_params['endpoint_urn'] = local_var_params['endpoint_urn']
|
||
|
||
query_params = []
|
||
|
||
header_params = {}
|
||
|
||
form_params = {}
|
||
|
||
body_params = None
|
||
if 'body' in local_var_params:
|
||
body_params = local_var_params['body']
|
||
if isinstance(request, SdkStreamRequest):
|
||
body_params = request.get_file_stream()
|
||
|
||
response_headers = []
|
||
|
||
header_params['Content-Type'] = http_utils.select_header_content_type(
|
||
['application/json;charset=UTF-8'])
|
||
|
||
auth_settings = []
|
||
|
||
return self.call_api(
|
||
resource_path='/v2/{project_id}/notifications/endpoints/{endpoint_urn}',
|
||
method='PUT',
|
||
path_params=path_params,
|
||
query_params=query_params,
|
||
header_params=header_params,
|
||
body=body_params,
|
||
post_params=form_params,
|
||
response_type='UpdateApplicationEndpointResponse',
|
||
response_headers=response_headers,
|
||
auth_settings=auth_settings,
|
||
collection_formats=collection_formats,
|
||
request_type=request.__class__.__name__)
|
||
|
||
|
||
def call_api(self, resource_path, method, path_params=None, query_params=None, header_params=None, body=None,
|
||
post_params=None, response_type=None, response_headers=None, auth_settings=None,
|
||
collection_formats=None, request_type=None):
|
||
"""Makes the HTTP request and returns deserialized data.
|
||
|
||
:param resource_path: Path to method endpoint.
|
||
:param method: Method to call.
|
||
:param path_params: Path parameters in the url.
|
||
:param query_params: Query parameters in the url.
|
||
:param header_params: Header parameters to be
|
||
placed in the request header.
|
||
:param body: Request body.
|
||
:param post_params dict: Request post form parameters,
|
||
for `application/x-www-form-urlencoded`, `multipart/form-data`.
|
||
:param auth_settings list: Auth Settings names for the request.
|
||
:param response_type: Response data type.
|
||
:param response_headers: Header should be added to response data.
|
||
:param collection_formats: dict of collection formats for path, query,
|
||
header, and post parameters.
|
||
:param request_type: Request data type.
|
||
:return:
|
||
Return the response directly.
|
||
"""
|
||
return self.do_http_request(
|
||
method=method,
|
||
resource_path=resource_path,
|
||
path_params=path_params,
|
||
query_params=query_params,
|
||
header_params=header_params,
|
||
body=body,
|
||
post_params=post_params,
|
||
response_type=response_type,
|
||
response_headers=response_headers,
|
||
collection_formats=collection_formats,
|
||
request_type=request_type,
|
||
async_request=True)
|