Skip to content

Commit cd5f9eb

Browse files
committed
Generated 2024-02-22 for OssSddp.
1 parent 70471ea commit cd5f9eb

8 files changed

+382
-0
lines changed

CHANGELOG

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2024-09-24 Version: 1.0.0
2+
- Generated 2024-02-22 for `OssSddp`.
3+
14
2024-09-18 Version: 2.1.9
25
- Add API Ram meta.
36

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
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.OssSddp;
26+
using Aliyun.Acs.OssSddp.Transform;
27+
using Aliyun.Acs.OssSddp.Transform.V20240222;
28+
29+
namespace Aliyun.Acs.OssSddp.Model.V20240222
30+
{
31+
public class GetSddpVersionRequest : RpcAcsRequest<GetSddpVersionResponse>
32+
{
33+
public GetSddpVersionRequest()
34+
: base("OssSddp", "2024-02-22", "GetSddpVersion")
35+
{
36+
Protocol = ProtocolType.HTTPS;
37+
Method = MethodType.POST;
38+
}
39+
40+
private string clientToken;
41+
42+
public string ClientToken
43+
{
44+
get
45+
{
46+
return clientToken;
47+
}
48+
set
49+
{
50+
clientToken = value;
51+
DictionaryUtil.Add(QueryParameters, "ClientToken", value);
52+
}
53+
}
54+
55+
public override bool CheckShowJsonItemName()
56+
{
57+
return false;
58+
}
59+
60+
public override GetSddpVersionResponse GetResponse(UnmarshallerContext unmarshallerContext)
61+
{
62+
return GetSddpVersionResponseUnmarshaller.Unmarshall(unmarshallerContext);
63+
}
64+
}
65+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
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+
using Newtonsoft.Json;
21+
using Aliyun.Acs.Core;
22+
23+
namespace Aliyun.Acs.OssSddp.Model.V20240222
24+
{
25+
public class GetSddpVersionResponse : AcsResponse
26+
{
27+
28+
private string requestId;
29+
30+
private int? content;
31+
32+
public string RequestId
33+
{
34+
get
35+
{
36+
return requestId;
37+
}
38+
set
39+
{
40+
requestId = value;
41+
}
42+
}
43+
44+
public int? Content
45+
{
46+
get
47+
{
48+
return content;
49+
}
50+
set
51+
{
52+
content = value;
53+
}
54+
}
55+
}
56+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
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.OssSddp;
26+
using Aliyun.Acs.OssSddp.Transform;
27+
using Aliyun.Acs.OssSddp.Transform.V20240222;
28+
29+
namespace Aliyun.Acs.OssSddp.Model.V20240222
30+
{
31+
public class UpgradeSddpVersionRequest : RpcAcsRequest<UpgradeSddpVersionResponse>
32+
{
33+
public UpgradeSddpVersionRequest()
34+
: base("OssSddp", "2024-02-22", "UpgradeSddpVersion")
35+
{
36+
Protocol = ProtocolType.HTTPS;
37+
Method = MethodType.POST;
38+
}
39+
40+
private string clientToken;
41+
42+
private int? ossVersion;
43+
44+
public string ClientToken
45+
{
46+
get
47+
{
48+
return clientToken;
49+
}
50+
set
51+
{
52+
clientToken = value;
53+
DictionaryUtil.Add(QueryParameters, "ClientToken", value);
54+
}
55+
}
56+
57+
public int? OssVersion
58+
{
59+
get
60+
{
61+
return ossVersion;
62+
}
63+
set
64+
{
65+
ossVersion = value;
66+
DictionaryUtil.Add(QueryParameters, "OssVersion", value.ToString());
67+
}
68+
}
69+
70+
public override bool CheckShowJsonItemName()
71+
{
72+
return false;
73+
}
74+
75+
public override UpgradeSddpVersionResponse GetResponse(UnmarshallerContext unmarshallerContext)
76+
{
77+
return UpgradeSddpVersionResponseUnmarshaller.Unmarshall(unmarshallerContext);
78+
}
79+
}
80+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
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+
using Newtonsoft.Json;
21+
using Aliyun.Acs.Core;
22+
23+
namespace Aliyun.Acs.OssSddp.Model.V20240222
24+
{
25+
public class UpgradeSddpVersionResponse : AcsResponse
26+
{
27+
28+
private string requestId;
29+
30+
private string content;
31+
32+
public string RequestId
33+
{
34+
get
35+
{
36+
return requestId;
37+
}
38+
set
39+
{
40+
requestId = value;
41+
}
42+
}
43+
44+
public string Content
45+
{
46+
get
47+
{
48+
return content;
49+
}
50+
set
51+
{
52+
content = value;
53+
}
54+
}
55+
}
56+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
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;
20+
using System.Collections.Generic;
21+
22+
using Aliyun.Acs.Core.Transform;
23+
using Aliyun.Acs.OssSddp.Model.V20240222;
24+
25+
namespace Aliyun.Acs.OssSddp.Transform.V20240222
26+
{
27+
public class GetSddpVersionResponseUnmarshaller
28+
{
29+
public static GetSddpVersionResponse Unmarshall(UnmarshallerContext _ctx)
30+
{
31+
GetSddpVersionResponse getSddpVersionResponse = new GetSddpVersionResponse();
32+
33+
getSddpVersionResponse.HttpResponse = _ctx.HttpResponse;
34+
getSddpVersionResponse.RequestId = _ctx.StringValue("GetSddpVersion.RequestId");
35+
getSddpVersionResponse.Content = _ctx.IntegerValue("GetSddpVersion.Content");
36+
37+
return getSddpVersionResponse;
38+
}
39+
}
40+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
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;
20+
using System.Collections.Generic;
21+
22+
using Aliyun.Acs.Core.Transform;
23+
using Aliyun.Acs.OssSddp.Model.V20240222;
24+
25+
namespace Aliyun.Acs.OssSddp.Transform.V20240222
26+
{
27+
public class UpgradeSddpVersionResponseUnmarshaller
28+
{
29+
public static UpgradeSddpVersionResponse Unmarshall(UnmarshallerContext _ctx)
30+
{
31+
UpgradeSddpVersionResponse upgradeSddpVersionResponse = new UpgradeSddpVersionResponse();
32+
33+
upgradeSddpVersionResponse.HttpResponse = _ctx.HttpResponse;
34+
upgradeSddpVersionResponse.RequestId = _ctx.StringValue("UpgradeSddpVersion.RequestId");
35+
upgradeSddpVersionResponse.Content = _ctx.StringValue("UpgradeSddpVersion.Content");
36+
37+
return upgradeSddpVersionResponse;
38+
}
39+
}
40+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2+
<Project Sdk="Microsoft.NET.Sdk">
3+
<PropertyGroup>
4+
<TargetFrameworks>netstandard2.0;net45</TargetFrameworks>
5+
<RootNamespace>Aliyun.Acs.OssSddp</RootNamespace>
6+
<Version>1.0.0</Version>
7+
<Authors>Alibaba Cloud</Authors>
8+
<Copyright>©2009-2019 Alibaba Cloud</Copyright>
9+
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
10+
<PackageLicenseUrl>https://raw.githubusercontent.com/aliyun/aliyun-openapi-net-sdk/master/LICENSE</PackageLicenseUrl>
11+
<PackageProjectUrl>https://github.com/aliyun/aliyun-openapi-net-sdk</PackageProjectUrl>
12+
<PackageIconUrl>https://www.alibabacloud.com/favicon.ico</PackageIconUrl>
13+
<Description>Alibaba Cloud SDK for .NET</Description>
14+
<PackageReleaseNotes/>
15+
<PackageTags>alibaba aliyun SDK OssSddp</PackageTags>
16+
<AssemblyName>aliyun-net-sdk-osssddp</AssemblyName>
17+
</PropertyGroup>
18+
<ItemGroup>
19+
<ProjectReference Include="..\aliyun-net-sdk-core\aliyun-net-sdk-core.vs2017.csproj"/>
20+
</ItemGroup>
21+
<ItemGroup>
22+
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.0-preview.2">
23+
<PrivateAssets>all</PrivateAssets>
24+
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
25+
</PackageReference>
26+
</ItemGroup>
27+
<ItemGroup>
28+
<PackageReference Include="Newtonsoft.Json" Version="[13.0.1,)"/>
29+
</ItemGroup>
30+
<ItemGroup Condition=" '$(TargetFramework)' == 'net45' ">
31+
<Reference Include="mscorlib"/>
32+
<Reference Include="System"/>
33+
<Reference Include="System.Core"/>
34+
<Reference Include="Microsoft.CSharp"/>
35+
<Reference Include="System.Data"/>
36+
<Reference Include="System.Web"/>
37+
<Reference Include="System.Drawing"/>
38+
<Reference Include="System.Security"/>
39+
<Reference Include="System.Xml"/>
40+
<Reference Include="System.Configuration"/>
41+
</ItemGroup>
42+
</Project>

0 commit comments

Comments
 (0)