tencentcloud-sdk-tsf 1.0.337 → 1.0.338
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.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20180326/client.rb +288 -0
- data/lib/v20180326/models.rb +933 -17
- metadata +1 -1
data/lib/v20180326/models.rb
CHANGED
@@ -841,6 +841,111 @@ module TencentCloud
|
|
841
841
|
end
|
842
842
|
end
|
843
843
|
|
844
|
+
# AssociateBusinessLogConfig请求参数结构体
|
845
|
+
class AssociateBusinessLogConfigRequest < TencentCloud::Common::AbstractModel
|
846
|
+
# @param GroupId: TSF分组ID
|
847
|
+
# @type GroupId: String
|
848
|
+
# @param ConfigIdList: 日志配置项ID列表
|
849
|
+
# @type ConfigIdList: Array
|
850
|
+
|
851
|
+
attr_accessor :GroupId, :ConfigIdList
|
852
|
+
|
853
|
+
def initialize(groupid=nil, configidlist=nil)
|
854
|
+
@GroupId = groupid
|
855
|
+
@ConfigIdList = configidlist
|
856
|
+
end
|
857
|
+
|
858
|
+
def deserialize(params)
|
859
|
+
@GroupId = params['GroupId']
|
860
|
+
@ConfigIdList = params['ConfigIdList']
|
861
|
+
end
|
862
|
+
end
|
863
|
+
|
864
|
+
# AssociateBusinessLogConfig返回参数结构体
|
865
|
+
class AssociateBusinessLogConfigResponse < TencentCloud::Common::AbstractModel
|
866
|
+
# @param Result: 操作结果
|
867
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
868
|
+
# @type Result: Boolean
|
869
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
870
|
+
# @type RequestId: String
|
871
|
+
|
872
|
+
attr_accessor :Result, :RequestId
|
873
|
+
|
874
|
+
def initialize(result=nil, requestid=nil)
|
875
|
+
@Result = result
|
876
|
+
@RequestId = requestid
|
877
|
+
end
|
878
|
+
|
879
|
+
def deserialize(params)
|
880
|
+
@Result = params['Result']
|
881
|
+
@RequestId = params['RequestId']
|
882
|
+
end
|
883
|
+
end
|
884
|
+
|
885
|
+
# AssociateConfigWithGroup请求参数结构体
|
886
|
+
class AssociateConfigWithGroupRequest < TencentCloud::Common::AbstractModel
|
887
|
+
# @param ConfigId: 配置项id
|
888
|
+
# @type ConfigId: String
|
889
|
+
# @param Groups: 部署组信息
|
890
|
+
# @type Groups: Array
|
891
|
+
# @param SelectAll: 是否选择全部投递,1 表示全部,0或不填表示非全部
|
892
|
+
# @type SelectAll: Integer
|
893
|
+
# @param NamespaceId: 命名空间id
|
894
|
+
# @type NamespaceId: String
|
895
|
+
# @param ClusterId: 集群id
|
896
|
+
# @type ClusterId: String
|
897
|
+
# @param SearchWord: 模糊搜索关键词
|
898
|
+
# @type SearchWord: String
|
899
|
+
|
900
|
+
attr_accessor :ConfigId, :Groups, :SelectAll, :NamespaceId, :ClusterId, :SearchWord
|
901
|
+
|
902
|
+
def initialize(configid=nil, groups=nil, selectall=nil, namespaceid=nil, clusterid=nil, searchword=nil)
|
903
|
+
@ConfigId = configid
|
904
|
+
@Groups = groups
|
905
|
+
@SelectAll = selectall
|
906
|
+
@NamespaceId = namespaceid
|
907
|
+
@ClusterId = clusterid
|
908
|
+
@SearchWord = searchword
|
909
|
+
end
|
910
|
+
|
911
|
+
def deserialize(params)
|
912
|
+
@ConfigId = params['ConfigId']
|
913
|
+
unless params['Groups'].nil?
|
914
|
+
@Groups = []
|
915
|
+
params['Groups'].each do |i|
|
916
|
+
groupinfo_tmp = GroupInfo.new
|
917
|
+
groupinfo_tmp.deserialize(i)
|
918
|
+
@Groups << groupinfo_tmp
|
919
|
+
end
|
920
|
+
end
|
921
|
+
@SelectAll = params['SelectAll']
|
922
|
+
@NamespaceId = params['NamespaceId']
|
923
|
+
@ClusterId = params['ClusterId']
|
924
|
+
@SearchWord = params['SearchWord']
|
925
|
+
end
|
926
|
+
end
|
927
|
+
|
928
|
+
# AssociateConfigWithGroup返回参数结构体
|
929
|
+
class AssociateConfigWithGroupResponse < TencentCloud::Common::AbstractModel
|
930
|
+
# @param Result: 绑定是否成功
|
931
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
932
|
+
# @type Result: Boolean
|
933
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
934
|
+
# @type RequestId: String
|
935
|
+
|
936
|
+
attr_accessor :Result, :RequestId
|
937
|
+
|
938
|
+
def initialize(result=nil, requestid=nil)
|
939
|
+
@Result = result
|
940
|
+
@RequestId = requestid
|
941
|
+
end
|
942
|
+
|
943
|
+
def deserialize(params)
|
944
|
+
@Result = params['Result']
|
945
|
+
@RequestId = params['RequestId']
|
946
|
+
end
|
947
|
+
end
|
948
|
+
|
844
949
|
# BindApiGroup请求参数结构体
|
845
950
|
class BindApiGroupRequest < TencentCloud::Common::AbstractModel
|
846
951
|
# @param GroupGatewayList: 分组绑定网关列表
|
@@ -927,6 +1032,184 @@ module TencentCloud
|
|
927
1032
|
end
|
928
1033
|
end
|
929
1034
|
|
1035
|
+
# 业务日志配置关联部署组信息
|
1036
|
+
class BusinesLogConfigAssociatedGroup < TencentCloud::Common::AbstractModel
|
1037
|
+
# @param GroupId: 部署组ID
|
1038
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1039
|
+
# @type GroupId: String
|
1040
|
+
# @param GroupName: 部署组名称
|
1041
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1042
|
+
# @type GroupName: String
|
1043
|
+
# @param ApplicationId: 部署组所属应用ID
|
1044
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1045
|
+
# @type ApplicationId: String
|
1046
|
+
# @param ApplicationName: 部署组所属应用名称
|
1047
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1048
|
+
# @type ApplicationName: String
|
1049
|
+
# @param ApplicationType: 部署组所属应用类型
|
1050
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1051
|
+
# @type ApplicationType: String
|
1052
|
+
# @param NamespaceId: 部署组所属命名空间ID
|
1053
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1054
|
+
# @type NamespaceId: String
|
1055
|
+
# @param NamespaceName: 部署组所属命名空间名称
|
1056
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1057
|
+
# @type NamespaceName: String
|
1058
|
+
# @param ClusterId: 部署组所属集群ID
|
1059
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1060
|
+
# @type ClusterId: String
|
1061
|
+
# @param ClusterName: 部署组所属集群名称
|
1062
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1063
|
+
# @type ClusterName: String
|
1064
|
+
# @param ClusterType: 部署组所属集群类型
|
1065
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1066
|
+
# @type ClusterType: String
|
1067
|
+
# @param AssociatedTime: 部署组关联日志配置时间
|
1068
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1069
|
+
# @type AssociatedTime: String
|
1070
|
+
|
1071
|
+
attr_accessor :GroupId, :GroupName, :ApplicationId, :ApplicationName, :ApplicationType, :NamespaceId, :NamespaceName, :ClusterId, :ClusterName, :ClusterType, :AssociatedTime
|
1072
|
+
|
1073
|
+
def initialize(groupid=nil, groupname=nil, applicationid=nil, applicationname=nil, applicationtype=nil, namespaceid=nil, namespacename=nil, clusterid=nil, clustername=nil, clustertype=nil, associatedtime=nil)
|
1074
|
+
@GroupId = groupid
|
1075
|
+
@GroupName = groupname
|
1076
|
+
@ApplicationId = applicationid
|
1077
|
+
@ApplicationName = applicationname
|
1078
|
+
@ApplicationType = applicationtype
|
1079
|
+
@NamespaceId = namespaceid
|
1080
|
+
@NamespaceName = namespacename
|
1081
|
+
@ClusterId = clusterid
|
1082
|
+
@ClusterName = clustername
|
1083
|
+
@ClusterType = clustertype
|
1084
|
+
@AssociatedTime = associatedtime
|
1085
|
+
end
|
1086
|
+
|
1087
|
+
def deserialize(params)
|
1088
|
+
@GroupId = params['GroupId']
|
1089
|
+
@GroupName = params['GroupName']
|
1090
|
+
@ApplicationId = params['ApplicationId']
|
1091
|
+
@ApplicationName = params['ApplicationName']
|
1092
|
+
@ApplicationType = params['ApplicationType']
|
1093
|
+
@NamespaceId = params['NamespaceId']
|
1094
|
+
@NamespaceName = params['NamespaceName']
|
1095
|
+
@ClusterId = params['ClusterId']
|
1096
|
+
@ClusterName = params['ClusterName']
|
1097
|
+
@ClusterType = params['ClusterType']
|
1098
|
+
@AssociatedTime = params['AssociatedTime']
|
1099
|
+
end
|
1100
|
+
end
|
1101
|
+
|
1102
|
+
# 业务日志配置
|
1103
|
+
class BusinessLogConfig < TencentCloud::Common::AbstractModel
|
1104
|
+
# @param ConfigId: 配置项ID
|
1105
|
+
# @type ConfigId: String
|
1106
|
+
# @param ConfigName: 配置项名称
|
1107
|
+
# @type ConfigName: String
|
1108
|
+
# @param ConfigPath: 配置项日志路径
|
1109
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1110
|
+
# @type ConfigPath: String
|
1111
|
+
# @param ConfigDesc: 配置项描述
|
1112
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1113
|
+
# @type ConfigDesc: String
|
1114
|
+
# @param ConfigTags: 配置项标签
|
1115
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1116
|
+
# @type ConfigTags: String
|
1117
|
+
# @param ConfigPipeline: 配置项对应的ES管道
|
1118
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1119
|
+
# @type ConfigPipeline: String
|
1120
|
+
# @param ConfigCreateTime: 配置项创建时间
|
1121
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1122
|
+
# @type ConfigCreateTime: String
|
1123
|
+
# @param ConfigUpdateTime: 配置项更新时间
|
1124
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1125
|
+
# @type ConfigUpdateTime: String
|
1126
|
+
# @param ConfigSchema: 配置项解析规则
|
1127
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1128
|
+
# @type ConfigSchema: :class:`Tencentcloud::Tsf.v20180326.models.BusinessLogConfigSchema`
|
1129
|
+
# @param ConfigAssociatedGroups: 配置项关联部署组
|
1130
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1131
|
+
# @type ConfigAssociatedGroups: Array
|
1132
|
+
|
1133
|
+
attr_accessor :ConfigId, :ConfigName, :ConfigPath, :ConfigDesc, :ConfigTags, :ConfigPipeline, :ConfigCreateTime, :ConfigUpdateTime, :ConfigSchema, :ConfigAssociatedGroups
|
1134
|
+
|
1135
|
+
def initialize(configid=nil, configname=nil, configpath=nil, configdesc=nil, configtags=nil, configpipeline=nil, configcreatetime=nil, configupdatetime=nil, configschema=nil, configassociatedgroups=nil)
|
1136
|
+
@ConfigId = configid
|
1137
|
+
@ConfigName = configname
|
1138
|
+
@ConfigPath = configpath
|
1139
|
+
@ConfigDesc = configdesc
|
1140
|
+
@ConfigTags = configtags
|
1141
|
+
@ConfigPipeline = configpipeline
|
1142
|
+
@ConfigCreateTime = configcreatetime
|
1143
|
+
@ConfigUpdateTime = configupdatetime
|
1144
|
+
@ConfigSchema = configschema
|
1145
|
+
@ConfigAssociatedGroups = configassociatedgroups
|
1146
|
+
end
|
1147
|
+
|
1148
|
+
def deserialize(params)
|
1149
|
+
@ConfigId = params['ConfigId']
|
1150
|
+
@ConfigName = params['ConfigName']
|
1151
|
+
@ConfigPath = params['ConfigPath']
|
1152
|
+
@ConfigDesc = params['ConfigDesc']
|
1153
|
+
@ConfigTags = params['ConfigTags']
|
1154
|
+
@ConfigPipeline = params['ConfigPipeline']
|
1155
|
+
@ConfigCreateTime = params['ConfigCreateTime']
|
1156
|
+
@ConfigUpdateTime = params['ConfigUpdateTime']
|
1157
|
+
unless params['ConfigSchema'].nil?
|
1158
|
+
@ConfigSchema = BusinessLogConfigSchema.new
|
1159
|
+
@ConfigSchema.deserialize(params['ConfigSchema'])
|
1160
|
+
end
|
1161
|
+
unless params['ConfigAssociatedGroups'].nil?
|
1162
|
+
@ConfigAssociatedGroups = []
|
1163
|
+
params['ConfigAssociatedGroups'].each do |i|
|
1164
|
+
busineslogconfigassociatedgroup_tmp = BusinesLogConfigAssociatedGroup.new
|
1165
|
+
busineslogconfigassociatedgroup_tmp.deserialize(i)
|
1166
|
+
@ConfigAssociatedGroups << busineslogconfigassociatedgroup_tmp
|
1167
|
+
end
|
1168
|
+
end
|
1169
|
+
end
|
1170
|
+
end
|
1171
|
+
|
1172
|
+
# 业务日志配置解析规则
|
1173
|
+
class BusinessLogConfigSchema < TencentCloud::Common::AbstractModel
|
1174
|
+
# @param SchemaType: 解析规则类型
|
1175
|
+
# @type SchemaType: Integer
|
1176
|
+
# @param SchemaContent: 解析规则内容
|
1177
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1178
|
+
# @type SchemaContent: String
|
1179
|
+
# @param SchemaDateFormat: 解析规则时间格式
|
1180
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1181
|
+
# @type SchemaDateFormat: String
|
1182
|
+
# @param SchemaMultilinePattern: 解析规则对应的多行匹配规则
|
1183
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1184
|
+
# @type SchemaMultilinePattern: String
|
1185
|
+
# @param SchemaCreateTime: 解析规则创建时间
|
1186
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1187
|
+
# @type SchemaCreateTime: String
|
1188
|
+
# @param SchemaPatternLayout: 用户填写的解析规则
|
1189
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1190
|
+
# @type SchemaPatternLayout: String
|
1191
|
+
|
1192
|
+
attr_accessor :SchemaType, :SchemaContent, :SchemaDateFormat, :SchemaMultilinePattern, :SchemaCreateTime, :SchemaPatternLayout
|
1193
|
+
|
1194
|
+
def initialize(schematype=nil, schemacontent=nil, schemadateformat=nil, schemamultilinepattern=nil, schemacreatetime=nil, schemapatternlayout=nil)
|
1195
|
+
@SchemaType = schematype
|
1196
|
+
@SchemaContent = schemacontent
|
1197
|
+
@SchemaDateFormat = schemadateformat
|
1198
|
+
@SchemaMultilinePattern = schemamultilinepattern
|
1199
|
+
@SchemaCreateTime = schemacreatetime
|
1200
|
+
@SchemaPatternLayout = schemapatternlayout
|
1201
|
+
end
|
1202
|
+
|
1203
|
+
def deserialize(params)
|
1204
|
+
@SchemaType = params['SchemaType']
|
1205
|
+
@SchemaContent = params['SchemaContent']
|
1206
|
+
@SchemaDateFormat = params['SchemaDateFormat']
|
1207
|
+
@SchemaMultilinePattern = params['SchemaMultilinePattern']
|
1208
|
+
@SchemaCreateTime = params['SchemaCreateTime']
|
1209
|
+
@SchemaPatternLayout = params['SchemaPatternLayout']
|
1210
|
+
end
|
1211
|
+
end
|
1212
|
+
|
930
1213
|
# 业务日志
|
931
1214
|
class BusinessLogV2 < TencentCloud::Common::AbstractModel
|
932
1215
|
# @param InstanceId: 实例ID
|
@@ -4246,6 +4529,77 @@ module TencentCloud
|
|
4246
4529
|
end
|
4247
4530
|
end
|
4248
4531
|
|
4532
|
+
# 描述投递配置项绑定的部署组
|
4533
|
+
class DeliveryConfigBindGroup < TencentCloud::Common::AbstractModel
|
4534
|
+
# @param ConfigId: 配置id
|
4535
|
+
# @type ConfigId: String
|
4536
|
+
# @param ConfigName: 配置名
|
4537
|
+
# @type ConfigName: String
|
4538
|
+
# @param CollectPath: 采集路径
|
4539
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
4540
|
+
# @type CollectPath: Array
|
4541
|
+
# @param Groups: 关联部署组信息
|
4542
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
4543
|
+
# @type Groups: Array
|
4544
|
+
# @param CreateTime: 创建时间
|
4545
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
4546
|
+
# @type CreateTime: String
|
4547
|
+
|
4548
|
+
attr_accessor :ConfigId, :ConfigName, :CollectPath, :Groups, :CreateTime
|
4549
|
+
|
4550
|
+
def initialize(configid=nil, configname=nil, collectpath=nil, groups=nil, createtime=nil)
|
4551
|
+
@ConfigId = configid
|
4552
|
+
@ConfigName = configname
|
4553
|
+
@CollectPath = collectpath
|
4554
|
+
@Groups = groups
|
4555
|
+
@CreateTime = createtime
|
4556
|
+
end
|
4557
|
+
|
4558
|
+
def deserialize(params)
|
4559
|
+
@ConfigId = params['ConfigId']
|
4560
|
+
@ConfigName = params['ConfigName']
|
4561
|
+
@CollectPath = params['CollectPath']
|
4562
|
+
unless params['Groups'].nil?
|
4563
|
+
@Groups = []
|
4564
|
+
params['Groups'].each do |i|
|
4565
|
+
groupinfo_tmp = GroupInfo.new
|
4566
|
+
groupinfo_tmp.deserialize(i)
|
4567
|
+
@Groups << groupinfo_tmp
|
4568
|
+
end
|
4569
|
+
end
|
4570
|
+
@CreateTime = params['CreateTime']
|
4571
|
+
end
|
4572
|
+
end
|
4573
|
+
|
4574
|
+
# 描述配置项绑定的部署组
|
4575
|
+
class DeliveryConfigBindGroups < TencentCloud::Common::AbstractModel
|
4576
|
+
# @param TotalCount: 公共条数
|
4577
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
4578
|
+
# @type TotalCount: Integer
|
4579
|
+
# @param Content: 内容
|
4580
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
4581
|
+
# @type Content: Array
|
4582
|
+
|
4583
|
+
attr_accessor :TotalCount, :Content
|
4584
|
+
|
4585
|
+
def initialize(totalcount=nil, content=nil)
|
4586
|
+
@TotalCount = totalcount
|
4587
|
+
@Content = content
|
4588
|
+
end
|
4589
|
+
|
4590
|
+
def deserialize(params)
|
4591
|
+
@TotalCount = params['TotalCount']
|
4592
|
+
unless params['Content'].nil?
|
4593
|
+
@Content = []
|
4594
|
+
params['Content'].each do |i|
|
4595
|
+
deliveryconfigbindgroup_tmp = DeliveryConfigBindGroup.new
|
4596
|
+
deliveryconfigbindgroup_tmp.deserialize(i)
|
4597
|
+
@Content << deliveryconfigbindgroup_tmp
|
4598
|
+
end
|
4599
|
+
end
|
4600
|
+
end
|
4601
|
+
end
|
4602
|
+
|
4249
4603
|
# DeployContainerGroup请求参数结构体
|
4250
4604
|
class DeployContainerGroupRequest < TencentCloud::Common::AbstractModel
|
4251
4605
|
# @param GroupId: 部署组ID,分组唯一标识
|
@@ -4917,6 +5271,38 @@ module TencentCloud
|
|
4917
5271
|
end
|
4918
5272
|
end
|
4919
5273
|
|
5274
|
+
# DescribeApplicationBusinessLogConfig请求参数结构体
|
5275
|
+
class DescribeApplicationBusinessLogConfigRequest < TencentCloud::Common::AbstractModel
|
5276
|
+
# @param ApplicationId: TSF应用ID
|
5277
|
+
# @type ApplicationId: String
|
5278
|
+
|
5279
|
+
attr_accessor :ApplicationId
|
5280
|
+
|
5281
|
+
def initialize(applicationid=nil)
|
5282
|
+
@ApplicationId = applicationid
|
5283
|
+
end
|
5284
|
+
|
5285
|
+
def deserialize(params)
|
5286
|
+
@ApplicationId = params['ApplicationId']
|
5287
|
+
end
|
5288
|
+
end
|
5289
|
+
|
5290
|
+
# DescribeApplicationBusinessLogConfig返回参数结构体
|
5291
|
+
class DescribeApplicationBusinessLogConfigResponse < TencentCloud::Common::AbstractModel
|
5292
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
5293
|
+
# @type RequestId: String
|
5294
|
+
|
5295
|
+
attr_accessor :RequestId
|
5296
|
+
|
5297
|
+
def initialize(requestid=nil)
|
5298
|
+
@RequestId = requestid
|
5299
|
+
end
|
5300
|
+
|
5301
|
+
def deserialize(params)
|
5302
|
+
@RequestId = params['RequestId']
|
5303
|
+
end
|
5304
|
+
end
|
5305
|
+
|
4920
5306
|
# DescribeApplication请求参数结构体
|
4921
5307
|
class DescribeApplicationRequest < TencentCloud::Common::AbstractModel
|
4922
5308
|
# @param ApplicationId: 应用ID
|
@@ -5064,6 +5450,102 @@ module TencentCloud
|
|
5064
5450
|
end
|
5065
5451
|
end
|
5066
5452
|
|
5453
|
+
# DescribeBusinessLogConfig请求参数结构体
|
5454
|
+
class DescribeBusinessLogConfigRequest < TencentCloud::Common::AbstractModel
|
5455
|
+
# @param ConfigId: 配置项ID
|
5456
|
+
# @type ConfigId: String
|
5457
|
+
|
5458
|
+
attr_accessor :ConfigId
|
5459
|
+
|
5460
|
+
def initialize(configid=nil)
|
5461
|
+
@ConfigId = configid
|
5462
|
+
end
|
5463
|
+
|
5464
|
+
def deserialize(params)
|
5465
|
+
@ConfigId = params['ConfigId']
|
5466
|
+
end
|
5467
|
+
end
|
5468
|
+
|
5469
|
+
# DescribeBusinessLogConfig返回参数结构体
|
5470
|
+
class DescribeBusinessLogConfigResponse < TencentCloud::Common::AbstractModel
|
5471
|
+
# @param Result: 日志配置项
|
5472
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
5473
|
+
# @type Result: :class:`Tencentcloud::Tsf.v20180326.models.BusinessLogConfig`
|
5474
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
5475
|
+
# @type RequestId: String
|
5476
|
+
|
5477
|
+
attr_accessor :Result, :RequestId
|
5478
|
+
|
5479
|
+
def initialize(result=nil, requestid=nil)
|
5480
|
+
@Result = result
|
5481
|
+
@RequestId = requestid
|
5482
|
+
end
|
5483
|
+
|
5484
|
+
def deserialize(params)
|
5485
|
+
unless params['Result'].nil?
|
5486
|
+
@Result = BusinessLogConfig.new
|
5487
|
+
@Result.deserialize(params['Result'])
|
5488
|
+
end
|
5489
|
+
@RequestId = params['RequestId']
|
5490
|
+
end
|
5491
|
+
end
|
5492
|
+
|
5493
|
+
# DescribeBusinessLogConfigs请求参数结构体
|
5494
|
+
class DescribeBusinessLogConfigsRequest < TencentCloud::Common::AbstractModel
|
5495
|
+
# @param Offset: 偏移量,取值范围大于等于0,默认值为0
|
5496
|
+
# @type Offset: Integer
|
5497
|
+
# @param Limit: 单页请求配置数量,取值范围[1, 50],默认值为10
|
5498
|
+
# @type Limit: Integer
|
5499
|
+
# @param SearchWord: 模糊匹配关键词
|
5500
|
+
# @type SearchWord: String
|
5501
|
+
# @param DisableProgramAuthCheck: 无
|
5502
|
+
# @type DisableProgramAuthCheck: Boolean
|
5503
|
+
# @param ConfigIdList: 无
|
5504
|
+
# @type ConfigIdList: Array
|
5505
|
+
|
5506
|
+
attr_accessor :Offset, :Limit, :SearchWord, :DisableProgramAuthCheck, :ConfigIdList
|
5507
|
+
|
5508
|
+
def initialize(offset=nil, limit=nil, searchword=nil, disableprogramauthcheck=nil, configidlist=nil)
|
5509
|
+
@Offset = offset
|
5510
|
+
@Limit = limit
|
5511
|
+
@SearchWord = searchword
|
5512
|
+
@DisableProgramAuthCheck = disableprogramauthcheck
|
5513
|
+
@ConfigIdList = configidlist
|
5514
|
+
end
|
5515
|
+
|
5516
|
+
def deserialize(params)
|
5517
|
+
@Offset = params['Offset']
|
5518
|
+
@Limit = params['Limit']
|
5519
|
+
@SearchWord = params['SearchWord']
|
5520
|
+
@DisableProgramAuthCheck = params['DisableProgramAuthCheck']
|
5521
|
+
@ConfigIdList = params['ConfigIdList']
|
5522
|
+
end
|
5523
|
+
end
|
5524
|
+
|
5525
|
+
# DescribeBusinessLogConfigs返回参数结构体
|
5526
|
+
class DescribeBusinessLogConfigsResponse < TencentCloud::Common::AbstractModel
|
5527
|
+
# @param Result: 业务日志配置列表
|
5528
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
5529
|
+
# @type Result: :class:`Tencentcloud::Tsf.v20180326.models.TsfPageBusinessLogConfig`
|
5530
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
5531
|
+
# @type RequestId: String
|
5532
|
+
|
5533
|
+
attr_accessor :Result, :RequestId
|
5534
|
+
|
5535
|
+
def initialize(result=nil, requestid=nil)
|
5536
|
+
@Result = result
|
5537
|
+
@RequestId = requestid
|
5538
|
+
end
|
5539
|
+
|
5540
|
+
def deserialize(params)
|
5541
|
+
unless params['Result'].nil?
|
5542
|
+
@Result = TsfPageBusinessLogConfig.new
|
5543
|
+
@Result.deserialize(params['Result'])
|
5544
|
+
end
|
5545
|
+
@RequestId = params['RequestId']
|
5546
|
+
end
|
5547
|
+
end
|
5548
|
+
|
5067
5549
|
# DescribeClusterInstances请求参数结构体
|
5068
5550
|
class DescribeClusterInstancesRequest < TencentCloud::Common::AbstractModel
|
5069
5551
|
# @param ClusterId: 集群ID
|
@@ -5628,30 +6110,153 @@ module TencentCloud
|
|
5628
6110
|
end
|
5629
6111
|
end
|
5630
6112
|
|
5631
|
-
# DescribeCreateGatewayApiStatus请求参数结构体
|
5632
|
-
class DescribeCreateGatewayApiStatusRequest < TencentCloud::Common::AbstractModel
|
5633
|
-
# @param GroupId: 请求方法
|
5634
|
-
# @type GroupId: String
|
5635
|
-
# @param MicroserviceId: 微服务ID
|
5636
|
-
# @type MicroserviceId: String
|
6113
|
+
# DescribeCreateGatewayApiStatus请求参数结构体
|
6114
|
+
class DescribeCreateGatewayApiStatusRequest < TencentCloud::Common::AbstractModel
|
6115
|
+
# @param GroupId: 请求方法
|
6116
|
+
# @type GroupId: String
|
6117
|
+
# @param MicroserviceId: 微服务ID
|
6118
|
+
# @type MicroserviceId: String
|
6119
|
+
|
6120
|
+
attr_accessor :GroupId, :MicroserviceId
|
6121
|
+
|
6122
|
+
def initialize(groupid=nil, microserviceid=nil)
|
6123
|
+
@GroupId = groupid
|
6124
|
+
@MicroserviceId = microserviceid
|
6125
|
+
end
|
6126
|
+
|
6127
|
+
def deserialize(params)
|
6128
|
+
@GroupId = params['GroupId']
|
6129
|
+
@MicroserviceId = params['MicroserviceId']
|
6130
|
+
end
|
6131
|
+
end
|
6132
|
+
|
6133
|
+
# DescribeCreateGatewayApiStatus返回参数结构体
|
6134
|
+
class DescribeCreateGatewayApiStatusResponse < TencentCloud::Common::AbstractModel
|
6135
|
+
# @param Result: 是否已完成导入任务
|
6136
|
+
# @type Result: Boolean
|
6137
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
6138
|
+
# @type RequestId: String
|
6139
|
+
|
6140
|
+
attr_accessor :Result, :RequestId
|
6141
|
+
|
6142
|
+
def initialize(result=nil, requestid=nil)
|
6143
|
+
@Result = result
|
6144
|
+
@RequestId = requestid
|
6145
|
+
end
|
6146
|
+
|
6147
|
+
def deserialize(params)
|
6148
|
+
@Result = params['Result']
|
6149
|
+
@RequestId = params['RequestId']
|
6150
|
+
end
|
6151
|
+
end
|
6152
|
+
|
6153
|
+
# DescribeDeliveryConfigByGroupId请求参数结构体
|
6154
|
+
class DescribeDeliveryConfigByGroupIdRequest < TencentCloud::Common::AbstractModel
|
6155
|
+
# @param GroupId: 部署组id
|
6156
|
+
# @type GroupId: String
|
6157
|
+
|
6158
|
+
attr_accessor :GroupId
|
6159
|
+
|
6160
|
+
def initialize(groupid=nil)
|
6161
|
+
@GroupId = groupid
|
6162
|
+
end
|
6163
|
+
|
6164
|
+
def deserialize(params)
|
6165
|
+
@GroupId = params['GroupId']
|
6166
|
+
end
|
6167
|
+
end
|
6168
|
+
|
6169
|
+
# DescribeDeliveryConfigByGroupId返回参数结构体
|
6170
|
+
class DescribeDeliveryConfigByGroupIdResponse < TencentCloud::Common::AbstractModel
|
6171
|
+
# @param Result: 投递kafak配置项
|
6172
|
+
# @type Result: :class:`Tencentcloud::Tsf.v20180326.models.SimpleKafkaDeliveryConfig`
|
6173
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
6174
|
+
# @type RequestId: String
|
6175
|
+
|
6176
|
+
attr_accessor :Result, :RequestId
|
6177
|
+
|
6178
|
+
def initialize(result=nil, requestid=nil)
|
6179
|
+
@Result = result
|
6180
|
+
@RequestId = requestid
|
6181
|
+
end
|
6182
|
+
|
6183
|
+
def deserialize(params)
|
6184
|
+
unless params['Result'].nil?
|
6185
|
+
@Result = SimpleKafkaDeliveryConfig.new
|
6186
|
+
@Result.deserialize(params['Result'])
|
6187
|
+
end
|
6188
|
+
@RequestId = params['RequestId']
|
6189
|
+
end
|
6190
|
+
end
|
6191
|
+
|
6192
|
+
# DescribeDeliveryConfig请求参数结构体
|
6193
|
+
class DescribeDeliveryConfigRequest < TencentCloud::Common::AbstractModel
|
6194
|
+
# @param ConfigId: 投递配置id
|
6195
|
+
# @type ConfigId: String
|
6196
|
+
|
6197
|
+
attr_accessor :ConfigId
|
6198
|
+
|
6199
|
+
def initialize(configid=nil)
|
6200
|
+
@ConfigId = configid
|
6201
|
+
end
|
6202
|
+
|
6203
|
+
def deserialize(params)
|
6204
|
+
@ConfigId = params['ConfigId']
|
6205
|
+
end
|
6206
|
+
end
|
6207
|
+
|
6208
|
+
# DescribeDeliveryConfig返回参数结构体
|
6209
|
+
class DescribeDeliveryConfigResponse < TencentCloud::Common::AbstractModel
|
6210
|
+
# @param Result: 投递kafka配置
|
6211
|
+
# @type Result: :class:`Tencentcloud::Tsf.v20180326.models.KafkaDeliveryConfig`
|
6212
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
6213
|
+
# @type RequestId: String
|
6214
|
+
|
6215
|
+
attr_accessor :Result, :RequestId
|
6216
|
+
|
6217
|
+
def initialize(result=nil, requestid=nil)
|
6218
|
+
@Result = result
|
6219
|
+
@RequestId = requestid
|
6220
|
+
end
|
6221
|
+
|
6222
|
+
def deserialize(params)
|
6223
|
+
unless params['Result'].nil?
|
6224
|
+
@Result = KafkaDeliveryConfig.new
|
6225
|
+
@Result.deserialize(params['Result'])
|
6226
|
+
end
|
6227
|
+
@RequestId = params['RequestId']
|
6228
|
+
end
|
6229
|
+
end
|
6230
|
+
|
6231
|
+
# DescribeDeliveryConfigs请求参数结构体
|
6232
|
+
class DescribeDeliveryConfigsRequest < TencentCloud::Common::AbstractModel
|
6233
|
+
# @param SearchWord: 关键字
|
6234
|
+
# @type SearchWord: String
|
6235
|
+
# @param Offset: 偏移
|
6236
|
+
# @type Offset: Integer
|
6237
|
+
# @param Limit: 搜索条数
|
6238
|
+
# @type Limit: Integer
|
5637
6239
|
|
5638
|
-
attr_accessor :
|
6240
|
+
attr_accessor :SearchWord, :Offset, :Limit
|
5639
6241
|
|
5640
|
-
def initialize(
|
5641
|
-
@
|
5642
|
-
@
|
6242
|
+
def initialize(searchword=nil, offset=nil, limit=nil)
|
6243
|
+
@SearchWord = searchword
|
6244
|
+
@Offset = offset
|
6245
|
+
@Limit = limit
|
5643
6246
|
end
|
5644
6247
|
|
5645
6248
|
def deserialize(params)
|
5646
|
-
@
|
5647
|
-
@
|
6249
|
+
@SearchWord = params['SearchWord']
|
6250
|
+
@Offset = params['Offset']
|
6251
|
+
@Limit = params['Limit']
|
5648
6252
|
end
|
5649
6253
|
end
|
5650
6254
|
|
5651
|
-
#
|
5652
|
-
class
|
5653
|
-
# @param Result:
|
5654
|
-
#
|
6255
|
+
# DescribeDeliveryConfigs返回参数结构体
|
6256
|
+
class DescribeDeliveryConfigsResponse < TencentCloud::Common::AbstractModel
|
6257
|
+
# @param Result: 投递项关联部署组信息
|
6258
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
6259
|
+
# @type Result: :class:`Tencentcloud::Tsf.v20180326.models.DeliveryConfigBindGroups`
|
5655
6260
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
5656
6261
|
# @type RequestId: String
|
5657
6262
|
|
@@ -5663,7 +6268,10 @@ module TencentCloud
|
|
5663
6268
|
end
|
5664
6269
|
|
5665
6270
|
def deserialize(params)
|
5666
|
-
|
6271
|
+
unless params['Result'].nil?
|
6272
|
+
@Result = DeliveryConfigBindGroups.new
|
6273
|
+
@Result.deserialize(params['Result'])
|
6274
|
+
end
|
5667
6275
|
@RequestId = params['RequestId']
|
5668
6276
|
end
|
5669
6277
|
end
|
@@ -6090,6 +6698,46 @@ module TencentCloud
|
|
6090
6698
|
end
|
6091
6699
|
end
|
6092
6700
|
|
6701
|
+
# DescribeGroupBusinessLogConfigs请求参数结构体
|
6702
|
+
class DescribeGroupBusinessLogConfigsRequest < TencentCloud::Common::AbstractModel
|
6703
|
+
# @param GroupId: 分组ID
|
6704
|
+
# @type GroupId: String
|
6705
|
+
|
6706
|
+
attr_accessor :GroupId
|
6707
|
+
|
6708
|
+
def initialize(groupid=nil)
|
6709
|
+
@GroupId = groupid
|
6710
|
+
end
|
6711
|
+
|
6712
|
+
def deserialize(params)
|
6713
|
+
@GroupId = params['GroupId']
|
6714
|
+
end
|
6715
|
+
end
|
6716
|
+
|
6717
|
+
# DescribeGroupBusinessLogConfigs返回参数结构体
|
6718
|
+
class DescribeGroupBusinessLogConfigsResponse < TencentCloud::Common::AbstractModel
|
6719
|
+
# @param Result: 业务日志配置列表
|
6720
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
6721
|
+
# @type Result: :class:`Tencentcloud::Tsf.v20180326.models.TsfPageBusinessLogConfig`
|
6722
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
6723
|
+
# @type RequestId: String
|
6724
|
+
|
6725
|
+
attr_accessor :Result, :RequestId
|
6726
|
+
|
6727
|
+
def initialize(result=nil, requestid=nil)
|
6728
|
+
@Result = result
|
6729
|
+
@RequestId = requestid
|
6730
|
+
end
|
6731
|
+
|
6732
|
+
def deserialize(params)
|
6733
|
+
unless params['Result'].nil?
|
6734
|
+
@Result = TsfPageBusinessLogConfig.new
|
6735
|
+
@Result.deserialize(params['Result'])
|
6736
|
+
end
|
6737
|
+
@RequestId = params['RequestId']
|
6738
|
+
end
|
6739
|
+
end
|
6740
|
+
|
6093
6741
|
# DescribeGroupGateways请求参数结构体
|
6094
6742
|
class DescribeGroupGatewaysRequest < TencentCloud::Common::AbstractModel
|
6095
6743
|
# @param GatewayDeployGroupId: 网关部署组ID
|
@@ -9180,6 +9828,88 @@ module TencentCloud
|
|
9180
9828
|
end
|
9181
9829
|
end
|
9182
9830
|
|
9831
|
+
# DisassociateBusinessLogConfig请求参数结构体
|
9832
|
+
class DisassociateBusinessLogConfigRequest < TencentCloud::Common::AbstractModel
|
9833
|
+
# @param ConfigIdList: 业务日志配置项ID列表
|
9834
|
+
# @type ConfigIdList: Array
|
9835
|
+
# @param GroupId: TSF分组ID
|
9836
|
+
# @type GroupId: String
|
9837
|
+
|
9838
|
+
attr_accessor :ConfigIdList, :GroupId
|
9839
|
+
|
9840
|
+
def initialize(configidlist=nil, groupid=nil)
|
9841
|
+
@ConfigIdList = configidlist
|
9842
|
+
@GroupId = groupid
|
9843
|
+
end
|
9844
|
+
|
9845
|
+
def deserialize(params)
|
9846
|
+
@ConfigIdList = params['ConfigIdList']
|
9847
|
+
@GroupId = params['GroupId']
|
9848
|
+
end
|
9849
|
+
end
|
9850
|
+
|
9851
|
+
# DisassociateBusinessLogConfig返回参数结构体
|
9852
|
+
class DisassociateBusinessLogConfigResponse < TencentCloud::Common::AbstractModel
|
9853
|
+
# @param Result: 操作结果
|
9854
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
9855
|
+
# @type Result: Boolean
|
9856
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
9857
|
+
# @type RequestId: String
|
9858
|
+
|
9859
|
+
attr_accessor :Result, :RequestId
|
9860
|
+
|
9861
|
+
def initialize(result=nil, requestid=nil)
|
9862
|
+
@Result = result
|
9863
|
+
@RequestId = requestid
|
9864
|
+
end
|
9865
|
+
|
9866
|
+
def deserialize(params)
|
9867
|
+
@Result = params['Result']
|
9868
|
+
@RequestId = params['RequestId']
|
9869
|
+
end
|
9870
|
+
end
|
9871
|
+
|
9872
|
+
# DisassociateKafkaConfig请求参数结构体
|
9873
|
+
class DisassociateKafkaConfigRequest < TencentCloud::Common::AbstractModel
|
9874
|
+
# @param ConfigId: 配置项id
|
9875
|
+
# @type ConfigId: String
|
9876
|
+
# @param GroupIds: 部署组id
|
9877
|
+
# @type GroupIds: Array
|
9878
|
+
|
9879
|
+
attr_accessor :ConfigId, :GroupIds
|
9880
|
+
|
9881
|
+
def initialize(configid=nil, groupids=nil)
|
9882
|
+
@ConfigId = configid
|
9883
|
+
@GroupIds = groupids
|
9884
|
+
end
|
9885
|
+
|
9886
|
+
def deserialize(params)
|
9887
|
+
@ConfigId = params['ConfigId']
|
9888
|
+
@GroupIds = params['GroupIds']
|
9889
|
+
end
|
9890
|
+
end
|
9891
|
+
|
9892
|
+
# DisassociateKafkaConfig返回参数结构体
|
9893
|
+
class DisassociateKafkaConfigResponse < TencentCloud::Common::AbstractModel
|
9894
|
+
# @param Result: 解除绑定是否成功
|
9895
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
9896
|
+
# @type Result: Boolean
|
9897
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
9898
|
+
# @type RequestId: String
|
9899
|
+
|
9900
|
+
attr_accessor :Result, :RequestId
|
9901
|
+
|
9902
|
+
def initialize(result=nil, requestid=nil)
|
9903
|
+
@Result = result
|
9904
|
+
@RequestId = requestid
|
9905
|
+
end
|
9906
|
+
|
9907
|
+
def deserialize(params)
|
9908
|
+
@Result = params['Result']
|
9909
|
+
@RequestId = params['RequestId']
|
9910
|
+
end
|
9911
|
+
end
|
9912
|
+
|
9183
9913
|
# DraftApiGroup请求参数结构体
|
9184
9914
|
class DraftApiGroupRequest < TencentCloud::Common::AbstractModel
|
9185
9915
|
# @param GroupId: Api 分组ID
|
@@ -10056,6 +10786,50 @@ module TencentCloud
|
|
10056
10786
|
end
|
10057
10787
|
end
|
10058
10788
|
|
10789
|
+
# 日志投递kafka用,描述部署组信息
|
10790
|
+
class GroupInfo < TencentCloud::Common::AbstractModel
|
10791
|
+
# @param GroupId: 部署组id
|
10792
|
+
# @type GroupId: String
|
10793
|
+
# @param GroupName: 部署组名称
|
10794
|
+
# @type GroupName: String
|
10795
|
+
# @param ClusterType: 集群类型
|
10796
|
+
# @type ClusterType: String
|
10797
|
+
# @param ClusterId: 集群id
|
10798
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
10799
|
+
# @type ClusterId: String
|
10800
|
+
# @param ClusterName: 集群名称
|
10801
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
10802
|
+
# @type ClusterName: String
|
10803
|
+
# @param NamespaceName: 命名空间名称
|
10804
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
10805
|
+
# @type NamespaceName: String
|
10806
|
+
# @param AssociateTime: 绑定时间
|
10807
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
10808
|
+
# @type AssociateTime: String
|
10809
|
+
|
10810
|
+
attr_accessor :GroupId, :GroupName, :ClusterType, :ClusterId, :ClusterName, :NamespaceName, :AssociateTime
|
10811
|
+
|
10812
|
+
def initialize(groupid=nil, groupname=nil, clustertype=nil, clusterid=nil, clustername=nil, namespacename=nil, associatetime=nil)
|
10813
|
+
@GroupId = groupid
|
10814
|
+
@GroupName = groupname
|
10815
|
+
@ClusterType = clustertype
|
10816
|
+
@ClusterId = clusterid
|
10817
|
+
@ClusterName = clustername
|
10818
|
+
@NamespaceName = namespacename
|
10819
|
+
@AssociateTime = associatetime
|
10820
|
+
end
|
10821
|
+
|
10822
|
+
def deserialize(params)
|
10823
|
+
@GroupId = params['GroupId']
|
10824
|
+
@GroupName = params['GroupName']
|
10825
|
+
@ClusterType = params['ClusterType']
|
10826
|
+
@ClusterId = params['ClusterId']
|
10827
|
+
@ClusterName = params['ClusterName']
|
10828
|
+
@NamespaceName = params['NamespaceName']
|
10829
|
+
@AssociateTime = params['AssociateTime']
|
10830
|
+
end
|
10831
|
+
end
|
10832
|
+
|
10059
10833
|
# 部署组实例列表
|
10060
10834
|
class GroupPod < TencentCloud::Common::AbstractModel
|
10061
10835
|
# @param PodName: 实例名称(对应到kubernetes的pod名称)
|
@@ -11336,6 +12110,53 @@ module TencentCloud
|
|
11336
12110
|
end
|
11337
12111
|
end
|
11338
12112
|
|
12113
|
+
# 投递kafka配置项
|
12114
|
+
class KafkaDeliveryConfig < TencentCloud::Common::AbstractModel
|
12115
|
+
# @param ConfigId: 配置项id
|
12116
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
12117
|
+
# @type ConfigId: String
|
12118
|
+
# @param ConfigName: 配置名称
|
12119
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
12120
|
+
# @type ConfigName: String
|
12121
|
+
# @param CollectPath: 采集路径
|
12122
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
12123
|
+
# @type CollectPath: Array
|
12124
|
+
# @param KafkaVIp: kafka vip
|
12125
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
12126
|
+
# @type KafkaVIp: String
|
12127
|
+
# @param KafkaVPort: kafka vport
|
12128
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
12129
|
+
# @type KafkaVPort: String
|
12130
|
+
# @param Topic: kafka topic
|
12131
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
12132
|
+
# @type Topic: String
|
12133
|
+
# @param LineRule: 换行规则
|
12134
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
12135
|
+
# @type LineRule: String
|
12136
|
+
|
12137
|
+
attr_accessor :ConfigId, :ConfigName, :CollectPath, :KafkaVIp, :KafkaVPort, :Topic, :LineRule
|
12138
|
+
|
12139
|
+
def initialize(configid=nil, configname=nil, collectpath=nil, kafkavip=nil, kafkavport=nil, topic=nil, linerule=nil)
|
12140
|
+
@ConfigId = configid
|
12141
|
+
@ConfigName = configname
|
12142
|
+
@CollectPath = collectpath
|
12143
|
+
@KafkaVIp = kafkavip
|
12144
|
+
@KafkaVPort = kafkavport
|
12145
|
+
@Topic = topic
|
12146
|
+
@LineRule = linerule
|
12147
|
+
end
|
12148
|
+
|
12149
|
+
def deserialize(params)
|
12150
|
+
@ConfigId = params['ConfigId']
|
12151
|
+
@ConfigName = params['ConfigName']
|
12152
|
+
@CollectPath = params['CollectPath']
|
12153
|
+
@KafkaVIp = params['KafkaVIp']
|
12154
|
+
@KafkaVPort = params['KafkaVPort']
|
12155
|
+
@Topic = params['Topic']
|
12156
|
+
@LineRule = params['LineRule']
|
12157
|
+
end
|
12158
|
+
end
|
12159
|
+
|
11339
12160
|
# 泳道部署组
|
11340
12161
|
class LaneGroup < TencentCloud::Common::AbstractModel
|
11341
12162
|
# @param GroupId: 部署组ID
|
@@ -13383,6 +14204,50 @@ module TencentCloud
|
|
13383
14204
|
end
|
13384
14205
|
end
|
13385
14206
|
|
14207
|
+
# ReassociateBusinessLogConfig请求参数结构体
|
14208
|
+
class ReassociateBusinessLogConfigRequest < TencentCloud::Common::AbstractModel
|
14209
|
+
# @param ConfigId: 原关联日志配置ID
|
14210
|
+
# @type ConfigId: String
|
14211
|
+
# @param NewConfigId: 新关联日志配置ID
|
14212
|
+
# @type NewConfigId: String
|
14213
|
+
# @param ApplicationId: TSF应用ID
|
14214
|
+
# @type ApplicationId: String
|
14215
|
+
# @param GroupId: TSF部署组ID
|
14216
|
+
# @type GroupId: String
|
14217
|
+
|
14218
|
+
attr_accessor :ConfigId, :NewConfigId, :ApplicationId, :GroupId
|
14219
|
+
|
14220
|
+
def initialize(configid=nil, newconfigid=nil, applicationid=nil, groupid=nil)
|
14221
|
+
@ConfigId = configid
|
14222
|
+
@NewConfigId = newconfigid
|
14223
|
+
@ApplicationId = applicationid
|
14224
|
+
@GroupId = groupid
|
14225
|
+
end
|
14226
|
+
|
14227
|
+
def deserialize(params)
|
14228
|
+
@ConfigId = params['ConfigId']
|
14229
|
+
@NewConfigId = params['NewConfigId']
|
14230
|
+
@ApplicationId = params['ApplicationId']
|
14231
|
+
@GroupId = params['GroupId']
|
14232
|
+
end
|
14233
|
+
end
|
14234
|
+
|
14235
|
+
# ReassociateBusinessLogConfig返回参数结构体
|
14236
|
+
class ReassociateBusinessLogConfigResponse < TencentCloud::Common::AbstractModel
|
14237
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
14238
|
+
# @type RequestId: String
|
14239
|
+
|
14240
|
+
attr_accessor :RequestId
|
14241
|
+
|
14242
|
+
def initialize(requestid=nil)
|
14243
|
+
@RequestId = requestid
|
14244
|
+
end
|
14245
|
+
|
14246
|
+
def deserialize(params)
|
14247
|
+
@RequestId = params['RequestId']
|
14248
|
+
end
|
14249
|
+
end
|
14250
|
+
|
13386
14251
|
# RedoTaskBatch请求参数结构体
|
13387
14252
|
class RedoTaskBatchRequest < TencentCloud::Common::AbstractModel
|
13388
14253
|
# @param TaskId: 任务ID
|
@@ -14825,6 +15690,28 @@ module TencentCloud
|
|
14825
15690
|
end
|
14826
15691
|
end
|
14827
15692
|
|
15693
|
+
# 日志投递kafka配置描述的缩简版
|
15694
|
+
class SimpleKafkaDeliveryConfig < TencentCloud::Common::AbstractModel
|
15695
|
+
# @param ConfigId: 配置项id
|
15696
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
15697
|
+
# @type ConfigId: String
|
15698
|
+
# @param ConfigName: 配置项名称
|
15699
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
15700
|
+
# @type ConfigName: String
|
15701
|
+
|
15702
|
+
attr_accessor :ConfigId, :ConfigName
|
15703
|
+
|
15704
|
+
def initialize(configid=nil, configname=nil)
|
15705
|
+
@ConfigId = configid
|
15706
|
+
@ConfigName = configname
|
15707
|
+
end
|
15708
|
+
|
15709
|
+
def deserialize(params)
|
15710
|
+
@ConfigId = params['ConfigId']
|
15711
|
+
@ConfigName = params['ConfigName']
|
15712
|
+
end
|
15713
|
+
end
|
15714
|
+
|
14828
15715
|
# StartContainerGroup请求参数结构体
|
14829
15716
|
class StartContainerGroupRequest < TencentCloud::Common::AbstractModel
|
14830
15717
|
# @param GroupId: 部署组ID
|
@@ -15637,6 +16524,35 @@ module TencentCloud
|
|
15637
16524
|
end
|
15638
16525
|
end
|
15639
16526
|
|
16527
|
+
# 业务日志配置项列表
|
16528
|
+
class TsfPageBusinessLogConfig < TencentCloud::Common::AbstractModel
|
16529
|
+
# @param TotalCount: 总条数
|
16530
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
16531
|
+
# @type TotalCount: Integer
|
16532
|
+
# @param Content: 业务日志配置项列表
|
16533
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
16534
|
+
# @type Content: Array
|
16535
|
+
|
16536
|
+
attr_accessor :TotalCount, :Content
|
16537
|
+
|
16538
|
+
def initialize(totalcount=nil, content=nil)
|
16539
|
+
@TotalCount = totalcount
|
16540
|
+
@Content = content
|
16541
|
+
end
|
16542
|
+
|
16543
|
+
def deserialize(params)
|
16544
|
+
@TotalCount = params['TotalCount']
|
16545
|
+
unless params['Content'].nil?
|
16546
|
+
@Content = []
|
16547
|
+
params['Content'].each do |i|
|
16548
|
+
businesslogconfig_tmp = BusinessLogConfig.new
|
16549
|
+
businesslogconfig_tmp.deserialize(i)
|
16550
|
+
@Content << businesslogconfig_tmp
|
16551
|
+
end
|
16552
|
+
end
|
16553
|
+
end
|
16554
|
+
end
|
16555
|
+
|
15640
16556
|
# 业务日志列表
|
15641
16557
|
class TsfPageBusinessLogV2 < TencentCloud::Common::AbstractModel
|
15642
16558
|
# @param TotalCount: 总条数
|