Skip to content

Commit e34b690

Browse files
committed
Generated 2019-01-01 for Cassandra.
1 parent 00e3919 commit e34b690

File tree

111 files changed

+727
-475
lines changed

Some content is hidden

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

111 files changed

+727
-475
lines changed

CHANGELOG

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2021-07-08 Version: 1.0.7
2+
- Generated 2019-01-01 for `Cassandra`.
3+
14
2021-07-08 Version: 3.9.9
25
- Generated 2016-11-01 for `live`.
36

aliyun-net-sdk-cassandra/Cassandra/Model/V20190101/AllocatePublicContactPointsRequest.cs

+17-2
Original file line numberDiff line numberDiff line change
@@ -34,16 +34,31 @@ public AllocatePublicContactPointsRequest()
3434
{
3535
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
3636
{
37-
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Endpoint.endpointMap, null);
38-
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Endpoint.endpointRegionalType, null);
37+
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.Cassandra.Endpoint.endpointMap, null);
38+
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.Cassandra.Endpoint.endpointRegionalType, null);
3939
}
4040
Method = MethodType.POST;
4141
}
4242

43+
private string clientToken;
44+
4345
private string dataCenterId;
4446

4547
private string clusterId;
4648

49+
public string ClientToken
50+
{
51+
get
52+
{
53+
return clientToken;
54+
}
55+
set
56+
{
57+
clientToken = value;
58+
DictionaryUtil.Add(QueryParameters, "ClientToken", value);
59+
}
60+
}
61+
4762
public string DataCenterId
4863
{
4964
get

aliyun-net-sdk-cassandra/Cassandra/Model/V20190101/CreateBackupPlanRequest.cs

+17-2
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,14 @@ public CreateBackupPlanRequest()
3434
{
3535
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
3636
{
37-
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Endpoint.endpointMap, null);
38-
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Endpoint.endpointRegionalType, null);
37+
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.Cassandra.Endpoint.endpointMap, null);
38+
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.Cassandra.Endpoint.endpointRegionalType, null);
3939
}
4040
Method = MethodType.POST;
4141
}
4242

43+
private string clientToken;
44+
4345
private int? retentionPeriod;
4446

4547
private string dataCenterId;
@@ -52,6 +54,19 @@ public CreateBackupPlanRequest()
5254

5355
private string backupPeriod;
5456

57+
public string ClientToken
58+
{
59+
get
60+
{
61+
return clientToken;
62+
}
63+
set
64+
{
65+
clientToken = value;
66+
DictionaryUtil.Add(QueryParameters, "ClientToken", value);
67+
}
68+
}
69+
5570
public int? RetentionPeriod
5671
{
5772
get

aliyun-net-sdk-cassandra/Cassandra/Model/V20190101/CreateClusterRequest.cs

+17-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ public CreateClusterRequest()
3434
{
3535
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
3636
{
37-
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Endpoint.endpointMap, null);
38-
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Endpoint.endpointRegionalType, null);
37+
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.Cassandra.Endpoint.endpointMap, null);
38+
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.Cassandra.Endpoint.endpointRegionalType, null);
3939
}
4040
Method = MethodType.POST;
4141
}
@@ -44,6 +44,8 @@ public CreateClusterRequest()
4444

4545
private string clusterName;
4646

47+
private string resourceGroupId;
48+
4749
private string password;
4850

4951
private string instanceType;
@@ -100,6 +102,19 @@ public string ClusterName
100102
}
101103
}
102104

105+
public string ResourceGroupId
106+
{
107+
get
108+
{
109+
return resourceGroupId;
110+
}
111+
set
112+
{
113+
resourceGroupId = value;
114+
DictionaryUtil.Add(QueryParameters, "ResourceGroupId", value);
115+
}
116+
}
117+
103118
public string Password
104119
{
105120
get

aliyun-net-sdk-cassandra/Cassandra/Model/V20190101/CreateDataCenterRequest.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ public CreateDataCenterRequest()
3434
{
3535
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
3636
{
37-
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Endpoint.endpointMap, null);
38-
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Endpoint.endpointRegionalType, null);
37+
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.Cassandra.Endpoint.endpointMap, null);
38+
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.Cassandra.Endpoint.endpointRegionalType, null);
3939
}
4040
Method = MethodType.POST;
4141
}

aliyun-net-sdk-cassandra/Cassandra/Model/V20190101/DeleteBackupPlanRequest.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ public DeleteBackupPlanRequest()
3434
{
3535
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
3636
{
37-
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Endpoint.endpointMap, null);
38-
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Endpoint.endpointRegionalType, null);
37+
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.Cassandra.Endpoint.endpointMap, null);
38+
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.Cassandra.Endpoint.endpointRegionalType, null);
3939
}
4040
Method = MethodType.POST;
4141
}

