tencentcloud-sdk-gaap 1.0.238 → 1.0.239

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/v20180529/models.rb +128 -27
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c2cd2c2aa051c7dbed76cf88583cca0b11a20273
4
- data.tar.gz: ffcbd72c5be934a499bcf74c9cfb000bbcba94e3
3
+ metadata.gz: 3c1bf249742f835f109ecaf246a957ef9795daa4
4
+ data.tar.gz: e4e7c288cb9668f566c220d0dd3b9fca356c5922
5
5
  SHA512:
6
- metadata.gz: e8a41d86bfc307b0ff4f82051110658a8167650f9e913aa73abc84e43ae3bb671c42d265abf900d4f68a0dc8ee811aaea2db43a0bf33b953e120cc63b8f31e36
7
- data.tar.gz: 641f87fd30f1ee8aa2ce073c353f1ae4369801d43025a8888e4f4b09e8177dfed1fe48fd8a55ce79932de98e76660145833be99d25fc60dbd5fa9ce4c276f9a5
6
+ metadata.gz: 43bb40eef74fabe8eddca207b2f10c3d475d689b00baef5fc7f1749d418a342ab039db95fc60f08e19ff2798c37765748fa14cdbfc2f5a5e2282e4bfaa8830ad
7
+ data.tar.gz: 23d9d0822e34b85ea990a58fbdf3a6f82fe2829359cefc1287d825d0d1392ce709c7facc0efe6f8721f7002b7f27a75b106101ce48e23e489927975d84f7531d
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.238
1
+ 1.0.239
@@ -61,10 +61,23 @@ module TencentCloud
61
61
  # @type RegionAreaName: String
62
62
  # @param IDCType: 机房类型, dc表示DataCenter数据中心, ec表示EdgeComputing边缘节点
63
63
  # @type IDCType: String
64
+ # @param FeatureBitmap: 特性位图,每个bit位代表一种特性,其中:
65
+ # 0,表示不支持该特性;
66
+ # 1,表示支持该特性。
67
+ # 特性位图含义如下(从右往左):
68
+ # 第1个bit,支持4层加速;
69
+ # 第2个bit,支持7层加速;
70
+ # 第3个bit,支持Http3接入;
71
+ # 第4个bit,支持IPv6;
72
+ # 第5个bit,支持精品BGP接入;
73
+ # 第6个bit,支持三网接入;
74
+ # 第7个bit,支持接入段Qos加速。
75
+ # 注意:此字段可能返回 null,表示取不到有效值。
76
+ # @type FeatureBitmap: Integer
64
77
 
65
- attr_accessor :RegionId, :RegionName, :ConcurrentList, :BandwidthList, :RegionArea, :RegionAreaName, :IDCType
78
+ attr_accessor :RegionId, :RegionName, :ConcurrentList, :BandwidthList, :RegionArea, :RegionAreaName, :IDCType, :FeatureBitmap
66
79
 
67
- def initialize(regionid=nil, regionname=nil, concurrentlist=nil, bandwidthlist=nil, regionarea=nil, regionareaname=nil, idctype=nil)
80
+ def initialize(regionid=nil, regionname=nil, concurrentlist=nil, bandwidthlist=nil, regionarea=nil, regionareaname=nil, idctype=nil, featurebitmap=nil)
68
81
  @RegionId = regionid
69
82
  @RegionName = regionname
70
83
  @ConcurrentList = concurrentlist
@@ -72,6 +85,7 @@ module TencentCloud
72
85
  @RegionArea = regionarea
73
86
  @RegionAreaName = regionareaname
74
87
  @IDCType = idctype
88
+ @FeatureBitmap = featurebitmap
75
89
  end
76
90
 
77
91
  def deserialize(params)
@@ -82,6 +96,7 @@ module TencentCloud
82
96
  @RegionArea = params['RegionArea']
83
97
  @RegionAreaName = params['RegionAreaName']
84
98
  @IDCType = params['IDCType']
99
+ @FeatureBitmap = params['FeatureBitmap']
85
100
  end
86
101
  end
87
102
 
@@ -511,10 +526,12 @@ module TencentCloud
511
526
  # @type NetworkType: String
512
527
  # @param PackageType: 通道套餐类型。Thunder表示标准通道组,Accelerator表示游戏加速器通道,CrossBorder表示跨境通道。
513
528
  # @type PackageType: String
529
+ # @param Http3Supported: 支持Http3的开关,其中:0,表示不需要支持Http3接入;1,表示需要支持Http3接入。注意:如果开启了Http3的功能,那么该通道就不再支持TCP/UDP接入的功能。该功能的启停无法在通道创建完毕后再修改。
530
+ # @type Http3Supported: Integer
514
531
 
