tencentcloud-sdk-tcr 3.0.605 → 3.0.607
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/v20190924/models.rb +16 -5
- 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: c8a5ad9d40d44e3f18b36293f79b925d65455d87
|
4
|
+
data.tar.gz: 33424e53f8d76196973012a859ae5e2e8c771144
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0a8017f3c9d553921251c738f5e049a66e6666edf14481893a6fc1564198fb01580bfb40cfbbd49cb68b7da3a92aca30c3db1871d3c75f3f5182e30f1a380944
|
7
|
+
data.tar.gz: d83fa2d10ce47319d1c1fc68ce37c771a2b50f682d67226677dcde1d6b5b795b9a20909da78a8a40c94eaf09e920b4962634245251fd82c5f285e12139345caf
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.607
|
data/lib/v20190924/models.rb
CHANGED
@@ -579,10 +579,12 @@ module TencentCloud
|
|
579
579
|
# @type SyncTag: Boolean
|
580
580
|
# @param EnableCosMAZ: 是否开启Cos桶多AZ特性
|
581
581
|
# @type EnableCosMAZ: Boolean
|
582
|
+
# @param DeletionProtection: 是否开启实例删除保护
|
583
|
+
# @type DeletionProtection: Boolean
|
582
584
|
|
583
|
-
attr_accessor :RegistryName, :RegistryType, :TagSpecification, :RegistryChargeType, :RegistryChargePrepaid, :SyncTag, :EnableCosMAZ
|
585
|
+
attr_accessor :RegistryName, :RegistryType, :TagSpecification, :RegistryChargeType, :RegistryChargePrepaid, :SyncTag, :EnableCosMAZ, :DeletionProtection
|
584
586
|
|
585
|
-
def initialize(registryname=nil, registrytype=nil, tagspecification=nil, registrychargetype=nil, registrychargeprepaid=nil, synctag=nil, enablecosmaz=nil)
|
587
|
+
def initialize(registryname=nil, registrytype=nil, tagspecification=nil, registrychargetype=nil, registrychargeprepaid=nil, synctag=nil, enablecosmaz=nil, deletionprotection=nil)
|
586
588
|
@RegistryName = registryname
|
587
589
|
@RegistryType = registrytype
|
588
590
|
@TagSpecification = tagspecification
|
@@ -590,6 +592,7 @@ module TencentCloud
|
|
590
592
|
@RegistryChargePrepaid = registrychargeprepaid
|
591
593
|
@SyncTag = synctag
|
592
594
|
@EnableCosMAZ = enablecosmaz
|
595
|
+
@DeletionProtection = deletionprotection
|
593
596
|
end
|
594
597
|
|
595
598
|
def deserialize(params)
|
@@ -606,6 +609,7 @@ module TencentCloud
|
|
606
609
|
end
|
607
610
|
@SyncTag = params['SyncTag']
|
608
611
|
@EnableCosMAZ = params['EnableCosMAZ']
|
612
|
+
@DeletionProtection = params['DeletionProtection']
|
609
613
|
end
|
610
614
|
end
|
611
615
|
|
@@ -5123,19 +5127,26 @@ module TencentCloud
|
|
5123
5127
|
class ModifyInstanceRequest < TencentCloud::Common::AbstractModel
|
5124
5128
|
# @param RegistryId: 实例ID
|
5125
5129
|
# @type RegistryId: String
|
5126
|
-
# @param RegistryType:
|
5130
|
+
# @param RegistryType: 实例的规格,
|
5131
|
+
# 基础版:basic
|
5132
|
+
# 标准版:standard
|
5133
|
+
# 高级版:premium
|
5127
5134
|
# @type RegistryType: String
|
5135
|
+
# @param DeletionProtection: 实例删除保护,false为关闭
|
5136
|
+
# @type DeletionProtection: Boolean
|
5128
5137
|
|
5129
|
-
attr_accessor :RegistryId, :RegistryType
|
5138
|
+
attr_accessor :RegistryId, :RegistryType, :DeletionProtection
|
5130
5139
|
|
5131
|
-
def initialize(registryid=nil, registrytype=nil)
|
5140
|
+
def initialize(registryid=nil, registrytype=nil, deletionprotection=nil)
|
5132
5141
|
@RegistryId = registryid
|
5133
5142
|
@RegistryType = registrytype
|
5143
|
+
@DeletionProtection = deletionprotection
|
5134
5144
|
end
|
5135
5145
|
|
5136
5146
|
def deserialize(params)
|
5137
5147
|
@RegistryId = params['RegistryId']
|
5138
5148
|
@RegistryType = params['RegistryType']
|
5149
|
+
@DeletionProtection = params['DeletionProtection']
|
5139
5150
|
end
|
5140
5151
|
end
|
5141
5152
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-tcr
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.607
|
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-07-
|
11
|
+
date: 2023-07-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|