tencentcloud-sdk-tcb 3.0.1211 → 3.0.1213
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/v20180608/client.rb +312 -0
- data/lib/v20180608/models.rb +1153 -28
- metadata +2 -2
data/lib/v20180608/models.rb
CHANGED
|
@@ -184,6 +184,103 @@ module TencentCloud
|
|
|
184
184
|
end
|
|
185
185
|
end
|
|
186
186
|
|
|
187
|
+
# BindCloudBaseAccessDomain请求参数结构体
|
|
188
|
+
class BindCloudBaseAccessDomainRequest < TencentCloud::Common::AbstractModel
|
|
189
|
+
# @param ServiceId: 服务Id,目前是指环境Id
|
|
190
|
+
# @type ServiceId: String
|
|
191
|
+
# @param Domain: 自定义域名
|
|
192
|
+
# @type Domain: String
|
|
193
|
+
# @param CertId: 腾讯云证书Id
|
|
194
|
+
# @type CertId: String
|
|
195
|
+
# @param BindFlag: 默认1,1 绑定默认Cdn,2 绑定TcbIngress(不经过cdn),4 绑定自定义cdn
|
|
196
|
+
# @type BindFlag: Integer
|
|
197
|
+
# @param CustomCname: 自定义cdn cname域名
|
|
198
|
+
# @type CustomCname: String
|
|
199
|
+
|
|
200
|
+
attr_accessor :ServiceId, :Domain, :CertId, :BindFlag, :CustomCname
|
|
201
|
+
|
|
202
|
+
def initialize(serviceid=nil, domain=nil, certid=nil, bindflag=nil, customcname=nil)
|
|
203
|
+
@ServiceId = serviceid
|
|
204
|
+
@Domain = domain
|
|
205
|
+
@CertId = certid
|
|
206
|
+
@BindFlag = bindflag
|
|
207
|
+
@CustomCname = customcname
|
|
208
|
+
end
|
|
209
|
+
|
|
210
|
+
def deserialize(params)
|
|
211
|
+
@ServiceId = params['ServiceId']
|
|
212
|
+
@Domain = params['Domain']
|
|
213
|
+
@CertId = params['CertId']
|
|
214
|
+
@BindFlag = params['BindFlag']
|
|
215
|
+
@CustomCname = params['CustomCname']
|
|
216
|
+
end
|
|
217
|
+
end
|
|
218
|
+
|
|
219
|
+
# BindCloudBaseAccessDomain返回参数结构体
|
|
220
|
+
class BindCloudBaseAccessDomainResponse < TencentCloud::Common::AbstractModel
|
|
221
|
+
# @param ServiceId: 服务Id,目前是指环境Id
|
|
222
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
223
|
+
# @type ServiceId: String
|
|
224
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
225
|
+
# @type RequestId: String
|
|
226
|
+
|
|
227
|
+
attr_accessor :ServiceId, :RequestId
|
|
228
|
+
|
|
229
|
+
def initialize(serviceid=nil, requestid=nil)
|
|
230
|
+
@ServiceId = serviceid
|
|
231
|
+
@RequestId = requestid
|
|
232
|
+
end
|
|
233
|
+
|
|
234
|
+
def deserialize(params)
|
|
235
|
+
@ServiceId = params['ServiceId']
|
|
236
|
+
@RequestId = params['RequestId']
|
|
237
|
+
end
|
|
238
|
+
end
|
|
239
|
+
|
|
240
|
+
# BindCloudBaseGWDomain请求参数结构体
|
|
241
|
+
class BindCloudBaseGWDomainRequest < TencentCloud::Common::AbstractModel
|
|
242
|
+
# @param ServiceId: 服务ID
|
|
243
|
+
# @type ServiceId: String
|
|
244
|
+
# @param Domain: 服务域名
|
|
245
|
+
# @type Domain: String
|
|
246
|
+
# @param CertId: 证书ID
|
|
247
|
+
# @type CertId: String
|
|
248
|
+
# @param EnableRegion: 是否启用多地域
|
|
249
|
+
# @type EnableRegion: Boolean
|
|
250
|
+
|
|
251
|
+
attr_accessor :ServiceId, :Domain, :CertId, :EnableRegion
|
|
252
|
+
|
|
253
|
+
def initialize(serviceid=nil, domain=nil, certid=nil, enableregion=nil)
|
|
254
|
+
@ServiceId = serviceid
|
|
255
|
+
@Domain = domain
|
|
256
|
+
@CertId = certid
|
|
257
|
+
@EnableRegion = enableregion
|
|
258
|
+
end
|
|
259
|
+
|
|
260
|
+
def deserialize(params)
|
|
261
|
+
@ServiceId = params['ServiceId']
|
|
262
|
+
@Domain = params['Domain']
|
|
263
|
+
@CertId = params['CertId']
|
|
264
|
+
@EnableRegion = params['EnableRegion']
|
|
265
|
+
end
|
|
266
|
+
end
|
|
267
|
+
|
|
268
|
+
# BindCloudBaseGWDomain返回参数结构体
|
|
269
|
+
class BindCloudBaseGWDomainResponse < TencentCloud::Common::AbstractModel
|
|
270
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
271
|
+
# @type RequestId: String
|
|
272
|
+
|
|
273
|
+
attr_accessor :RequestId
|
|
274
|
+
|
|
275
|
+
def initialize(requestid=nil)
|
|
276
|
+
@RequestId = requestid
|
|
277
|
+
end
|
|
278
|
+
|
|
279
|
+
def deserialize(params)
|
|
280
|
+
@RequestId = params['RequestId']
|
|
281
|
+
end
|
|
282
|
+
end
|
|
283
|
+
|
|
187
284
|
# BindEnvGateway请求参数结构体
|
|
188
285
|
class BindEnvGatewayRequest < TencentCloud::Common::AbstractModel
|
|
189
286
|
# @param SubEnvId: 子环境id
|
|
@@ -315,6 +412,26 @@ module TencentCloud
|
|
|
315
412
|
end
|
|
316
413
|
end
|
|
317
414
|
|
|
415
|
+
# http访问服务客户端限频
|
|
416
|
+
class CloudBaseClientQPSPolicy < TencentCloud::Common::AbstractModel
|
|
417
|
+
# @param LimitBy: UserID 或 ClientIP 或 None,如果为 None 代表不限制
|
|
418
|
+
# @type LimitBy: String
|
|
419
|
+
# @param LimitValue: 限制值
|
|
420
|
+
# @type LimitValue: Integer
|
|
421
|
+
|
|
422
|
+
attr_accessor :LimitBy, :LimitValue
|
|
423
|
+
|
|
424
|
+
def initialize(limitby=nil, limitvalue=nil)
|
|
425
|
+
@LimitBy = limitby
|
|
426
|
+
@LimitValue = limitvalue
|
|
427
|
+
end
|
|
428
|
+
|
|
429
|
+
def deserialize(params)
|
|
430
|
+
@LimitBy = params['LimitBy']
|
|
431
|
+
@LimitValue = params['LimitValue']
|
|
432
|
+
end
|
|
433
|
+
end
|
|
434
|
+
|
|
318
435
|
# 代码仓库里 Repo的信息描述
|
|
319
436
|
class CloudBaseCodeRepoDetail < TencentCloud::Common::AbstractModel
|
|
320
437
|
# @param Name: repo的名字
|
|
@@ -398,6 +515,239 @@ module TencentCloud
|
|
|
398
515
|
end
|
|
399
516
|
end
|
|
400
517
|
|
|
518
|
+
# tcb 网关API
|
|
519
|
+
class CloudBaseGWAPI < TencentCloud::Common::AbstractModel
|
|
520
|
+
# @param ServiceId: 服务ID
|
|
521
|
+
# @type ServiceId: String
|
|
522
|
+
# @param APIId: API ID
|
|
523
|
+
# @type APIId: String
|
|
524
|
+
# @param Path: API Path
|
|
525
|
+
# @type Path: String
|
|
526
|
+
# @param Type: API 类型
|
|
527
|
+
# @type Type: Integer
|
|
528
|
+
# @param Name: API 名
|
|
529
|
+
# @type Name: String
|
|
530
|
+
# @param CreateTime: API创建时间
|
|
531
|
+
# @type CreateTime: Integer
|
|
532
|
+
# @param Custom: 自定义值通用字段:
|
|
533
|
+
# Type为1时,该值为空。
|
|
534
|
+
# Type为2时,该值为容器的代理IP:PORT数组。
|
|
535
|
+
# @type Custom: String
|
|
536
|
+
# @param EnableAuth: 表示是否开启认证
|
|
537
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
538
|
+
# @type EnableAuth: Boolean
|
|
539
|
+
# @param EnvId: 云开发环境ID
|
|
540
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
541
|
+
# @type EnvId: String
|
|
542
|
+
# @param AccessType: 访问类型(该参数暂不对外暴露)
|
|
543
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
544
|
+
# @type AccessType: Integer
|
|
545
|
+
# @param UnionStatus: 统一发布状态
|
|
546
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
547
|
+
# @type UnionStatus: Integer
|
|
548
|
+
# @param Domain: 域名(*表示所有域名)
|
|
549
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
550
|
+
# @type Domain: String
|
|
551
|
+
# @param ConflictFlag: 是否有路径冲突
|
|
552
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
553
|
+
# @type ConflictFlag: Boolean
|
|
554
|
+
# @param DomainStatus: 域名状态
|
|
555
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
556
|
+
# @type DomainStatus: Integer
|
|
557
|
+
# @param IsShortPath: 是否开启路径透传,默认true表示短路径,即不开启(已弃用)
|
|
558
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
559
|
+
# @type IsShortPath: Boolean
|
|
560
|
+
# @param PathTransmission: 路径透传,默认0关闭,1开启,2关闭
|
|
561
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
562
|
+
# @type PathTransmission: Integer
|
|
563
|
+
# @param EnableCheckAcrossDomain: 跨域校验,默认0开启,1开启,2关闭
|
|
564
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
565
|
+
# @type EnableCheckAcrossDomain: Integer
|
|
566
|
+
# @param StaticFileDirectory: 静态托管文件目录
|
|
567
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
568
|
+
# @type StaticFileDirectory: String
|
|
569
|
+
# @param QPSPolicy: QPS策略
|
|
570
|
+
# @type QPSPolicy: :class:`Tencentcloud::Tcb.v20180608.models.CloudBaseGWAPIQPSPolicy`
|
|
571
|
+
|
|
572
|
+
attr_accessor :ServiceId, :APIId, :Path, :Type, :Name, :CreateTime, :Custom, :EnableAuth, :EnvId, :AccessType, :UnionStatus, :Domain, :ConflictFlag, :DomainStatus, :IsShortPath, :PathTransmission, :EnableCheckAcrossDomain, :StaticFileDirectory, :QPSPolicy
|
|
573
|
+
|
|
574
|
+
def initialize(serviceid=nil, apiid=nil, path=nil, type=nil, name=nil, createtime=nil, custom=nil, enableauth=nil, envid=nil, accesstype=nil, unionstatus=nil, domain=nil, conflictflag=nil, domainstatus=nil, isshortpath=nil, pathtransmission=nil, enablecheckacrossdomain=nil, staticfiledirectory=nil, qpspolicy=nil)
|
|
575
|
+
@ServiceId = serviceid
|
|
576
|
+
@APIId = apiid
|
|
577
|
+
@Path = path
|
|
578
|
+
@Type = type
|
|
579
|
+
@Name = name
|
|
580
|
+
@CreateTime = createtime
|
|
581
|
+
@Custom = custom
|
|
582
|
+
@EnableAuth = enableauth
|
|
583
|
+
@EnvId = envid
|
|
584
|
+
@AccessType = accesstype
|
|
585
|
+
@UnionStatus = unionstatus
|
|
586
|
+
@Domain = domain
|
|
587
|
+
@ConflictFlag = conflictflag
|
|
588
|
+
@DomainStatus = domainstatus
|
|
589
|
+
@IsShortPath = isshortpath
|
|
590
|
+
@PathTransmission = pathtransmission
|
|
591
|
+
@EnableCheckAcrossDomain = enablecheckacrossdomain
|
|
592
|
+
@StaticFileDirectory = staticfiledirectory
|
|
593
|
+
@QPSPolicy = qpspolicy
|
|
594
|
+
end
|
|
595
|
+
|
|
596
|
+
def deserialize(params)
|
|
597
|
+
@ServiceId = params['ServiceId']
|
|
598
|
+
@APIId = params['APIId']
|
|
599
|
+
@Path = params['Path']
|
|
600
|
+
@Type = params['Type']
|
|
601
|
+
@Name = params['Name']
|
|
602
|
+
@CreateTime = params['CreateTime']
|
|
603
|
+
@Custom = params['Custom']
|
|
604
|
+
@EnableAuth = params['EnableAuth']
|
|
605
|
+
@EnvId = params['EnvId']
|
|
606
|
+
@AccessType = params['AccessType']
|
|
607
|
+
@UnionStatus = params['UnionStatus']
|
|
608
|
+
@Domain = params['Domain']
|
|
609
|
+
@ConflictFlag = params['ConflictFlag']
|
|
610
|
+
@DomainStatus = params['DomainStatus']
|
|
611
|
+
@IsShortPath = params['IsShortPath']
|
|
612
|
+
@PathTransmission = params['PathTransmission']
|
|
613
|
+
@EnableCheckAcrossDomain = params['EnableCheckAcrossDomain']
|
|
614
|
+
@StaticFileDirectory = params['StaticFileDirectory']
|
|
615
|
+
unless params['QPSPolicy'].nil?
|
|
616
|
+
@QPSPolicy = CloudBaseGWAPIQPSPolicy.new
|
|
617
|
+
@QPSPolicy.deserialize(params['QPSPolicy'])
|
|
618
|
+
end
|
|
619
|
+
end
|
|
620
|
+
end
|
|
621
|
+
|
|
622
|
+
# http访问服务路由qps策略
|
|
623
|
+
class CloudBaseGWAPIQPSPolicy < TencentCloud::Common::AbstractModel
|
|
624
|
+
# @param QPSTotal: qps限额总量
|
|
625
|
+
# @type QPSTotal: Integer
|
|
626
|
+
# @param QPSPerClient: 客户端限频,如果不限制,LimitBy=None
|
|
627
|
+
# @type QPSPerClient: :class:`Tencentcloud::Tcb.v20180608.models.CloudBaseClientQPSPolicy`
|
|
628
|
+
|
|
629
|
+
attr_accessor :QPSTotal, :QPSPerClient
|
|
630
|
+
|
|
631
|
+
def initialize(qpstotal=nil, qpsperclient=nil)
|
|
632
|
+
@QPSTotal = qpstotal
|
|
633
|
+
@QPSPerClient = qpsperclient
|
|
634
|
+
end
|
|
635
|
+
|
|
636
|
+
def deserialize(params)
|
|
637
|
+
@QPSTotal = params['QPSTotal']
|
|
638
|
+
unless params['QPSPerClient'].nil?
|
|
639
|
+
@QPSPerClient = CloudBaseClientQPSPolicy.new
|
|
640
|
+
@QPSPerClient.deserialize(params['QPSPerClient'])
|
|
641
|
+
end
|
|
642
|
+
end
|
|
643
|
+
end
|
|
644
|
+
|
|
645
|
+
# 网关服务
|
|
646
|
+
class CloudBaseGWService < TencentCloud::Common::AbstractModel
|
|
647
|
+
# @param ServiceId: 服务ID
|
|
648
|
+
# @type ServiceId: String
|
|
649
|
+
# @param Domain: 服务域名
|
|
650
|
+
# @type Domain: String
|
|
651
|
+
# @param OpenTime: 开启时间
|
|
652
|
+
# @type OpenTime: Integer
|
|
653
|
+
# @param Status: 绑定状态,1 绑定中;2绑定失败;3绑定成功
|
|
654
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
655
|
+
# @type Status: Integer
|
|
656
|
+
# @param IsPreempted: 是否被抢占, 被抢占表示域名被其他环境绑定了,需要解绑或者重新绑定。
|
|
657
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
658
|
+
# @type IsPreempted: Boolean
|
|
659
|
+
# @param EnableRegion: 是否开启多地域
|
|
660
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
661
|
+
# @type EnableRegion: Boolean
|
|
662
|
+
# @param Cname: cdn CName地址
|
|
663
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
664
|
+
# @type Cname: String
|
|
665
|
+
# @param UnionStatus: 统一域名状态
|
|
666
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
667
|
+
# @type UnionStatus: Integer
|
|
668
|
+
# @param CnameStatus: CName状态
|
|
669
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
670
|
+
# @type CnameStatus: Integer
|
|
671
|
+
# @param CertId: 证书Id
|
|
672
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
673
|
+
# @type CertId: String
|
|
674
|
+
# @param ForceHttps: 是否强制https
|
|
675
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
676
|
+
# @type ForceHttps: Boolean
|
|
677
|
+
# @param IcpForbidStatus: icp黑名单封禁状态,0-未封禁,1-封禁
|
|
678
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
679
|
+
# @type IcpForbidStatus: Integer
|
|
680
|
+
# @param CustomRoutingRules: 自定义路由规则
|
|
681
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
682
|
+
# @type CustomRoutingRules: String
|
|
683
|
+
# @param BindFlag: 绑定类型,1绑定cdn,2源站,4自定义
|
|
684
|
+
# @type BindFlag: Integer
|
|
685
|
+
# @param OriginCname: TcbIngress源站cname
|
|
686
|
+
# @type OriginCname: String
|
|
687
|
+
# @param CustomCname: 自定义cname
|
|
688
|
+
# @type CustomCname: String
|
|
689
|
+
|
|
690
|
+
attr_accessor :ServiceId, :Domain, :OpenTime, :Status, :IsPreempted, :EnableRegion, :Cname, :UnionStatus, :CnameStatus, :CertId, :ForceHttps, :IcpForbidStatus, :CustomRoutingRules, :BindFlag, :OriginCname, :CustomCname
|
|
691
|
+
|
|
692
|
+
def initialize(serviceid=nil, domain=nil, opentime=nil, status=nil, ispreempted=nil, enableregion=nil, cname=nil, unionstatus=nil, cnamestatus=nil, certid=nil, forcehttps=nil, icpforbidstatus=nil, customroutingrules=nil, bindflag=nil, origincname=nil, customcname=nil)
|
|
693
|
+
@ServiceId = serviceid
|
|
694
|
+
@Domain = domain
|
|
695
|
+
@OpenTime = opentime
|
|
696
|
+
@Status = status
|
|
697
|
+
@IsPreempted = ispreempted
|
|
698
|
+
@EnableRegion = enableregion
|
|
699
|
+
@Cname = cname
|
|
700
|
+
@UnionStatus = unionstatus
|
|
701
|
+
@CnameStatus = cnamestatus
|
|
702
|
+
@CertId = certid
|
|
703
|
+
@ForceHttps = forcehttps
|
|
704
|
+
@IcpForbidStatus = icpforbidstatus
|
|
705
|
+
@CustomRoutingRules = customroutingrules
|
|
706
|
+
@BindFlag = bindflag
|
|
707
|
+
@OriginCname = origincname
|
|
708
|
+
@CustomCname = customcname
|
|
709
|
+
end
|
|
710
|
+
|
|
711
|
+
def deserialize(params)
|
|
712
|
+
@ServiceId = params['ServiceId']
|
|
713
|
+
@Domain = params['Domain']
|
|
714
|
+
@OpenTime = params['OpenTime']
|
|
715
|
+
@Status = params['Status']
|
|
716
|
+
@IsPreempted = params['IsPreempted']
|
|
717
|
+
@EnableRegion = params['EnableRegion']
|
|
718
|
+
@Cname = params['Cname']
|
|
719
|
+
@UnionStatus = params['UnionStatus']
|
|
720
|
+
@CnameStatus = params['CnameStatus']
|
|
721
|
+
@CertId = params['CertId']
|
|
722
|
+
@ForceHttps = params['ForceHttps']
|
|
723
|
+
@IcpForbidStatus = params['IcpForbidStatus']
|
|
724
|
+
@CustomRoutingRules = params['CustomRoutingRules']
|
|
725
|
+
@BindFlag = params['BindFlag']
|
|
726
|
+
@OriginCname = params['OriginCname']
|
|
727
|
+
@CustomCname = params['CustomCname']
|
|
728
|
+
end
|
|
729
|
+
end
|
|
730
|
+
|
|
731
|
+
# http service选项
|
|
732
|
+
class CloudBaseOption < TencentCloud::Common::AbstractModel
|
|
733
|
+
# @param Key: 键
|
|
734
|
+
# @type Key: String
|
|
735
|
+
# @param Value: 值
|
|
736
|
+
# @type Value: String
|
|
737
|
+
|
|
738
|
+
attr_accessor :Key, :Value
|
|
739
|
+
|
|
740
|
+
def initialize(key=nil, value=nil)
|
|
741
|
+
@Key = key
|
|
742
|
+
@Value = value
|
|
743
|
+
end
|
|
744
|
+
|
|
745
|
+
def deserialize(params)
|
|
746
|
+
@Key = params['Key']
|
|
747
|
+
@Value = params['Value']
|
|
748
|
+
end
|
|
749
|
+
end
|
|
750
|
+
|
|
401
751
|
# 云开发项目版本
|
|
402
752
|
class CloudBaseProjectVersion < TencentCloud::Common::AbstractModel
|
|
403
753
|
# @param Name: 项目名
|
|
@@ -1478,6 +1828,126 @@ module TencentCloud
|
|
|
1478
1828
|
end
|
|
1479
1829
|
end
|
|
1480
1830
|
|
|
1831
|
+
# CreateBillDeal请求参数结构体
|
|
1832
|
+
class CreateBillDealRequest < TencentCloud::Common::AbstractModel
|
|
1833
|
+
|
|
1834
|
+
|
|
1835
|
+
def initialize()
|
|
1836
|
+
end
|
|
1837
|
+
|
|
1838
|
+
def deserialize(params)
|
|
1839
|
+
end
|
|
1840
|
+
end
|
|
1841
|
+
|
|
1842
|
+
# CreateBillDeal返回参数结构体
|
|
1843
|
+
class CreateBillDealResponse < TencentCloud::Common::AbstractModel
|
|
1844
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1845
|
+
# @type RequestId: String
|
|
1846
|
+
|
|
1847
|
+
attr_accessor :RequestId
|
|
1848
|
+
|
|
1849
|
+
def initialize(requestid=nil)
|
|
1850
|
+
@RequestId = requestid
|
|
1851
|
+
end
|
|
1852
|
+
|
|
1853
|
+
def deserialize(params)
|
|
1854
|
+
@RequestId = params['RequestId']
|
|
1855
|
+
end
|
|
1856
|
+
end
|
|
1857
|
+
|
|
1858
|
+
# CreateCloudBaseGWAPI请求参数结构体
|
|
1859
|
+
class CreateCloudBaseGWAPIRequest < TencentCloud::Common::AbstractModel
|
|
1860
|
+
# @param ServiceId: Service ID
|
|
1861
|
+
# @type ServiceId: String
|
|
1862
|
+
# @param Path: API Path
|
|
1863
|
+
# @type Path: String
|
|
1864
|
+
# @param Type: API类型(1表示云函数,2表示容器)
|
|
1865
|
+
# @type Type: Integer
|
|
1866
|
+
# @param Name: API Name
|
|
1867
|
+
# @type Name: String
|
|
1868
|
+
# @param APIId: APIId,如果非空,表示修改绑定Path
|
|
1869
|
+
# @type APIId: String
|
|
1870
|
+
# @param Custom: 自定义值通用字段(当Type为容器时必填)
|
|
1871
|
+
# @type Custom: String
|
|
1872
|
+
# @param AuthSwitch: 认证开关 1为开启 2为关闭
|
|
1873
|
+
# @type AuthSwitch: Integer
|
|
1874
|
+
# @param EnableRegion: 是否开启多地域
|
|
1875
|
+
# @type EnableRegion: Boolean
|
|
1876
|
+
# @param EnableUnion: 是否启用统一域名
|
|
1877
|
+
# @type EnableUnion: Boolean
|
|
1878
|
+
# @param Domain: 域名
|
|
1879
|
+
# @type Domain: String
|
|
1880
|
+
# @param AccessTypes: 访问类型:"OA", "PUBLIC", "MINIAPP", "VPC" (不传默认PUBLIC+MINIAPP+VPC)
|
|
1881
|
+
# @type AccessTypes: Array
|
|
1882
|
+
# @param IsShortPath: 是否开启路径透传,默认true表示短路径,即不开启路径透传(已弃用)
|
|
1883
|
+
# @type IsShortPath: Boolean
|
|
1884
|
+
# @param PathTransmission: 路径透传,默认0关闭,1开启,2关闭
|
|
1885
|
+
# @type PathTransmission: Integer
|
|
1886
|
+
# @param EnableCheckAcrossDomain: 跨域校验,默认0开启,1开启,2关闭
|
|
1887
|
+
# @type EnableCheckAcrossDomain: Integer
|
|
1888
|
+
# @param StaticFileDirectory: 静态托管资源目录
|
|
1889
|
+
# @type StaticFileDirectory: String
|
|
1890
|
+
|
|
1891
|
+
attr_accessor :ServiceId, :Path, :Type, :Name, :APIId, :Custom, :AuthSwitch, :EnableRegion, :EnableUnion, :Domain, :AccessTypes, :IsShortPath, :PathTransmission, :EnableCheckAcrossDomain, :StaticFileDirectory
|
|
1892
|
+
|
|
1893
|
+
def initialize(serviceid=nil, path=nil, type=nil, name=nil, apiid=nil, custom=nil, authswitch=nil, enableregion=nil, enableunion=nil, domain=nil, accesstypes=nil, isshortpath=nil, pathtransmission=nil, enablecheckacrossdomain=nil, staticfiledirectory=nil)
|
|
1894
|
+
@ServiceId = serviceid
|
|
1895
|
+
@Path = path
|
|
1896
|
+
@Type = type
|
|
1897
|
+
@Name = name
|
|
1898
|
+
@APIId = apiid
|
|
1899
|
+
@Custom = custom
|
|
1900
|
+
@AuthSwitch = authswitch
|
|
1901
|
+
@EnableRegion = enableregion
|
|
1902
|
+
@EnableUnion = enableunion
|
|
1903
|
+
@Domain = domain
|
|
1904
|
+
@AccessTypes = accesstypes
|
|
1905
|
+
@IsShortPath = isshortpath
|
|
1906
|
+
@PathTransmission = pathtransmission
|
|
1907
|
+
@EnableCheckAcrossDomain = enablecheckacrossdomain
|
|
1908
|
+
@StaticFileDirectory = staticfiledirectory
|
|
1909
|
+
end
|
|
1910
|
+
|
|
1911
|
+
def deserialize(params)
|
|
1912
|
+
@ServiceId = params['ServiceId']
|
|
1913
|
+
@Path = params['Path']
|
|
1914
|
+
@Type = params['Type']
|
|
1915
|
+
@Name = params['Name']
|
|
1916
|
+
@APIId = params['APIId']
|
|
1917
|
+
@Custom = params['Custom']
|
|
1918
|
+
@AuthSwitch = params['AuthSwitch']
|
|
1919
|
+
@EnableRegion = params['EnableRegion']
|
|
1920
|
+
@EnableUnion = params['EnableUnion']
|
|
1921
|
+
@Domain = params['Domain']
|
|
1922
|
+
@AccessTypes = params['AccessTypes']
|
|
1923
|
+
@IsShortPath = params['IsShortPath']
|
|
1924
|
+
@PathTransmission = params['PathTransmission']
|
|
1925
|
+
@EnableCheckAcrossDomain = params['EnableCheckAcrossDomain']
|
|
1926
|
+
@StaticFileDirectory = params['StaticFileDirectory']
|
|
1927
|
+
end
|
|
1928
|
+
end
|
|
1929
|
+
|
|
1930
|
+
# CreateCloudBaseGWAPI返回参数结构体
|
|
1931
|
+
class CreateCloudBaseGWAPIResponse < TencentCloud::Common::AbstractModel
|
|
1932
|
+
# @param APIId: API ID
|
|
1933
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
1934
|
+
# @type APIId: String
|
|
1935
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1936
|
+
# @type RequestId: String
|
|
1937
|
+
|
|
1938
|
+
attr_accessor :APIId, :RequestId
|
|
1939
|
+
|
|
1940
|
+
def initialize(apiid=nil, requestid=nil)
|
|
1941
|
+
@APIId = apiid
|
|
1942
|
+
@RequestId = requestid
|
|
1943
|
+
end
|
|
1944
|
+
|
|
1945
|
+
def deserialize(params)
|
|
1946
|
+
@APIId = params['APIId']
|
|
1947
|
+
@RequestId = params['RequestId']
|
|
1948
|
+
end
|
|
1949
|
+
end
|
|
1950
|
+
|
|
1481
1951
|
# CreateCloudBaseRunResource请求参数结构体
|
|
1482
1952
|
class CreateCloudBaseRunResourceRequest < TencentCloud::Common::AbstractModel
|
|
1483
1953
|
# @param EnvId: 环境ID
|
|
@@ -2270,6 +2740,106 @@ module TencentCloud
|
|
|
2270
2740
|
end
|
|
2271
2741
|
end
|
|
2272
2742
|
|
|
2743
|
+
# DeleteCloudBaseGWAPI请求参数结构体
|
|
2744
|
+
class DeleteCloudBaseGWAPIRequest < TencentCloud::Common::AbstractModel
|
|
2745
|
+
# @param ServiceId: 服务ID
|
|
2746
|
+
# @type ServiceId: String
|
|
2747
|
+
# @param Path: API Path
|
|
2748
|
+
# @type Path: String
|
|
2749
|
+
# @param APIId: API ID
|
|
2750
|
+
# @type APIId: String
|
|
2751
|
+
# @param Type: API类型
|
|
2752
|
+
# @type Type: Integer
|
|
2753
|
+
# @param Name: API Name
|
|
2754
|
+
# @type Name: String
|
|
2755
|
+
# @param Custom: 自定义值字段(Type为2时,传递容器服务名表示需要删除JNSGW)
|
|
2756
|
+
# @type Custom: String
|
|
2757
|
+
# @param Domain: 域名
|
|
2758
|
+
# @type Domain: String
|
|
2759
|
+
|
|
2760
|
+
attr_accessor :ServiceId, :Path, :APIId, :Type, :Name, :Custom, :Domain
|
|
2761
|
+
|
|
2762
|
+
def initialize(serviceid=nil, path=nil, apiid=nil, type=nil, name=nil, custom=nil, domain=nil)
|
|
2763
|
+
@ServiceId = serviceid
|
|
2764
|
+
@Path = path
|
|
2765
|
+
@APIId = apiid
|
|
2766
|
+
@Type = type
|
|
2767
|
+
@Name = name
|
|
2768
|
+
@Custom = custom
|
|
2769
|
+
@Domain = domain
|
|
2770
|
+
end
|
|
2771
|
+
|
|
2772
|
+
def deserialize(params)
|
|
2773
|
+
@ServiceId = params['ServiceId']
|
|
2774
|
+
@Path = params['Path']
|
|
2775
|
+
@APIId = params['APIId']
|
|
2776
|
+
@Type = params['Type']
|
|
2777
|
+
@Name = params['Name']
|
|
2778
|
+
@Custom = params['Custom']
|
|
2779
|
+
@Domain = params['Domain']
|
|
2780
|
+
end
|
|
2781
|
+
end
|
|
2782
|
+
|
|
2783
|
+
# DeleteCloudBaseGWAPI返回参数结构体
|
|
2784
|
+
class DeleteCloudBaseGWAPIResponse < TencentCloud::Common::AbstractModel
|
|
2785
|
+
# @param Count: 最终删除API个数
|
|
2786
|
+
# @type Count: Integer
|
|
2787
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2788
|
+
# @type RequestId: String
|
|
2789
|
+
|
|
2790
|
+
attr_accessor :Count, :RequestId
|
|
2791
|
+
|
|
2792
|
+
def initialize(count=nil, requestid=nil)
|
|
2793
|
+
@Count = count
|
|
2794
|
+
@RequestId = requestid
|
|
2795
|
+
end
|
|
2796
|
+
|
|
2797
|
+
def deserialize(params)
|
|
2798
|
+
@Count = params['Count']
|
|
2799
|
+
@RequestId = params['RequestId']
|
|
2800
|
+
end
|
|
2801
|
+
end
|
|
2802
|
+
|
|
2803
|
+
# DeleteCloudBaseGWDomain请求参数结构体
|
|
2804
|
+
class DeleteCloudBaseGWDomainRequest < TencentCloud::Common::AbstractModel
|
|
2805
|
+
# @param ServiceId: 服务ID
|
|
2806
|
+
# @type ServiceId: String
|
|
2807
|
+
# @param Domain: 服务域名
|
|
2808
|
+
# @type Domain: String
|
|
2809
|
+
|
|
2810
|
+
attr_accessor :ServiceId, :Domain
|
|
2811
|
+
|
|
2812
|
+
def initialize(serviceid=nil, domain=nil)
|
|
2813
|
+
@ServiceId = serviceid
|
|
2814
|
+
@Domain = domain
|
|
2815
|
+
end
|
|
2816
|
+
|
|
2817
|
+
def deserialize(params)
|
|
2818
|
+
@ServiceId = params['ServiceId']
|
|
2819
|
+
@Domain = params['Domain']
|
|
2820
|
+
end
|
|
2821
|
+
end
|
|
2822
|
+
|
|
2823
|
+
# DeleteCloudBaseGWDomain返回参数结构体
|
|
2824
|
+
class DeleteCloudBaseGWDomainResponse < TencentCloud::Common::AbstractModel
|
|
2825
|
+
# @param Count: 删除个数
|
|
2826
|
+
# @type Count: Integer
|
|
2827
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2828
|
+
# @type RequestId: String
|
|
2829
|
+
|
|
2830
|
+
attr_accessor :Count, :RequestId
|
|
2831
|
+
|
|
2832
|
+
def initialize(count=nil, requestid=nil)
|
|
2833
|
+
@Count = count
|
|
2834
|
+
@RequestId = requestid
|
|
2835
|
+
end
|
|
2836
|
+
|
|
2837
|
+
def deserialize(params)
|
|
2838
|
+
@Count = params['Count']
|
|
2839
|
+
@RequestId = params['RequestId']
|
|
2840
|
+
end
|
|
2841
|
+
end
|
|
2842
|
+
|
|
2273
2843
|
# DeleteCloudBaseProjectLatestVersion请求参数结构体
|
|
2274
2844
|
class DeleteCloudBaseProjectLatestVersionRequest < TencentCloud::Common::AbstractModel
|
|
2275
2845
|
# @param EnvId: 环境id
|
|
@@ -3033,41 +3603,228 @@ module TencentCloud
|
|
|
3033
3603
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
3034
3604
|
# @type RequestId: String
|
|
3035
3605
|
|
|
3036
|
-
attr_accessor :UploadUrl, :UploadHeaders, :PackageName, :PackageVersion, :DownloadUrl, :DownloadHeaders, :OutDate, :RequestId
|
|
3606
|
+
attr_accessor :UploadUrl, :UploadHeaders, :PackageName, :PackageVersion, :DownloadUrl, :DownloadHeaders, :OutDate, :RequestId
|
|
3607
|
+
|
|
3608
|
+
def initialize(uploadurl=nil, uploadheaders=nil, packagename=nil, packageversion=nil, downloadurl=nil, downloadheaders=nil, outdate=nil, requestid=nil)
|
|
3609
|
+
@UploadUrl = uploadurl
|
|
3610
|
+
@UploadHeaders = uploadheaders
|
|
3611
|
+
@PackageName = packagename
|
|
3612
|
+
@PackageVersion = packageversion
|
|
3613
|
+
@DownloadUrl = downloadurl
|
|
3614
|
+
@DownloadHeaders = downloadheaders
|
|
3615
|
+
@OutDate = outdate
|
|
3616
|
+
@RequestId = requestid
|
|
3617
|
+
end
|
|
3618
|
+
|
|
3619
|
+
def deserialize(params)
|
|
3620
|
+
@UploadUrl = params['UploadUrl']
|
|
3621
|
+
unless params['UploadHeaders'].nil?
|
|
3622
|
+
@UploadHeaders = []
|
|
3623
|
+
params['UploadHeaders'].each do |i|
|
|
3624
|
+
kvpair_tmp = KVPair.new
|
|
3625
|
+
kvpair_tmp.deserialize(i)
|
|
3626
|
+
@UploadHeaders << kvpair_tmp
|
|
3627
|
+
end
|
|
3628
|
+
end
|
|
3629
|
+
@PackageName = params['PackageName']
|
|
3630
|
+
@PackageVersion = params['PackageVersion']
|
|
3631
|
+
@DownloadUrl = params['DownloadUrl']
|
|
3632
|
+
unless params['DownloadHeaders'].nil?
|
|
3633
|
+
@DownloadHeaders = []
|
|
3634
|
+
params['DownloadHeaders'].each do |i|
|
|
3635
|
+
kvpair_tmp = KVPair.new
|
|
3636
|
+
kvpair_tmp.deserialize(i)
|
|
3637
|
+
@DownloadHeaders << kvpair_tmp
|
|
3638
|
+
end
|
|
3639
|
+
end
|
|
3640
|
+
@OutDate = params['OutDate']
|
|
3641
|
+
@RequestId = params['RequestId']
|
|
3642
|
+
end
|
|
3643
|
+
end
|
|
3644
|
+
|
|
3645
|
+
# DescribeCloudBaseGWAPI请求参数结构体
|
|
3646
|
+
class DescribeCloudBaseGWAPIRequest < TencentCloud::Common::AbstractModel
|
|
3647
|
+
# @param ServiceId: 服务ID
|
|
3648
|
+
# @type ServiceId: String
|
|
3649
|
+
# @param Domain: API域名
|
|
3650
|
+
# @type Domain: String
|
|
3651
|
+
# @param Path: API Path
|
|
3652
|
+
# @type Path: String
|
|
3653
|
+
# @param APIId: API ID
|
|
3654
|
+
# @type APIId: String
|
|
3655
|
+
# @param Type: API类型,1为云函数,2为容器
|
|
3656
|
+
# @type Type: Integer
|
|
3657
|
+
# @param Name: API名,Type为1时为云函数名,Type为2时为容器服务名
|
|
3658
|
+
# @type Name: String
|
|
3659
|
+
# @param Offset: 查询的分页参数,用于设置查询的偏移位置,0表示从头开始
|
|
3660
|
+
# @type Offset: Integer
|
|
3661
|
+
# @param Limit: 查询的分页参数,用于表示每次查询的最大返回数据量
|
|
3662
|
+
# @type Limit: Integer
|
|
3663
|
+
# @param EnableRegion: 是否启用多地域
|
|
3664
|
+
# @type EnableRegion: Boolean
|
|
3665
|
+
# @param EnableUnion: 是否使用统一域名
|
|
3666
|
+
# @type EnableUnion: Boolean
|
|
3667
|
+
|
|
3668
|
+
attr_accessor :ServiceId, :Domain, :Path, :APIId, :Type, :Name, :Offset, :Limit, :EnableRegion, :EnableUnion
|
|
3669
|
+
|
|
3670
|
+
def initialize(serviceid=nil, domain=nil, path=nil, apiid=nil, type=nil, name=nil, offset=nil, limit=nil, enableregion=nil, enableunion=nil)
|
|
3671
|
+
@ServiceId = serviceid
|
|
3672
|
+
@Domain = domain
|
|
3673
|
+
@Path = path
|
|
3674
|
+
@APIId = apiid
|
|
3675
|
+
@Type = type
|
|
3676
|
+
@Name = name
|
|
3677
|
+
@Offset = offset
|
|
3678
|
+
@Limit = limit
|
|
3679
|
+
@EnableRegion = enableregion
|
|
3680
|
+
@EnableUnion = enableunion
|
|
3681
|
+
end
|
|
3682
|
+
|
|
3683
|
+
def deserialize(params)
|
|
3684
|
+
@ServiceId = params['ServiceId']
|
|
3685
|
+
@Domain = params['Domain']
|
|
3686
|
+
@Path = params['Path']
|
|
3687
|
+
@APIId = params['APIId']
|
|
3688
|
+
@Type = params['Type']
|
|
3689
|
+
@Name = params['Name']
|
|
3690
|
+
@Offset = params['Offset']
|
|
3691
|
+
@Limit = params['Limit']
|
|
3692
|
+
@EnableRegion = params['EnableRegion']
|
|
3693
|
+
@EnableUnion = params['EnableUnion']
|
|
3694
|
+
end
|
|
3695
|
+
end
|
|
3696
|
+
|
|
3697
|
+
# DescribeCloudBaseGWAPI返回参数结构体
|
|
3698
|
+
class DescribeCloudBaseGWAPIResponse < TencentCloud::Common::AbstractModel
|
|
3699
|
+
# @param APISet: API列表
|
|
3700
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
3701
|
+
# @type APISet: Array
|
|
3702
|
+
# @param EnableService: 是否开启http调用
|
|
3703
|
+
# @type EnableService: Boolean
|
|
3704
|
+
# @param Total: 查询结果的数据总量
|
|
3705
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
3706
|
+
# @type Total: Integer
|
|
3707
|
+
# @param Offset: 查询的分页参数
|
|
3708
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
3709
|
+
# @type Offset: Integer
|
|
3710
|
+
# @param Limit: 查询的分页参数
|
|
3711
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
3712
|
+
# @type Limit: Integer
|
|
3713
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
3714
|
+
# @type RequestId: String
|
|
3715
|
+
|
|
3716
|
+
attr_accessor :APISet, :EnableService, :Total, :Offset, :Limit, :RequestId
|
|
3717
|
+
|
|
3718
|
+
def initialize(apiset=nil, enableservice=nil, total=nil, offset=nil, limit=nil, requestid=nil)
|
|
3719
|
+
@APISet = apiset
|
|
3720
|
+
@EnableService = enableservice
|
|
3721
|
+
@Total = total
|
|
3722
|
+
@Offset = offset
|
|
3723
|
+
@Limit = limit
|
|
3724
|
+
@RequestId = requestid
|
|
3725
|
+
end
|
|
3726
|
+
|
|
3727
|
+
def deserialize(params)
|
|
3728
|
+
unless params['APISet'].nil?
|
|
3729
|
+
@APISet = []
|
|
3730
|
+
params['APISet'].each do |i|
|
|
3731
|
+
cloudbasegwapi_tmp = CloudBaseGWAPI.new
|
|
3732
|
+
cloudbasegwapi_tmp.deserialize(i)
|
|
3733
|
+
@APISet << cloudbasegwapi_tmp
|
|
3734
|
+
end
|
|
3735
|
+
end
|
|
3736
|
+
@EnableService = params['EnableService']
|
|
3737
|
+
@Total = params['Total']
|
|
3738
|
+
@Offset = params['Offset']
|
|
3739
|
+
@Limit = params['Limit']
|
|
3740
|
+
@RequestId = params['RequestId']
|
|
3741
|
+
end
|
|
3742
|
+
end
|
|
3743
|
+
|
|
3744
|
+
# DescribeCloudBaseGWService请求参数结构体
|
|
3745
|
+
class DescribeCloudBaseGWServiceRequest < TencentCloud::Common::AbstractModel
|
|
3746
|
+
# @param ServiceId: 服务ID
|
|
3747
|
+
# @type ServiceId: String
|
|
3748
|
+
# @param Domain: 服务域名
|
|
3749
|
+
# @type Domain: String
|
|
3750
|
+
# @param EnableRegion: 是否启用多地域
|
|
3751
|
+
# @type EnableRegion: Boolean
|
|
3752
|
+
# @param EnableUnion: 是否启用统一域名
|
|
3753
|
+
# @type EnableUnion: Boolean
|
|
3754
|
+
|
|
3755
|
+
attr_accessor :ServiceId, :Domain, :EnableRegion, :EnableUnion
|
|
3756
|
+
|
|
3757
|
+
def initialize(serviceid=nil, domain=nil, enableregion=nil, enableunion=nil)
|
|
3758
|
+
@ServiceId = serviceid
|
|
3759
|
+
@Domain = domain
|
|
3760
|
+
@EnableRegion = enableregion
|
|
3761
|
+
@EnableUnion = enableunion
|
|
3762
|
+
end
|
|
3763
|
+
|
|
3764
|
+
def deserialize(params)
|
|
3765
|
+
@ServiceId = params['ServiceId']
|
|
3766
|
+
@Domain = params['Domain']
|
|
3767
|
+
@EnableRegion = params['EnableRegion']
|
|
3768
|
+
@EnableUnion = params['EnableUnion']
|
|
3769
|
+
end
|
|
3770
|
+
end
|
|
3771
|
+
|
|
3772
|
+
# DescribeCloudBaseGWService返回参数结构体
|
|
3773
|
+
class DescribeCloudBaseGWServiceResponse < TencentCloud::Common::AbstractModel
|
|
3774
|
+
# @param ServiceSet: 服务列表
|
|
3775
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
3776
|
+
# @type ServiceSet: Array
|
|
3777
|
+
# @param EnableService: 是否开启服务
|
|
3778
|
+
# @type EnableService: Boolean
|
|
3779
|
+
# @param DefaultDomain: 默认域名信息
|
|
3780
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
3781
|
+
# @type DefaultDomain: String
|
|
3782
|
+
# @param EnableUnion: 是否开启CDN迁移
|
|
3783
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
3784
|
+
# @type EnableUnion: Boolean
|
|
3785
|
+
# @param EnableCheckAcrossDomain: 是否开启跨域校验,默认开启 true
|
|
3786
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
3787
|
+
# @type EnableCheckAcrossDomain: Boolean
|
|
3788
|
+
# @param CustomRoutingRules: 自定义路由规则
|
|
3789
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
3790
|
+
# @type CustomRoutingRules: String
|
|
3791
|
+
# @param AccessFlag: 默认域名绑定类型,1绑定TCB-CDN,2绑定tcbingres(不经过cdn)
|
|
3792
|
+
# @type AccessFlag: Integer
|
|
3793
|
+
# @param OriginDomain: 云接入源站域名
|
|
3794
|
+
# @type OriginDomain: String
|
|
3795
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
3796
|
+
# @type RequestId: String
|
|
3797
|
+
|
|
3798
|
+
attr_accessor :ServiceSet, :EnableService, :DefaultDomain, :EnableUnion, :EnableCheckAcrossDomain, :CustomRoutingRules, :AccessFlag, :OriginDomain, :RequestId
|
|
3037
3799
|
|
|
3038
|
-
def initialize(
|
|
3039
|
-
@
|
|
3040
|
-
@
|
|
3041
|
-
@
|
|
3042
|
-
@
|
|
3043
|
-
@
|
|
3044
|
-
@
|
|
3045
|
-
@
|
|
3800
|
+
def initialize(serviceset=nil, enableservice=nil, defaultdomain=nil, enableunion=nil, enablecheckacrossdomain=nil, customroutingrules=nil, accessflag=nil, origindomain=nil, requestid=nil)
|
|
3801
|
+
@ServiceSet = serviceset
|
|
3802
|
+
@EnableService = enableservice
|
|
3803
|
+
@DefaultDomain = defaultdomain
|
|
3804
|
+
@EnableUnion = enableunion
|
|
3805
|
+
@EnableCheckAcrossDomain = enablecheckacrossdomain
|
|
3806
|
+
@CustomRoutingRules = customroutingrules
|
|
3807
|
+
@AccessFlag = accessflag
|
|
3808
|
+
@OriginDomain = origindomain
|
|
3046
3809
|
@RequestId = requestid
|
|
3047
3810
|
end
|
|
3048
3811
|
|
|
3049
3812
|
def deserialize(params)
|
|
3050
|
-
|
|
3051
|
-
|
|
3052
|
-
|
|
3053
|
-
|
|
3054
|
-
|
|
3055
|
-
|
|
3056
|
-
@UploadHeaders << kvpair_tmp
|
|
3057
|
-
end
|
|
3058
|
-
end
|
|
3059
|
-
@PackageName = params['PackageName']
|
|
3060
|
-
@PackageVersion = params['PackageVersion']
|
|
3061
|
-
@DownloadUrl = params['DownloadUrl']
|
|
3062
|
-
unless params['DownloadHeaders'].nil?
|
|
3063
|
-
@DownloadHeaders = []
|
|
3064
|
-
params['DownloadHeaders'].each do |i|
|
|
3065
|
-
kvpair_tmp = KVPair.new
|
|
3066
|
-
kvpair_tmp.deserialize(i)
|
|
3067
|
-
@DownloadHeaders << kvpair_tmp
|
|
3813
|
+
unless params['ServiceSet'].nil?
|
|
3814
|
+
@ServiceSet = []
|
|
3815
|
+
params['ServiceSet'].each do |i|
|
|
3816
|
+
cloudbasegwservice_tmp = CloudBaseGWService.new
|
|
3817
|
+
cloudbasegwservice_tmp.deserialize(i)
|
|
3818
|
+
@ServiceSet << cloudbasegwservice_tmp
|
|
3068
3819
|
end
|
|
3069
3820
|
end
|
|
3070
|
-
@
|
|
3821
|
+
@EnableService = params['EnableService']
|
|
3822
|
+
@DefaultDomain = params['DefaultDomain']
|
|
3823
|
+
@EnableUnion = params['EnableUnion']
|
|
3824
|
+
@EnableCheckAcrossDomain = params['EnableCheckAcrossDomain']
|
|
3825
|
+
@CustomRoutingRules = params['CustomRoutingRules']
|
|
3826
|
+
@AccessFlag = params['AccessFlag']
|
|
3827
|
+
@OriginDomain = params['OriginDomain']
|
|
3071
3828
|
@RequestId = params['RequestId']
|
|
3072
3829
|
end
|
|
3073
3830
|
end
|
|
@@ -4082,6 +4839,46 @@ module TencentCloud
|
|
|
4082
4839
|
end
|
|
4083
4840
|
end
|
|
4084
4841
|
|
|
4842
|
+
# DescribeEnvAccountCircle请求参数结构体
|
|
4843
|
+
class DescribeEnvAccountCircleRequest < TencentCloud::Common::AbstractModel
|
|
4844
|
+
# @param EnvId: 环境ID
|
|
4845
|
+
# @type EnvId: String
|
|
4846
|
+
|
|
4847
|
+
attr_accessor :EnvId
|
|
4848
|
+
|
|
4849
|
+
def initialize(envid=nil)
|
|
4850
|
+
@EnvId = envid
|
|
4851
|
+
end
|
|
4852
|
+
|
|
4853
|
+
def deserialize(params)
|
|
4854
|
+
@EnvId = params['EnvId']
|
|
4855
|
+
end
|
|
4856
|
+
end
|
|
4857
|
+
|
|
4858
|
+
# DescribeEnvAccountCircle返回参数结构体
|
|
4859
|
+
class DescribeEnvAccountCircleResponse < TencentCloud::Common::AbstractModel
|
|
4860
|
+
# @param StartTime: 环境计费周期开始时间
|
|
4861
|
+
# @type StartTime: String
|
|
4862
|
+
# @param EndTime: 环境计费周期结束时间
|
|
4863
|
+
# @type EndTime: String
|
|
4864
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
4865
|
+
# @type RequestId: String
|
|
4866
|
+
|
|
4867
|
+
attr_accessor :StartTime, :EndTime, :RequestId
|
|
4868
|
+
|
|
4869
|
+
def initialize(starttime=nil, endtime=nil, requestid=nil)
|
|
4870
|
+
@StartTime = starttime
|
|
4871
|
+
@EndTime = endtime
|
|
4872
|
+
@RequestId = requestid
|
|
4873
|
+
end
|
|
4874
|
+
|
|
4875
|
+
def deserialize(params)
|
|
4876
|
+
@StartTime = params['StartTime']
|
|
4877
|
+
@EndTime = params['EndTime']
|
|
4878
|
+
@RequestId = params['RequestId']
|
|
4879
|
+
end
|
|
4880
|
+
end
|
|
4881
|
+
|
|
4085
4882
|
# DescribeEnvDealRegion请求参数结构体
|
|
4086
4883
|
class DescribeEnvDealRegionRequest < TencentCloud::Common::AbstractModel
|
|
4087
4884
|
# @param EnvId: 环境ID
|
|
@@ -4945,6 +5742,60 @@ module TencentCloud
|
|
|
4945
5742
|
end
|
|
4946
5743
|
end
|
|
4947
5744
|
|
|
5745
|
+
# DescribeSafeRule请求参数结构体
|
|
5746
|
+
class DescribeSafeRuleRequest < TencentCloud::Common::AbstractModel
|
|
5747
|
+
# @param EnvId: 环境ID
|
|
5748
|
+
# @type EnvId: String
|
|
5749
|
+
# @param CollectionName: 集合名称
|
|
5750
|
+
# @type CollectionName: String
|
|
5751
|
+
# @param WxAppId: 微信AppId,微信必传
|
|
5752
|
+
# @type WxAppId: String
|
|
5753
|
+
|
|
5754
|
+
attr_accessor :EnvId, :CollectionName, :WxAppId
|
|
5755
|
+
|
|
5756
|
+
def initialize(envid=nil, collectionname=nil, wxappid=nil)
|
|
5757
|
+
@EnvId = envid
|
|
5758
|
+
@CollectionName = collectionname
|
|
5759
|
+
@WxAppId = wxappid
|
|
5760
|
+
end
|
|
5761
|
+
|
|
5762
|
+
def deserialize(params)
|
|
5763
|
+
@EnvId = params['EnvId']
|
|
5764
|
+
@CollectionName = params['CollectionName']
|
|
5765
|
+
@WxAppId = params['WxAppId']
|
|
5766
|
+
end
|
|
5767
|
+
end
|
|
5768
|
+
|
|
5769
|
+
# DescribeSafeRule返回参数结构体
|
|
5770
|
+
class DescribeSafeRuleResponse < TencentCloud::Common::AbstractModel
|
|
5771
|
+
# @param Rule: 规则内容
|
|
5772
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
5773
|
+
# @type Rule: String
|
|
5774
|
+
# @param AclTag: 权限标签。包含以下取值:
|
|
5775
|
+
# <li> READONLY:所有用户可读,仅创建者和管理员可写</li>
|
|
5776
|
+
# <li> PRIVATE:仅创建者及管理员可读写</li>
|
|
5777
|
+
# <li> ADMINWRITE:所有用户可读,仅管理员可写</li>
|
|
5778
|
+
# <li> ADMINONLY:仅管理员可读写</li>
|
|
5779
|
+
# <li> CUSTOM:自定义安全规则</li>
|
|
5780
|
+
# @type AclTag: String
|
|
5781
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
5782
|
+
# @type RequestId: String
|
|
5783
|
+
|
|
5784
|
+
attr_accessor :Rule, :AclTag, :RequestId
|
|
5785
|
+
|
|
5786
|
+
def initialize(rule=nil, acltag=nil, requestid=nil)
|
|
5787
|
+
@Rule = rule
|
|
5788
|
+
@AclTag = acltag
|
|
5789
|
+
@RequestId = requestid
|
|
5790
|
+
end
|
|
5791
|
+
|
|
5792
|
+
def deserialize(params)
|
|
5793
|
+
@Rule = params['Rule']
|
|
5794
|
+
@AclTag = params['AclTag']
|
|
5795
|
+
@RequestId = params['RequestId']
|
|
5796
|
+
end
|
|
5797
|
+
end
|
|
5798
|
+
|
|
4948
5799
|
# DescribeSmsQuotas请求参数结构体
|
|
4949
5800
|
class DescribeSmsQuotasRequest < TencentCloud::Common::AbstractModel
|
|
4950
5801
|
# @param EnvId: 环境ID
|
|
@@ -5039,6 +5890,50 @@ module TencentCloud
|
|
|
5039
5890
|
end
|
|
5040
5891
|
end
|
|
5041
5892
|
|
|
5893
|
+
# DescribeStaticStore请求参数结构体
|
|
5894
|
+
class DescribeStaticStoreRequest < TencentCloud::Common::AbstractModel
|
|
5895
|
+
# @param EnvId: 环境ID
|
|
5896
|
+
# @type EnvId: String
|
|
5897
|
+
|
|
5898
|
+
attr_accessor :EnvId
|
|
5899
|
+
|
|
5900
|
+
def initialize(envid=nil)
|
|
5901
|
+
@EnvId = envid
|
|
5902
|
+
end
|
|
5903
|
+
|
|
5904
|
+
def deserialize(params)
|
|
5905
|
+
@EnvId = params['EnvId']
|
|
5906
|
+
end
|
|
5907
|
+
end
|
|
5908
|
+
|
|
5909
|
+
# DescribeStaticStore返回参数结构体
|
|
5910
|
+
class DescribeStaticStoreResponse < TencentCloud::Common::AbstractModel
|
|
5911
|
+
# @param Data: 静态托管资源信息
|
|
5912
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
5913
|
+
# @type Data: Array
|
|
5914
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
5915
|
+
# @type RequestId: String
|
|
5916
|
+
|
|
5917
|
+
attr_accessor :Data, :RequestId
|
|
5918
|
+
|
|
5919
|
+
def initialize(data=nil, requestid=nil)
|
|
5920
|
+
@Data = data
|
|
5921
|
+
@RequestId = requestid
|
|
5922
|
+
end
|
|
5923
|
+
|
|
5924
|
+
def deserialize(params)
|
|
5925
|
+
unless params['Data'].nil?
|
|
5926
|
+
@Data = []
|
|
5927
|
+
params['Data'].each do |i|
|
|
5928
|
+
staticstoreinfo_tmp = StaticStoreInfo.new
|
|
5929
|
+
staticstoreinfo_tmp.deserialize(i)
|
|
5930
|
+
@Data << staticstoreinfo_tmp
|
|
5931
|
+
end
|
|
5932
|
+
end
|
|
5933
|
+
@RequestId = params['RequestId']
|
|
5934
|
+
end
|
|
5935
|
+
end
|
|
5936
|
+
|
|
5042
5937
|
# DescribeTable请求参数结构体
|
|
5043
5938
|
class DescribeTableRequest < TencentCloud::Common::AbstractModel
|
|
5044
5939
|
# @param TableName: 表名
|
|
@@ -6568,6 +7463,77 @@ module TencentCloud
|
|
|
6568
7463
|
end
|
|
6569
7464
|
end
|
|
6570
7465
|
|
|
7466
|
+
# CLS日志单条信息
|
|
7467
|
+
class LogObject < TencentCloud::Common::AbstractModel
|
|
7468
|
+
# @param TopicId: 日志属于的 topic ID
|
|
7469
|
+
# @type TopicId: String
|
|
7470
|
+
# @param TopicName: 日志主题的名字
|
|
7471
|
+
# @type TopicName: String
|
|
7472
|
+
# @param Timestamp: 日志时间
|
|
7473
|
+
# @type Timestamp: String
|
|
7474
|
+
# @param Content: 日志内容
|
|
7475
|
+
# @type Content: String
|
|
7476
|
+
# @param FileName: 采集路径
|
|
7477
|
+
# @type FileName: String
|
|
7478
|
+
# @param Source: 日志来源设备
|
|
7479
|
+
# @type Source: String
|
|
7480
|
+
|
|
7481
|
+
attr_accessor :TopicId, :TopicName, :Timestamp, :Content, :FileName, :Source
|
|
7482
|
+
|
|
7483
|
+
def initialize(topicid=nil, topicname=nil, timestamp=nil, content=nil, filename=nil, source=nil)
|
|
7484
|
+
@TopicId = topicid
|
|
7485
|
+
@TopicName = topicname
|
|
7486
|
+
@Timestamp = timestamp
|
|
7487
|
+
@Content = content
|
|
7488
|
+
@FileName = filename
|
|
7489
|
+
@Source = source
|
|
7490
|
+
end
|
|
7491
|
+
|
|
7492
|
+
def deserialize(params)
|
|
7493
|
+
@TopicId = params['TopicId']
|
|
7494
|
+
@TopicName = params['TopicName']
|
|
7495
|
+
@Timestamp = params['Timestamp']
|
|
7496
|
+
@Content = params['Content']
|
|
7497
|
+
@FileName = params['FileName']
|
|
7498
|
+
@Source = params['Source']
|
|
7499
|
+
end
|
|
7500
|
+
end
|
|
7501
|
+
|
|
7502
|
+
# CLS日志结果
|
|
7503
|
+
class LogResObject < TencentCloud::Common::AbstractModel
|
|
7504
|
+
# @param Context: 获取更多检索结果的游标
|
|
7505
|
+
# @type Context: String
|
|
7506
|
+
# @param ListOver: 搜索结果是否已经全部返回
|
|
7507
|
+
# @type ListOver: Boolean
|
|
7508
|
+
# @param Results: 日志内容信息
|
|
7509
|
+
# @type Results: Array
|
|
7510
|
+
# @param AnalysisRecords: 日志聚合结果
|
|
7511
|
+
# @type AnalysisRecords: Array
|
|
7512
|
+
|
|
7513
|
+
attr_accessor :Context, :ListOver, :Results, :AnalysisRecords
|
|
7514
|
+
|
|
7515
|
+
def initialize(context=nil, listover=nil, results=nil, analysisrecords=nil)
|
|
7516
|
+
@Context = context
|
|
7517
|
+
@ListOver = listover
|
|
7518
|
+
@Results = results
|
|
7519
|
+
@AnalysisRecords = analysisrecords
|
|
7520
|
+
end
|
|
7521
|
+
|
|
7522
|
+
def deserialize(params)
|
|
7523
|
+
@Context = params['Context']
|
|
7524
|
+
@ListOver = params['ListOver']
|
|
7525
|
+
unless params['Results'].nil?
|
|
7526
|
+
@Results = []
|
|
7527
|
+
params['Results'].each do |i|
|
|
7528
|
+
logobject_tmp = LogObject.new
|
|
7529
|
+
logobject_tmp.deserialize(i)
|
|
7530
|
+
@Results << logobject_tmp
|
|
7531
|
+
end
|
|
7532
|
+
end
|
|
7533
|
+
@AnalysisRecords = params['AnalysisRecords']
|
|
7534
|
+
end
|
|
7535
|
+
end
|
|
7536
|
+
|
|
6571
7537
|
# 云日志服务相关信息
|
|
6572
7538
|
class LogServiceInfo < TencentCloud::Common::AbstractModel
|
|
6573
7539
|
# @param LogsetName: log名
|
|
@@ -6655,6 +7621,53 @@ module TencentCloud
|
|
|
6655
7621
|
end
|
|
6656
7622
|
end
|
|
6657
7623
|
|
|
7624
|
+
# ModifyCloudBaseGWAPI请求参数结构体
|
|
7625
|
+
class ModifyCloudBaseGWAPIRequest < TencentCloud::Common::AbstractModel
|
|
7626
|
+
# @param ServiceId: Service ID
|
|
7627
|
+
# @type ServiceId: String
|
|
7628
|
+
# @param APIId: API ID
|
|
7629
|
+
# @type APIId: String
|
|
7630
|
+
# @param Options: 选项列表,key取值:domain, path。
|
|
7631
|
+
# @type Options: Array
|
|
7632
|
+
|
|
7633
|
+
attr_accessor :ServiceId, :APIId, :Options
|
|
7634
|
+
|
|
7635
|
+
def initialize(serviceid=nil, apiid=nil, options=nil)
|
|
7636
|
+
@ServiceId = serviceid
|
|
7637
|
+
@APIId = apiid
|
|
7638
|
+
@Options = options
|
|
7639
|
+
end
|
|
7640
|
+
|
|
7641
|
+
def deserialize(params)
|
|
7642
|
+
@ServiceId = params['ServiceId']
|
|
7643
|
+
@APIId = params['APIId']
|
|
7644
|
+
unless params['Options'].nil?
|
|
7645
|
+
@Options = []
|
|
7646
|
+
params['Options'].each do |i|
|
|
7647
|
+
cloudbaseoption_tmp = CloudBaseOption.new
|
|
7648
|
+
cloudbaseoption_tmp.deserialize(i)
|
|
7649
|
+
@Options << cloudbaseoption_tmp
|
|
7650
|
+
end
|
|
7651
|
+
end
|
|
7652
|
+
end
|
|
7653
|
+
end
|
|
7654
|
+
|
|
7655
|
+
# ModifyCloudBaseGWAPI返回参数结构体
|
|
7656
|
+
class ModifyCloudBaseGWAPIResponse < TencentCloud::Common::AbstractModel
|
|
7657
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
7658
|
+
# @type RequestId: String
|
|
7659
|
+
|
|
7660
|
+
attr_accessor :RequestId
|
|
7661
|
+
|
|
7662
|
+
def initialize(requestid=nil)
|
|
7663
|
+
@RequestId = requestid
|
|
7664
|
+
end
|
|
7665
|
+
|
|
7666
|
+
def deserialize(params)
|
|
7667
|
+
@RequestId = params['RequestId']
|
|
7668
|
+
end
|
|
7669
|
+
end
|
|
7670
|
+
|
|
6658
7671
|
# ModifyCloudBaseRunServerFlowConf请求参数结构体
|
|
6659
7672
|
class ModifyCloudBaseRunServerFlowConfRequest < TencentCloud::Common::AbstractModel
|
|
6660
7673
|
# @param EnvId: 环境ID
|
|
@@ -7472,6 +8485,73 @@ module TencentCloud
|
|
|
7472
8485
|
end
|
|
7473
8486
|
end
|
|
7474
8487
|
|
|
8488
|
+
# SearchClsLog请求参数结构体
|
|
8489
|
+
class SearchClsLogRequest < TencentCloud::Common::AbstractModel
|
|
8490
|
+
# @param EnvId: 环境唯一ID
|
|
8491
|
+
# @type EnvId: String
|
|
8492
|
+
# @param StartTime: 查询起始时间条件
|
|
8493
|
+
# @type StartTime: String
|
|
8494
|
+
# @param EndTime: 查询结束时间条件
|
|
8495
|
+
# @type EndTime: String
|
|
8496
|
+
# @param QueryString: 查询语句,例如查询云函数:(src:app OR src:system) AND log:\"START RequestId*\", 查询云数据库:module:database,查询审批流:module:workflow,查询模型:module:model,查询用户权限:module:auth,以上仅为示例语句,实际使用时请根据具体日志内容进行调整,查询语句需严格遵循CLS(Cloud Log Service)语法规范 详细的语法规则请参考官方档:https://cloud.tencent.com/document/product/614/47044
|
|
8497
|
+
# @type QueryString: String
|
|
8498
|
+
# @param Limit: 单次要返回的日志条数,单次返回的最大条数为100
|
|
8499
|
+
# @type Limit: Integer
|
|
8500
|
+
# @param Context: 加载更多使用,透传上次返回的 context 值,获取后续的日志内容,通过游标最多可获取10000条,请尽可能缩小时间范围
|
|
8501
|
+
# @type Context: String
|
|
8502
|
+
# @param Sort: 按时间排序 asc(升序)或者 desc(降序),默认为 desc
|
|
8503
|
+
# @type Sort: String
|
|
8504
|
+
# @param UseLucene: 是否使用Lucene语法,默认为false
|
|
8505
|
+
# @type UseLucene: Boolean
|
|
8506
|
+
|
|
8507
|
+
attr_accessor :EnvId, :StartTime, :EndTime, :QueryString, :Limit, :Context, :Sort, :UseLucene
|
|
8508
|
+
|
|
8509
|
+
def initialize(envid=nil, starttime=nil, endtime=nil, querystring=nil, limit=nil, context=nil, sort=nil, uselucene=nil)
|
|
8510
|
+
@EnvId = envid
|
|
8511
|
+
@StartTime = starttime
|
|
8512
|
+
@EndTime = endtime
|
|
8513
|
+
@QueryString = querystring
|
|
8514
|
+
@Limit = limit
|
|
8515
|
+
@Context = context
|
|
8516
|
+
@Sort = sort
|
|
8517
|
+
@UseLucene = uselucene
|
|
8518
|
+
end
|
|
8519
|
+
|
|
8520
|
+
def deserialize(params)
|
|
8521
|
+
@EnvId = params['EnvId']
|
|
8522
|
+
@StartTime = params['StartTime']
|
|
8523
|
+
@EndTime = params['EndTime']
|
|
8524
|
+
@QueryString = params['QueryString']
|
|
8525
|
+
@Limit = params['Limit']
|
|
8526
|
+
@Context = params['Context']
|
|
8527
|
+
@Sort = params['Sort']
|
|
8528
|
+
@UseLucene = params['UseLucene']
|
|
8529
|
+
end
|
|
8530
|
+
end
|
|
8531
|
+
|
|
8532
|
+
# SearchClsLog返回参数结构体
|
|
8533
|
+
class SearchClsLogResponse < TencentCloud::Common::AbstractModel
|
|
8534
|
+
# @param LogResults: 日志内容结果
|
|
8535
|
+
# @type LogResults: :class:`Tencentcloud::Tcb.v20180608.models.LogResObject`
|
|
8536
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
8537
|
+
# @type RequestId: String
|
|
8538
|
+
|
|
8539
|
+
attr_accessor :LogResults, :RequestId
|
|
8540
|
+
|
|
8541
|
+
def initialize(logresults=nil, requestid=nil)
|
|
8542
|
+
@LogResults = logresults
|
|
8543
|
+
@RequestId = requestid
|
|
8544
|
+
end
|
|
8545
|
+
|
|
8546
|
+
def deserialize(params)
|
|
8547
|
+
unless params['LogResults'].nil?
|
|
8548
|
+
@LogResults = LogResObject.new
|
|
8549
|
+
@LogResults.deserialize(params['LogResults'])
|
|
8550
|
+
end
|
|
8551
|
+
@RequestId = params['RequestId']
|
|
8552
|
+
end
|
|
8553
|
+
end
|
|
8554
|
+
|
|
7475
8555
|
# 短信免费量
|
|
7476
8556
|
class SmsFreeQuota < TencentCloud::Common::AbstractModel
|
|
7477
8557
|
# @param FreeQuota: 免费量总条数
|
|
@@ -7564,6 +8644,51 @@ module TencentCloud
|
|
|
7564
8644
|
end
|
|
7565
8645
|
end
|
|
7566
8646
|
|
|
8647
|
+
# 静态托管资源信息
|
|
8648
|
+
class StaticStoreInfo < TencentCloud::Common::AbstractModel
|
|
8649
|
+
# @param EnvId: 环境ID
|
|
8650
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
8651
|
+
# @type EnvId: String
|
|
8652
|
+
# @param CdnDomain: 静态域名
|
|
8653
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
8654
|
+
# @type CdnDomain: String
|
|
8655
|
+
# @param Bucket: COS桶
|
|
8656
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
8657
|
+
# @type Bucket: String
|
|
8658
|
+
# @param Regoin: cos区域
|
|
8659
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
8660
|
+
# @type Regoin: String
|
|
8661
|
+
# @param Status: 资源状态:init(初始化)/process(处理中)/online(上线)/destroying(销毁中)/offline(下线))
|
|
8662
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
8663
|
+
# @type Status: String
|
|
8664
|
+
# @param Region: 地域
|
|
8665
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
8666
|
+
# @type Region: String
|
|
8667
|
+
|
|
8668
|
+
attr_accessor :EnvId, :CdnDomain, :Bucket, :Regoin, :Status, :Region
|
|
8669
|
+
extend Gem::Deprecate
|
|
8670
|
+
deprecate :Regoin, :none, 2026, 2
|
|
8671
|
+
deprecate :Regoin=, :none, 2026, 2
|
|
8672
|
+
|
|
8673
|
+
def initialize(envid=nil, cdndomain=nil, bucket=nil, regoin=nil, status=nil, region=nil)
|
|
8674
|
+
@EnvId = envid
|
|
8675
|
+
@CdnDomain = cdndomain
|
|
8676
|
+
@Bucket = bucket
|
|
8677
|
+
@Regoin = regoin
|
|
8678
|
+
@Status = status
|
|
8679
|
+
@Region = region
|
|
8680
|
+
end
|
|
8681
|
+
|
|
8682
|
+
def deserialize(params)
|
|
8683
|
+
@EnvId = params['EnvId']
|
|
8684
|
+
@CdnDomain = params['CdnDomain']
|
|
8685
|
+
@Bucket = params['Bucket']
|
|
8686
|
+
@Regoin = params['Regoin']
|
|
8687
|
+
@Status = params['Status']
|
|
8688
|
+
@Region = params['Region']
|
|
8689
|
+
end
|
|
8690
|
+
end
|
|
8691
|
+
|
|
7567
8692
|
# StorageInfo 资源信息
|
|
7568
8693
|
class StorageInfo < TencentCloud::Common::AbstractModel
|
|
7569
8694
|
# @param Region: 资源所属地域。
|