515
- attr_accessor :AccessRegion, :RealServerRegion, :Bandwidth, :Concurrent, :GroupId, :IPAddressVersion, :NetworkType, :PackageType
532
+ attr_accessor :AccessRegion, :RealServerRegion, :Bandwidth, :Concurrent, :GroupId, :IPAddressVersion, :NetworkType, :PackageType, :Http3Supported
516
533
 
517
- def initialize(accessregion=nil, realserverregion=nil, bandwidth=nil, concurrent=nil, groupid=nil, ipaddressversion=nil, networktype=nil, packagetype=nil)
534
+ def initialize(accessregion=nil, realserverregion=nil, bandwidth=nil, concurrent=nil, groupid=nil, ipaddressversion=nil, networktype=nil, packagetype=nil, http3supported=nil)
518
535
  @AccessRegion = accessregion
519
536
  @RealServerRegion = realserverregion
520
537
  @Bandwidth = bandwidth
@@ -523,6 +540,7 @@ module TencentCloud
523
540
  @IPAddressVersion = ipaddressversion
524
541
  @NetworkType = networktype
525
542
  @PackageType = packagetype
543
+ @Http3Supported = http3supported
526
544
  end
527
545
 
528
546
  def deserialize(params)
@@ -534,6 +552,7 @@ module TencentCloud
534
552
  @IPAddressVersion = params['IPAddressVersion']
535
553
  @NetworkType = params['NetworkType']
536
554
  @PackageType = params['PackageType']
555
+ @Http3Supported = params['Http3Supported']
537
556
  end
538
557
  end
539
558
 
@@ -901,15 +920,21 @@ module TencentCloud
901
920
  # @param PolyClientCertificateIds: 客户端CA证书,用于客户端与GAAP的HTTPS的交互。
902
921
  # 仅当采用双向认证的方式时,需要设置该字段或ClientCertificateId字段。
903
922
  # @type PolyClientCertificateIds: Array
923
+ # @param Http3Supported: 是否开启Http3特性的标识,其中:
924
+ # 0,表示不开启Http3;
925
+ # 1,表示开启Http3。
926
+ # 默认不开启Http3。可以通过SetDomainHttp3开启。
927
+ # @type Http3Supported: Integer
904
928
 
905
- attr_accessor :ListenerId, :Domain, :CertificateId, :ClientCertificateId, :PolyClientCertificateIds
929
+ attr_accessor :ListenerId, :Domain, :CertificateId, :ClientCertificateId, :PolyClientCertificateIds, :Http3Supported
906
930
 
907
- def initialize(listenerid=nil, domain=nil, certificateid=nil, clientcertificateid=nil, polyclientcertificateids=nil)
931
+ def initialize(listenerid=nil, domain=nil, certificateid=nil, clientcertificateid=nil, polyclientcertificateids=nil, http3supported=nil)
908
932
  @ListenerId = listenerid
909
933
  @Domain = domain
910
934
  @CertificateId = certificateid
911
935
  @ClientCertificateId = clientcertificateid
912
936
  @PolyClientCertificateIds = polyclientcertificateids
937
+ @Http3Supported = http3supported
913
938
  end
914
939
 
915
940
  def deserialize(params)
@@ -918,6 +943,7 @@ module TencentCloud
918
943
  @CertificateId = params['CertificateId']
919
944
  @ClientCertificateId = params['ClientCertificateId']
920
945
  @PolyClientCertificateIds = params['PolyClientCertificateIds']
946
+ @Http3Supported = params['Http3Supported']
921
947
  end
922
948
  end
923
949
 
@@ -1008,10 +1034,16 @@ module TencentCloud
1008
1034
  # @type PolyClientCertificateIds: Array
1009
1035
  # @param GroupId: 通道组ID,与ProxyId之间只能设置一个。表示创建通道组的监听器。
1010
1036
  # @type GroupId: String
1037
+ # @param Http3Supported: 支持Http3的开关,其中:
1038
+ # 0,表示不需要支持Http3接入;
1039
+ # 1,表示需要支持Http3接入。
1040
+ # 注意:如果支持了Http3的功能,那么该监听器会占用对应的UDP接入端口,不可再创建相同端口的UDP监听器。
1041
+ # 该功能的启停无法在监听器创建完毕后再修改。
1042
+ # @type Http3Supported: Integer
1011
1043
 
