Skip to content

Commit bfe884e

Browse files
committed
初始发布
1 parent 1d806d8 commit bfe884e

23 files changed

+2093
-0
lines changed

CHANGELOG

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2024-07-18 Version: 1.0.0
2+
初始发布
3+
14
2024-07-10 Version: 1.0.0
25
- Added param for ActivateLicenseResponse .
36

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
/*
2+
* Licensed to the Apache Software Foundation (ASF) under one
3+
* or more contributor license agreements. See the NOTICE file
4+
* distributed with this work for additional information
5+
* regarding copyright ownership. The ASF licenses this file
6+
* to you under the Apache License, Version 2.0 (the
7+
* "License"); you may not use this file except in compliance
8+
* with the License. You may obtain a copy of the License at
9+
*
10+
* http://www.apache.org/licenses/LICENSE-2.0
11+
*
12+
* Unless required by applicable law or agreed to in writing,
13+
* software distributed under the License is distributed on an
14+
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15+
* KIND, either express or implied. See the License for the
16+
* specific language governing permissions and limitations
17+
* under the License.
18+
*/
19+
using System.Collections.Generic;
20+
21+
using Aliyun.Acs.Core;
22+
using Aliyun.Acs.Core.Http;
23+
using Aliyun.Acs.Core.Transform;
24+
using Aliyun.Acs.Core.Utils;
25+
using Aliyun.Acs.AiContent;
26+
using Aliyun.Acs.AiContent.Transform;
27+
using Aliyun.Acs.AiContent.Transform.V20240611;
28+
29+
namespace Aliyun.Acs.AiContent.Model.V20240611
30+
{
31+
public class AliyunConsoleOpenApiQueryAliyunConsoleServcieListRequest : RoaAcsRequest<AliyunConsoleOpenApiQueryAliyunConsoleServcieListResponse>
32+
{
33+
public AliyunConsoleOpenApiQueryAliyunConsoleServcieListRequest()
34+
: base("AiContent", "20240611", "AliyunConsoleOpenApiQueryAliyunConsoleServcieList")
35+
{
36+
Protocol = ProtocolType.HTTPS;
37+
UriPattern = "/api/v1/aliyunconsole/queryAliyunConsoleServcieList";
38+
Method = MethodType.GET;
39+
}
40+
41+
public override bool CheckShowJsonItemName()
42+
{
43+
return false;
44+
}
45+
46+
public override AliyunConsoleOpenApiQueryAliyunConsoleServcieListResponse GetResponse(UnmarshallerContext unmarshallerContext)
47+
{
48+
return AliyunConsoleOpenApiQueryAliyunConsoleServcieListResponseUnmarshaller.Unmarshall(unmarshallerContext);
49+
}
50+
}
51+
}

0 commit comments

Comments
 (0)