@alicloud/alidns20150109 3.5.0 → 3.5.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 +4 -0
- package/dist/client.js +13 -0
- package/dist/client.js.map +1 -1
- package/dist/models/CreateCloudGtmInstanceConfigRequest.d.ts +5 -0
- package/dist/models/CreateCloudGtmInstanceConfigRequest.js +2 -0
- package/dist/models/CreateCloudGtmInstanceConfigRequest.js.map +1 -1
- package/dist/models/CreateCloudGtmInstanceConfigResponseBody.d.ts +5 -0
- package/dist/models/CreateCloudGtmInstanceConfigResponseBody.js +2 -0
- package/dist/models/CreateCloudGtmInstanceConfigResponseBody.js.map +1 -1
- package/dist/models/ListCloudGtmInstancesRequest.d.ts +5 -0
- package/dist/models/ListCloudGtmInstancesRequest.js +2 -0
- package/dist/models/ListCloudGtmInstancesRequest.js.map +1 -1
- package/dist/models/ListCloudGtmInstancesResponseBody.d.ts +5 -0
- package/dist/models/ListCloudGtmInstancesResponseBody.js +2 -0
- package/dist/models/ListCloudGtmInstancesResponseBody.js.map +1 -1
- package/dist/models/SearchCloudGtmInstancesRequest.d.ts +5 -0
- package/dist/models/SearchCloudGtmInstancesRequest.js +2 -0
- package/dist/models/SearchCloudGtmInstancesRequest.js.map +1 -1
- package/dist/models/SearchCloudGtmInstancesResponseBody.d.ts +5 -0
- package/dist/models/SearchCloudGtmInstancesResponseBody.js +2 -0
- package/dist/models/SearchCloudGtmInstancesResponseBody.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +16 -0
- package/src/models/CreateCloudGtmInstanceConfigRequest.ts +7 -0
- package/src/models/CreateCloudGtmInstanceConfigResponseBody.ts +7 -0
- package/src/models/ListCloudGtmInstancesRequest.ts +7 -0
- package/src/models/ListCloudGtmInstancesResponseBody.ts +7 -0
- package/src/models/SearchCloudGtmInstancesRequest.ts +7 -0
- package/src/models/SearchCloudGtmInstancesResponseBody.ts +7 -0
package/dist/client.d.ts
CHANGED
|
@@ -364,12 +364,16 @@ export default class Client extends OpenApi {
|
|
|
364
364
|
*/
|
|
365
365
|
createCloudGtmAddressPool(request: $_model.CreateCloudGtmAddressPoolRequest): Promise<$_model.CreateCloudGtmAddressPoolResponse>;
|
|
366
366
|
/**
|
|
367
|
+
* 创建gtm实例配置
|
|
368
|
+
*
|
|
367
369
|
* @param request - CreateCloudGtmInstanceConfigRequest
|
|
368
370
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
369
371
|
* @returns CreateCloudGtmInstanceConfigResponse
|
|
370
372
|
*/
|
|
371
373
|
createCloudGtmInstanceConfigWithOptions(request: $_model.CreateCloudGtmInstanceConfigRequest, runtime: $dara.RuntimeOptions): Promise<$_model.CreateCloudGtmInstanceConfigResponse>;
|
|
372
374
|
/**
|
|
375
|
+
* 创建gtm实例配置
|
|
376
|
+
*
|
|
373
377
|
* @param request - CreateCloudGtmInstanceConfigRequest
|
|
374
378
|
* @returns CreateCloudGtmInstanceConfigResponse
|
|
375
379
|
*/
|
package/dist/client.js
CHANGED
|
@@ -1304,6 +1304,8 @@ class Client extends openapi_core_1.default {
|
|
|
1304
1304
|
return await this.createCloudGtmAddressPoolWithOptions(request, runtime);
|
|
1305
1305
|
}
|
|
1306
1306
|
/**
|
|
1307
|
+
* 创建gtm实例配置
|
|
1308
|
+
*
|
|
1307
1309
|
* @param request - CreateCloudGtmInstanceConfigRequest
|
|
1308
1310
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
1309
1311
|
* @returns CreateCloudGtmInstanceConfigResponse
|
|
@@ -1314,6 +1316,9 @@ class Client extends openapi_core_1.default {
|
|
|
1314
1316
|
if (!$dara.isNull(request.acceptLanguage)) {
|
|
1315
1317
|
query["AcceptLanguage"] = request.acceptLanguage;
|
|
1316
1318
|
}
|
|
1319
|
+
if (!$dara.isNull(request.chargeType)) {
|
|
1320
|
+
query["ChargeType"] = request.chargeType;
|
|
1321
|
+
}
|
|
1317
1322
|
if (!$dara.isNull(request.clientToken)) {
|
|
1318
1323
|
query["ClientToken"] = request.clientToken;
|
|
1319
1324
|
}
|
|
@@ -1358,6 +1363,8 @@ class Client extends openapi_core_1.default {
|
|
|
1358
1363
|
return $dara.cast(await this.callApi(params, req, runtime), new $_model.CreateCloudGtmInstanceConfigResponse({}));
|
|
1359
1364
|
}
|
|
1360
1365
|
/**
|
|
1366
|
+
* 创建gtm实例配置
|
|
1367
|
+
*
|
|
1361
1368
|
* @param request - CreateCloudGtmInstanceConfigRequest
|
|
1362
1369
|
* @returns CreateCloudGtmInstanceConfigResponse
|
|
1363
1370
|
*/
|
|
@@ -7244,6 +7251,9 @@ class Client extends openapi_core_1.default {
|
|
|
7244
7251
|
if (!$dara.isNull(request.acceptLanguage)) {
|
|
7245
7252
|
query["AcceptLanguage"] = request.acceptLanguage;
|
|
7246
7253
|
}
|
|
7254
|
+
if (!$dara.isNull(request.chargeType)) {
|
|
7255
|
+
query["ChargeType"] = request.chargeType;
|
|
7256
|
+
}
|
|
7247
7257
|
if (!$dara.isNull(request.clientToken)) {
|
|
7248
7258
|
query["ClientToken"] = request.clientToken;
|
|
7249
7259
|
}
|
|
@@ -8398,6 +8408,9 @@ class Client extends openapi_core_1.default {
|
|
|
8398
8408
|
if (!$dara.isNull(request.acceptLanguage)) {
|
|
8399
8409
|
query["AcceptLanguage"] = request.acceptLanguage;
|
|
8400
8410
|
}
|
|
8411
|
+
if (!$dara.isNull(request.chargeType)) {
|
|
8412
|
+
query["ChargeType"] = request.chargeType;
|
|
8413
|
+
}
|
|
8401
8414
|
if (!$dara.isNull(request.clientToken)) {
|
|
8402
8415
|
query["ClientToken"] = request.clientToken;
|
|
8403
8416
|
}
|