1012
- attr_accessor :ListenerName, :Port, :CertificateId, :ForwardProtocol, :ProxyId, :AuthType, :ClientCertificateId, :PolyClientCertificateIds, :GroupId
1044
+ attr_accessor :ListenerName, :Port, :CertificateId, :ForwardProtocol, :ProxyId, :AuthType, :ClientCertificateId, :PolyClientCertificateIds, :GroupId, :Http3Supported
1013
1045
 
1014
- def initialize(listenername=nil, port=nil, certificateid=nil, forwardprotocol=nil, proxyid=nil, authtype=nil, clientcertificateid=nil, polyclientcertificateids=nil, groupid=nil)
1046
+ def initialize(listenername=nil, port=nil, certificateid=nil, forwardprotocol=nil, proxyid=nil, authtype=nil, clientcertificateid=nil, polyclientcertificateids=nil, groupid=nil, http3supported=nil)
1015
1047
  @ListenerName = listenername
1016
1048
  @Port = port
1017
1049
  @CertificateId = certificateid
@@ -1021,6 +1053,7 @@ module TencentCloud
1021
1053
  @ClientCertificateId = clientcertificateid
1022
1054
  @PolyClientCertificateIds = polyclientcertificateids
1023
1055
  @GroupId = groupid
1056
+ @Http3Supported = http3supported
1024
1057
  end
1025
1058
 
1026
1059
  def deserialize(params)
@@ -1033,6 +1066,7 @@ module TencentCloud
1033
1066
  @ClientCertificateId = params['ClientCertificateId']
1034
1067
  @PolyClientCertificateIds = params['PolyClientCertificateIds']
1035
1068
  @GroupId = params['GroupId']
1069
+ @Http3Supported = params['Http3Supported']
1036
1070
  end
1037
1071
  end
1038
1072
 
@@ -1108,10 +1142,16 @@ module TencentCloud
1108
1142
  # @type IPAddressVersion: String
1109
1143
  # @param PackageType: 通道组套餐类型,可取值:Thunder、Accelerator,默认值Thunder
1110
1144
  # @type PackageType: String
1145
+ # @param Http3Supported: 支持Http3的开关,其中:
1146
+ # 0,表示不需要支持Http3接入;
1147
+ # 1,表示需要支持Http3接入。
1148
+ # 注意:如果开启了Http3的功能,那么该通道组就不再支持TCP/UDP接入的功能。
1149
+ # 该功能的启停无法在通道组创建完毕后再修改。
1150
+ # @type Http3Supported: Integer
1111
1151
 
1112
- attr_accessor :ProjectId, :GroupName, :RealServerRegion, :TagSet, :AccessRegionSet, :IPAddressVersion, :PackageType
1152
+ attr_accessor :ProjectId, :GroupName, :RealServerRegion, :TagSet, :AccessRegionSet, :IPAddressVersion, :PackageType, :Http3Supported
1113
1153
 
1114
- def initialize(projectid=nil, groupname=nil, realserverregion=nil, tagset=nil, accessregionset=nil, ipaddressversion=nil, packagetype=nil)
1154
+ def initialize(projectid=nil, groupname=nil, realserverregion=nil, tagset=nil, accessregionset=nil, ipaddressversion=nil, packagetype=nil, http3supported=nil)
1115
1155
  @ProjectId = projectid
1116
1156
  @GroupName = groupname
1117
1157
  @RealServerRegion = realserverregion
@@ -1119,6 +1159,7 @@ module TencentCloud
1119
1159
  @AccessRegionSet = accessregionset
1120
1160
  @IPAddressVersion = ipaddressversion
1121
1161
  @PackageType = packagetype
1162
+ @Http3Supported = http3supported
1122
1163
  end
1123
1164
 
1124
1165
  def deserialize(params)
@@ -1143,6 +1184,7 @@ module TencentCloud
1143
1184
  end
1144
1185
  @IPAddressVersion = params['IPAddressVersion']
1145
1186
  @PackageType = params['PackageType']
1187
+ @Http3Supported = params['Http3Supported']
1146
1188
  end
1147
1189
  end
1148
1190
 
@@ -1198,10 +1240,12 @@ module TencentCloud
1198
1240
  # @type NetworkType: String
1199
1241
  # @param PackageType: 通道套餐类型,Thunder表示标准通道组,Accelerator表示游戏加速器通道,CrossBorder表示跨境通道。
1200
1242
  # @type PackageType: String
1243
+ # @param Http3Supported: 支持Http3的开关,其中:0,表示不需要支持Http3接入;1,表示需要支持Http3接入。注意:如果开启了Http3的功能,那么该通道就不再支持TCP/UDP接入的功能。该功能的启停无法在通道创建完毕后再修改。
1244
+ # @type Http3Supported: Integer
1201
1245
 
