-
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
200 changed files
with
5,653 additions
and
375 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
138 changes: 138 additions & 0 deletions
138
aliyun-net-sdk-nas/NAS/Model/V20170626/CancelDataFlowSubTaskRequest.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,138 @@ | ||
/* | ||
* 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.NAS.Transform; | ||
using Aliyun.Acs.NAS.Transform.V20170626; | ||
|
||
namespace Aliyun.Acs.NAS.Model.V20170626 | ||
{ | ||
public class CancelDataFlowSubTaskRequest : RpcAcsRequest<CancelDataFlowSubTaskResponse> | ||
{ | ||
public CancelDataFlowSubTaskRequest() | ||
: base("NAS", "2017-06-26", "CancelDataFlowSubTask", "nas", "openAPI") | ||
{ | ||
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null) | ||
{ | ||
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.NAS.Endpoint.endpointMap, null); | ||
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.NAS.Endpoint.endpointRegionalType, null); | ||
} | ||
Method = MethodType.POST; | ||
} | ||
|
||
private string clientToken; | ||
|
||
private string dataFlowTaskId; | ||
|
||
private string dataFlowSubTaskId; | ||
|
||
private string fileSystemId; | ||
|
||
private bool? dryRun; | ||
|
||
private string dataFlowId; | ||
|
||
public string ClientToken | ||
{ | ||
get | ||
{ | ||
return clientToken; | ||
} | ||
set | ||
{ | ||
clientToken = value; | ||
DictionaryUtil.Add(QueryParameters, "ClientToken", value); | ||
} | ||
} | ||
|
||
public string DataFlowTaskId | ||
{ | ||
get | ||
{ | ||
return dataFlowTaskId; | ||
} | ||
set | ||
{ | ||
dataFlowTaskId = value; | ||
DictionaryUtil.Add(QueryParameters, "DataFlowTaskId", value); | ||
} | ||
} | ||
|
||
public string DataFlowSubTaskId | ||
{ | ||
get | ||
{ | ||
return dataFlowSubTaskId; | ||
} | ||
set | ||
{ | ||
dataFlowSubTaskId = value; | ||
DictionaryUtil.Add(QueryParameters, "DataFlowSubTaskId", value); | ||
} | ||
} | ||
|
||
public string FileSystemId | ||
{ | ||
get | ||
{ | ||
return fileSystemId; | ||
} | ||
set | ||
{ | ||
fileSystemId = value; | ||
DictionaryUtil.Add(QueryParameters, "FileSystemId", value); | ||
} | ||
} | ||
|
||
public bool? DryRun | ||
{ | ||
get | ||
{ | ||
return dryRun; | ||
} | ||
set | ||
{ | ||
dryRun = value; | ||
DictionaryUtil.Add(QueryParameters, "DryRun", value.ToString()); | ||
} | ||
} | ||
|
||
public string DataFlowId | ||
{ | ||
get | ||
{ | ||
return dataFlowId; | ||
} | ||
set | ||
{ | ||
dataFlowId = value; | ||
DictionaryUtil.Add(QueryParameters, "DataFlowId", value); | ||
} | ||
} | ||
|
||
public override CancelDataFlowSubTaskResponse GetResponse(UnmarshallerContext unmarshallerContext) | ||
{ | ||
return CancelDataFlowSubTaskResponseUnmarshaller.Unmarshall(unmarshallerContext); | ||
} | ||
} | ||
} |
42 changes: 42 additions & 0 deletions
42
aliyun-net-sdk-nas/NAS/Model/V20170626/CancelDataFlowSubTaskResponse.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,42 @@ | ||
/* | ||
* 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.NAS.Model.V20170626 | ||
{ | ||
public class CancelDataFlowSubTaskResponse : AcsResponse | ||
{ | ||
|
||
private string requestId; | ||
|
||
public string RequestId | ||
{ | ||
get | ||
{ | ||
return requestId; | ||
} | ||
set | ||
{ | ||
requestId = 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
109 changes: 109 additions & 0 deletions
109
aliyun-net-sdk-nas/NAS/Model/V20170626/CancelFilesetQuotaRequest.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,109 @@ | ||
/* | ||
* 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.NAS.Transform; | ||
using Aliyun.Acs.NAS.Transform.V20170626; | ||
|
||
namespace Aliyun.Acs.NAS.Model.V20170626 | ||
{ | ||
public class CancelFilesetQuotaRequest : RpcAcsRequest<CancelFilesetQuotaResponse> | ||
{ | ||
public CancelFilesetQuotaRequest() | ||
: base("NAS", "2017-06-26", "CancelFilesetQuota", "nas", "openAPI") | ||
{ | ||
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null) | ||
{ | ||
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.NAS.Endpoint.endpointMap, null); | ||
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.NAS.Endpoint.endpointRegionalType, null); | ||
} | ||
Protocol = ProtocolType.HTTPS; | ||
Method = MethodType.POST; | ||
} | ||
|
||
private string fsetId; | ||
|
||
private string clientToken; | ||
|
||
private string fileSystemId; | ||
|
||
private bool? dryRun; | ||
|
||
public string FsetId | ||
{ | ||
get | ||
{ | ||
return fsetId; | ||
} | ||
set | ||
{ | ||
fsetId = value; | ||
DictionaryUtil.Add(QueryParameters, "FsetId", value); | ||
} | ||
} | ||
|
||
public string ClientToken | ||
{ | ||
get | ||
{ | ||
return clientToken; | ||
} | ||
set | ||
{ | ||
clientToken = value; | ||
DictionaryUtil.Add(QueryParameters, "ClientToken", value); | ||
} | ||
} | ||
|
||
public string FileSystemId | ||
{ | ||
get | ||
{ | ||
return fileSystemId; | ||
} | ||
set | ||
{ | ||
fileSystemId = value; | ||
DictionaryUtil.Add(QueryParameters, "FileSystemId", value); | ||
} | ||
} | ||
|
||
public bool? DryRun | ||
{ | ||
get | ||
{ | ||
return dryRun; | ||
} | ||
set | ||
{ | ||
dryRun = value; | ||
DictionaryUtil.Add(QueryParameters, "DryRun", value.ToString()); | ||
} | ||
} | ||
|
||
public override CancelFilesetQuotaResponse GetResponse(UnmarshallerContext unmarshallerContext) | ||
{ | ||
return CancelFilesetQuotaResponseUnmarshaller.Unmarshall(unmarshallerContext); | ||
} | ||
} | ||
} |
Oops, something went wrong.