@alicloud/rds20140815 2.3.9 → 2.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client.d.ts +29 -0
- package/dist/client.js +29 -0
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +29 -0
package/package.json
CHANGED
package/src/client.ts
CHANGED
|
@@ -42830,6 +42830,21 @@ export default class Client extends OpenApi {
|
|
|
42830
42830
|
return await this.describeHistoryTasksWithOptions(request, runtime);
|
|
42831
42831
|
}
|
|
42832
42832
|
|
|
42833
|
+
/**
|
|
42834
|
+
* > This operation supports only for ApsaraDB RDS for SQL Server instances and is available only to specific customers. If you want to call this operation, contact **Alibaba Cloud technical support**.
|
|
42835
|
+
* ### Prerequisites
|
|
42836
|
+
* The instance meets the following requirements:
|
|
42837
|
+
* * The instance resides in a region other than the China (Zhangjiakou) region.
|
|
42838
|
+
* * The instance runs RDS Basic Edition, runs SQL Server 2012 or later on RDS High-availability Edition, or runs RDS Cluster Edition.
|
|
42839
|
+
* * The instance belongs to the general-purpose or dedicated instance family. The shared instance family is not supported.
|
|
42840
|
+
* * The instance resides in a virtual private cloud (VPC). For more information about how to change the network type of an instance, see [Change the network type of an ApsaraDB RDS for SQL Server instance](~~95707~~).
|
|
42841
|
+
* * If the instance runs RDS High-availability Edition or RDS Cluster Edition, make sure that the instance is created on or after January 01, 2021. If the instance runs RDS Basic Edition, make sure that the instance is created on or after September 02, 2022. You can view the **Creation Time** parameter of an instance in the **Status** section of the **Basic Information** page in the ApsaraDB RDS console.
|
|
42842
|
+
* Your **Alibaba Cloud account** is used for logons.
|
|
42843
|
+
*
|
|
42844
|
+
* @param request DescribeHostWebShellRequest
|
|
42845
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
42846
|
+
* @return DescribeHostWebShellResponse
|
|
42847
|
+
*/
|
|
42833
42848
|
async describeHostWebShellWithOptions(request: DescribeHostWebShellRequest, runtime: $Util.RuntimeOptions): Promise<DescribeHostWebShellResponse> {
|
|
42834
42849
|
Util.validateModel(request);
|
|
42835
42850
|
let query = { };
|
|
@@ -42882,6 +42897,20 @@ export default class Client extends OpenApi {
|
|
|
42882
42897
|
return $tea.cast<DescribeHostWebShellResponse>(await this.callApi(params, req, runtime), new DescribeHostWebShellResponse({}));
|
|
42883
42898
|
}
|
|
42884
42899
|
|
|
42900
|
+
/**
|
|
42901
|
+
* > This operation supports only for ApsaraDB RDS for SQL Server instances and is available only to specific customers. If you want to call this operation, contact **Alibaba Cloud technical support**.
|
|
42902
|
+
* ### Prerequisites
|
|
42903
|
+
* The instance meets the following requirements:
|
|
42904
|
+
* * The instance resides in a region other than the China (Zhangjiakou) region.
|
|
42905
|
+
* * The instance runs RDS Basic Edition, runs SQL Server 2012 or later on RDS High-availability Edition, or runs RDS Cluster Edition.
|
|
42906
|
+
* * The instance belongs to the general-purpose or dedicated instance family. The shared instance family is not supported.
|
|
42907
|
+
* * The instance resides in a virtual private cloud (VPC). For more information about how to change the network type of an instance, see [Change the network type of an ApsaraDB RDS for SQL Server instance](~~95707~~).
|
|
42908
|
+
* * If the instance runs RDS High-availability Edition or RDS Cluster Edition, make sure that the instance is created on or after January 01, 2021. If the instance runs RDS Basic Edition, make sure that the instance is created on or after September 02, 2022. You can view the **Creation Time** parameter of an instance in the **Status** section of the **Basic Information** page in the ApsaraDB RDS console.
|
|
42909
|
+
* Your **Alibaba Cloud account** is used for logons.
|
|
42910
|
+
*
|
|
42911
|
+
* @param request DescribeHostWebShellRequest
|
|
42912
|
+
* @return DescribeHostWebShellResponse
|
|
42913
|
+
*/
|
|
42885
42914
|
async describeHostWebShell(request: DescribeHostWebShellRequest): Promise<DescribeHostWebShellResponse> {
|
|
42886
42915
|
let runtime = new $Util.RuntimeOptions({ });
|
|
42887
42916
|
return await this.describeHostWebShellWithOptions(request, runtime);
|