1202
- attr_accessor :ProjectId, :ProxyName, :AccessRegion, :Bandwidth, :Concurrent, :RealServerRegion, :ClientToken, :GroupId, :TagSet, :ClonedProxyId, :BillingType, :IPAddressVersion, :NetworkType, :PackageType
1246
+ attr_accessor :ProjectId, :ProxyName, :AccessRegion, :Bandwidth, :Concurrent, :RealServerRegion, :ClientToken, :GroupId, :TagSet, :ClonedProxyId, :BillingType, :IPAddressVersion, :NetworkType, :PackageType, :Http3Supported
1203
1247
 
1204
- def initialize(projectid=nil, proxyname=nil, accessregion=nil, bandwidth=nil, concurrent=nil, realserverregion=nil, clienttoken=nil, groupid=nil, tagset=nil, clonedproxyid=nil, billingtype=nil, ipaddressversion=nil, networktype=nil, packagetype=nil)
1248
+ def initialize(projectid=nil, proxyname=nil, accessregion=nil, bandwidth=nil, concurrent=nil, realserverregion=nil, clienttoken=nil, groupid=nil, tagset=nil, clonedproxyid=nil, billingtype=nil, ipaddressversion=nil, networktype=nil, packagetype=nil, http3supported=nil)
1205
1249
  @ProjectId = projectid
1206
1250
  @ProxyName = proxyname
1207
1251
  @AccessRegion = accessregion
@@ -1216,6 +1260,7 @@ module TencentCloud
1216
1260
  @IPAddressVersion = ipaddressversion
1217
1261
  @NetworkType = networktype
1218
1262
  @PackageType = packagetype
1263
+ @Http3Supported = http3supported
1219
1264
  end
1220
1265
 
1221
1266
  def deserialize(params)
@@ -1240,6 +1285,7 @@ module TencentCloud
1240
1285
  @IPAddressVersion = params['IPAddressVersion']
1241
1286
  @NetworkType = params['NetworkType']
1242
1287
  @PackageType = params['PackageType']
1288
+ @Http3Supported = params['Http3Supported']
1243
1289
  end
1244
1290
  end
1245
1291
 
@@ -2523,10 +2569,16 @@ module TencentCloud
2523
2569
  # @type SearchValue: String
2524
2570
  # @param GroupId: 过滤条件,通道组ID
2525
2571
  # @type GroupId: String
2572
+ # @param Http3Supported: 支持Http3的开关,其中:
2573
+ # 0,表示不需要支持Http3接入;
2574
+ # 1,表示需要支持Http3接入。
2575
+ # 注意:如果支持了Http3的功能,那么该监听器会占用对应的UDP接入端口,不可再创建相同端口的UDP监听器。
2576
+ # 该功能的启停无法在监听器创建完毕后再修改。
2577
+ # @type Http3Supported: Integer
2526
2578
 
2527
- attr_accessor :ProxyId, :ListenerId, :ListenerName, :Port, :Offset, :Limit, :SearchValue, :GroupId
2579
+ attr_accessor :ProxyId, :ListenerId, :ListenerName, :Port, :Offset, :Limit, :SearchValue, :GroupId, :Http3Supported
2528
2580
 
2529
- def initialize(proxyid=nil, listenerid=nil, listenername=nil, port=nil, offset=nil, limit=nil, searchvalue=nil, groupid=nil)
2581
+ def initialize(proxyid=nil, listenerid=nil, listenername=nil, port=nil, offset=nil, limit=nil, searchvalue=nil, groupid=nil, http3supported=nil)
2530
2582
  @ProxyId = proxyid
2531
2583
  @ListenerId = listenerid
2532
2584
  @ListenerName = listenername
@@ -2535,6 +2587,7 @@ module TencentCloud
2535
2587
  @Limit = limit
2536
2588
  @SearchValue = searchvalue
2537
2589
  @GroupId = groupid
2590
+ @Http3Supported = http3supported
2538
2591
  end
2539
2592
 
2540
2593
  def deserialize(params)
@@ -2546,6 +2599,7 @@ module TencentCloud
2546
2599
  @Limit = params['Limit']
2547
2600
  @SearchValue = params['SearchValue']
2548
2601
  @GroupId = params['GroupId']
2602
+ @Http3Supported = params['Http3Supported']
2549
2603
  end
2550
2604
  end
2551
2605
 
@@ -4209,10 +4263,15 @@ module TencentCloud
4209
4263
  # @param BanStatus: 封禁解封状态:BANNED表示已封禁,RECOVER表示已解封或未封禁,BANNING表示封禁中,RECOVERING表示解封中,BAN_FAILED表示封禁失败,RECOVER_FAILED表示解封失败。
