tencentcloud-sdk-tsf 3.0.509 → 3.0.511

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20180326/models.rb +96 -10
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3a05e921e6c74789fbec8263ea39832dc5729e71
4
- data.tar.gz: eccea537563dff419ca4bada09f8ac8d734f09bc
3
+ metadata.gz: 67db3b810d0682cebdda741038ff74af4789d884
4
+ data.tar.gz: 49bd1356b7f5b2b4961aaad62ce67811d6f37b9f
5
5
  SHA512:
6
- metadata.gz: 30888538fd73424f678c8d094974acaaa8859f95e27046a2d577ca62ccdee3d7e1c256b2e6e5cb8567147959ea0c9e0cceb24f9f7fccb51ed0986ba886d16be6
7
- data.tar.gz: ff3af8bca9b8e37aa42518f6a63753716e41df0e20e7efcb58e6edb137490caecc61ae61978fd473f90a761f008052bced1506db62ccef27c43508521b9c5159
6
+ metadata.gz: 7390368801775d43e935a3136e10d3fbe11b01f18daf2c17b02b320a080121f9702e4260e623e07a3a516b395c22b879db1afa293f2e7fe6f8c15f7f8f760372
7
+ data.tar.gz: 7d96cda76e969c5f73fb6cdd642fa47f8d2679cc97535cf1955ced98f85d7c80b1546566ad05aa6d80b8441db8ef564d838e2f96137b14564654c403c54d6cb2
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.509
1
+ 3.0.511
@@ -154,10 +154,12 @@ module TencentCloud
154
154
  # @type SgId: String
155
155
  # @param InstanceImportMode: 云主机导入方式,虚拟机集群必填,容器集群不填写此字段,R:重装TSF系统镜像,M:手动安装agent
156
156
  # @type InstanceImportMode: String
157
+ # @param SecurityGroupIds: 安全组id
158
+ # @type SecurityGroupIds: String
157
159
 
158
- attr_accessor :ClusterId, :InstanceIdList, :OsName, :ImageId, :Password, :KeyId, :SgId, :InstanceImportMode
160
+ attr_accessor :ClusterId, :InstanceIdList, :OsName, :ImageId, :Password, :KeyId, :SgId, :InstanceImportMode, :SecurityGroupIds
159
161
 
160
- def initialize(clusterid=nil, instanceidlist=nil, osname=nil, imageid=nil, password=nil, keyid=nil, sgid=nil, instanceimportmode=nil)
162
+ def initialize(clusterid=nil, instanceidlist=nil, osname=nil, imageid=nil, password=nil, keyid=nil, sgid=nil, instanceimportmode=nil, securitygroupids=nil)
161
163
  @ClusterId = clusterid
162
164
  @InstanceIdList = instanceidlist
163
165
  @OsName = osname
@@ -166,6 +168,7 @@ module TencentCloud
166
168
  @KeyId = keyid
167
169
  @SgId = sgid
168
170
  @InstanceImportMode = instanceimportmode
171
+ @SecurityGroupIds = securitygroupids
169
172
  end
170
173
 
171
174
  def deserialize(params)
@@ -177,6 +180,7 @@ module TencentCloud
177
180
  @KeyId = params['KeyId']
178
181
  @SgId = params['SgId']
179
182
  @InstanceImportMode = params['InstanceImportMode']
183
+ @SecurityGroupIds = params['SecurityGroupIds']
180
184
  end
181
185
  end
182
186
 
@@ -863,10 +867,13 @@ module TencentCloud
863
867
  # @param ServiceConfigList: 服务配置信息列表
864
868
  # 注意:此字段可能返回 null,表示取不到有效值。
865
869
  # @type ServiceConfigList: Array
870
+ # @param IgnoreCreateImageRepository: IgnoreCreateImageRepository
871
+ # 注意:此字段可能返回 null,表示取不到有效值。
872
+ # @type IgnoreCreateImageRepository: Boolean
866
873
 
