Skip to content

Commit 47b7f19

Browse files
committed
Support Fileset for BmCPFS.
1 parent ce7d935 commit 47b7f19

File tree

200 files changed

+5653
-375
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

200 files changed

+5653
-375
lines changed

CHANGELOG

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2024-10-28 Version: 3.2.6
2+
- Support Fileset for BmCPFS.
3+
- Support Fileset Quota for BmCPFS.
4+
15
2024-10-24 Version: 1.1.13
26
- Publish sdk.
37

aliyun-net-sdk-nas/NAS/Model/V20170626/AddClientToBlackListRequest.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ namespace Aliyun.Acs.NAS.Model.V20170626
3030
public class AddClientToBlackListRequest : RpcAcsRequest<AddClientToBlackListResponse>
3131
{
3232
public AddClientToBlackListRequest()
33-
: base("NAS", "2017-06-26", "AddClientToBlackList", "NAS", "openAPI")
33+
: base("NAS", "2017-06-26", "AddClientToBlackList", "nas", "openAPI")
3434
{
3535
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
3636
{

aliyun-net-sdk-nas/NAS/Model/V20170626/AddTagsRequest.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ namespace Aliyun.Acs.NAS.Model.V20170626
3030
public class AddTagsRequest : RpcAcsRequest<AddTagsResponse>
3131
{
3232
public AddTagsRequest()
33-
: base("NAS", "2017-06-26", "AddTags", "NAS", "openAPI")
33+
: base("NAS", "2017-06-26", "AddTags", "nas", "openAPI")
3434
{
3535
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
3636
{

aliyun-net-sdk-nas/NAS/Model/V20170626/ApplyAutoSnapshotPolicyRequest.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ namespace Aliyun.Acs.NAS.Model.V20170626
3030
public class ApplyAutoSnapshotPolicyRequest : RpcAcsRequest<ApplyAutoSnapshotPolicyResponse>
3131
{
3232
public ApplyAutoSnapshotPolicyRequest()
33-
: base("NAS", "2017-06-26", "ApplyAutoSnapshotPolicy", "NAS", "openAPI")
33+
: base("NAS", "2017-06-26", "ApplyAutoSnapshotPolicy", "nas", "openAPI")
3434
{
3535
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
3636
{

aliyun-net-sdk-nas/NAS/Model/V20170626/ApplyDataFlowAutoRefreshRequest.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ namespace Aliyun.Acs.NAS.Model.V20170626
3030
public class ApplyDataFlowAutoRefreshRequest : RpcAcsRequest<ApplyDataFlowAutoRefreshResponse>
3131
{
3232
public ApplyDataFlowAutoRefreshRequest()
33-
: base("NAS", "2017-06-26", "ApplyDataFlowAutoRefresh", "NAS", "openAPI")
33+
: base("NAS", "2017-06-26", "ApplyDataFlowAutoRefresh", "nas", "openAPI")
3434
{
3535
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
3636
{

aliyun-net-sdk-nas/NAS/Model/V20170626/CancelAutoSnapshotPolicyRequest.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ namespace Aliyun.Acs.NAS.Model.V20170626
3030
public class CancelAutoSnapshotPolicyRequest : RpcAcsRequest<CancelAutoSnapshotPolicyResponse>
3131
{
3232
public CancelAutoSnapshotPolicyRequest()
33-
: base("NAS", "2017-06-26", "CancelAutoSnapshotPolicy", "NAS", "openAPI")
33+
: base("NAS", "2017-06-26", "CancelAutoSnapshotPolicy", "nas", "openAPI")
3434
{
3535
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
3636
{

aliyun-net-sdk-nas/NAS/Model/V20170626/CancelDataFlowAutoRefreshRequest.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ namespace Aliyun.Acs.NAS.Model.V20170626
3030
public class CancelDataFlowAutoRefreshRequest : RpcAcsRequest<CancelDataFlowAutoRefreshResponse>
3131
{
3232
public CancelDataFlowAutoRefreshRequest()
33-
: base("NAS", "2017-06-26", "CancelDataFlowAutoRefresh", "NAS", "openAPI")
33+
: base("NAS", "2017-06-26", "CancelDataFlowAutoRefresh", "nas", "openAPI")
3434
{
3535
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
3636
{
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,138 @@
1+
/*
2+
* Licensed to the Apache Software Foundation (ASF) under one
3+
* or more contributor license agreements. See the NOTICE file
4+
* distributed with this work for additional information
5+
* regarding copyright ownership. The ASF licenses this file
6+
* to you under the Apache License, Version 2.0 (the
7+
* "License"); you may not use this file except in compliance
8+
* with the License. You may obtain a copy of the License at
9+
*
10+
* http://www.apache.org/licenses/LICENSE-2.0
11+
*
12+
* Unless required by applicable law or agreed to in writing,
13+
* software distributed under the License is distributed on an
14+
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15+
* KIND, either express or implied. See the License for the
16+
* specific language governing permissions and limitations
17+
* under the License.
18+
*/
19+
using System.Collections.Generic;
20+
21+
using Aliyun.Acs.Core;
22+
using Aliyun.Acs.Core.Http;
23+
using Aliyun.Acs.Core.Transform;
24+
using Aliyun.Acs.Core.Utils;
25+
using Aliyun.Acs.NAS.Transform;
26+
using Aliyun.Acs.NAS.Transform.V20170626;
27+
28+
namespace Aliyun.Acs.NAS.Model.V20170626
29+
{
30+
public class CancelDataFlowSubTaskRequest : RpcAcsRequest<CancelDataFlowSubTaskResponse>
31+
{
32+
public CancelDataFlowSubTaskRequest()
33+
: base("NAS", "2017-06-26", "CancelDataFlowSubTask", "nas", "openAPI")
34+
{
35+
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
36+
{
37+
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.NAS.Endpoint.endpointMap, null);
38+
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.NAS.Endpoint.endpointRegionalType, null);
39+
}
40+
Method = MethodType.POST;
41+
}
42+
43+
private string clientToken;
44+
45+
private string dataFlowTaskId;
46+
47+
private string dataFlowSubTaskId;
48+
49+
private string fileSystemId;
50+
51+
private bool? dryRun;
52+
53+
private string dataFlowId;
54+
55+
public string ClientToken
56+
{
57+
get
58+
{
59+
return clientToken;
60+
}
61+
set
62+
{
63+
clientToken = value;
64+
DictionaryUtil.Add(QueryParameters, "ClientToken", value);
65+
}
66+
}
67+
68+
public string DataFlowTaskId
69+
{
70+
get
71+
{
72+
return dataFlowTaskId;
73+
}
74+
set
75+
{
76+
dataFlowTaskId = value;
77+
DictionaryUtil.Add(QueryParameters, "DataFlowTaskId", value);
78+
}
79+
}
80+
81+
public string DataFlowSubTaskId
82+
{
83+
get
84+
{
85+
return dataFlowSubTaskId;
86+
}
87+
set
88+
{
89+
dataFlowSubTaskId = value;
90+
DictionaryUtil.Add(QueryParameters, "DataFlowSubTaskId", value);
91+
}
92+
}
93+
94+
public string FileSystemId
95+
{
96+
get
97+
{
98+
return fileSystemId;
99+
}
100+
set
101+
{
102+
fileSystemId = value;
103+
DictionaryUtil.Add(QueryParameters, "FileSystemId", value);
104+
}
105+
}
106+
107+
public bool? DryRun
108+
{
109+
get
110+
{
111+
return dryRun;
112+
}
113+
set
114+
{
115+
dryRun = value;
116+
DictionaryUtil.Add(QueryParameters, "DryRun", value.ToString());
117+
}
118+
}
119+
120+
public string DataFlowId
121+
{
122+
get
123+
{
124+
return dataFlowId;
125+
}
126+
set
127+
{
128+
dataFlowId = value;
129+
DictionaryUtil.Add(QueryParameters, "DataFlowId", value);
130+
}
131+
}
132+
133+
public override CancelDataFlowSubTaskResponse GetResponse(UnmarshallerContext unmarshallerContext)
134+
{
135+
return CancelDataFlowSubTaskResponseUnmarshaller.Unmarshall(unmarshallerContext);
136+
}
137+
}
138+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
/*
2+
* Licensed to the Apache Software Foundation (ASF) under one
3+
* or more contributor license agreements. See the NOTICE file
4+
* distributed with this work for additional information
5+
* regarding copyright ownership. The ASF licenses this file
6+
* to you under the Apache License, Version 2.0 (the
7+
* "License"); you may not use this file except in compliance
8+
* with the License. You may obtain a copy of the License at
9+
*
10+
* http://www.apache.org/licenses/LICENSE-2.0
11+
*
12+
* Unless required by applicable law or agreed to in writing,
13+
* software distributed under the License is distributed on an
14+
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15+
* KIND, either express or implied. See the License for the
16+
* specific language governing permissions and limitations
17+
* under the License.
18+
*/
19+
using System.Collections.Generic;
20+
using Newtonsoft.Json;
21+
using Aliyun.Acs.Core;
22+
23+
namespace Aliyun.Acs.NAS.Model.V20170626
24+
{
25+
public class CancelDataFlowSubTaskResponse : AcsResponse
26+
{
27+
28+
private string requestId;
29+
30+
public string RequestId
31+
{
32+
get
33+
{
34+
return requestId;
35+
}
36+
set
37+
{
38+
requestId = value;
39+
}
40+
}
41+
}
42+
}

aliyun-net-sdk-nas/NAS/Model/V20170626/CancelDataFlowTaskRequest.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ namespace Aliyun.Acs.NAS.Model.V20170626
3030
public class CancelDataFlowTaskRequest : RpcAcsRequest<CancelDataFlowTaskResponse>
3131
{
3232
public CancelDataFlowTaskRequest()
33-
: base("NAS", "2017-06-26", "CancelDataFlowTask", "NAS", "openAPI")
33+
: base("NAS", "2017-06-26", "CancelDataFlowTask", "nas", "openAPI")
3434
{
3535
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
3636
{

aliyun-net-sdk-nas/NAS/Model/V20170626/CancelDirQuotaRequest.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ namespace Aliyun.Acs.NAS.Model.V20170626
3030
public class CancelDirQuotaRequest : RpcAcsRequest<CancelDirQuotaResponse>
3131
{
3232
public CancelDirQuotaRequest()
33-
: base("NAS", "2017-06-26", "CancelDirQuota", "NAS", "openAPI")
33+
: base("NAS", "2017-06-26", "CancelDirQuota", "nas", "openAPI")
3434
{
3535
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
3636
{
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,109 @@
1+
/*
2+
* Licensed to the Apache Software Foundation (ASF) under one
3+
* or more contributor license agreements. See the NOTICE file
4+
* distributed with this work for additional information
5+
* regarding copyright ownership. The ASF licenses this file
6+
* to you under the Apache License, Version 2.0 (the
7+
* "License"); you may not use this file except in compliance
8+
* with the License. You may obtain a copy of the License at
9+
*
10+
* http://www.apache.org/licenses/LICENSE-2.0
11+
*
12+
* Unless required by applicable law or agreed to in writing,
13+
* software distributed under the License is distributed on an
14+
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15+
* KIND, either express or implied. See the License for the
16+
* specific language governing permissions and limitations
17+
* under the License.
18+
*/
19+
using System.Collections.Generic;
20+
21+
using Aliyun.Acs.Core;
22+
using Aliyun.Acs.Core.Http;
23+
using Aliyun.Acs.Core.Transform;
24+
using Aliyun.Acs.Core.Utils;
25+
using Aliyun.Acs.NAS.Transform;
26+
using Aliyun.Acs.NAS.Transform.V20170626;
27+
28+
namespace Aliyun.Acs.NAS.Model.V20170626
29+
{
30+
public class CancelFilesetQuotaRequest : RpcAcsRequest<CancelFilesetQuotaResponse>
31+
{
32+
public CancelFilesetQuotaRequest()
33+
: base("NAS", "2017-06-26", "CancelFilesetQuota", "nas", "openAPI")
34+
{
35+
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
36+
{
37+
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.NAS.Endpoint.endpointMap, null);
38+
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.NAS.Endpoint.endpointRegionalType, null);
39+
}
40+
Protocol = ProtocolType.HTTPS;
41+
Method = MethodType.POST;
42+
}
43+
44+
private string fsetId;
45+
46+
private string clientToken;
47+
48+
private string fileSystemId;
49+
50+
private bool? dryRun;
51+
52+
public string FsetId
53+
{
54+
get
55+
{
56+
return fsetId;
57+
}
58+
set
59+
{
60+
fsetId = value;
61+
DictionaryUtil.Add(QueryParameters, "FsetId", value);
62+
}
63+
}
64+
65+
public string ClientToken
66+
{
67+
get
68+
{
69+
return clientToken;
70+
}
71+
set
72+
{
73+
clientToken = value;
74+
DictionaryUtil.Add(QueryParameters, "ClientToken", value);
75+
}
76+
}
77+
78+
public string FileSystemId
79+
{
80+
get
81+
{
82+
return fileSystemId;
83+
}
84+
set
85+
{
86+
fileSystemId = value;
87+
DictionaryUtil.Add(QueryParameters, "FileSystemId", value);
88+
}
89+
}
90+
91+
public bool? DryRun
92+
{
93+
get
94+
{
95+
return dryRun;
96+
}
97+
set
98+
{
99+
dryRun = value;
100+
DictionaryUtil.Add(QueryParameters, "DryRun", value.ToString());
101+
}
102+
}
103+
104+
public override CancelFilesetQuotaResponse GetResponse(UnmarshallerContext unmarshallerContext)
105+
{
106+
return CancelFilesetQuotaResponseUnmarshaller.Unmarshall(unmarshallerContext);
107+
}
108+
}
109+
}

0 commit comments

Comments
 (0)