4210
4264
  # 注意:此字段可能返回 null,表示取不到有效值。
4211
4265
  # @type BanStatus: String
4266
+ # @param Http3Supported: Http3特性标识,其中:
4267
+ # 0表示关闭;
4268
+ # 1表示启用。
4269
+ # 注意:此字段可能返回 null,表示取不到有效值。
4270
+ # @type Http3Supported: Integer
4212
4271
 
4213
- attr_accessor :Domain, :RuleSet, :CertificateId, :CertificateAlias, :ClientCertificateId, :ClientCertificateAlias, :BasicAuthConfId, :BasicAuth, :BasicAuthConfAlias, :RealServerCertificateId, :RealServerAuth, :RealServerCertificateAlias, :GaapCertificateId, :GaapAuth, :GaapCertificateAlias, :RealServerCertificateDomain, :PolyClientCertificateAliasInfo, :PolyRealServerCertificateAliasInfo, :DomainStatus, :BanStatus
4272
+ attr_accessor :Domain, :RuleSet, :CertificateId, :CertificateAlias, :ClientCertificateId, :ClientCertificateAlias, :BasicAuthConfId, :BasicAuth, :BasicAuthConfAlias, :RealServerCertificateId, :RealServerAuth, :RealServerCertificateAlias, :GaapCertificateId, :GaapAuth, :GaapCertificateAlias, :RealServerCertificateDomain, :PolyClientCertificateAliasInfo, :PolyRealServerCertificateAliasInfo, :DomainStatus, :BanStatus, :Http3Supported
4214
4273
 
4215
- def initialize(domain=nil, ruleset=nil, certificateid=nil, certificatealias=nil, clientcertificateid=nil, clientcertificatealias=nil, basicauthconfid=nil, basicauth=nil, basicauthconfalias=nil, realservercertificateid=nil, realserverauth=nil, realservercertificatealias=nil, gaapcertificateid=nil, gaapauth=nil, gaapcertificatealias=nil, realservercertificatedomain=nil, polyclientcertificatealiasinfo=nil, polyrealservercertificatealiasinfo=nil, domainstatus=nil, banstatus=nil)
4274
+ def initialize(domain=nil, ruleset=nil, certificateid=nil, certificatealias=nil, clientcertificateid=nil, clientcertificatealias=nil, basicauthconfid=nil, basicauth=nil, basicauthconfalias=nil, realservercertificateid=nil, realserverauth=nil, realservercertificatealias=nil, gaapcertificateid=nil, gaapauth=nil, gaapcertificatealias=nil, realservercertificatedomain=nil, polyclientcertificatealiasinfo=nil, polyrealservercertificatealiasinfo=nil, domainstatus=nil, banstatus=nil, http3supported=nil)
4216
4275
  @Domain = domain
4217
4276
  @RuleSet = ruleset
4218
4277
  @CertificateId = certificateid
@@ -4233,6 +4292,7 @@ module TencentCloud
4233
4292
  @PolyRealServerCertificateAliasInfo = polyrealservercertificatealiasinfo
4234
4293
  @DomainStatus = domainstatus
4235
4294
  @BanStatus = banstatus
4295
+ @Http3Supported = http3supported
4236
4296
  end
4237
4297
 
4238
4298
  def deserialize(params)
@@ -4277,6 +4337,7 @@ module TencentCloud
4277
4337
  end
4278
4338
  @DomainStatus = params['DomainStatus']
4279
4339
  @BanStatus = params['BanStatus']
4340
+ @Http3Supported = params['Http3Supported']
4280
4341
  end
4281
4342
  end
4282
4343
 
@@ -4521,10 +4582,12 @@ module TencentCloud
4521
4582
  # @type NetworkType: String
4522
4583
  # @param PackageType: 通道套餐类型,Thunder表示标准通道组,Accelerator表示游戏加速器通道,CrossBorder表示跨境通道。
4523
4584
  # @type PackageType: String
4585
+ # @param Http3Supported: 支持Http3的开关,其中:0,表示不需要支持Http3接入;1,表示需要支持Http3接入。注意:如果开启了Http3的功能,那么该通道就不再支持TCP/UDP接入的功能。该功能的启停无法在通道创建完毕后再修改。
4586
+ # @type Http3Supported: Integer
4524
4587
 
