Skip to content

Commit

Permalink
初始发布
Browse files Browse the repository at this point in the history
  • Loading branch information
sdk-team committed Jul 18, 2024
1 parent 1d806d8 commit bfe884e
Show file tree
Hide file tree
Showing 23 changed files with 2,093 additions and 0 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2024-07-18 Version: 1.0.0
初始发布

2024-07-10 Version: 1.0.0
- Added param for ActivateLicenseResponse .

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
using System.Collections.Generic;

using Aliyun.Acs.Core;
using Aliyun.Acs.Core.Http;
using Aliyun.Acs.Core.Transform;
using Aliyun.Acs.Core.Utils;
using Aliyun.Acs.AiContent;
using Aliyun.Acs.AiContent.Transform;
using Aliyun.Acs.AiContent.Transform.V20240611;

namespace Aliyun.Acs.AiContent.Model.V20240611
{
public class AliyunConsoleOpenApiQueryAliyunConsoleServcieListRequest : RoaAcsRequest<AliyunConsoleOpenApiQueryAliyunConsoleServcieListResponse>
{
public AliyunConsoleOpenApiQueryAliyunConsoleServcieListRequest()
: base("AiContent", "20240611", "AliyunConsoleOpenApiQueryAliyunConsoleServcieList")
{
Protocol = ProtocolType.HTTPS;
UriPattern = "/api/v1/aliyunconsole/queryAliyunConsoleServcieList";
Method = MethodType.GET;
}

public override bool CheckShowJsonItemName()
{
return false;
}

public override AliyunConsoleOpenApiQueryAliyunConsoleServcieListResponse GetResponse(UnmarshallerContext unmarshallerContext)
{
return AliyunConsoleOpenApiQueryAliyunConsoleServcieListResponseUnmarshaller.Unmarshall(unmarshallerContext);
}
}
}
Loading

0 comments on commit bfe884e

Please sign in to comment.