Example #1
0
        public async Task <BatchRegisterEventTypeResponse> BatchRegisterEventTypeAsync(BatchRegisterEventTypeRequest request)
        {
            AlibabaCloud.TeaUtil.Models.RuntimeOptions runtime = new AlibabaCloud.TeaUtil.Models.RuntimeOptions();
            BatchRegisterEventTypeHeaders headers = new BatchRegisterEventTypeHeaders();

            return(await BatchRegisterEventTypeWithOptionsAsync(request, headers, runtime));
        }
Example #2
0
        public BatchRegisterEventTypeResponse BatchRegisterEventType(BatchRegisterEventTypeRequest request)
        {
            AlibabaCloud.TeaUtil.Models.RuntimeOptions runtime = new AlibabaCloud.TeaUtil.Models.RuntimeOptions();
            BatchRegisterEventTypeHeaders headers = new BatchRegisterEventTypeHeaders();

            return(BatchRegisterEventTypeWithOptions(request, headers, runtime));
        }
Example #3
0
        public async Task <BatchRegisterEventTypeResponse> BatchRegisterEventTypeWithOptionsAsync(BatchRegisterEventTypeRequest request, BatchRegisterEventTypeHeaders headers, AlibabaCloud.TeaUtil.Models.RuntimeOptions runtime)
        {
            AlibabaCloud.TeaUtil.Common.ValidateModel(request);
            Dictionary <string, object> body = new Dictionary <string, object>()
            {
            };

            if (!AlibabaCloud.TeaUtil.Common.IsUnset(request.CorpId))
            {
                body["corpId"] = request.CorpId;
            }
            if (!AlibabaCloud.TeaUtil.Common.IsUnset(request.EventTypes))
            {
                body["eventTypes"] = request.EventTypes;
            }
            Dictionary <string, string> realHeaders = new Dictionary <string, string>()
            {
            };

            if (!AlibabaCloud.TeaUtil.Common.IsUnset(headers.CommonHeaders))
            {
                realHeaders = headers.CommonHeaders;
            }
            if (!AlibabaCloud.TeaUtil.Common.IsUnset(headers.XAcsDingtalkAccessToken))
            {
                realHeaders["x-acs-dingtalk-access-token"] = AlibabaCloud.TeaUtil.Common.ToJSONString(headers.XAcsDingtalkAccessToken);
            }
            AlibabaCloud.OpenApiClient.Models.OpenApiRequest req = new AlibabaCloud.OpenApiClient.Models.OpenApiRequest
            {
                Headers = realHeaders,
                Body    = AlibabaCloud.OpenApiUtil.Client.ParseToMap(body),
            };
            return(TeaModel.ToObject <BatchRegisterEventTypeResponse>(await DoROARequestAsync("BatchRegisterEventType", "diot_1.0", "HTTP", "POST", "AK", "/v1.0/diot/eventTypes/registrations/batch", "json", req, runtime)));
        }