-
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
225 changed files
with
6,882 additions
and
385 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
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
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
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
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
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
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
128 changes: 128 additions & 0 deletions
128
aliyun-net-sdk-domain/Domain/Model/V20180129/ChangeResourceGroupRequest.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,128 @@ | ||
/* | ||
* 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.Domain.Transform; | ||
using Aliyun.Acs.Domain.Transform.V20180129; | ||
|
||
namespace Aliyun.Acs.Domain.Model.V20180129 | ||
{ | ||
public class ChangeResourceGroupRequest : RpcAcsRequest<ChangeResourceGroupResponse> | ||
{ | ||
public ChangeResourceGroupRequest() | ||
: base("Domain", "2018-01-29", "ChangeResourceGroup", "domain", "openAPI") | ||
{ | ||
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null) | ||
{ | ||
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.Domain.Endpoint.endpointMap, null); | ||
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.Domain.Endpoint.endpointRegionalType, null); | ||
} | ||
Method = MethodType.POST; | ||
} | ||
|
||
private string resourceId; | ||
|
||
private string resourceType; | ||
|
||
private string newResourceGroupId; | ||
|
||
private string userClientIp; | ||
|
||
private string lang; | ||
|
||
public string ResourceId | ||
{ | ||
get | ||
{ | ||
return resourceId; | ||
} | ||
set | ||
{ | ||
resourceId = value; | ||
DictionaryUtil.Add(QueryParameters, "ResourceId", value); | ||
} | ||
} | ||
|
||
public string ResourceType | ||
{ | ||
get | ||
{ | ||
return resourceType; | ||
} | ||
set | ||
{ | ||
resourceType = value; | ||
DictionaryUtil.Add(QueryParameters, "ResourceType", value); | ||
} | ||
} | ||
|
||
public string NewResourceGroupId | ||
{ | ||
get | ||
{ | ||
return newResourceGroupId; | ||
} | ||
set | ||
{ | ||
newResourceGroupId = value; | ||
DictionaryUtil.Add(QueryParameters, "NewResourceGroupId", value); | ||
} | ||
} | ||
|
||
public string UserClientIp | ||
{ | ||
get | ||
{ | ||
return userClientIp; | ||
} | ||
set | ||
{ | ||
userClientIp = value; | ||
DictionaryUtil.Add(QueryParameters, "UserClientIp", value); | ||
} | ||
} | ||
|
||
public string Lang | ||
{ | ||
get | ||
{ | ||
return lang; | ||
} | ||
set | ||
{ | ||
lang = value; | ||
DictionaryUtil.Add(QueryParameters, "Lang", value); | ||
} | ||
} | ||
|
||
public override bool CheckShowJsonItemName() | ||
{ | ||
return false; | ||
} | ||
|
||
public override ChangeResourceGroupResponse GetResponse(UnmarshallerContext unmarshallerContext) | ||
{ | ||
return ChangeResourceGroupResponseUnmarshaller.Unmarshall(unmarshallerContext); | ||
} | ||
} | ||
} |
56 changes: 56 additions & 0 deletions
56
aliyun-net-sdk-domain/Domain/Model/V20180129/ChangeResourceGroupResponse.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.Domain.Model.V20180129 | ||
{ | ||
public class ChangeResourceGroupResponse : AcsResponse | ||
{ | ||
|
||
private string requestId; | ||
|
||
private string result; | ||
|
||
public string RequestId | ||
{ | ||
get | ||
{ | ||
return requestId; | ||
} | ||
set | ||
{ | ||
requestId = value; | ||
} | ||
} | ||
|
||
public string Result | ||
{ | ||
get | ||
{ | ||
return result; | ||
} | ||
set | ||
{ | ||
result = value; | ||
} | ||
} | ||
} | ||
} |
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
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
Oops, something went wrong.