aliyun-net-sdk-cassandra/Cassandra/Model/V20190101/DeleteClusterRequest.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ public DeleteClusterRequest()
3434
{
3535
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
3636
{
37-
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Endpoint.endpointMap, null);
38-
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Endpoint.endpointRegionalType, null);
37+
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.Cassandra.Endpoint.endpointMap, null);
38+
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.Cassandra.Endpoint.endpointRegionalType, null);
3939
}
4040
Method = MethodType.POST;
4141
}

aliyun-net-sdk-cassandra/Cassandra/Model/V20190101/DeleteDataCenterRequest.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ public DeleteDataCenterRequest()
3434
{
3535
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
3636
{
37-
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Endpoint.endpointMap, null);
38-
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Endpoint.endpointRegionalType, null);
37+
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.Cassandra.Endpoint.endpointMap, null);
38+
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.Cassandra.Endpoint.endpointRegionalType, null);
3939
}
4040
Method = MethodType.POST;
4141
}

aliyun-net-sdk-cassandra/Cassandra/Model/V20190101/DeleteNodeToolExecutionHistoryRequest.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ public DeleteNodeToolExecutionHistoryRequest()
3434
{
3535
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
3636
{
37-
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Endpoint.endpointMap, null);
38-
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Endpoint.endpointRegionalType, null);
37+
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.Cassandra.Endpoint.endpointMap, null);
38+
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.Cassandra.Endpoint.endpointRegionalType, null);
3939
}
4040
Method = MethodType.POST;
4141
}

aliyun-net-sdk-cassandra/Cassandra/Model/V20190101/DescribeAccountsRequest.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ public DescribeAccountsRequest()
3434
{
3535
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
3636
{
37-
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Endpoint.endpointMap, null);
38-
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Endpoint.endpointRegionalType, null);
37+
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.Cassandra.Endpoint.endpointMap, null);
38+
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.Cassandra.Endpoint.endpointRegionalType, null);
3939
}
4040
Method = MethodType.POST;
4141
}

aliyun-net-sdk-cassandra/Cassandra/Model/V20190101/DescribeBackupPlanRequest.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ public DescribeBackupPlanRequest()
3434
{
3535
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
3636
{
37-
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Endpoint.endpointMap, null);
38-
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Endpoint.endpointRegionalType, null);
37+
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.Cassandra.Endpoint.endpointMap, null);
38+
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.Cassandra.Endpoint.endpointRegionalType, null);
3939
}
4040
Method = MethodType.POST;
4141
}

aliyun-net-sdk-cassandra/Cassandra/Model/V20190101/DescribeBackupPlansRequest.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ public DescribeBackupPlansRequest()
3434
{
3535
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
3636
{
37-
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Endpoint.endpointMap, null);
38-
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Endpoint.endpointRegionalType, null);
37+
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.Cassandra.Endpoint.endpointMap, null);
38+
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.Cassandra.Endpoint.endpointRegionalType, null);
3939
}
4040
Method = MethodType.POST;
4141
}

aliyun-net-sdk-cassandra/Cassandra/Model/V20190101/DescribeBackupRequest.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ public DescribeBackupRequest()
3434
{
3535
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
3636
{
37-
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Endpoint.endpointMap, null);
38-
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Endpoint.endpointRegionalType, null);
37+
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.Cassandra.Endpoint.endpointMap, null);
38+
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.Cassandra.Endpoint.endpointRegionalType, null);
3939
}
4040
Method = MethodType.POST;
4141
}

aliyun-net-sdk-cassandra/Cassandra/Model/V20190101/DescribeBackupsRequest.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ public DescribeBackupsRequest()
3434
{
3535
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
3636
{
37-
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Endpoint.endpointMap, null);
38-
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Endpoint.endpointRegionalType, null);
37+
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.Cassandra.Endpoint.endpointMap, null);
38+
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.Cassandra.Endpoint.endpointRegionalType, null);
3939
}
4040
Method = MethodType.POST;
4141
}

aliyun-net-sdk-cassandra/Cassandra/Model/V20190101/DescribeClusterDashboardRequest.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ public DescribeClusterDashboardRequest()
3434
{
3535
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
3636
{
37-
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Endpoint.endpointMap, null);
38-
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Endpoint.endpointRegionalType, null);
37+
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.Cassandra.Endpoint.endpointMap, null);
38+
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.Cassandra.Endpoint.endpointRegionalType, null);
3939
}
4040
Method = MethodType.POST;
4141
}

aliyun-net-sdk-cassandra/Cassandra/Model/V20190101/DescribeClusterRequest.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ public DescribeClusterRequest()
3434
{
3535
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
3636
{
37-
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Endpoint.endpointMap, null);
38-
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Endpoint.endpointRegionalType, null);
37+
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.Cassandra.Endpoint.endpointMap, null);
38+
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.Cassandra.Endpoint.endpointRegionalType, null);
3939
}
4040
Method = MethodType.POST;
4141
}