867
- attr_accessor :ApplicationId, :ApplicationName, :ApplicationDesc, :ApplicationType, :MicroserviceType, :ProgLang, :CreateTime, :UpdateTime, :ApplicationResourceType, :ApplicationRuntimeType, :ApigatewayServiceId, :ApplicationRemarkName, :ServiceConfigList
874
+ attr_accessor :ApplicationId, :ApplicationName, :ApplicationDesc, :ApplicationType, :MicroserviceType, :ProgLang, :CreateTime, :UpdateTime, :ApplicationResourceType, :ApplicationRuntimeType, :ApigatewayServiceId, :ApplicationRemarkName, :ServiceConfigList, :IgnoreCreateImageRepository
868
875
 
869
- def initialize(applicationid=nil, applicationname=nil, applicationdesc=nil, applicationtype=nil, microservicetype=nil, proglang=nil, createtime=nil, updatetime=nil, applicationresourcetype=nil, applicationruntimetype=nil, apigatewayserviceid=nil, applicationremarkname=nil, serviceconfiglist=nil)
876
+ def initialize(applicationid=nil, applicationname=nil, applicationdesc=nil, applicationtype=nil, microservicetype=nil, proglang=nil, createtime=nil, updatetime=nil, applicationresourcetype=nil, applicationruntimetype=nil, apigatewayserviceid=nil, applicationremarkname=nil, serviceconfiglist=nil, ignorecreateimagerepository=nil)
870
877
  @ApplicationId = applicationid
871
878
  @ApplicationName = applicationname
872
879
  @ApplicationDesc = applicationdesc
@@ -880,6 +887,7 @@ module TencentCloud
880
887
  @ApigatewayServiceId = apigatewayserviceid
881
888
  @ApplicationRemarkName = applicationremarkname
882
889
  @ServiceConfigList = serviceconfiglist
890
+ @IgnoreCreateImageRepository = ignorecreateimagerepository
883
891
  end
884
892
 
885
893
  def deserialize(params)
@@ -903,6 +911,7 @@ module TencentCloud
903
911
  @ServiceConfigList << serviceconfig_tmp
904
912
  end
905
913
  end
914
+ @IgnoreCreateImageRepository = params['IgnoreCreateImageRepository']
906
915
  end
907
916
  end
908
917
 
@@ -2053,10 +2062,13 @@ module TencentCloud
2053
2062
  # @param KubeInjectEnable: KubeInjectEnable值
2054
2063
  # 注意:此字段可能返回 null,表示取不到有效值。
2055
2064
  # @type KubeInjectEnable: Boolean
2065
+ # @param UpdatedTime: 更新时间
2066
+ # 注意:此字段可能返回 null,表示取不到有效值。
2067
+ # @type UpdatedTime: String
2056
2068
 
2057
- attr_accessor :GroupId, :GroupName, :CreateTime, :Server, :RepoName, :TagName, :ClusterId, :ClusterName, :NamespaceId, :NamespaceName, :CpuRequest, :CpuLimit, :MemRequest, :MemLimit, :Alias, :KubeInjectEnable
2069
+ attr_accessor :GroupId, :GroupName, :CreateTime, :Server, :RepoName, :TagName, :ClusterId, :ClusterName, :NamespaceId, :NamespaceName, :CpuRequest, :CpuLimit, :MemRequest, :MemLimit, :Alias, :KubeInjectEnable, :UpdatedTime
2058
2070
 
2059
- def initialize(groupid=nil, groupname=nil, createtime=nil, server=nil, reponame=nil, tagname=nil, clusterid=nil, clustername=nil, namespaceid=nil, namespacename=nil, cpurequest=nil, cpulimit=nil, memrequest=nil, memlimit=nil, _alias=nil, kubeinjectenable=nil)
2071
+ def initialize(groupid=nil, groupname=nil, createtime=nil, server=nil, reponame=nil, tagname=nil, clusterid=nil, clustername=nil, namespaceid=nil, namespacename=nil, cpurequest=nil, cpulimit=nil, memrequest=nil, memlimit=nil, _alias=nil, kubeinjectenable=nil, updatedtime=nil)
2060
2072
  @GroupId = groupid
