diff --git a/CHANGELOG b/CHANGELOG index 6f597ae5e..256efe991 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,6 @@ +2024-08-13 Version: 3.0.9 +- Support RDS Custom. + 2024-08-13 Version: 2.15.4 - Support DryRun parameter OpenAPI. diff --git a/aliyun-net-sdk-rds/Rds/Model/V20140815/CancelImportRequest.cs b/aliyun-net-sdk-rds/Rds/Model/V20140815/CancelImportRequest.cs deleted file mode 100644 index e734266b5..000000000 --- a/aliyun-net-sdk-rds/Rds/Model/V20140815/CancelImportRequest.cs +++ /dev/null @@ -1,153 +0,0 @@ -/* - * 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.Rds.Transform; -using Aliyun.Acs.Rds.Transform.V20140815; - -namespace Aliyun.Acs.Rds.Model.V20140815 -{ - public class CancelImportRequest : RpcAcsRequest - { - public CancelImportRequest() - : base("Rds", "2014-08-15", "CancelImport", "rds", "openAPI") - { - if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null) - { - this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.Rds.Endpoint.endpointMap, null); - this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.Rds.Endpoint.endpointRegionalType, null); - } - Method = MethodType.POST; - } - - private long? resourceOwnerId; - - private string resourceGroupId; - - private int? importId; - - private string dBInstanceId; - - private string resourceOwnerAccount; - - private string ownerAccount; - - private long? ownerId; - - public long? ResourceOwnerId - { - get - { - return resourceOwnerId; - } - set - { - resourceOwnerId = value; - DictionaryUtil.Add(QueryParameters, "ResourceOwnerId", value.ToString()); - } - } - - public string ResourceGroupId - { - get - { - return resourceGroupId; - } - set - { - resourceGroupId = value; - DictionaryUtil.Add(QueryParameters, "ResourceGroupId", value); - } - } - - public int? ImportId - { - get - { - return importId; - } - set - { - importId = value; - DictionaryUtil.Add(QueryParameters, "ImportId", value.ToString()); - } - } - - public string DBInstanceId - { - get - { - return dBInstanceId; - } - set - { - dBInstanceId = value; - DictionaryUtil.Add(QueryParameters, "DBInstanceId", value); - } - } - - public string ResourceOwnerAccount - { - get - { - return resourceOwnerAccount; - } - set - { - resourceOwnerAccount = value; - DictionaryUtil.Add(QueryParameters, "ResourceOwnerAccount", value); - } - } - - public string OwnerAccount - { - get - { - return ownerAccount; - } - set - { - ownerAccount = value; - DictionaryUtil.Add(QueryParameters, "OwnerAccount", value); - } - } - - public long? OwnerId - { - get - { - return ownerId; - } - set - { - ownerId = value; - DictionaryUtil.Add(QueryParameters, "OwnerId", value.ToString()); - } - } - - public override CancelImportResponse GetResponse(UnmarshallerContext unmarshallerContext) - { - return CancelImportResponseUnmarshaller.Unmarshall(unmarshallerContext); - } - } -} diff --git a/aliyun-net-sdk-rds/Rds/Model/V20140815/CancelImportResponse.cs b/aliyun-net-sdk-rds/Rds/Model/V20140815/CancelImportResponse.cs deleted file mode 100644 index 4d09635c5..000000000 --- a/aliyun-net-sdk-rds/Rds/Model/V20140815/CancelImportResponse.cs +++ /dev/null @@ -1,42 +0,0 @@ -/* - * 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.Rds.Model.V20140815 -{ - public class CancelImportResponse : AcsResponse - { - - private string requestId; - - public string RequestId - { - get - { - return requestId; - } - set - { - requestId = value; - } - } - } -} diff --git a/aliyun-net-sdk-rds/Rds/Model/V20140815/CloneDBInstanceRequest.cs b/aliyun-net-sdk-rds/Rds/Model/V20140815/CloneDBInstanceRequest.cs index 5b0b6fba3..a200edcf0 100644 --- a/aliyun-net-sdk-rds/Rds/Model/V20140815/CloneDBInstanceRequest.cs +++ b/aliyun-net-sdk-rds/Rds/Model/V20140815/CloneDBInstanceRequest.cs @@ -63,6 +63,8 @@ public CloneDBInstanceRequest() private string instanceNetworkType; + private string clientToken; + private string zoneIdSlave1; private string zoneIdSlave2; @@ -253,6 +255,20 @@ public string InstanceNetworkType } } + [JsonProperty(PropertyName = "ClientToken")] + public string ClientToken + { + get + { + return clientToken; + } + set + { + clientToken = value; + DictionaryUtil.Add(QueryParameters, "ClientToken", value); + } + } + [JsonProperty(PropertyName = "ZoneIdSlave1")] public string ZoneIdSlave1 { diff --git a/aliyun-net-sdk-rds/Rds/Model/V20140815/CreateBackupRequest.cs b/aliyun-net-sdk-rds/Rds/Model/V20140815/CreateBackupRequest.cs index 7153930db..ede033fbf 100644 --- a/aliyun-net-sdk-rds/Rds/Model/V20140815/CreateBackupRequest.cs +++ b/aliyun-net-sdk-rds/Rds/Model/V20140815/CreateBackupRequest.cs @@ -43,8 +43,6 @@ public CreateBackupRequest() private long? resourceOwnerId; - private string resourceGroupId; - private string backupStrategy; private string dBInstanceId; @@ -69,20 +67,6 @@ public long? ResourceOwnerId } } - [JsonProperty(PropertyName = "ResourceGroupId")] - public string ResourceGroupId - { - get - { - return resourceGroupId; - } - set - { - resourceGroupId = value; - DictionaryUtil.Add(QueryParameters, "ResourceGroupId", value); - } - } - [JsonProperty(PropertyName = "BackupStrategy")] public string BackupStrategy { diff --git a/aliyun-net-sdk-rds/Rds/Model/V20140815/CreateDBInstanceRequest.cs b/aliyun-net-sdk-rds/Rds/Model/V20140815/CreateDBInstanceRequest.cs index 7f79a4e95..653ca40f3 100644 --- a/aliyun-net-sdk-rds/Rds/Model/V20140815/CreateDBInstanceRequest.cs +++ b/aliyun-net-sdk-rds/Rds/Model/V20140815/CreateDBInstanceRequest.cs @@ -53,6 +53,8 @@ public CreateDBInstanceRequest() private string connectionString; + private bool? autoCreateProxy; + private string engineVersion; private bool? deletionProtection; @@ -235,6 +237,20 @@ public string ConnectionString } } + [JsonProperty(PropertyName = "AutoCreateProxy")] + public bool? AutoCreateProxy + { + get + { + return autoCreateProxy; + } + set + { + autoCreateProxy = value; + DictionaryUtil.Add(QueryParameters, "AutoCreateProxy", value.ToString()); + } + } + [JsonProperty(PropertyName = "EngineVersion")] public string EngineVersion { diff --git a/aliyun-net-sdk-rds/Rds/Model/V20140815/CreateDatabaseRequest.cs b/aliyun-net-sdk-rds/Rds/Model/V20140815/CreateDatabaseRequest.cs index 17c0fd8ef..ee60ad486 100644 --- a/aliyun-net-sdk-rds/Rds/Model/V20140815/CreateDatabaseRequest.cs +++ b/aliyun-net-sdk-rds/Rds/Model/V20140815/CreateDatabaseRequest.cs @@ -43,8 +43,6 @@ public CreateDatabaseRequest() private long? resourceOwnerId; - private string resourceGroupId; - private string dBInstanceId; private string dBDescription; @@ -73,20 +71,6 @@ public long? ResourceOwnerId } } - [JsonProperty(PropertyName = "ResourceGroupId")] - public string ResourceGroupId - { - get - { - return resourceGroupId; - } - set - { - resourceGroupId = value; - DictionaryUtil.Add(QueryParameters, "ResourceGroupId", value); - } - } - [JsonProperty(PropertyName = "DBInstanceId")] public string DBInstanceId { diff --git a/aliyun-net-sdk-rds/Rds/Model/V20140815/CreateReadOnlyDBInstanceRequest.cs b/aliyun-net-sdk-rds/Rds/Model/V20140815/CreateReadOnlyDBInstanceRequest.cs index 095970f6e..e1f2770eb 100644 --- a/aliyun-net-sdk-rds/Rds/Model/V20140815/CreateReadOnlyDBInstanceRequest.cs +++ b/aliyun-net-sdk-rds/Rds/Model/V20140815/CreateReadOnlyDBInstanceRequest.cs @@ -45,6 +45,8 @@ public CreateReadOnlyDBInstanceRequest() private int? dBInstanceStorage; + private bool? autoCreateProxy; + private string engineVersion; private bool? deletionProtection; @@ -137,6 +139,20 @@ public int? DBInstanceStorage } } + [JsonProperty(PropertyName = "AutoCreateProxy")] + public bool? AutoCreateProxy + { + get + { + return autoCreateProxy; + } + set + { + autoCreateProxy = value; + DictionaryUtil.Add(QueryParameters, "AutoCreateProxy", value.ToString()); + } + } + [JsonProperty(PropertyName = "EngineVersion")] public string EngineVersion { diff --git a/aliyun-net-sdk-rds/Rds/Model/V20140815/CreateYouhuiForOrderRequest.cs b/aliyun-net-sdk-rds/Rds/Model/V20140815/CreateYouhuiForOrderRequest.cs index 67a3b41e6..5b615b518 100644 --- a/aliyun-net-sdk-rds/Rds/Model/V20140815/CreateYouhuiForOrderRequest.cs +++ b/aliyun-net-sdk-rds/Rds/Model/V20140815/CreateYouhuiForOrderRequest.cs @@ -41,7 +41,7 @@ public CreateYouhuiForOrderRequest() Method = MethodType.POST; } - private string resourceOwnerId; + private long? resourceOwnerId; private string resourceOwnerAccount; @@ -52,7 +52,7 @@ public CreateYouhuiForOrderRequest() private long? activityId; [JsonProperty(PropertyName = "ResourceOwnerId")] - public string ResourceOwnerId + public long? ResourceOwnerId { get { @@ -61,7 +61,7 @@ public string ResourceOwnerId set { resourceOwnerId = value; - DictionaryUtil.Add(QueryParameters, "ResourceOwnerId", value); + DictionaryUtil.Add(QueryParameters, "ResourceOwnerId", value.ToString()); } } diff --git a/aliyun-net-sdk-rds/Rds/Model/V20140815/DescribeBackupsRequest.cs b/aliyun-net-sdk-rds/Rds/Model/V20140815/DescribeBackupsRequest.cs index a3c4e97ac..7579d5ab2 100644 --- a/aliyun-net-sdk-rds/Rds/Model/V20140815/DescribeBackupsRequest.cs +++ b/aliyun-net-sdk-rds/Rds/Model/V20140815/DescribeBackupsRequest.cs @@ -47,8 +47,6 @@ public DescribeBackupsRequest() private int? pageNumber; - private string resourceGroupId; - private int? pageSize; private string dBInstanceId; @@ -105,20 +103,6 @@ public int? PageNumber } } - [JsonProperty(PropertyName = "ResourceGroupId")] - public string ResourceGroupId - { - get - { - return resourceGroupId; - } - set - { - resourceGroupId = value; - DictionaryUtil.Add(QueryParameters, "ResourceGroupId", value); - } - } - [JsonProperty(PropertyName = "PageSize")] public int? PageSize { diff --git a/aliyun-net-sdk-rds/Rds/Model/V20140815/DescribeDatabasesRequest.cs b/aliyun-net-sdk-rds/Rds/Model/V20140815/DescribeDatabasesRequest.cs index 899ca1ea4..0d11c9db9 100644 --- a/aliyun-net-sdk-rds/Rds/Model/V20140815/DescribeDatabasesRequest.cs +++ b/aliyun-net-sdk-rds/Rds/Model/V20140815/DescribeDatabasesRequest.cs @@ -45,8 +45,6 @@ public DescribeDatabasesRequest() private int? pageNumber; - private string resourceGroupId; - private string dBStatus; private int? pageSize; @@ -89,20 +87,6 @@ public int? PageNumber } } - [JsonProperty(PropertyName = "ResourceGroupId")] - public string ResourceGroupId - { - get - { - return resourceGroupId; - } - set - { - resourceGroupId = value; - DictionaryUtil.Add(QueryParameters, "ResourceGroupId", value); - } - } - [JsonProperty(PropertyName = "DBStatus")] public string DBStatus { diff --git a/aliyun-net-sdk-rds/Rds/Model/V20140815/ModifyDBInstanceConnectionModeRequest.cs b/aliyun-net-sdk-rds/Rds/Model/V20140815/ModifyDBInstanceConnectionModeRequest.cs deleted file mode 100644 index f888a6140..000000000 --- a/aliyun-net-sdk-rds/Rds/Model/V20140815/ModifyDBInstanceConnectionModeRequest.cs +++ /dev/null @@ -1,145 +0,0 @@ -/* - * 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; -using Aliyun.Acs.Core.Http; -using Aliyun.Acs.Core.Transform; -using Aliyun.Acs.Core.Utils; -using Aliyun.Acs.Rds.Transform; -using Aliyun.Acs.Rds.Transform.V20140815; - -namespace Aliyun.Acs.Rds.Model.V20140815 -{ - public class ModifyDBInstanceConnectionModeRequest : RpcAcsRequest - { - public ModifyDBInstanceConnectionModeRequest() - : base("Rds", "2014-08-15", "ModifyDBInstanceConnectionMode", "rds", "openAPI") - { - if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null) - { - this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.Rds.Endpoint.endpointMap, null); - this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.Rds.Endpoint.endpointRegionalType, null); - } - Method = MethodType.POST; - } - - private string connectionMode; - - private long? resourceOwnerId; - - private string dBInstanceId; - - private string resourceOwnerAccount; - - private string ownerAccount; - - private long? ownerId; - - [JsonProperty(PropertyName = "ConnectionMode")] - public string ConnectionMode - { - get - { - return connectionMode; - } - set - { - connectionMode = value; - DictionaryUtil.Add(QueryParameters, "ConnectionMode", value); - } - } - - [JsonProperty(PropertyName = "ResourceOwnerId")] - public long? ResourceOwnerId - { - get - { - return resourceOwnerId; - } - set - { - resourceOwnerId = value; - DictionaryUtil.Add(QueryParameters, "ResourceOwnerId", value.ToString()); - } - } - - [JsonProperty(PropertyName = "DBInstanceId")] - public string DBInstanceId - { - get - { - return dBInstanceId; - } - set - { - dBInstanceId = value; - DictionaryUtil.Add(QueryParameters, "DBInstanceId", value); - } - } - - [JsonProperty(PropertyName = "ResourceOwnerAccount")] - public string ResourceOwnerAccount - { - get - { - return resourceOwnerAccount; - } - set - { - resourceOwnerAccount = value; - DictionaryUtil.Add(QueryParameters, "ResourceOwnerAccount", value); - } - } - - [JsonProperty(PropertyName = "OwnerAccount")] - public string OwnerAccount - { - get - { - return ownerAccount; - } - set - { - ownerAccount = value; - DictionaryUtil.Add(QueryParameters, "OwnerAccount", value); - } - } - - [JsonProperty(PropertyName = "OwnerId")] - public long? OwnerId - { - get - { - return ownerId; - } - set - { - ownerId = value; - DictionaryUtil.Add(QueryParameters, "OwnerId", value.ToString()); - } - } - - public override ModifyDBInstanceConnectionModeResponse GetResponse(UnmarshallerContext unmarshallerContext) - { - return ModifyDBInstanceConnectionModeResponseUnmarshaller.Unmarshall(unmarshallerContext); - } - } -} diff --git a/aliyun-net-sdk-rds/Rds/Model/V20140815/ModifyDBInstanceConnectionModeResponse.cs b/aliyun-net-sdk-rds/Rds/Model/V20140815/ModifyDBInstanceConnectionModeResponse.cs deleted file mode 100644 index f42d60288..000000000 --- a/aliyun-net-sdk-rds/Rds/Model/V20140815/ModifyDBInstanceConnectionModeResponse.cs +++ /dev/null @@ -1,43 +0,0 @@ -/* - * 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.Rds.Model.V20140815 -{ - public class ModifyDBInstanceConnectionModeResponse : AcsResponse - { - - private string requestId; - - [JsonProperty(PropertyName = "RequestId")] - public string RequestId - { - get - { - return requestId; - } - set - { - requestId = value; - } - } - } -} diff --git a/aliyun-net-sdk-rds/Rds/Model/V20140815/ModifyDBInstanceProxyConfigurationRequest.cs b/aliyun-net-sdk-rds/Rds/Model/V20140815/ModifyDBInstanceProxyConfigurationRequest.cs deleted file mode 100644 index 816e2cd16..000000000 --- a/aliyun-net-sdk-rds/Rds/Model/V20140815/ModifyDBInstanceProxyConfigurationRequest.cs +++ /dev/null @@ -1,145 +0,0 @@ -/* - * 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; -using Aliyun.Acs.Core.Http; -using Aliyun.Acs.Core.Transform; -using Aliyun.Acs.Core.Utils; -using Aliyun.Acs.Rds.Transform; -using Aliyun.Acs.Rds.Transform.V20140815; - -namespace Aliyun.Acs.Rds.Model.V20140815 -{ - public class ModifyDBInstanceProxyConfigurationRequest : RpcAcsRequest - { - public ModifyDBInstanceProxyConfigurationRequest() - : base("Rds", "2014-08-15", "ModifyDBInstanceProxyConfiguration", "rds", "openAPI") - { - if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null) - { - this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.Rds.Endpoint.endpointMap, null); - this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.Rds.Endpoint.endpointRegionalType, null); - } - Method = MethodType.POST; - } - - private long? resourceOwnerId; - - private string dBInstanceId; - - private string resourceOwnerAccount; - - private string proxyConfigurationValue; - - private long? ownerId; - - private string proxyConfigurationKey; - - [JsonProperty(PropertyName = "ResourceOwnerId")] - public long? ResourceOwnerId - { - get - { - return resourceOwnerId; - } - set - { - resourceOwnerId = value; - DictionaryUtil.Add(QueryParameters, "ResourceOwnerId", value.ToString()); - } - } - - [JsonProperty(PropertyName = "DBInstanceId")] - public string DBInstanceId - { - get - { - return dBInstanceId; - } - set - { - dBInstanceId = value; - DictionaryUtil.Add(QueryParameters, "DBInstanceId", value); - } - } - - [JsonProperty(PropertyName = "ResourceOwnerAccount")] - public string ResourceOwnerAccount - { - get - { - return resourceOwnerAccount; - } - set - { - resourceOwnerAccount = value; - DictionaryUtil.Add(QueryParameters, "ResourceOwnerAccount", value); - } - } - - [JsonProperty(PropertyName = "ProxyConfigurationValue")] - public string ProxyConfigurationValue - { - get - { - return proxyConfigurationValue; - } - set - { - proxyConfigurationValue = value; - DictionaryUtil.Add(QueryParameters, "ProxyConfigurationValue", value); - } - } - - [JsonProperty(PropertyName = "OwnerId")] - public long? OwnerId - { - get - { - return ownerId; - } - set - { - ownerId = value; - DictionaryUtil.Add(QueryParameters, "OwnerId", value.ToString()); - } - } - - [JsonProperty(PropertyName = "ProxyConfigurationKey")] - public string ProxyConfigurationKey - { - get - { - return proxyConfigurationKey; - } - set - { - proxyConfigurationKey = value; - DictionaryUtil.Add(QueryParameters, "ProxyConfigurationKey", value); - } - } - - public override ModifyDBInstanceProxyConfigurationResponse GetResponse(UnmarshallerContext unmarshallerContext) - { - return ModifyDBInstanceProxyConfigurationResponseUnmarshaller.Unmarshall(unmarshallerContext); - } - } -} diff --git a/aliyun-net-sdk-rds/Rds/Model/V20140815/ModifyDBInstanceProxyConfigurationResponse.cs b/aliyun-net-sdk-rds/Rds/Model/V20140815/ModifyDBInstanceProxyConfigurationResponse.cs deleted file mode 100644 index 2bf4e8fc0..000000000 --- a/aliyun-net-sdk-rds/Rds/Model/V20140815/ModifyDBInstanceProxyConfigurationResponse.cs +++ /dev/null @@ -1,43 +0,0 @@ -/* - * 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.Rds.Model.V20140815 -{ - public class ModifyDBInstanceProxyConfigurationResponse : AcsResponse - { - - private string requestId; - - [JsonProperty(PropertyName = "RequestId")] - public string RequestId - { - get - { - return requestId; - } - set - { - requestId = value; - } - } - } -} diff --git a/aliyun-net-sdk-rds/Rds/Model/V20140815/SwitchGuardToMasterInstanceRequest.cs b/aliyun-net-sdk-rds/Rds/Model/V20140815/SwitchGuardToMasterInstanceRequest.cs deleted file mode 100644 index fad5e95f1..000000000 --- a/aliyun-net-sdk-rds/Rds/Model/V20140815/SwitchGuardToMasterInstanceRequest.cs +++ /dev/null @@ -1,145 +0,0 @@ -/* - * 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; -using Aliyun.Acs.Core.Http; -using Aliyun.Acs.Core.Transform; -using Aliyun.Acs.Core.Utils; -using Aliyun.Acs.Rds.Transform; -using Aliyun.Acs.Rds.Transform.V20140815; - -namespace Aliyun.Acs.Rds.Model.V20140815 -{ - public class SwitchGuardToMasterInstanceRequest : RpcAcsRequest - { - public SwitchGuardToMasterInstanceRequest() - : base("Rds", "2014-08-15", "SwitchGuardToMasterInstance", "rds", "openAPI") - { - if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null) - { - this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.Rds.Endpoint.endpointMap, null); - this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.Rds.Endpoint.endpointRegionalType, null); - } - Method = MethodType.POST; - } - - private long? resourceOwnerId; - - private string resourceGroupId; - - private string dBInstanceId; - - private string resourceOwnerAccount; - - private string ownerAccount; - - private long? ownerId; - - [JsonProperty(PropertyName = "ResourceOwnerId")] - public long? ResourceOwnerId - { - get - { - return resourceOwnerId; - } - set - { - resourceOwnerId = value; - DictionaryUtil.Add(QueryParameters, "ResourceOwnerId", value.ToString()); - } - } - - [JsonProperty(PropertyName = "ResourceGroupId")] - public string ResourceGroupId - { - get - { - return resourceGroupId; - } - set - { - resourceGroupId = value; - DictionaryUtil.Add(QueryParameters, "ResourceGroupId", value); - } - } - - [JsonProperty(PropertyName = "DBInstanceId")] - public string DBInstanceId - { - get - { - return dBInstanceId; - } - set - { - dBInstanceId = value; - DictionaryUtil.Add(QueryParameters, "DBInstanceId", value); - } - } - - [JsonProperty(PropertyName = "ResourceOwnerAccount")] - public string ResourceOwnerAccount - { - get - { - return resourceOwnerAccount; - } - set - { - resourceOwnerAccount = value; - DictionaryUtil.Add(QueryParameters, "ResourceOwnerAccount", value); - } - } - - [JsonProperty(PropertyName = "OwnerAccount")] - public string OwnerAccount - { - get - { - return ownerAccount; - } - set - { - ownerAccount = value; - DictionaryUtil.Add(QueryParameters, "OwnerAccount", value); - } - } - - [JsonProperty(PropertyName = "OwnerId")] - public long? OwnerId - { - get - { - return ownerId; - } - set - { - ownerId = value; - DictionaryUtil.Add(QueryParameters, "OwnerId", value.ToString()); - } - } - - public override SwitchGuardToMasterInstanceResponse GetResponse(UnmarshallerContext unmarshallerContext) - { - return SwitchGuardToMasterInstanceResponseUnmarshaller.Unmarshall(unmarshallerContext); - } - } -} diff --git a/aliyun-net-sdk-rds/Rds/Model/V20140815/SwitchGuardToMasterInstanceResponse.cs b/aliyun-net-sdk-rds/Rds/Model/V20140815/SwitchGuardToMasterInstanceResponse.cs deleted file mode 100644 index 2cbfa5c38..000000000 --- a/aliyun-net-sdk-rds/Rds/Model/V20140815/SwitchGuardToMasterInstanceResponse.cs +++ /dev/null @@ -1,58 +0,0 @@ -/* - * 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.Rds.Model.V20140815 -{ - public class SwitchGuardToMasterInstanceResponse : AcsResponse - { - - private string dBInstanceId; - - private string requestId; - - [JsonProperty(PropertyName = "DBInstanceId")] - public string DBInstanceId - { - get - { - return dBInstanceId; - } - set - { - dBInstanceId = value; - } - } - - [JsonProperty(PropertyName = "RequestId")] - public string RequestId - { - get - { - return requestId; - } - set - { - requestId = value; - } - } - } -} diff --git a/aliyun-net-sdk-rds/Rds/Transform/V20140815/CancelImportResponseUnmarshaller.cs b/aliyun-net-sdk-rds/Rds/Transform/V20140815/CancelImportResponseUnmarshaller.cs deleted file mode 100644 index a08768592..000000000 --- a/aliyun-net-sdk-rds/Rds/Transform/V20140815/CancelImportResponseUnmarshaller.cs +++ /dev/null @@ -1,39 +0,0 @@ -/* - * 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; -using System.Collections.Generic; - -using Aliyun.Acs.Core.Transform; -using Aliyun.Acs.Rds.Model.V20140815; - -namespace Aliyun.Acs.Rds.Transform.V20140815 -{ - public class CancelImportResponseUnmarshaller - { - public static CancelImportResponse Unmarshall(UnmarshallerContext _ctx) - { - CancelImportResponse cancelImportResponse = new CancelImportResponse(); - - cancelImportResponse.HttpResponse = _ctx.HttpResponse; - cancelImportResponse.RequestId = _ctx.StringValue("CancelImport.RequestId"); - - return cancelImportResponse; - } - } -} diff --git a/aliyun-net-sdk-rds/Rds/Transform/V20140815/ModifyDBInstanceConnectionModeResponseUnmarshaller.cs b/aliyun-net-sdk-rds/Rds/Transform/V20140815/ModifyDBInstanceConnectionModeResponseUnmarshaller.cs deleted file mode 100644 index f317b72ed..000000000 --- a/aliyun-net-sdk-rds/Rds/Transform/V20140815/ModifyDBInstanceConnectionModeResponseUnmarshaller.cs +++ /dev/null @@ -1,39 +0,0 @@ -/* - * 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; -using System.Collections.Generic; - -using Aliyun.Acs.Core.Transform; -using Aliyun.Acs.Rds.Model.V20140815; - -namespace Aliyun.Acs.Rds.Transform.V20140815 -{ - public class ModifyDBInstanceConnectionModeResponseUnmarshaller - { - public static ModifyDBInstanceConnectionModeResponse Unmarshall(UnmarshallerContext _ctx) - { - ModifyDBInstanceConnectionModeResponse modifyDBInstanceConnectionModeResponse = new ModifyDBInstanceConnectionModeResponse(); - - modifyDBInstanceConnectionModeResponse.HttpResponse = _ctx.HttpResponse; - modifyDBInstanceConnectionModeResponse.RequestId = _ctx.StringValue("ModifyDBInstanceConnectionMode.RequestId"); - - return modifyDBInstanceConnectionModeResponse; - } - } -} diff --git a/aliyun-net-sdk-rds/Rds/Transform/V20140815/ModifyDBInstanceProxyConfigurationResponseUnmarshaller.cs b/aliyun-net-sdk-rds/Rds/Transform/V20140815/ModifyDBInstanceProxyConfigurationResponseUnmarshaller.cs deleted file mode 100644 index 9439097ab..000000000 --- a/aliyun-net-sdk-rds/Rds/Transform/V20140815/ModifyDBInstanceProxyConfigurationResponseUnmarshaller.cs +++ /dev/null @@ -1,39 +0,0 @@ -/* - * 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; -using System.Collections.Generic; - -using Aliyun.Acs.Core.Transform; -using Aliyun.Acs.Rds.Model.V20140815; - -namespace Aliyun.Acs.Rds.Transform.V20140815 -{ - public class ModifyDBInstanceProxyConfigurationResponseUnmarshaller - { - public static ModifyDBInstanceProxyConfigurationResponse Unmarshall(UnmarshallerContext _ctx) - { - ModifyDBInstanceProxyConfigurationResponse modifyDBInstanceProxyConfigurationResponse = new ModifyDBInstanceProxyConfigurationResponse(); - - modifyDBInstanceProxyConfigurationResponse.HttpResponse = _ctx.HttpResponse; - modifyDBInstanceProxyConfigurationResponse.RequestId = _ctx.StringValue("ModifyDBInstanceProxyConfiguration.RequestId"); - - return modifyDBInstanceProxyConfigurationResponse; - } - } -} diff --git a/aliyun-net-sdk-rds/Rds/Transform/V20140815/SwitchGuardToMasterInstanceResponseUnmarshaller.cs b/aliyun-net-sdk-rds/Rds/Transform/V20140815/SwitchGuardToMasterInstanceResponseUnmarshaller.cs deleted file mode 100644 index bf1cafe7c..000000000 --- a/aliyun-net-sdk-rds/Rds/Transform/V20140815/SwitchGuardToMasterInstanceResponseUnmarshaller.cs +++ /dev/null @@ -1,40 +0,0 @@ -/* - * 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; -using System.Collections.Generic; - -using Aliyun.Acs.Core.Transform; -using Aliyun.Acs.Rds.Model.V20140815; - -namespace Aliyun.Acs.Rds.Transform.V20140815 -{ - public class SwitchGuardToMasterInstanceResponseUnmarshaller - { - public static SwitchGuardToMasterInstanceResponse Unmarshall(UnmarshallerContext _ctx) - { - SwitchGuardToMasterInstanceResponse switchGuardToMasterInstanceResponse = new SwitchGuardToMasterInstanceResponse(); - - switchGuardToMasterInstanceResponse.HttpResponse = _ctx.HttpResponse; - switchGuardToMasterInstanceResponse.DBInstanceId = _ctx.StringValue("SwitchGuardToMasterInstance.DBInstanceId"); - switchGuardToMasterInstanceResponse.RequestId = _ctx.StringValue("SwitchGuardToMasterInstance.RequestId"); - - return switchGuardToMasterInstanceResponse; - } - } -} diff --git a/aliyun-net-sdk-rds/aliyun-net-sdk-rds.vs2017.csproj b/aliyun-net-sdk-rds/aliyun-net-sdk-rds.vs2017.csproj index 22cd3b770..b781de24b 100644 --- a/aliyun-net-sdk-rds/aliyun-net-sdk-rds.vs2017.csproj +++ b/aliyun-net-sdk-rds/aliyun-net-sdk-rds.vs2017.csproj @@ -3,7 +3,7 @@ netstandard2.0;net45 Aliyun.Acs.Rds - 3.0.8 + 3.0.9 Alibaba Cloud ©2009-2019 Alibaba Cloud false