4525
- attr_accessor :AccessRegion, :Bandwidth, :DestRegion, :Concurrency, :RealServerRegion, :Concurrent, :BillingType, :IPAddressVersion, :NetworkType, :PackageType
4588
+ attr_accessor :AccessRegion, :Bandwidth, :DestRegion, :Concurrency, :RealServerRegion, :Concurrent, :BillingType, :IPAddressVersion, :NetworkType, :PackageType, :Http3Supported
4526
4589
 
4527
- def initialize(accessregion=nil, bandwidth=nil, destregion=nil, concurrency=nil, realserverregion=nil, concurrent=nil, billingtype=nil, ipaddressversion=nil, networktype=nil, packagetype=nil)
4590
+ def initialize(accessregion=nil, bandwidth=nil, destregion=nil, concurrency=nil, realserverregion=nil, concurrent=nil, billingtype=nil, ipaddressversion=nil, networktype=nil, packagetype=nil, http3supported=nil)
4528
4591
  @AccessRegion = accessregion
4529
4592
  @Bandwidth = bandwidth
4530
4593
  @DestRegion = destregion
@@ -4535,6 +4598,7 @@ module TencentCloud
4535
4598
  @IPAddressVersion = ipaddressversion
4536
4599
  @NetworkType = networktype
4537
4600
  @PackageType = packagetype
4601
+ @Http3Supported = http3supported
4538
4602
  end
4539
4603
 
4540
4604
  def deserialize(params)
@@ -4548,6 +4612,7 @@ module TencentCloud
4548
4612
  @IPAddressVersion = params['IPAddressVersion']
4549
4613
  @NetworkType = params['NetworkType']
4550
4614
  @PackageType = params['PackageType']
4615
+ @Http3Supported = params['Http3Supported']
4551
4616
  end
4552
4617
  end
4553
4618
 
@@ -5644,13 +5709,18 @@ module TencentCloud
5644
5709
  # @param IPAddressVersion: IP版本,可取值:IPv4、IPv6,默认值IPv4
5645
5710
  # 注意:此字段可能返回 null,表示取不到有效值。
5646
5711
  # @type IPAddressVersion: String
5647
- # @param PackageType: 通道组套餐类型:Thunder表示标准通道组,Accelerator表示游戏加速器通道组。
5712
+ # @param PackageType: 通道组套餐类型:Thunder表示标准通道组,Accelerator表示游戏加速器通道组,CrossBorder表示跨境通道组。
5648
5713
  # 注意:此字段可能返回 null,表示取不到有效值。
5649
5714
  # @type PackageType: String
5715
+ # @param Http3Supported: 支持Http3特性的标识,其中:
5716
+ # 0表示关闭;
5717
+ # 1表示启用。
5718
+ # 注意:此字段可能返回 null,表示取不到有效值。
5719
+ # @type Http3Supported: Integer
5650
5720
 
5651
- attr_accessor :CreateTime, :ProjectId, :ProxyNum, :Status, :OwnerUin, :CreateUin, :GroupName, :DnsDefaultIp, :Domain, :RealServerRegionInfo, :IsOldGroup, :GroupId, :TagSet, :PolicyId, :Version, :ClientIPMethod, :IPAddressVersion, :PackageType
5721
+ attr_accessor :CreateTime, :ProjectId, :ProxyNum, :Status, :OwnerUin, :CreateUin, :GroupName, :DnsDefaultIp, :Domain, :RealServerRegionInfo, :IsOldGroup, :GroupId, :TagSet, :PolicyId, :Version, :ClientIPMethod, :IPAddressVersion, :PackageType, :Http3Supported
5652
5722
 
5653
- def initialize(createtime=nil, projectid=nil, proxynum=nil, status=nil, owneruin=nil, createuin=nil, groupname=nil, dnsdefaultip=nil, domain=nil, realserverregioninfo=nil, isoldgroup=nil, groupid=nil, tagset=nil, policyid=nil, version=nil, clientipmethod=nil, ipaddressversion=nil, packagetype=nil)
5723
+ def initialize(createtime=nil, projectid=nil, proxynum=nil, status=nil, owneruin=nil, createuin=nil, groupname=nil, dnsdefaultip=nil, domain=nil, realserverregioninfo=nil, isoldgroup=nil, groupid=nil, tagset=nil, policyid=nil, version=nil, clientipmethod=nil, ipaddressversion=nil, packagetype=nil, http3supported=nil)
5654
5724
  @CreateTime = createtime
5655
5725
  @ProjectId = projectid
5656
5726
  @ProxyNum = proxynum
@@ -5669,6 +5739,7 @@ module TencentCloud
5669
5739
  @ClientIPMethod = clientipmethod
5670
5740
  @IPAddressVersion = ipaddressversion
5671
5741
  @PackageType = packagetype
