diff --git a/CHANGELOG b/CHANGELOG index 19316c770..8aeb3c5da 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -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. diff --git a/aliyun-net-sdk-osssddp/OssSddp/Model/V20240222/GetSddpVersionRequest.cs b/aliyun-net-sdk-osssddp/OssSddp/Model/V20240222/GetSddpVersionRequest.cs new file mode 100644 index 000000000..6b94553f6 --- /dev/null +++ b/aliyun-net-sdk-osssddp/OssSddp/Model/V20240222/GetSddpVersionRequest.cs @@ -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 + { + 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); + } + } +} diff --git a/aliyun-net-sdk-osssddp/OssSddp/Model/V20240222/GetSddpVersionResponse.cs b/aliyun-net-sdk-osssddp/OssSddp/Model/V20240222/GetSddpVersionResponse.cs new file mode 100644 index 000000000..b8f4a683a --- /dev/null +++ b/aliyun-net-sdk-osssddp/OssSddp/Model/V20240222/GetSddpVersionResponse.cs @@ -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; + } + } + } +} diff --git a/aliyun-net-sdk-osssddp/OssSddp/Model/V20240222/UpgradeSddpVersionRequest.cs b/aliyun-net-sdk-osssddp/OssSddp/Model/V20240222/UpgradeSddpVersionRequest.cs new file mode 100644 index 000000000..404203714 --- /dev/null +++ b/aliyun-net-sdk-osssddp/OssSddp/Model/V20240222/UpgradeSddpVersionRequest.cs @@ -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 + { + 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); + } + } +} diff --git a/aliyun-net-sdk-osssddp/OssSddp/Model/V20240222/UpgradeSddpVersionResponse.cs b/aliyun-net-sdk-osssddp/OssSddp/Model/V20240222/UpgradeSddpVersionResponse.cs new file mode 100644 index 000000000..f1f75a278 --- /dev/null +++ b/aliyun-net-sdk-osssddp/OssSddp/Model/V20240222/UpgradeSddpVersionResponse.cs @@ -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; + } + } + } +} diff --git a/aliyun-net-sdk-osssddp/OssSddp/Transform/V20240222/GetSddpVersionResponseUnmarshaller.cs b/aliyun-net-sdk-osssddp/OssSddp/Transform/V20240222/GetSddpVersionResponseUnmarshaller.cs new file mode 100644 index 000000000..790243713 --- /dev/null +++ b/aliyun-net-sdk-osssddp/OssSddp/Transform/V20240222/GetSddpVersionResponseUnmarshaller.cs @@ -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; + } + } +} diff --git a/aliyun-net-sdk-osssddp/OssSddp/Transform/V20240222/UpgradeSddpVersionResponseUnmarshaller.cs b/aliyun-net-sdk-osssddp/OssSddp/Transform/V20240222/UpgradeSddpVersionResponseUnmarshaller.cs new file mode 100644 index 000000000..724675992 --- /dev/null +++ b/aliyun-net-sdk-osssddp/OssSddp/Transform/V20240222/UpgradeSddpVersionResponseUnmarshaller.cs @@ -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; + } + } +} diff --git a/aliyun-net-sdk-osssddp/aliyun-net-sdk-osssddp.vs2017.csproj b/aliyun-net-sdk-osssddp/aliyun-net-sdk-osssddp.vs2017.csproj new file mode 100644 index 000000000..a4435a2fa --- /dev/null +++ b/aliyun-net-sdk-osssddp/aliyun-net-sdk-osssddp.vs2017.csproj @@ -0,0 +1,42 @@ + + + + netstandard2.0;net45 + Aliyun.Acs.OssSddp + 1.0.0 + Alibaba Cloud + ©2009-2019 Alibaba Cloud + false + https://raw.githubusercontent.com/aliyun/aliyun-openapi-net-sdk/master/LICENSE + https://github.com/aliyun/aliyun-openapi-net-sdk + https://www.alibabacloud.com/favicon.ico + Alibaba Cloud SDK for .NET + + alibaba aliyun SDK OssSddp + aliyun-net-sdk-osssddp + + + + + + + all + runtime; build; native; contentfiles; analyzers + + + + + + + + + + + + + + + + + + \ No newline at end of file