Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
DCDN SDK Auto Released By xiaoyao,Version:1.2.2
发布日志:
1, Sync CDN API.
  • Loading branch information
jxyowen committed Dec 20, 2018
1 parent ee3bcff commit 3c412fb
Show file tree
Hide file tree
Showing 6 changed files with 233 additions and 2 deletions.
3 changes: 3 additions & 0 deletions aliyun-net-sdk-dcdn/ChangeLog.txt
@@ -1,3 +1,6 @@
2018-12-20 Version: 1.2.2
1, Sync CDN API.

2018-12-11 Version: 1.2.1
1, Sync CDN API.

Expand Down
@@ -0,0 +1,146 @@
/*
* 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 Aliyun.Acs.Core;
using Aliyun.Acs.Core.Http;
using Aliyun.Acs.Core.Transform;
using Aliyun.Acs.Core.Utils;
using Aliyun.Acs.dcdn.Transform;
using Aliyun.Acs.dcdn.Transform.V20180115;
using System.Collections.Generic;

namespace Aliyun.Acs.dcdn.Model.V20180115
{
public class BatchSetDcdnDomainConfigsRequest : RpcAcsRequest<BatchSetDcdnDomainConfigsResponse>
{
public BatchSetDcdnDomainConfigsRequest()
: base("dcdn", "2018-01-15", "BatchSetDcdnDomainConfigs", "dcdn", "openAPI")
{
}

private string functions;

private string securityToken;

private string domainNames;

private string ownerAccount;

private string action;

private long? ownerId;

private string accessKeyId;

public string Functions
{
get
{
return functions;
}
set
{
functions = value;
DictionaryUtil.Add(QueryParameters, "Functions", value);
}
}

public string SecurityToken
{
get
{
return securityToken;
}
set
{
securityToken = value;
DictionaryUtil.Add(QueryParameters, "SecurityToken", value);
}
}

public string DomainNames
{
get
{
return domainNames;
}
set
{
domainNames = value;
DictionaryUtil.Add(QueryParameters, "DomainNames", value);
}
}

public string OwnerAccount
{
get
{
return ownerAccount;
}
set
{
ownerAccount = value;
DictionaryUtil.Add(QueryParameters, "OwnerAccount", value);
}
}

public string Action
{
get
{
return action;
}
set
{
action = value;
DictionaryUtil.Add(QueryParameters, "Action", value);
}
}

public long? OwnerId
{
get
{
return ownerId;
}
set
{
ownerId = value;
DictionaryUtil.Add(QueryParameters, "OwnerId", value.ToString());
}
}

public string AccessKeyId
{
get
{
return accessKeyId;
}
set
{
accessKeyId = value;
DictionaryUtil.Add(QueryParameters, "AccessKeyId", value);
}
}

public override BatchSetDcdnDomainConfigsResponse GetResponse(Core.Transform.UnmarshallerContext unmarshallerContext)
{
return BatchSetDcdnDomainConfigsResponseUnmarshaller.Unmarshall(unmarshallerContext);
}
}
}
@@ -0,0 +1,41 @@
/*
* 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 Aliyun.Acs.Core;
using System.Collections.Generic;

namespace Aliyun.Acs.dcdn.Model.V20180115
{
public class BatchSetDcdnDomainConfigsResponse : AcsResponse
{

private string requestId;

public string RequestId
{
get
{
return requestId;
}
set
{
requestId = value;
}
}
}
}
@@ -0,0 +1,38 @@
/*
* 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 Aliyun.Acs.Core.Transform;
using Aliyun.Acs.dcdn.Model.V20180115;
using System;
using System.Collections.Generic;

namespace Aliyun.Acs.dcdn.Transform.V20180115
{
public class BatchSetDcdnDomainConfigsResponseUnmarshaller
{
public static BatchSetDcdnDomainConfigsResponse Unmarshall(UnmarshallerContext context)
{
BatchSetDcdnDomainConfigsResponse batchSetDcdnDomainConfigsResponse = new BatchSetDcdnDomainConfigsResponse();

batchSetDcdnDomainConfigsResponse.HttpResponse = context.HttpResponse;
batchSetDcdnDomainConfigsResponse.RequestId = context.StringValue("BatchSetDcdnDomainConfigs.RequestId");

return batchSetDcdnDomainConfigsResponse;
}
}
}
5 changes: 4 additions & 1 deletion aliyun-net-sdk-dcdn/aliyun-net-sdk-dcdn.vs2010.csproj
Expand Up @@ -5,7 +5,7 @@
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{7dec960b-5ddd-4cd4-bc88-f948da6bbe48}</ProjectGuid>
<ProjectGuid>{d166071e-2541-45fe-9776-2cbbc498274d}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Aliyun.Acs</RootNamespace>
Expand Down Expand Up @@ -51,6 +51,7 @@
<Compile Include="Dcdn\Model\V20180115\DescribeDcdnRefreshTasksRequest.cs" />
<Compile Include="Dcdn\Model\V20180115\DescribeDcdnDomainIspDataRequest.cs" />
<Compile Include="Dcdn\Model\V20180115\StartDcdnDomainRequest.cs" />
<Compile Include="Dcdn\Model\V20180115\BatchSetDcdnDomainConfigsRequest.cs" />
<Compile Include="Dcdn\Model\V20180115\DeleteDcdnDomainResponse.cs" />
<Compile Include="Dcdn\Model\V20180115\DescribeDcdnDomainConfigsResponse.cs" />
<Compile Include="Dcdn\Model\V20180115\DescribeDcdnTopDomainsByFlowResponse.cs" />
Expand Down Expand Up @@ -110,6 +111,7 @@
<Compile Include="Dcdn\Model\V20180115\DescribeDcdnDomainDetailResponse.cs" />
<Compile Include="Dcdn\Model\V20180115\DescribeDcdnDomainWebsocketTrafficDataRequest.cs" />
<Compile Include="Dcdn\Model\V20180115\DescribeDcdnDomainHttpCodeDataRequest.cs" />
<Compile Include="Dcdn\Model\V20180115\BatchSetDcdnDomainConfigsResponse.cs" />
<Compile Include="Dcdn\Model\V20180115\DescribeDcdnDomainBpsDataResponse.cs" />
<Compile Include="Dcdn\Model\V20180115\DescribeDcdnDomainDetailRequest.cs" />
<Compile Include="Dcdn\Model\V20180115\DescribeDcdnUserDomainsRequest.cs" />
Expand Down Expand Up @@ -144,6 +146,7 @@
<Compile Include="Dcdn\Transform\V20180115\StopDcdnDomainResponseUnmarshaller.cs" />
<Compile Include="Dcdn\Transform\V20180115\DescribeDcdnDomainTrafficDataResponseUnmarshaller.cs" />
<Compile Include="Dcdn\Transform\V20180115\DescribeDcdnDomainWebsocketHttpCodeDataResponseUnmarshaller.cs" />
<Compile Include="Dcdn\Transform\V20180115\BatchSetDcdnDomainConfigsResponseUnmarshaller.cs" />
<Compile Include="Dcdn\Transform\V20180115\DescribeDcdnDomainTopReferVisitResponseUnmarshaller.cs" />
<Compile Include="Dcdn\Transform\V20180115\DescribeDcdnDomainLogResponseUnmarshaller.cs" />
<Compile Include="Dcdn\Transform\V20180115\DescribeDcdnRefreshTasksResponseUnmarshaller.cs" />
Expand Down
2 changes: 1 addition & 1 deletion aliyun-net-sdk-dcdn/aliyun-net-sdk-dcdn.vs2017.csproj
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<RootNamespace>Aliyun.Acs.dcdn</RootNamespace>
<Version>1.2.1</Version>
<Version>1.2.2</Version>
<Authors>Alibaba Cloud</Authors>
<Copyright>©2009-2018 Alibaba Cloud</Copyright>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
Expand Down

0 comments on commit 3c412fb

Please sign in to comment.