5742
+ @Http3Supported = http3supported
5672
5743
  end
5673
5744
 
5674
5745
  def deserialize(params)
@@ -5700,6 +5771,7 @@ module TencentCloud
5700
5771
  @ClientIPMethod = params['ClientIPMethod']
5701
5772
  @IPAddressVersion = params['IPAddressVersion']
5702
5773
  @PackageType = params['PackageType']
5774
+ @Http3Supported = params['Http3Supported']
5703
5775
  end
5704
5776
  end
5705
5777
 
@@ -5735,10 +5807,15 @@ module TencentCloud
5735
5807
  # @param ProxyType: 通道组是否包含微软通道
5736
5808
  # 注意:此字段可能返回 null,表示取不到有效值。
5737
5809
  # @type ProxyType: Integer
5810
+ # @param Http3Supported: 支持Http3特性的标识,其中:
5811
+ # 0,表示不支持Http3;
5812
+ # 1,表示支持Http3。
5813
+ # 注意:此字段可能返回 null,表示取不到有效值。
5814
+ # @type Http3Supported: Integer
5738
5815
 
5739
- attr_accessor :GroupId, :Domain, :GroupName, :ProjectId, :RealServerRegionInfo, :Status, :TagSet, :Version, :CreateTime, :ProxyType
5816
+ attr_accessor :GroupId, :Domain, :GroupName, :ProjectId, :RealServerRegionInfo, :Status, :TagSet, :Version, :CreateTime, :ProxyType, :Http3Supported
5740
5817
 
5741
- def initialize(groupid=nil, domain=nil, groupname=nil, projectid=nil, realserverregioninfo=nil, status=nil, tagset=nil, version=nil, createtime=nil, proxytype=nil)
5818
+ def initialize(groupid=nil, domain=nil, groupname=nil, projectid=nil, realserverregioninfo=nil, status=nil, tagset=nil, version=nil, createtime=nil, proxytype=nil, http3supported=nil)
5742
5819
  @GroupId = groupid
5743
5820
  @Domain = domain
5744
5821
  @GroupName = groupname
@@ -5749,6 +5826,7 @@ module TencentCloud
5749
5826
  @Version = version
5750
5827
  @CreateTime = createtime
5751
5828
  @ProxyType = proxytype
5829
+ @Http3Supported = http3supported
5752
5830
  end
5753
5831
 
5754
5832
  def deserialize(params)
@@ -5772,6 +5850,7 @@ module TencentCloud
5772
5850
  @Version = params['Version']
5773
5851
  @CreateTime = params['CreateTime']
5774
5852
  @ProxyType = params['ProxyType']
5853
+ @Http3Supported = params['Http3Supported']
5775
5854
  end
5776
5855
  end
5777
5856
 
@@ -5886,10 +5965,15 @@ module TencentCloud
5886
5965
  # @param IPList: IP列表
5887
5966
  # 注意:此字段可能返回 null,表示取不到有效值。
5888
5967
  # @type IPList: Array
5968
+ # @param Http3Supported: 支持Http3协议的标识,其中:
5969
+ # 0表示关闭;
5970
+ # 1表示启用。
5971
+ # 注意:此字段可能返回 null,表示取不到有效值。
5972
+ # @type Http3Supported: Integer
5889
5973
 
5890
- attr_accessor :InstanceId, :CreateTime, :ProjectId, :ProxyName, :AccessRegion, :RealServerRegion, :Bandwidth, :Concurrent, :Status, :Domain, :IP, :Version, :ProxyId, :Scalarable, :SupportProtocols, :GroupId, :PolicyId, :AccessRegionInfo, :RealServerRegionInfo, :ForwardIP, :TagSet, :SupportSecurity, :BillingType, :RelatedGlobalDomains, :ModifyConfigTime, :ProxyType, :ClientIPMethod, :IPAddressVersion, :NetworkType, :PackageType, :BanStatus, :IPList
5974
+ attr_accessor :InstanceId, :CreateTime, :ProjectId, :ProxyName, :AccessRegion, :RealServerRegion, :Bandwidth, :Concurrent, :Status, :Domain, :IP, :Version, :ProxyId, :Scalarable, :SupportProtocols, :GroupId, :PolicyId, :AccessRegionInfo, :RealServerRegionInfo, :ForwardIP, :TagSet, :SupportSecurity, :BillingType, :RelatedGlobalDomains, :ModifyConfigTime, :ProxyType, :ClientIPMethod, :IPAddressVersion, :NetworkType, :PackageType, :BanStatus, :IPList, :Http3Supported
5891
5975
 
