tencentcloud-sdk-nodejs-clb 4.1.297 → 4.1.298
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
|
@@ -775,27 +775,29 @@ export interface DisassociateCustomizedConfigRequest {
|
|
|
775
775
|
*/
|
|
776
776
|
export interface CreateTopicRequest {
|
|
777
777
|
/**
|
|
778
|
-
*
|
|
778
|
+
* <p>日志主题的名称。</p>
|
|
779
779
|
*/
|
|
780
780
|
TopicName: string;
|
|
781
781
|
/**
|
|
782
|
-
*
|
|
782
|
+
* <p>主题分区Partition的数量,不传参默认创建1个,最大创建允许10个,分裂/合并操作会改变分区数量,整体上限50个。</p>
|
|
783
783
|
*/
|
|
784
784
|
PartitionCount?: number;
|
|
785
785
|
/**
|
|
786
|
-
*
|
|
786
|
+
* <p>日志类型,ACCESS:访问日志,HEALTH:健康检查日志,默认ACCESS。</p>
|
|
787
787
|
*/
|
|
788
788
|
TopicType?: string;
|
|
789
789
|
/**
|
|
790
|
-
*
|
|
791
|
-
- 日志接入标准存储时,支持1至3600天,值为3640时代表永久保存。
|
|
792
|
-
- 日志接入低频存储时,支持7至3600天,值为3640时代表永久保存。
|
|
790
|
+
* <p>存储时间,单位天,默认为 30。</p><ul><li>日志接入标准存储时,支持1至3600天,值为3640时代表永久保存。</li><li>日志接入低频存储时,支持7至3600天,值为3640时代表永久保存。</li></ul>
|
|
793
791
|
*/
|
|
794
792
|
Period?: number;
|
|
795
793
|
/**
|
|
796
|
-
*
|
|
794
|
+
* <p>日志主题的存储类型,可选值 HOT(标准存储),COLD(低频存储);默认为HOT。</p>
|
|
797
795
|
*/
|
|
798
796
|
StorageType?: string;
|
|
797
|
+
/**
|
|
798
|
+
* <p>标签</p><p>最多支持一次传入20个</p>
|
|
799
|
+
*/
|
|
800
|
+
Tags?: Array<TagInfo>;
|
|
799
801
|
}
|
|
800
802
|
/**
|
|
801
803
|
* DeleteListener请求参数结构体
|
|
@@ -9352,7 +9354,7 @@ export interface KeyDetailItem {
|
|
|
9352
9354
|
*/
|
|
9353
9355
|
export interface CreateTopicResponse {
|
|
9354
9356
|
/**
|
|
9355
|
-
*
|
|
9357
|
+
* <p>日志主题的 ID。</p>
|
|
9356
9358
|
*/
|
|
9357
9359
|
TopicId?: string;
|
|
9358
9360
|
/**
|