tencentcloud-sdk-lighthouse 3.0.992 → 3.0.994
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/v20200324/models.rb +75 -6
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2adb95348c3a89f8105a90a18b601a476b70b733
|
4
|
+
data.tar.gz: e59ae811f8a70acb894740bcb6ec98c1a23cf5db
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4051647755253ddfafcb85cfb2b8e5449552160cfd0e42fd5c22df32f98cf7d03887f97a2678984f784a0b7f2e42ee9eee8abb379fe61795984b56bbcb2de134
|
7
|
+
data.tar.gz: 547dc38d08ca52d7a87a7bac514a5ea07ca9c55642e9262b0137862134e6f6dc890d6871623cbe3d5b9b9687eedeb62ed7e2aac3e0d23596d2d71dc5f77e3f16
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.994
|
data/lib/v20200324/models.rb
CHANGED
@@ -4628,17 +4628,23 @@ module TencentCloud
|
|
4628
4628
|
|
4629
4629
|
# 和Ipv6CidrBlock互斥,两者都不指定时,如果Protocol不是ICMPv6,则取默认值0.0.0.0/0。
|
4630
4630
|
# @type CidrBlock: String
|
4631
|
+
# @param Ipv6CidrBlock: IPv6网段或IPv6地址(互斥)。
|
4632
|
+
# 示例值:::/0。
|
4633
|
+
|
4634
|
+
# 和CidrBlock互斥,两者都不指定时,如果Protocol是ICMPv6,则取默认值::/0。
|
4635
|
+
# @type Ipv6CidrBlock: String
|
4631
4636
|
# @param Action: 取值:ACCEPT,DROP。默认为 ACCEPT。
|
4632
4637
|
# @type Action: String
|
4633
4638
|
# @param FirewallRuleDescription: 防火墙规则描述。
|
4634
4639
|
# @type FirewallRuleDescription: String
|
4635
4640
|
|
4636
|
-
attr_accessor :Protocol, :Port, :CidrBlock, :Action, :FirewallRuleDescription
|
4641
|
+
attr_accessor :Protocol, :Port, :CidrBlock, :Ipv6CidrBlock, :Action, :FirewallRuleDescription
|
4637
4642
|
|
4638
|
-
def initialize(protocol=nil, port=nil, cidrblock=nil, action=nil, firewallruledescription=nil)
|
4643
|
+
def initialize(protocol=nil, port=nil, cidrblock=nil, ipv6cidrblock=nil, action=nil, firewallruledescription=nil)
|
4639
4644
|
@Protocol = protocol
|
4640
4645
|
@Port = port
|
4641
4646
|
@CidrBlock = cidrblock
|
4647
|
+
@Ipv6CidrBlock = ipv6cidrblock
|
4642
4648
|
@Action = action
|
4643
4649
|
@FirewallRuleDescription = firewallruledescription
|
4644
4650
|
end
|
@@ -4647,6 +4653,7 @@ module TencentCloud
|
|
4647
4653
|
@Protocol = params['Protocol']
|
4648
4654
|
@Port = params['Port']
|
4649
4655
|
@CidrBlock = params['CidrBlock']
|
4656
|
+
@Ipv6CidrBlock = params['Ipv6CidrBlock']
|
4650
4657
|
@Action = params['Action']
|
4651
4658
|
@FirewallRuleDescription = params['FirewallRuleDescription']
|
4652
4659
|
end
|
@@ -4665,18 +4672,24 @@ module TencentCloud
|
|
4665
4672
|
|
4666
4673
|
# 和Ipv6CidrBlock互斥,两者都不指定时,如果Protocol不是ICMPv6,则取默认值0.0.0.0/0。
|
4667
4674
|
# @type CidrBlock: String
|
4675
|
+
# @param Ipv6CidrBlock: IPv6网段或IPv6地址(互斥)。
|
4676
|
+
# 示例值:::/0。
|
4677
|
+
|
4678
|
+
# 和CidrBlock互斥,两者都不指定时,如果Protocol是ICMPv6,则取默认值::/0。
|
4679
|
+
# @type Ipv6CidrBlock: String
|
4668
4680
|
# @param Action: 取值:ACCEPT,DROP。默认为 ACCEPT。
|
4669
4681
|
# @type Action: String
|
4670
4682
|
# @param FirewallRuleDescription: 防火墙规则描述。
|
4671
4683
|
# @type FirewallRuleDescription: String
|
4672
4684
|
|
4673
|
-
attr_accessor :AppType, :Protocol, :Port, :CidrBlock, :Action, :FirewallRuleDescription
|
4685
|
+
attr_accessor :AppType, :Protocol, :Port, :CidrBlock, :Ipv6CidrBlock, :Action, :FirewallRuleDescription
|
4674
4686
|
|
4675
|
-
def initialize(apptype=nil, protocol=nil, port=nil, cidrblock=nil, action=nil, firewallruledescription=nil)
|
4687
|
+
def initialize(apptype=nil, protocol=nil, port=nil, cidrblock=nil, ipv6cidrblock=nil, action=nil, firewallruledescription=nil)
|
4676
4688
|
@AppType = apptype
|
4677
4689
|
@Protocol = protocol
|
4678
4690
|
@Port = port
|
4679
4691
|
@CidrBlock = cidrblock
|
4692
|
+
@Ipv6CidrBlock = ipv6cidrblock
|
4680
4693
|
@Action = action
|
4681
4694
|
@FirewallRuleDescription = firewallruledescription
|
4682
4695
|
end
|
@@ -4686,6 +4699,7 @@ module TencentCloud
|
|
4686
4699
|
@Protocol = params['Protocol']
|
4687
4700
|
@Port = params['Port']
|
4688
4701
|
@CidrBlock = params['CidrBlock']
|
4702
|
+
@Ipv6CidrBlock = params['Ipv6CidrBlock']
|
4689
4703
|
@Action = params['Action']
|
4690
4704
|
@FirewallRuleDescription = params['FirewallRuleDescription']
|
4691
4705
|
end
|
@@ -5283,15 +5297,19 @@ module TencentCloud
|
|
5283
5297
|
# @param InstanceRestrictState: 实例封禁状态。取值范围:
|
5284
5298
|
# <li>NORMAL实例正常。</li><li>NETWORK_RESTRICT:网络封禁。</li>
|
5285
5299
|
# @type InstanceRestrictState: String
|
5300
|
+
# @param SupportIpv6Detail: 描述实例是否支持IPv6。
|
5301
|
+
# @type SupportIpv6Detail: :class:`Tencentcloud::Lighthouse.v20200324.models.SupportIpv6Detail`
|
5302
|
+
# @param PublicIpv6Addresses: 公网IPv6地址列表。
|
5303
|
+
# @type PublicIpv6Addresses: Array
|
5286
5304
|
# @param InitInvocationId: 创建实例后自动执行TAT命令的调用ID。
|
5287
5305
|
# @type InitInvocationId: String
|
5288
5306
|
# @param InstanceViolationDetail: 实例违规详情。
|
5289
5307
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
5290
5308
|
# @type InstanceViolationDetail: :class:`Tencentcloud::Lighthouse.v20200324.models.InstanceViolationDetail`
|
5291
5309
|
|
5292
|
-
attr_accessor :InstanceId, :BundleId, :BlueprintId, :CPU, :Memory, :InstanceName, :InstanceChargeType, :SystemDisk, :PrivateAddresses, :PublicAddresses, :InternetAccessible, :RenewFlag, :LoginSettings, :InstanceState, :Uuid, :LatestOperation, :LatestOperationState, :LatestOperationRequestId, :LatestOperationStartedTime, :IsolatedTime, :CreatedTime, :ExpiredTime, :PlatformType, :Platform, :OsName, :Zone, :Tags, :InstanceRestrictState, :InitInvocationId, :InstanceViolationDetail
|
5310
|
+
attr_accessor :InstanceId, :BundleId, :BlueprintId, :CPU, :Memory, :InstanceName, :InstanceChargeType, :SystemDisk, :PrivateAddresses, :PublicAddresses, :InternetAccessible, :RenewFlag, :LoginSettings, :InstanceState, :Uuid, :LatestOperation, :LatestOperationState, :LatestOperationRequestId, :LatestOperationStartedTime, :IsolatedTime, :CreatedTime, :ExpiredTime, :PlatformType, :Platform, :OsName, :Zone, :Tags, :InstanceRestrictState, :SupportIpv6Detail, :PublicIpv6Addresses, :InitInvocationId, :InstanceViolationDetail
|
5293
5311
|
|
5294
|
-
def initialize(instanceid=nil, bundleid=nil, blueprintid=nil, cpu=nil, memory=nil, instancename=nil, instancechargetype=nil, systemdisk=nil, privateaddresses=nil, publicaddresses=nil, internetaccessible=nil, renewflag=nil, loginsettings=nil, instancestate=nil, uuid=nil, latestoperation=nil, latestoperationstate=nil, latestoperationrequestid=nil, latestoperationstartedtime=nil, isolatedtime=nil, createdtime=nil, expiredtime=nil, platformtype=nil, platform=nil, osname=nil, zone=nil, tags=nil, instancerestrictstate=nil, initinvocationid=nil, instanceviolationdetail=nil)
|
5312
|
+
def initialize(instanceid=nil, bundleid=nil, blueprintid=nil, cpu=nil, memory=nil, instancename=nil, instancechargetype=nil, systemdisk=nil, privateaddresses=nil, publicaddresses=nil, internetaccessible=nil, renewflag=nil, loginsettings=nil, instancestate=nil, uuid=nil, latestoperation=nil, latestoperationstate=nil, latestoperationrequestid=nil, latestoperationstartedtime=nil, isolatedtime=nil, createdtime=nil, expiredtime=nil, platformtype=nil, platform=nil, osname=nil, zone=nil, tags=nil, instancerestrictstate=nil, supportipv6detail=nil, publicipv6addresses=nil, initinvocationid=nil, instanceviolationdetail=nil)
|
5295
5313
|
@InstanceId = instanceid
|
5296
5314
|
@BundleId = bundleid
|
5297
5315
|
@BlueprintId = blueprintid
|
@@ -5320,6 +5338,8 @@ module TencentCloud
|
|
5320
5338
|
@Zone = zone
|
5321
5339
|
@Tags = tags
|
5322
5340
|
@InstanceRestrictState = instancerestrictstate
|
5341
|
+
@SupportIpv6Detail = supportipv6detail
|
5342
|
+
@PublicIpv6Addresses = publicipv6addresses
|
5323
5343
|
@InitInvocationId = initinvocationid
|
5324
5344
|
@InstanceViolationDetail = instanceviolationdetail
|
5325
5345
|
end
|
@@ -5369,6 +5389,11 @@ module TencentCloud
|
|
5369
5389
|
end
|
5370
5390
|
end
|
5371
5391
|
@InstanceRestrictState = params['InstanceRestrictState']
|
5392
|
+
unless params['SupportIpv6Detail'].nil?
|
5393
|
+
@SupportIpv6Detail = SupportIpv6Detail.new
|
5394
|
+
@SupportIpv6Detail.deserialize(params['SupportIpv6Detail'])
|
5395
|
+
end
|
5396
|
+
@PublicIpv6Addresses = params['PublicIpv6Addresses']
|
5372
5397
|
@InitInvocationId = params['InitInvocationId']
|
5373
5398
|
unless params['InstanceViolationDetail'].nil?
|
5374
5399
|
@InstanceViolationDetail = InstanceViolationDetail.new
|
@@ -7546,6 +7571,50 @@ module TencentCloud
|
|
7546
7571
|
end
|
7547
7572
|
end
|
7548
7573
|
|
7574
|
+
# 实例支持IPv6详情描述。
|
7575
|
+
class SupportIpv6Detail < TencentCloud::Common::AbstractModel
|
7576
|
+
# @param IsSupport: 是否支持开启IPv6。
|
7577
|
+
# @type IsSupport: Boolean
|
7578
|
+
# @param Detail: 详情。
|
7579
|
+
|
7580
|
+
# 当IsSupport为True,Detail枚举值为:
|
7581
|
+
|
7582
|
+
# EFFECTIVE_IMMEDIATELY: 立即生效
|
7583
|
+
|
7584
|
+
# EFFECTIVE_AFTER_REBOOT: 分配过程需要开关机,用户需备份数据
|
7585
|
+
|
7586
|
+
|
7587
|
+
|
7588
|
+
# 当IsSupport为False,Detail枚举值为:
|
7589
|
+
|
7590
|
+
# HAD_BEEN_ASSIGNED: 已分配IPv6地址
|
7591
|
+
|
7592
|
+
# REGION_NOT_SUPPORT: 地域不支持
|
7593
|
+
|
7594
|
+
# BLUEPRINT_NOT_SUPPORT: 镜像不支持
|
7595
|
+
|
7596
|
+
# BUNDLE_INSTANCE_NOT_SUPPORT: 套餐实例不支持
|
7597
|
+
|
7598
|
+
# BUNDLE_BANDWIDTH_NOT_SUPPORT: 套餐带宽不支持
|
7599
|
+
# @type Detail: String
|
7600
|
+
# @param Message: 提示信息。
|
7601
|
+
# @type Message: String
|
7602
|
+
|
7603
|
+
attr_accessor :IsSupport, :Detail, :Message
|
7604
|
+
|
7605
|
+
def initialize(issupport=nil, detail=nil, message=nil)
|
7606
|
+
@IsSupport = issupport
|
7607
|
+
@Detail = detail
|
7608
|
+
@Message = message
|
7609
|
+
end
|
7610
|
+
|
7611
|
+
def deserialize(params)
|
7612
|
+
@IsSupport = params['IsSupport']
|
7613
|
+
@Detail = params['Detail']
|
7614
|
+
@Message = params['Message']
|
7615
|
+
end
|
7616
|
+
end
|
7617
|
+
|
7549
7618
|
# 描述了操作系统所在块设备即系统盘的信息。
|
7550
7619
|
class SystemDisk < TencentCloud::Common::AbstractModel
|
7551
7620
|
# @param DiskType: 系统盘类型。
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-lighthouse
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.994
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-02-
|
11
|
+
date: 2025-02-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|