2061
2073
  @GroupName = groupname
2062
2074
  @CreateTime = createtime
@@ -2073,6 +2085,7 @@ module TencentCloud
2073
2085
  @MemLimit = memlimit
2074
2086
  @Alias = _alias
2075
2087
  @KubeInjectEnable = kubeinjectenable
2088
+ @UpdatedTime = updatedtime
2076
2089
  end
2077
2090
 
2078
2091
  def deserialize(params)
@@ -2092,6 +2105,7 @@ module TencentCloud
2092
2105
  @MemLimit = params['MemLimit']
2093
2106
  @Alias = params['Alias']
2094
2107
  @KubeInjectEnable = params['KubeInjectEnable']
2108
+ @UpdatedTime = params['UpdatedTime']
2095
2109
  end
2096
2110
  end
2097
2111
 
@@ -5115,15 +5129,59 @@ module TencentCloud
5115
5129
  # @param CreateTime: 创建时间
5116
5130
  # 注意:此字段可能返回 null,表示取不到有效值。
5117
5131
  # @type CreateTime: String
5132
+ # @param KafkaVIp: KafkaVIp
5133
+ # 注意:此字段可能返回 null,表示取不到有效值。
5134
+ # @type KafkaVIp: String
5135
+ # @param KafkaAddress: KafkaAddress
5136
+ # 注意:此字段可能返回 null,表示取不到有效值。
5137
+ # @type KafkaAddress: String
5138
+ # @param KafkaVPort: KafkaVPort
5139
+ # 注意:此字段可能返回 null,表示取不到有效值。
5140
+ # @type KafkaVPort: String
5141
+ # @param Topic: Topic
5142
+ # 注意:此字段可能返回 null,表示取不到有效值。
5143
+ # @type Topic: String
5144
+ # @param LineRule: LineRule
5145
+ # 注意:此字段可能返回 null,表示取不到有效值。
5146
+ # @type LineRule: String
5147
+ # @param CustomRule: CustomRule
5148
+ # 注意:此字段可能返回 null,表示取不到有效值。
5149
+ # @type CustomRule: String
5150
+ # @param EnableGlobalLineRule: EnableGlobalLineRule
5151
+ # 注意:此字段可能返回 null,表示取不到有效值。
5152
+ # @type EnableGlobalLineRule: Boolean
5153
+ # @param EnableAuth: EnableAuth
5154
+ # 注意:此字段可能返回 null,表示取不到有效值。
5155
+ # @type EnableAuth: Boolean
5156
+ # @param Username: Username
5157
+ # 注意:此字段可能返回 null,表示取不到有效值。
5158
+ # @type Username: String
5159
+ # @param Password: Password
5160
+ # 注意:此字段可能返回 null,表示取不到有效值。
5161
+ # @type Password: String
5162
+ # @param KafkaInfos: KafkaInfos
5163
+ # 注意:此字段可能返回 null,表示取不到有效值。
5164
+ # @type KafkaInfos: Array
5118
5165
 
5119
- attr_accessor :ConfigId, :ConfigName, :CollectPath, :Groups, :CreateTime
5166
+ attr_accessor :ConfigId, :ConfigName, :CollectPath, :Groups, :CreateTime, :KafkaVIp, :KafkaAddress, :KafkaVPort, :Topic, :LineRule, :CustomRule, :EnableGlobalLineRule, :EnableAuth, :Username, :Password, :KafkaInfos
5120
5167
 
5121
- def initialize(configid=nil, configname=nil, collectpath=nil, groups=nil, createtime=nil)
5168
+ def initialize(configid=nil, configname=nil, collectpath=nil, groups=nil, createtime=nil, kafkavip=nil, kafkaaddress=nil, kafkavport=nil, topic=nil, linerule=nil, customrule=nil, enablegloballinerule=nil, enableauth=nil, username=nil, password=nil, kafkainfos=nil)
5122
5169
  @ConfigId = configid
5123
5170
  @ConfigName = configname
5124
5171
  @CollectPath = collectpath
5125
5172
  @Groups = groups
