@alicloud/adb20211201 2.0.0 → 2.0.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 +9 -0
- package/dist/client.js +13 -0
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +15 -0
package/package.json
CHANGED
package/src/client.ts
CHANGED
|
@@ -6176,6 +6176,7 @@ export class DescribeRegionsRequest extends $tea.Model {
|
|
|
6176
6176
|
acceptLanguage?: string;
|
|
6177
6177
|
ownerAccount?: string;
|
|
6178
6178
|
ownerId?: number;
|
|
6179
|
+
regionId?: string;
|
|
6179
6180
|
resourceOwnerAccount?: string;
|
|
6180
6181
|
resourceOwnerId?: number;
|
|
6181
6182
|
static names(): { [key: string]: string } {
|
|
@@ -6183,6 +6184,7 @@ export class DescribeRegionsRequest extends $tea.Model {
|
|
|
6183
6184
|
acceptLanguage: 'AcceptLanguage',
|
|
6184
6185
|
ownerAccount: 'OwnerAccount',
|
|
6185
6186
|
ownerId: 'OwnerId',
|
|
6187
|
+
regionId: 'RegionId',
|
|
6186
6188
|
resourceOwnerAccount: 'ResourceOwnerAccount',
|
|
6187
6189
|
resourceOwnerId: 'ResourceOwnerId',
|
|
6188
6190
|
};
|
|
@@ -6193,6 +6195,7 @@ export class DescribeRegionsRequest extends $tea.Model {
|
|
|
6193
6195
|
acceptLanguage: 'string',
|
|
6194
6196
|
ownerAccount: 'string',
|
|
6195
6197
|
ownerId: 'number',
|
|
6198
|
+
regionId: 'string',
|
|
6196
6199
|
resourceOwnerAccount: 'string',
|
|
6197
6200
|
resourceOwnerId: 'number',
|
|
6198
6201
|
};
|
|
@@ -19269,6 +19272,10 @@ export default class Client extends OpenApi {
|
|
|
19269
19272
|
query["OwnerId"] = request.ownerId;
|
|
19270
19273
|
}
|
|
19271
19274
|
|
|
19275
|
+
if (!Util.isUnset(request.regionId)) {
|
|
19276
|
+
query["RegionId"] = request.regionId;
|
|
19277
|
+
}
|
|
19278
|
+
|
|
19272
19279
|
if (!Util.isUnset(request.resourceOwnerAccount)) {
|
|
19273
19280
|
query["ResourceOwnerAccount"] = request.resourceOwnerAccount;
|
|
19274
19281
|
}
|
|
@@ -22706,6 +22713,10 @@ export default class Client extends OpenApi {
|
|
|
22706
22713
|
}
|
|
22707
22714
|
|
|
22708
22715
|
/**
|
|
22716
|
+
* @summary Releases the public endpoint of an AnalyticDB for MySQL Data Lakehouse Edition (V3.0) cluster.
|
|
22717
|
+
*
|
|
22718
|
+
* @description For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](https://help.aliyun.com/document_detail/612373.html).
|
|
22719
|
+
*
|
|
22709
22720
|
* @param request ReleaseClusterPublicConnectionRequest
|
|
22710
22721
|
* @param runtime runtime options for this request RuntimeOptions
|
|
22711
22722
|
* @return ReleaseClusterPublicConnectionResponse
|
|
@@ -22739,6 +22750,10 @@ export default class Client extends OpenApi {
|
|
|
22739
22750
|
}
|
|
22740
22751
|
|
|
22741
22752
|
/**
|
|
22753
|
+
* @summary Releases the public endpoint of an AnalyticDB for MySQL Data Lakehouse Edition (V3.0) cluster.
|
|
22754
|
+
*
|
|
22755
|
+
* @description For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](https://help.aliyun.com/document_detail/612373.html).
|
|
22756
|
+
*
|
|
22742
22757
|
* @param request ReleaseClusterPublicConnectionRequest
|
|
22743
22758
|
* @return ReleaseClusterPublicConnectionResponse
|
|
22744
22759
|
*/
|