aliyun-net-sdk-cassandra/Cassandra/Model/V20190101/DescribeClusterResponse.cs

+14
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,8 @@ public class DescribeCluster_Cluster
8686

8787
private int? autoRenewPeriod;
8888

89+
private string resourceGroupId;
90+
8991
private List<DescribeCluster_Tag> tags;
9092

9193
public string ClusterId
@@ -268,6 +270,18 @@ public int? AutoRenewPeriod
268270
}
269271
}
270272

273+
public string ResourceGroupId
274+
{
275+
get
276+
{
277+
return resourceGroupId;
278+
}
279+
set
280+
{
281+
resourceGroupId = value;
282+
}
283+
}
284+
271285
public List<DescribeCluster_Tag> Tags
272286
{
273287
get

aliyun-net-sdk-cassandra/Cassandra/Model/V20190101/DescribeClusterStatusRequest.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ public DescribeClusterStatusRequest()
3434
{
3535
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
3636
{
37-
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Endpoint.endpointMap, null);
38-
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Endpoint.endpointRegionalType, null);
37+
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.Cassandra.Endpoint.endpointMap, null);
38+
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.Cassandra.Endpoint.endpointRegionalType, null);
3939
}
4040
Method = MethodType.POST;
4141
}

aliyun-net-sdk-cassandra/Cassandra/Model/V20190101/DescribeClustersRequest.cs

+17-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ public DescribeClustersRequest()
3434
{
3535
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
3636
{
37-
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Endpoint.endpointMap, null);
38-
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Endpoint.endpointRegionalType, null);
37+
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.Cassandra.Endpoint.endpointMap, null);
38+
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.Cassandra.Endpoint.endpointRegionalType, null);
3939
}
4040
Method = MethodType.POST;
4141
}
@@ -44,6 +44,8 @@ public DescribeClustersRequest()
4444

4545
private int? pageNumber;
4646

47+
private string resourceGroupId;
48+
4749
private int? pageSize;
4850

4951
private List<Tag> tags = new List<Tag>(){ };
@@ -74,6 +76,19 @@ public int? PageNumber
7476
}
7577
}
7678

79+
public string ResourceGroupId
80+
{
81+
get
82+
{
83+
return resourceGroupId;
84+
}
85+
set
86+
{
87+
resourceGroupId = value;
88+
DictionaryUtil.Add(QueryParameters, "ResourceGroupId", value);
89+
}
90+
}
91+
7792
public int? PageSize
7893
{
7994
get

aliyun-net-sdk-cassandra/Cassandra/Model/V20190101/DescribeClustersResponse.cs

+14
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,8 @@ public class DescribeClusters_Cluster
122122

123123
private int? autoRenewPeriod;
124124

125+
private string resourceGroupId;
126+
125127
private List<DescribeClusters_Tag> tags;
126128

127129
public string ClusterId
@@ -268,6 +270,18 @@ public int? AutoRenewPeriod
268270
}
269271
}
270272

273+
public string ResourceGroupId
274+
{
275+
get
276+
{
277+
return resourceGroupId;
278+
}
279+
set
280+
{
281+
resourceGroupId = value;
282+
}
283+
}
284+
271285
public List<DescribeClusters_Tag> Tags
272286
{
273287
get

aliyun-net-sdk-cassandra/Cassandra/Model/V20190101/DescribeContactPointsRequest.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ public DescribeContactPointsRequest()
3434
{
3535
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
3636
{
37-
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Endpoint.endpointMap, null);
38-
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Endpoint.endpointRegionalType, null);
37+
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.Cassandra.Endpoint.endpointMap, null);
38+
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.Cassandra.Endpoint.endpointRegionalType, null);
3939
}
4040
Method = MethodType.POST;
4141
}

aliyun-net-sdk-cassandra/Cassandra/Model/V20190101/DescribeDataCenterRequest.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ public DescribeDataCenterRequest()
3434
{
3535
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
3636
{
37-
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Endpoint.endpointMap, null);
38-
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Endpoint.endpointRegionalType, null);
37+
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.Cassandra.Endpoint.endpointMap, null);
38+
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.Cassandra.Endpoint.endpointRegionalType, null);
3939
}
4040
Method = MethodType.POST;
4141
}

aliyun-net-sdk-cassandra/Cassandra/Model/V20190101/DescribeDataCentersRequest.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ public DescribeDataCentersRequest()
3434
{
3535
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
3636
{
37-
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Endpoint.endpointMap, null);
38-
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Endpoint.endpointRegionalType, null);
37+
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.Cassandra.Endpoint.endpointMap, null);
38+
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.Cassandra.Endpoint.endpointRegionalType, null);
3939
}
4040
Method = MethodType.POST;
4141
}

0 commit comments

Comments
 (0)