tencentcloud-sdk-nodejs-redis 4.0.596 → 4.0.597

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.
@@ -58,7 +58,7 @@ class Client extends TencentCloudCommon.AbstractClient {
58
58
  return this.request("CleanUpInstance", req, cb);
59
59
  }
60
60
  /**
61
- * 查看实例子账号信息
61
+ * 本接口(DescribeInstanceAccount)用于查看实例子账号信息。
62
62
  */
63
63
  async DescribeInstanceAccount(req, cb) {
64
64
  return this.request("DescribeInstanceAccount", req, cb);
@@ -106,7 +106,7 @@ class Client extends TencentCloudCommon.AbstractClient {
106
106
  return this.request("ModifyInstanceAccount", req, cb);
107
107
  }
108
108
  /**
109
- * 查询实例安全组信息
109
+ * 本接口(DescribeInstanceSecurityGroup)用于查询实例安全组信息。
110
110
  */
111
111
  async DescribeInstanceSecurityGroup(req, cb) {
112
112
  return this.request("DescribeInstanceSecurityGroup", req, cb);
@@ -268,7 +268,7 @@ class Client extends TencentCloudCommon.AbstractClient {
268
268
  return this.request("InquiryPriceCreateInstance", req, cb);
269
269
  }
270
270
  /**
271
- * 查询实例参数列表
271
+ * 本接口(DescribeInstanceParams)用于查询实例参数列表。
272
272
  */
273
273
  async DescribeInstanceParams(req, cb) {
274
274
  return this.request("DescribeInstanceParams", req, cb);
@@ -292,7 +292,7 @@ class Client extends TencentCloudCommon.AbstractClient {
292
292
  return this.request("DisassociateSecurityGroups", req, cb);
293
293
  }
294
294
  /**
295
- * 手动备份Redis实例
295
+ * 本接口(ManualBackupInstance)用于手动备份Redis实例。
296
296
  */
297
297
  async ManualBackupInstance(req, cb) {
298
298
  return this.request("ManualBackupInstance", req, cb);
@@ -442,7 +442,7 @@ class Client extends TencentCloudCommon.AbstractClient {
442
442
  return this.request("DescribeBackupDownloadRestriction", req, cb);
443
443
  }
444
444
  /**
445
- * 查询Redis节点详细信息
445
+ * 本接口(DescribeInstanceZoneInfo)用于查询 Redis 节点详细信息。
446
446
  */
447
447
  async DescribeInstanceZoneInfo(req, cb) {
448
448
  return this.request("DescribeInstanceZoneInfo", req, cb);
@@ -544,7 +544,7 @@ class Client extends TencentCloudCommon.AbstractClient {
544
544
  return this.request("UpgradeInstance", req, cb);
545
545
  }
546
546
  /**
547
- * 本接口(DescribeDBSecurityGroups)用于查询实例的安全组详情。
547
+ * 本接口(DescribeDBSecurityGroups)用于查询实例的安全组详情。
548
548
  */
549
549
  async DescribeDBSecurityGroups(req, cb) {
550
550
  return this.request("DescribeDBSecurityGroups", req, cb);
@@ -386,7 +386,7 @@ export interface ModifyInstanceReadOnlyResponse {
386
386
  */
387
387
  export interface DescribeInstanceZoneInfoRequest {
388
388
  /**
389
- * 实例Id,如:crs-6ubhgouj
389
+ * 指定实例 ID。例如:crs-xjhsdj****。请登录[Redis控制台](https://console.cloud.tencent.com/redis)在实例列表复制实例 ID。
390
390
  */
391
391
  InstanceId?: string;
392
392
  }
@@ -673,15 +673,15 @@ export interface DescribeDBSecurityGroupsResponse {
673
673
  /**
674
674
  * 安全组规则。
675
675
  */
676
- Groups: Array<SecurityGroup>;
676
+ Groups?: Array<SecurityGroup>;
677
677
  /**
678
- * 安全组生效内网地址。
678
+ * 实例内网IPv4地址。
679
679
  */
680
- VIP: string;
680
+ VIP?: string;
681
681
  /**
682
- * 安全组生效内网端口。
682
+ * 内网端口。
683
683
  */
684
- VPort: string;
684
+ VPort?: string;
685
685
  /**
686
686
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
687
687
  */
@@ -801,13 +801,13 @@ export interface DescribeInstancesResponse {
801
801
  */
802
802
  export interface DescribeInstanceZoneInfoResponse {
803
803
  /**
804
- * 实例节点组的个数
804
+ * 实例节点组的个数。
805
805
  */
806
- TotalCount: number;
806
+ TotalCount?: number;
807
807
  /**
808
- * 实例节点组列表
808
+ * 实例节点组列表。
809
809
  */
810
- ReplicaGroups: Array<ReplicaGroup>;
810
+ ReplicaGroups?: Array<ReplicaGroup>;
811
811
  /**
812
812
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
813
813
  */
@@ -818,32 +818,40 @@ export interface DescribeInstanceZoneInfoResponse {
818
818
  */
819
819
  export interface Account {
820
820
  /**
821
- * 实例ID
821
+ * 实例 ID
822
822
  注意:此字段可能返回 null,表示取不到有效值。
823
823
  */
824
824
  InstanceId: string;
825
825
  /**
826
- * 账号名称(如果是主账号,名称为root)
826
+ * 账号名称。
827
827
  注意:此字段可能返回 null,表示取不到有效值。
828
828
  */
829
829
  AccountName: string;
830
830
  /**
831
- * 账号描述信息
831
+ * 账号描述信息。
832
832
  注意:此字段可能返回 null,表示取不到有效值。
833
833
  */
834
834
  Remark: string;
835
835
  /**
836
- * 读写策略:r-只读,w-只写,rw-读写
836
+ * 读写权限策略。
837
+ - r:只读。
838
+ - w:只写。
839
+ - rw:读写。
837
840
  注意:此字段可能返回 null,表示取不到有效值。
838
841
  */
839
842
  Privilege: string;
840
843
  /**
841
- * 路由策略:master-主节点,replication-从节点
844
+ * 只读路由策略。
845
+ - master:主节点。
846
+ - replication:从节点。
842
847
  注意:此字段可能返回 null,表示取不到有效值。
843
848
  */
844
849
  ReadonlyPolicy: Array<string>;
845
850
  /**
846
- * 子账号状态:1-账号变更中,2-账号有效,-4-账号已删除
851
+ * 子账号状态.
852
+ - 1:账号变更中。
853
+ - 2:账号有效。
854
+ - 4:账号已删除。
847
855
  注意:此字段可能返回 null,表示取不到有效值。
848
856
  */
849
857
  Status: number;
@@ -878,19 +886,19 @@ export interface InstanceProxySlowlogDetail {
878
886
  */
879
887
  export interface SecurityGroupsInboundAndOutbound {
880
888
  /**
881
- * 执行动作
889
+ * 标识出入数据库的IP与端口是否被允许。
882
890
  */
883
891
  Action: string;
884
892
  /**
885
- * IP地址
893
+ * 出入数据库的IP地址
886
894
  */
887
895
  Ip: string;
888
896
  /**
889
- * 端口号
897
+ * 端口号。
890
898
  */
891
899
  Port: string;
892
900
  /**
893
- * 协议类型
901
+ * 协议类型。
894
902
  */
895
903
  Proto: string;
896
904
  }
@@ -1120,36 +1128,40 @@ export interface ModifyAutoBackupConfigRequest {
1120
1128
  */
1121
1129
  export interface InstanceMultiParam {
1122
1130
  /**
1123
- * 参数名
1131
+ * 参数名称。
1124
1132
  */
1125
1133
  ParamName: string;
1126
1134
  /**
1127
- * 参数类型:multi
1135
+ * 参数类型。例如:multi
1128
1136
  */
1129
1137
  ValueType: string;
1130
1138
  /**
1131
- * 修改后是否需要重启:true,false
1132
- */
1139
+ * 参数修改后是否需要重启。
1140
+ - true:需要。
1141
+ - false:不需要。
1142
+ */
1133
1143
  NeedRestart: string;
1134
1144
  /**
1135
- * 参数默认值
1145
+ * 参数默认值。
1136
1146
  */
1137
1147
  DefaultValue: string;
1138
1148
  /**
1139
- * 当前运行参数值
1149
+ * 当前运行参数值。
1140
1150
  */
1141
1151
  CurrentValue: string;
1142
1152
  /**
1143
- * 参数说明
1153
+ * 参数说明。
1144
1154
  */
1145
1155
  Tips: string;
1146
1156
  /**
1147
- * 参数说明
1157
+ * 参数说明。
1148
1158
  */
1149
1159
  EnumValue: Array<string>;
1150
1160
  /**
1151
- * 参数状态, 1: 修改中, 2:修改完成
1152
- */
1161
+ * 参数修改的状态。
1162
+ - 1:修改中。
1163
+ - 2:修改完成。
1164
+ */
1153
1165
  Status: number;
1154
1166
  }
1155
1167
  /**
@@ -1166,23 +1178,23 @@ export interface DescribeInstanceDealDetailRequest {
1166
1178
  */
1167
1179
  export interface RedisNode {
1168
1180
  /**
1169
- * 节点key的个数
1181
+ * Redis 节点上 Key 的个数。
1170
1182
  */
1171
1183
  Keys: number;
1172
1184
  /**
1173
- * 节点slot分布
1185
+ * Redis 节点 Slot 分布范围。例如:0-5460。
1174
1186
  */
1175
1187
  Slot: string;
1176
1188
  /**
1177
- * 节点的序列ID
1189
+ * 节点的序列 ID
1178
1190
  */
1179
1191
  NodeId: string;
1180
1192
  /**
1181
- * 节点的状态
1193
+ * 节点的状态。
1182
1194
  */
1183
1195
  Status: string;
1184
1196
  /**
1185
- * 节点角色
1197
+ * 节点角色。
1186
1198
  */
1187
1199
  Role: string;
1188
1200
  }
@@ -1860,8 +1872,9 @@ export interface DescribeDBSecurityGroupsRequest {
1860
1872
  */
1861
1873
  Product: string;
1862
1874
  /**
1863
- * 实例ID,格式如:cdb-c1nl9rpv或者cdbro-c1nl9rpv,与云数据库控制台页面中显示的实例ID相同。
1864
- */
1875
+ * 指定实例 ID。例如:crs-xjhsdj****。请登录[Redis控制台](https://console.cloud.tencent.com/redis)在实例列表复制实例 ID
1876
+
1877
+ */
1865
1878
  InstanceId: string;
1866
1879
  }
1867
1880
  /**
@@ -1883,11 +1896,11 @@ export interface InquiryPriceCreateInstanceResponse {
1883
1896
  */
1884
1897
  export interface InstanceSecurityGroupDetail {
1885
1898
  /**
1886
- * 实例Id
1899
+ * 实例 ID。
1887
1900
  */
1888
1901
  InstanceId: string;
1889
1902
  /**
1890
- * 安全组信息
1903
+ * 安全组信息,包括:安全组 ID、安全组名称、安全组出入站规则。
1891
1904
  */
1892
1905
  SecurityGroupDetails: Array<SecurityGroupDetail>;
1893
1906
  }
@@ -1896,25 +1909,25 @@ export interface InstanceSecurityGroupDetail {
1896
1909
  */
1897
1910
  export interface DescribeInstanceParamsResponse {
1898
1911
  /**
1899
- * 实例参数个数
1912
+ * 参数列表总数量。
1900
1913
  */
1901
- TotalCount: number;
1914
+ TotalCount?: number;
1902
1915
  /**
1903
- * 实例枚举类型参数
1916
+ * 实例枚举类型参数。
1904
1917
  */
1905
- InstanceEnumParam: Array<InstanceEnumParam>;
1918
+ InstanceEnumParam?: Array<InstanceEnumParam>;
1906
1919
  /**
1907
- * 实例整型参数
1920
+ * 实例整型参数。
1908
1921
  */
1909
- InstanceIntegerParam: Array<InstanceIntegerParam>;
1922
+ InstanceIntegerParam?: Array<InstanceIntegerParam>;
1910
1923
  /**
1911
- * 实例字符型参数
1924
+ * 实例字符型参数。
1912
1925
  */
1913
- InstanceTextParam: Array<InstanceTextParam>;
1926
+ InstanceTextParam?: Array<InstanceTextParam>;
1914
1927
  /**
1915
- * 实例多选项型参数
1928
+ * 实例多选项型参数。
1916
1929
  */
1917
- InstanceMultiParam: Array<InstanceMultiParam>;
1930
+ InstanceMultiParam?: Array<InstanceMultiParam>;
1918
1931
  /**
1919
1932
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1920
1933
  */
@@ -2244,15 +2257,15 @@ export interface DescribeInstanceMonitorBigKeySizeDistRequest {
2244
2257
  */
2245
2258
  export interface DescribeInstanceAccountRequest {
2246
2259
  /**
2247
- * 实例ID
2260
+ * 指定实例 ID。例如:crs-xjhsdj****。请登录[Redis控制台](https://console.cloud.tencent.com/redis)在实例列表复制实例 ID。
2248
2261
  */
2249
2262
  InstanceId: string;
2250
2263
  /**
2251
- * 分页大小
2264
+ * 分页大小。
2252
2265
  */
2253
2266
  Limit: number;
2254
2267
  /**
2255
- * 分页偏移量
2268
+ * 分页偏移量。取Limit整数倍。计算公式:offset=limit*(页码-1)。
2256
2269
  */
2257
2270
  Offset: number;
2258
2271
  }
@@ -2261,36 +2274,40 @@ export interface DescribeInstanceAccountRequest {
2261
2274
  */
2262
2275
  export interface InstanceTextParam {
2263
2276
  /**
2264
- * 参数名
2277
+ * 参数名称。
2265
2278
  */
2266
2279
  ParamName: string;
2267
2280
  /**
2268
- * 参数类型:text
2281
+ * 参数类型。例如:text
2269
2282
  */
2270
2283
  ValueType: string;
2271
2284
  /**
2272
- * 修改后是否需要重启:true,false
2273
- */
2285
+ * 参数修改后是否需要重启。
2286
+ - true:需要。
2287
+ - false:不需要。
2288
+ */
2274
2289
  NeedRestart: string;
2275
2290
  /**
2276
- * 参数默认值
2291
+ * 参数默认值。
2277
2292
  */
2278
2293
  DefaultValue: string;
2279
2294
  /**
2280
- * 当前运行参数值
2295
+ * 参数当前运行值。
2281
2296
  */
2282
2297
  CurrentValue: string;
2283
2298
  /**
2284
- * 参数说明
2299
+ * 参数说明。
2285
2300
  */
2286
2301
  Tips: string;
2287
2302
  /**
2288
- * 参数可取值
2303
+ * 参数可取值。
2289
2304
  */
2290
2305
  TextValue: Array<string>;
2291
2306
  /**
2292
- * 参数状态, 1: 修改中, 2:修改完成
2293
- */
2307
+ * 参数修改状态。
2308
+ - 1: 修改中。
2309
+ - 2:修改完成。
2310
+ */
2294
2311
  Status: number;
2295
2312
  }
2296
2313
  /**
@@ -2624,7 +2641,7 @@ export interface ModifyNetworkConfigRequest {
2624
2641
  */
2625
2642
  export interface DescribeInstanceSecurityGroupRequest {
2626
2643
  /**
2627
- * 实例列表
2644
+ * 实例 ID 列表。例如;["crs-f2ho5rsz\n"]
2628
2645
  */
2629
2646
  InstanceIds: Array<string>;
2630
2647
  }
@@ -2661,7 +2678,7 @@ export interface InstanceParamHistory {
2661
2678
  */
2662
2679
  export interface DescribeInstanceParamsRequest {
2663
2680
  /**
2664
- * 实例Id
2681
+ * 指定实例 ID。例如:crs-xjhsdj****。请登录[Redis控制台](https://console.cloud.tencent.com/redis)在实例列表复制实例 ID。
2665
2682
  */
2666
2683
  InstanceId: string;
2667
2684
  }
@@ -2987,9 +3004,9 @@ export interface DescribeMaintenanceWindowResponse {
2987
3004
  */
2988
3005
  export interface DescribeInstanceSecurityGroupResponse {
2989
3006
  /**
2990
- * 实例安全组信息
3007
+ * 实例安全组信息。
2991
3008
  */
2992
- InstanceSecurityGroupsDetail: Array<InstanceSecurityGroupDetail>;
3009
+ InstanceSecurityGroupsDetail?: Array<InstanceSecurityGroupDetail>;
2993
3010
  /**
2994
3011
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2995
3012
  */
@@ -3111,7 +3128,7 @@ export interface ManualBackupInstanceResponse {
3111
3128
  /**
3112
3129
  * 任务ID
3113
3130
  */
3114
- TaskId: number;
3131
+ TaskId?: number;
3115
3132
  /**
3116
3133
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3117
3134
  */
@@ -3286,15 +3303,15 @@ export interface AssociateSecurityGroupsResponse {
3286
3303
  RequestId?: string;
3287
3304
  }
3288
3305
  /**
3289
- * 实例节点信息
3306
+ * 实例节点组信息
3290
3307
  */
3291
3308
  export interface ReplicaGroup {
3292
3309
  /**
3293
- * 节点组ID
3310
+ * 节点组 ID
3294
3311
  */
3295
3312
  GroupId: number;
3296
3313
  /**
3297
- * 节点组的名称,主节点为空
3314
+ * 节点组的名称,主节点为空。
3298
3315
  */
3299
3316
  GroupName: string;
3300
3317
  /**
@@ -3630,7 +3647,7 @@ export interface DescribeSlowLogRequest {
3630
3647
  */
3631
3648
  MinQueryTime?: number;
3632
3649
  /**
3633
- * 每个页面展示的慢查询条数,默认值为20。
3650
+ * 每个页面展示的慢查询条数,默认值为20。取值范围:[20,1000]
3634
3651
  */
3635
3652
  Limit?: number;
3636
3653
  /**
@@ -3779,16 +3796,19 @@ export interface UpgradeInstanceResponse {
3779
3796
  */
3780
3797
  export interface ManualBackupInstanceRequest {
3781
3798
  /**
3782
- * 待操作的实例ID,可通过 DescribeInstance接口返回值中的 InstanceId 获取。
3799
+ * 指定实例 ID。例如:crs-xjhsdj****。请登录[Redis控制台](https://console.cloud.tencent.com/redis)在实例列表复制实例 ID。
3783
3800
  */
3784
3801
  InstanceId: string;
3785
3802
  /**
3786
- * 备份的备注信息
3803
+ * 手动备份任务的备注信息。
3787
3804
  */
3788
3805
  Remark?: string;
3789
3806
  /**
3790
- * 保存天数。0代表指定默认保留时间
3791
- */
3807
+ * 备份数据的保存天数。
3808
+ - 单位:天;默认值为7天;取值范围:[0.1825]。如果超过 7天,请[提交工单](https://console.cloud.tencent.com/workorder/category)申请。
3809
+ - 如果不配置该参数,默认与自动备份的保留时间一致。
3810
+ - 如果未设置自动备份,默认为7天。
3811
+ */
3792
3812
  StorageDays?: number;
3793
3813
  }
3794
3814
  /**
@@ -4529,27 +4549,28 @@ export interface DescribeTendisSlowLogRequest {
4529
4549
  */
4530
4550
  export interface DescribeProxySlowLogRequest {
4531
4551
  /**
4532
- * 实例Id
4533
- */
4552
+ * 指定实例 ID。例如:crs-xjhsdj****。请登录[Redis控制台](https://console.cloud.tencent.com/redis)在实例列表复制实例 ID。
4553
+
4554
+ */
4534
4555
  InstanceId: string;
4535
4556
  /**
4536
- * 开始时间
4557
+ * 慢查询的开始时间。
4537
4558
  */
4538
4559
  BeginTime: string;
4539
4560
  /**
4540
- * 结束时间
4561
+ * 慢查询的结束时间。
4541
4562
  */
4542
4563
  EndTime: string;
4543
4564
  /**
4544
- * 慢查询阈值(单位:毫秒)
4565
+ * 慢查询阈值,单位:毫秒。
4545
4566
  */
4546
4567
  MinQueryTime?: number;
4547
4568
  /**
4548
- * 页面大小
4569
+ * 分页大小。默认为 20,取值范围[20,1000]。
4549
4570
  */
4550
4571
  Limit?: number;
4551
4572
  /**
4552
- * 偏移量,取Limit整数倍
4573
+ * 偏移量,取Limit整数倍。
4553
4574
  */
4554
4575
  Offset?: number;
4555
4576
  }
@@ -4558,13 +4579,13 @@ export interface DescribeProxySlowLogRequest {
4558
4579
  */
4559
4580
  export interface DescribeProxySlowLogResponse {
4560
4581
  /**
4561
- * 慢查询总数
4582
+ * 慢查询总数。
4562
4583
  */
4563
- TotalCount: number;
4584
+ TotalCount?: number;
4564
4585
  /**
4565
- * 慢查询详情
4586
+ * 慢查询详情。
4566
4587
  */
4567
- InstanceProxySlowLogDetail: Array<InstanceProxySlowlogDetail>;
4588
+ InstanceProxySlowLogDetail?: Array<InstanceProxySlowlogDetail>;
4568
4589
  /**
4569
4590
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4570
4591
  */
@@ -4588,15 +4609,15 @@ export interface ModifyInstanceReadOnlyRequest {
4588
4609
  */
4589
4610
  export interface DescribeInstanceAccountResponse {
4590
4611
  /**
4591
- * 账号详细信息
4612
+ * 账号详细信息。
4592
4613
  注意:此字段可能返回 null,表示取不到有效值。
4593
4614
  */
4594
- Accounts: Array<Account>;
4615
+ Accounts?: Array<Account>;
4595
4616
  /**
4596
- * 账号个数
4617
+ * 账号个数。
4597
4618
  注意:此字段可能返回 null,表示取不到有效值。
4598
4619
  */
4599
- TotalCount: number;
4620
+ TotalCount?: number;
4600
4621
  /**
4601
4622
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4602
4623
  */
@@ -4757,36 +4778,40 @@ export interface HotKeyInfo {
4757
4778
  */
4758
4779
  export interface InstanceEnumParam {
4759
4780
  /**
4760
- * 参数名
4781
+ * 参数名称。
4761
4782
  */
4762
4783
  ParamName: string;
4763
4784
  /**
4764
- * 参数类型:enum
4785
+ * 参数类型,例如:Enum。
4765
4786
  */
4766
4787
  ValueType: string;
4767
4788
  /**
4768
- * 修改后是否需要重启:true,false
4769
- */
4789
+ * 参数值修改后是否需要重启。
4790
+ - true:需要。
4791
+ - false:不需要。
4792
+ */
4770
4793
  NeedRestart: string;
4771
4794
  /**
4772
- * 参数默认值
4795
+ * 参数默认值。
4773
4796
  */
4774
4797
  DefaultValue: string;
4775
4798
  /**
4776
- * 当前运行参数值
4799
+ * 参数当前运行值。
4777
4800
  */
4778
4801
  CurrentValue: string;
4779
4802
  /**
4780
- * 参数说明
4803
+ * 参数说明。
4781
4804
  */
4782
4805
  Tips: string;
4783
4806
  /**
4784
- * 参数可取值
4807
+ * 参数可取的值。
4785
4808
  */
4786
4809
  EnumValue: Array<string>;
4787
4810
  /**
4788
- * 参数状态, 1: 修改中, 2:修改完成
4789
- */
4811
+ * 参数修改状态。
4812
+ - 1: 修改中。
4813
+ - 2:修改完成。
4814
+ */
4790
4815
  Status: number;
4791
4816
  }
4792
4817
  /**
@@ -4859,31 +4884,31 @@ export interface RemoveReplicationInstanceResponse {
4859
4884
  */
4860
4885
  export interface SecurityGroupDetail {
4861
4886
  /**
4862
- * 项目Id
4887
+ * 项目ID。
4863
4888
  */
4864
4889
  ProjectId: number;
4865
4890
  /**
4866
- * 创建时间
4891
+ * 创建安全组的时间。
4867
4892
  */
4868
4893
  CreateTime: string;
4869
4894
  /**
4870
- * 安全组Id
4895
+ * 安全组 ID。
4871
4896
  */
4872
4897
  SecurityGroupId: string;
4873
4898
  /**
4874
- * 安全组名称
4899
+ * 安全组名称。
4875
4900
  */
4876
4901
  SecurityGroupName: string;
4877
4902
  /**
4878
- * 安全组标记
4903
+ * 安全组标记。
4879
4904
  */
4880
4905
  SecurityGroupRemark: string;
4881
4906
  /**
4882
- * 安全组入站规则
4907
+ * 安全组入站规则,即控制访问数据库的来源。
4883
4908
  */
4884
4909
  InboundRule: Array<SecurityGroupsInboundAndOutbound>;
4885
4910
  /**
4886
- * 安全组出站规则
4911
+ * 安全组出站规则。
4887
4912
  */
4888
4913
  OutboundRule: Array<SecurityGroupsInboundAndOutbound>;
4889
4914
  }