Skip to content

Commit

Permalink
Generated 2024-02-22 for OssSddp.
Browse files Browse the repository at this point in the history
  • Loading branch information
sdk-team committed Sep 24, 2024
1 parent 70471ea commit cd5f9eb
Show file tree
Hide file tree
Showing 8 changed files with 382 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-09-24 Version: 1.0.0
- Generated 2024-02-22 for `OssSddp`.

2024-09-18 Version: 2.1.9
- Add API Ram meta.

Expand Down
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);
}
}
}
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;
}
}
}
}
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);
}
}
}
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;
}
}
}
}
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;
}
}
}
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 aliyun-net-sdk-osssddp/aliyun-net-sdk-osssddp.vs2017.csproj
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>

0 comments on commit cd5f9eb

Please sign in to comment.