5892
- def initialize(instanceid=nil, createtime=nil, projectid=nil, proxyname=nil, accessregion=nil, realserverregion=nil, bandwidth=nil, concurrent=nil, status=nil, domain=nil, ip=nil, version=nil, proxyid=nil, scalarable=nil, supportprotocols=nil, groupid=nil, policyid=nil, accessregioninfo=nil, realserverregioninfo=nil, forwardip=nil, tagset=nil, supportsecurity=nil, billingtype=nil, relatedglobaldomains=nil, modifyconfigtime=nil, proxytype=nil, clientipmethod=nil, ipaddressversion=nil, networktype=nil, packagetype=nil, banstatus=nil, iplist=nil)
5976
+ def initialize(instanceid=nil, createtime=nil, projectid=nil, proxyname=nil, accessregion=nil, realserverregion=nil, bandwidth=nil, concurrent=nil, status=nil, domain=nil, ip=nil, version=nil, proxyid=nil, scalarable=nil, supportprotocols=nil, groupid=nil, policyid=nil, accessregioninfo=nil, realserverregioninfo=nil, forwardip=nil, tagset=nil, supportsecurity=nil, billingtype=nil, relatedglobaldomains=nil, modifyconfigtime=nil, proxytype=nil, clientipmethod=nil, ipaddressversion=nil, networktype=nil, packagetype=nil, banstatus=nil, iplist=nil, http3supported=nil)
5893
5977
  @InstanceId = instanceid
5894
5978
  @CreateTime = createtime
5895
5979
  @ProjectId = projectid
@@ -5922,6 +6006,7 @@ module TencentCloud
5922
6006
  @PackageType = packagetype
5923
6007
  @BanStatus = banstatus
5924
6008
  @IPList = iplist
6009
+ @Http3Supported = http3supported
5925
6010
  end
5926
6011
 
5927
6012
  def deserialize(params)
@@ -5977,6 +6062,7 @@ module TencentCloud
5977
6062
  @IPList << ipdetail_tmp
5978
6063
  end
5979
6064
  end
6065
+ @Http3Supported = params['Http3Supported']
5980
6066
  end
5981
6067
  end
5982
6068
 
@@ -6142,15 +6228,29 @@ module TencentCloud
6142
6228
  # @type RegionAreaName: String
6143
6229
  # @param IDCType: 机房类型, dc表示DataCenter数据中心, ec表示EdgeComputing边缘节点
6144
6230
  # @type IDCType: String
6231
+ # @param FeatureBitmap: 特性位图,每个bit位代表一种特性,其中:
6232
+ # 0,表示不支持该特性;
6233
+ # 1,表示支持该特性。
6234
+ # 特性位图含义如下(从右往左):
6235
+ # 第1个bit,支持4层加速;
6236
+ # 第2个bit,支持7层加速;
6237
+ # 第3个bit,支持Http3接入;
6238
+ # 第4个bit,支持IPv6;
6239
+ # 第5个bit,支持精品BGP接入;
6240
+ # 第6个bit,支持三网接入;
6241
+ # 第7个bit,支持接入段Qos加速。
6242
+ # 注意:此字段可能返回 null,表示取不到有效值。
6243
+ # @type FeatureBitmap: Integer
6145
6244
 
6146
- attr_accessor :RegionId, :RegionName, :RegionArea, :RegionAreaName, :IDCType
6245
+ attr_accessor :RegionId, :RegionName, :RegionArea, :RegionAreaName, :IDCType, :FeatureBitmap
6147
6246
 
6148
- def initialize(regionid=nil, regionname=nil, regionarea=nil, regionareaname=nil, idctype=nil)
6247
+ def initialize(regionid=nil, regionname=nil, regionarea=nil, regionareaname=nil, idctype=nil, featurebitmap=nil)
6149
6248
  @RegionId = regionid
6150
6249
  @RegionName = regionname
6151
6250
  @RegionArea = regionarea
6152
6251
  @RegionAreaName = regionareaname
6153
6252
  @IDCType = idctype
6253
+ @FeatureBitmap = featurebitmap
6154
6254
  end
6155
6255
 
6156
6256
  def deserialize(params)
@@ -6159,6 +6259,7 @@ module TencentCloud
6159
6259
  @RegionArea = params['RegionArea']
6160
6260
  @RegionAreaName = params['RegionAreaName']
6161
6261
  @IDCType = params['IDCType']
6262
+ @FeatureBitmap = params['FeatureBitmap']
6162
6263
  end
6163
6264
  end
6164
6265
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-gaap
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.238
4
+ version: 1.0.239
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-01-10 00:00:00.000000000 Z
11
+ date: 2022-01-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common