-
Notifications
You must be signed in to change notification settings - Fork 624
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
382 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
2024-09-24 Version: 1.0.0 | ||
- Generated 2024-02-22 for `OssSddp`. | ||
|
||
2024-09-18 Version: 2.1.9 | ||
- Add API Ram meta. | ||
|
||
|
65 changes: 65 additions & 0 deletions
65
aliyun-net-sdk-osssddp/OssSddp/Model/V20240222/GetSddpVersionRequest.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
/* | ||
* 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.OssSddp; | ||
using Aliyun.Acs.OssSddp.Transform; | ||
using Aliyun.Acs.OssSddp.Transform.V20240222; | ||
|
||
namespace Aliyun.Acs.OssSddp.Model.V20240222 | ||
{ | ||
public class GetSddpVersionRequest : RpcAcsRequest<GetSddpVersionResponse> | ||
{ | ||
public GetSddpVersionRequest() | ||
: base("OssSddp", "2024-02-22", "GetSddpVersion") | ||
{ | ||
Protocol = ProtocolType.HTTPS; | ||
Method = MethodType.POST; | ||
} | ||
|
||
private string clientToken; | ||
|
||
public string ClientToken | ||
{ | ||
get | ||
{ | ||
return clientToken; | ||
} | ||
set | ||
{ | ||
clientToken = value; | ||
DictionaryUtil.Add(QueryParameters, "ClientToken", value); | ||
} | ||
} | ||
|
||
public override bool CheckShowJsonItemName() | ||
{ | ||
return false; | ||
} | ||
|
||
public override GetSddpVersionResponse GetResponse(UnmarshallerContext unmarshallerContext) | ||
{ | ||
return GetSddpVersionResponseUnmarshaller.Unmarshall(unmarshallerContext); | ||
} | ||
} | ||
} |
56 changes: 56 additions & 0 deletions
56
aliyun-net-sdk-osssddp/OssSddp/Model/V20240222/GetSddpVersionResponse.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
/* | ||
* 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 Newtonsoft.Json; | ||
using Aliyun.Acs.Core; | ||
|
||
namespace Aliyun.Acs.OssSddp.Model.V20240222 | ||
{ | ||
public class GetSddpVersionResponse : AcsResponse | ||
{ | ||
|
||
private string requestId; | ||
|
||
private int? content; | ||
|
||
public string RequestId | ||
{ | ||
get | ||
{ | ||
return requestId; | ||
} | ||
set | ||
{ | ||
requestId = value; | ||
} | ||
} | ||
|
||
public int? Content | ||
{ | ||
get | ||
{ | ||
return content; | ||
} | ||
set | ||
{ | ||
content = value; | ||
} | ||
} | ||
} | ||
} |
80 changes: 80 additions & 0 deletions
80
aliyun-net-sdk-osssddp/OssSddp/Model/V20240222/UpgradeSddpVersionRequest.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
/* | ||
* 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.OssSddp; | ||
using Aliyun.Acs.OssSddp.Transform; | ||
using Aliyun.Acs.OssSddp.Transform.V20240222; | ||
|
||
namespace Aliyun.Acs.OssSddp.Model.V20240222 | ||
{ | ||
public class UpgradeSddpVersionRequest : RpcAcsRequest<UpgradeSddpVersionResponse> | ||
{ | ||
public UpgradeSddpVersionRequest() | ||
: base("OssSddp", "2024-02-22", "UpgradeSddpVersion") | ||
{ | ||
Protocol = ProtocolType.HTTPS; | ||
Method = MethodType.POST; | ||
} | ||
|
||
private string clientToken; | ||
|
||
private int? ossVersion; | ||
|
||
public string ClientToken | ||
{ | ||
get | ||
{ | ||
return clientToken; | ||
} | ||
set | ||
{ | ||
clientToken = value; | ||
DictionaryUtil.Add(QueryParameters, "ClientToken", value); | ||
} | ||
} | ||
|
||
public int? OssVersion | ||
{ | ||
get | ||
{ | ||
return ossVersion; | ||
} | ||
set | ||
{ | ||
ossVersion = value; | ||
DictionaryUtil.Add(QueryParameters, "OssVersion", value.ToString()); | ||
} | ||
} | ||
|
||
public override bool CheckShowJsonItemName() | ||
{ | ||
return false; | ||
} | ||
|
||
public override UpgradeSddpVersionResponse GetResponse(UnmarshallerContext unmarshallerContext) | ||
{ | ||
return UpgradeSddpVersionResponseUnmarshaller.Unmarshall(unmarshallerContext); | ||
} | ||
} | ||
} |
56 changes: 56 additions & 0 deletions
56
aliyun-net-sdk-osssddp/OssSddp/Model/V20240222/UpgradeSddpVersionResponse.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
/* | ||
* 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 Newtonsoft.Json; | ||
using Aliyun.Acs.Core; | ||
|
||
namespace Aliyun.Acs.OssSddp.Model.V20240222 | ||
{ | ||
public class UpgradeSddpVersionResponse : AcsResponse | ||
{ | ||
|
||
private string requestId; | ||
|
||
private string content; | ||
|
||
public string RequestId | ||
{ | ||
get | ||
{ | ||
return requestId; | ||
} | ||
set | ||
{ | ||
requestId = value; | ||
} | ||
} | ||
|
||
public string Content | ||
{ | ||
get | ||
{ | ||
return content; | ||
} | ||
set | ||
{ | ||
content = value; | ||
} | ||
} | ||
} | ||
} |
40 changes: 40 additions & 0 deletions
40
aliyun-net-sdk-osssddp/OssSddp/Transform/V20240222/GetSddpVersionResponseUnmarshaller.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
/* | ||
* 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; | ||
using System.Collections.Generic; | ||
|
||
using Aliyun.Acs.Core.Transform; | ||
using Aliyun.Acs.OssSddp.Model.V20240222; | ||
|
||
namespace Aliyun.Acs.OssSddp.Transform.V20240222 | ||
{ | ||
public class GetSddpVersionResponseUnmarshaller | ||
{ | ||
public static GetSddpVersionResponse Unmarshall(UnmarshallerContext _ctx) | ||
{ | ||
GetSddpVersionResponse getSddpVersionResponse = new GetSddpVersionResponse(); | ||
|
||
getSddpVersionResponse.HttpResponse = _ctx.HttpResponse; | ||
getSddpVersionResponse.RequestId = _ctx.StringValue("GetSddpVersion.RequestId"); | ||
getSddpVersionResponse.Content = _ctx.IntegerValue("GetSddpVersion.Content"); | ||
|
||
return getSddpVersionResponse; | ||
} | ||
} | ||
} |
40 changes: 40 additions & 0 deletions
40
aliyun-net-sdk-osssddp/OssSddp/Transform/V20240222/UpgradeSddpVersionResponseUnmarshaller.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
/* | ||
* 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; | ||
using System.Collections.Generic; | ||
|
||
using Aliyun.Acs.Core.Transform; | ||
using Aliyun.Acs.OssSddp.Model.V20240222; | ||
|
||
namespace Aliyun.Acs.OssSddp.Transform.V20240222 | ||
{ | ||
public class UpgradeSddpVersionResponseUnmarshaller | ||
{ | ||
public static UpgradeSddpVersionResponse Unmarshall(UnmarshallerContext _ctx) | ||
{ | ||
UpgradeSddpVersionResponse upgradeSddpVersionResponse = new UpgradeSddpVersionResponse(); | ||
|
||
upgradeSddpVersionResponse.HttpResponse = _ctx.HttpResponse; | ||
upgradeSddpVersionResponse.RequestId = _ctx.StringValue("UpgradeSddpVersion.RequestId"); | ||
upgradeSddpVersionResponse.Content = _ctx.StringValue("UpgradeSddpVersion.Content"); | ||
|
||
return upgradeSddpVersionResponse; | ||
} | ||
} | ||
} |
42 changes: 42 additions & 0 deletions
42
aliyun-net-sdk-osssddp/aliyun-net-sdk-osssddp.vs2017.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFrameworks>netstandard2.0;net45</TargetFrameworks> | ||
<RootNamespace>Aliyun.Acs.OssSddp</RootNamespace> | ||
<Version>1.0.0</Version> | ||
<Authors>Alibaba Cloud</Authors> | ||
<Copyright>©2009-2019 Alibaba Cloud</Copyright> | ||
<GeneratePackageOnBuild>false</GeneratePackageOnBuild> | ||
<PackageLicenseUrl>https://raw.githubusercontent.com/aliyun/aliyun-openapi-net-sdk/master/LICENSE</PackageLicenseUrl> | ||
<PackageProjectUrl>https://github.com/aliyun/aliyun-openapi-net-sdk</PackageProjectUrl> | ||
<PackageIconUrl>https://www.alibabacloud.com/favicon.ico</PackageIconUrl> | ||
<Description>Alibaba Cloud SDK for .NET</Description> | ||
<PackageReleaseNotes/> | ||
<PackageTags>alibaba aliyun SDK OssSddp</PackageTags> | ||
<AssemblyName>aliyun-net-sdk-osssddp</AssemblyName> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\aliyun-net-sdk-core\aliyun-net-sdk-core.vs2017.csproj"/> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.0-preview.2"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets> | ||
</PackageReference> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Newtonsoft.Json" Version="[13.0.1,)"/> | ||
</ItemGroup> | ||
<ItemGroup Condition=" '$(TargetFramework)' == 'net45' "> | ||
<Reference Include="mscorlib"/> | ||
<Reference Include="System"/> | ||
<Reference Include="System.Core"/> | ||
<Reference Include="Microsoft.CSharp"/> | ||
<Reference Include="System.Data"/> | ||
<Reference Include="System.Web"/> | ||
<Reference Include="System.Drawing"/> | ||
<Reference Include="System.Security"/> | ||
<Reference Include="System.Xml"/> | ||
<Reference Include="System.Configuration"/> | ||
</ItemGroup> | ||
</Project> |