@alicloud/adb20211201 4.2.2 → 4.2.4
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.js +3 -0
- package/dist/client.js.map +1 -1
- package/dist/models/DescribeSqlwebSocketDomainRequest.d.ts +1 -2
- package/dist/models/DescribeSqlwebSocketDomainRequest.js +2 -0
- package/dist/models/DescribeSqlwebSocketDomainRequest.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +4 -0
- package/src/models/DescribeSqlwebSocketDomainRequest.ts +3 -2
|
@@ -6,12 +6,11 @@ export declare class DescribeSQLWebSocketDomainRequest extends $dara.Model {
|
|
|
6
6
|
*
|
|
7
7
|
* > You can call the [DescribeDBClusters](https://help.aliyun.com/document_detail/98094.html) operation to query the IDs of all AnalyticDB for MySQL clusters within a region.
|
|
8
8
|
*
|
|
9
|
-
* This parameter is required.
|
|
10
|
-
*
|
|
11
9
|
* @example
|
|
12
10
|
* amv-bp1lw6g669zpi660
|
|
13
11
|
*/
|
|
14
12
|
DBClusterId?: string;
|
|
13
|
+
module?: string;
|
|
15
14
|
/**
|
|
16
15
|
* @remarks
|
|
17
16
|
* The region ID
|
|
@@ -40,12 +40,14 @@ class DescribeSQLWebSocketDomainRequest extends $dara.Model {
|
|
|
40
40
|
static names() {
|
|
41
41
|
return {
|
|
42
42
|
DBClusterId: 'DBClusterId',
|
|
43
|
+
module: 'Module',
|
|
43
44
|
regionId: 'RegionId',
|
|
44
45
|
};
|
|
45
46
|
}
|
|
46
47
|
static types() {
|
|
47
48
|
return {
|
|
48
49
|
DBClusterId: 'string',
|
|
50
|
+
module: 'string',
|
|
49
51
|
regionId: 'string',
|
|
50
52
|
};
|
|
51
53
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DescribeSqlwebSocketDomainRequest.js","sourceRoot":"","sources":["../../src/models/DescribeSqlwebSocketDomainRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,iCAAkC,SAAQ,KAAK,CAAC,KAAK;
|
|
1
|
+
{"version":3,"file":"DescribeSqlwebSocketDomainRequest.js","sourceRoot":"","sources":["../../src/models/DescribeSqlwebSocketDomainRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,iCAAkC,SAAQ,KAAK,CAAC,KAAK;IAwBhE,MAAM,CAAC,KAAK;QACV,OAAO;YACL,WAAW,EAAE,aAAa;YAC1B,MAAM,EAAE,QAAQ;YAChB,QAAQ,EAAE,UAAU;SACrB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,WAAW,EAAE,QAAQ;YACrB,MAAM,EAAE,QAAQ;YAChB,QAAQ,EAAE,QAAQ;SACnB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AA/CD,8EA+CC"}
|
package/package.json
CHANGED
package/src/client.ts
CHANGED
|
@@ -7535,6 +7535,10 @@ export default class Client extends OpenApi {
|
|
|
7535
7535
|
query["DBClusterId"] = request.DBClusterId;
|
|
7536
7536
|
}
|
|
7537
7537
|
|
|
7538
|
+
if (!$dara.isNull(request.module)) {
|
|
7539
|
+
query["Module"] = request.module;
|
|
7540
|
+
}
|
|
7541
|
+
|
|
7538
7542
|
if (!$dara.isNull(request.regionId)) {
|
|
7539
7543
|
query["RegionId"] = request.regionId;
|
|
7540
7544
|
}
|
|
@@ -9,12 +9,11 @@ export class DescribeSQLWebSocketDomainRequest extends $dara.Model {
|
|
|
9
9
|
*
|
|
10
10
|
* > You can call the [DescribeDBClusters](https://help.aliyun.com/document_detail/98094.html) operation to query the IDs of all AnalyticDB for MySQL clusters within a region.
|
|
11
11
|
*
|
|
12
|
-
* This parameter is required.
|
|
13
|
-
*
|
|
14
12
|
* @example
|
|
15
13
|
* amv-bp1lw6g669zpi660
|
|
16
14
|
*/
|
|
17
15
|
DBClusterId?: string;
|
|
16
|
+
module?: string;
|
|
18
17
|
/**
|
|
19
18
|
* @remarks
|
|
20
19
|
* The region ID
|
|
@@ -30,6 +29,7 @@ export class DescribeSQLWebSocketDomainRequest extends $dara.Model {
|
|
|
30
29
|
static names(): { [key: string]: string } {
|
|
31
30
|
return {
|
|
32
31
|
DBClusterId: 'DBClusterId',
|
|
32
|
+
module: 'Module',
|
|
33
33
|
regionId: 'RegionId',
|
|
34
34
|
};
|
|
35
35
|
}
|
|
@@ -37,6 +37,7 @@ export class DescribeSQLWebSocketDomainRequest extends $dara.Model {
|
|
|
37
37
|
static types(): { [key: string]: any } {
|
|
38
38
|
return {
|
|
39
39
|
DBClusterId: 'string',
|
|
40
|
+
module: 'string',
|
|
40
41
|
regionId: 'string',
|
|
41
42
|
};
|
|
42
43
|
}
|