tencentcloud-sdk-nodejs-teo 4.1.273 → 4.1.276
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/package.json
CHANGED
|
@@ -834,7 +834,7 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
834
834
|
*/
|
|
835
835
|
DescribeSecurityAPIResource(req: DescribeSecurityAPIResourceRequest, cb?: (error: string, rep: DescribeSecurityAPIResourceResponse) => void): Promise<DescribeSecurityAPIResourceResponse>;
|
|
836
836
|
/**
|
|
837
|
-
* 查询站点配置项导入结果接口,本接口用于站点配置导入接口(ImportZoneConfig
|
|
837
|
+
* 查询站点配置项导入结果接口,本接口用于站点配置导入接口(ImportZoneConfig)的结果查询。
|
|
838
838
|
*/
|
|
839
839
|
DescribeZoneConfigImportResult(req: DescribeZoneConfigImportResultRequest, cb?: (error: string, rep: DescribeZoneConfigImportResultResponse) => void): Promise<DescribeZoneConfigImportResultResponse>;
|
|
840
840
|
/**
|
|
@@ -926,7 +926,7 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
926
926
|
*/
|
|
927
927
|
CreateLogAnalysisDownloadTask(req: CreateLogAnalysisDownloadTaskRequest, cb?: (error: string, rep: CreateLogAnalysisDownloadTaskResponse) => void): Promise<CreateLogAnalysisDownloadTaskResponse>;
|
|
928
928
|
/**
|
|
929
|
-
* 导入站点配置接口,本接口支持站点配置文件的快速导入,发起导入后接口会返回对应的任务 ID(TaskId),用户需通过查询站点配置导入结果接口(DescribeZoneConfigImportResult
|
|
929
|
+
* 导入站点配置接口,本接口支持站点配置文件的快速导入,发起导入后接口会返回对应的任务 ID(TaskId),用户需通过查询站点配置导入结果接口(DescribeZoneConfigImportResult)获取本次导入任务执行的结果。
|
|
930
930
|
*/
|
|
931
931
|
ImportZoneConfig(req: ImportZoneConfigRequest, cb?: (error: string, rep: ImportZoneConfigResponse) => void): Promise<ImportZoneConfigResponse>;
|
|
932
932
|
/**
|
|
@@ -1240,7 +1240,7 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
1240
1240
|
return this.request("DescribeSecurityAPIResource", req, cb);
|
|
1241
1241
|
}
|
|
1242
1242
|
/**
|
|
1243
|
-
* 查询站点配置项导入结果接口,本接口用于站点配置导入接口(ImportZoneConfig
|
|
1243
|
+
* 查询站点配置项导入结果接口,本接口用于站点配置导入接口(ImportZoneConfig)的结果查询。
|
|
1244
1244
|
*/
|
|
1245
1245
|
async DescribeZoneConfigImportResult(req, cb) {
|
|
1246
1246
|
return this.request("DescribeZoneConfigImportResult", req, cb);
|
|
@@ -1368,7 +1368,7 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
1368
1368
|
return this.request("CreateLogAnalysisDownloadTask", req, cb);
|
|
1369
1369
|
}
|
|
1370
1370
|
/**
|
|
1371
|
-
* 导入站点配置接口,本接口支持站点配置文件的快速导入,发起导入后接口会返回对应的任务 ID(TaskId),用户需通过查询站点配置导入结果接口(DescribeZoneConfigImportResult
|
|
1371
|
+
* 导入站点配置接口,本接口支持站点配置文件的快速导入,发起导入后接口会返回对应的任务 ID(TaskId),用户需通过查询站点配置导入结果接口(DescribeZoneConfigImportResult)获取本次导入任务执行的结果。
|
|
1372
1372
|
*/
|
|
1373
1373
|
async ImportZoneConfig(req, cb) {
|
|
1374
1374
|
return this.request("ImportZoneConfig", req, cb);
|
|
@@ -9326,7 +9326,7 @@ export interface CheckCnameStatusResponse {
|
|
|
9326
9326
|
*/
|
|
9327
9327
|
export interface ImportZoneConfigResponse {
|
|
9328
9328
|
/**
|
|
9329
|
-
*
|
|
9329
|
+
* <p>表示该次导入配置的任务 Id,通过查询站点配置导入结果接口(DescribeZoneConfigImportResult)获取本次导入任务执行的结果。注意:导入任务 Id 仅支持查询最近 7 天的导入任务。</p>
|
|
9330
9330
|
*/
|
|
9331
9331
|
TaskId?: string;
|
|
9332
9332
|
/**
|
|
@@ -14791,11 +14791,11 @@ export interface AliasDomain {
|
|
|
14791
14791
|
*/
|
|
14792
14792
|
export interface ImportZoneConfigRequest {
|
|
14793
14793
|
/**
|
|
14794
|
-
*
|
|
14794
|
+
* <p>站点 ID。</p>
|
|
14795
14795
|
*/
|
|
14796
14796
|
ZoneId: string;
|
|
14797
14797
|
/**
|
|
14798
|
-
*
|
|
14798
|
+
* <p>待导入的配置内容。要求采用 JSON 格式,按照 UTF-8 方式进行编码。配置内容可通过站点配置导出接口(ExportZoneConfig)获取。您可以单独导入「站点加速-全局加速配置」或「站点加速-规则引擎」,传入对应的字段即可,详情可以参考下方示例。<br>注意:ExportZoneConfig 导出的 AccelerationDomain(加速域名配置)、Origin(源站配置)暂不支持通过本接口导入,若 Content 中包含上述配置内容,将导致导入失败。</p>
|
|
14799
14799
|
*/
|
|
14800
14800
|
Content: string;
|
|
14801
14801
|
}
|