5126
5173
  @CreateTime = createtime
5174
+ @KafkaVIp = kafkavip
5175
+ @KafkaAddress = kafkaaddress
5176
+ @KafkaVPort = kafkavport
5177
+ @Topic = topic
5178
+ @LineRule = linerule
5179
+ @CustomRule = customrule
5180
+ @EnableGlobalLineRule = enablegloballinerule
5181
+ @EnableAuth = enableauth
5182
+ @Username = username
5183
+ @Password = password
5184
+ @KafkaInfos = kafkainfos
5127
5185
  end
5128
5186
 
5129
5187
  def deserialize(params)
@@ -5139,6 +5197,24 @@ module TencentCloud
5139
5197
  end
5140
5198
  end
5141
5199
  @CreateTime = params['CreateTime']
5200
+ @KafkaVIp = params['KafkaVIp']
5201
+ @KafkaAddress = params['KafkaAddress']
5202
+ @KafkaVPort = params['KafkaVPort']
5203
+ @Topic = params['Topic']
5204
+ @LineRule = params['LineRule']
5205
+ @CustomRule = params['CustomRule']
5206
+ @EnableGlobalLineRule = params['EnableGlobalLineRule']
5207
+ @EnableAuth = params['EnableAuth']
5208
+ @Username = params['Username']
5209
+ @Password = params['Password']
5210
+ unless params['KafkaInfos'].nil?
5211
+ @KafkaInfos = []
5212
+ params['KafkaInfos'].each do |i|
5213
+ deliverykafkainfo_tmp = DeliveryKafkaInfo.new
5214
+ deliverykafkainfo_tmp.deserialize(i)
5215
+ @KafkaInfos << deliverykafkainfo_tmp
5216
+ end
5217
+ end
5142
5218
  end
5143
5219
  end
5144
5220
 
@@ -18455,16 +18531,24 @@ module TencentCloud
18455
18531
  # @param UnitRuleItemList: 规则项列表
18456
18532
  # 注意:此字段可能返回 null,表示取不到有效值。
18457
18533
  # @type UnitRuleItemList: Array
18534
+ # @param CreatedTime: CreatedTime
18535
+ # 注意:此字段可能返回 null,表示取不到有效值。
18536
+ # @type CreatedTime: String
18537
+ # @param UpdatedTime: UpdatedTime
18538
+ # 注意:此字段可能返回 null,表示取不到有效值。
18539
+ # @type UpdatedTime: String
18458
18540
 
18459
- attr_accessor :Name, :Id, :GatewayInstanceId, :Description, :Status, :UnitRuleItemList
18541
+ attr_accessor :Name, :Id, :GatewayInstanceId, :Description, :Status, :UnitRuleItemList, :CreatedTime, :UpdatedTime
18460
18542
 
18461
- def initialize(name=nil, id=nil, gatewayinstanceid=nil, description=nil, status=nil, unitruleitemlist=nil)
18543
+ def initialize(name=nil, id=nil, gatewayinstanceid=nil, description=nil, status=nil, unitruleitemlist=nil, createdtime=nil, updatedtime=nil)
18462
18544
  @Name = name
18463
18545
  @Id = id
18464
18546
  @GatewayInstanceId = gatewayinstanceid
18465
18547
  @Description = description
18466
18548
  @Status = status
18467
18549
  @UnitRuleItemList = unitruleitemlist
18550
+ @CreatedTime = createdtime
18551
+ @UpdatedTime = updatedtime
18468
18552
  end
18469
18553
 
18470
18554
  def deserialize(params)
@@ -18481,6 +18565,8 @@ module TencentCloud
18481
18565
  @UnitRuleItemList << unitruleitem_tmp
18482
18566
  end
18483
18567
  end
18568
+ @CreatedTime = params['CreatedTime']
18569
+ @UpdatedTime = params['UpdatedTime']
18484
18570
  end
18485
18571
  end
18486
18572
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-tsf
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.509
4
+ version: 3.0.511
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-02-15 00:00:00.000000000 Z
11
+ date: 2023-02-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common