tencentcloud-sdk-cdwdoris 3.0.794 → 3.0.795
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/v20211228/models.rb +83 -10
- 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: 6bae5aebc5a9e93dc7729bb63ca8043c3a6007bd
         | 
| 4 | 
            +
              data.tar.gz: 6751c4b24b41729a53f3f8747500c9ab2b7871b7
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: addca71deacab30e9a1dce65aa43db65e4baa151be5a651d15e207ff95666aa77b5d37cae02e77bd6d3fdad790793e246b8a9ce602ad68b731e25c5408b243cb
         | 
| 7 | 
            +
              data.tar.gz: 9f43608c2a4f5485477666c153b807aba54322208b4ec84cdea9d27245d3e8dfd22394b790540d556b9ede2bdd4c1b8327c1c5dcc109f662b40ed32a13da1d68
         | 
    
        data/lib/VERSION
    CHANGED
    
    | @@ -1 +1 @@ | |
| 1 | 
            -
            3.0. | 
| 1 | 
            +
            3.0.795
         | 
    
        data/lib/v20211228/models.rb
    CHANGED
    
    | @@ -101,8 +101,8 @@ module TencentCloud | |
| 101 101 |  | 
| 102 102 | 
             
                    attr_accessor :FileName, :FileConf, :KeyConf, :OriParam, :NeedRestart, :FilePath, :FileKeyValues, :FileKeyValuesNew
         | 
| 103 103 | 
             
                    extend Gem::Deprecate
         | 
| 104 | 
            -
                    deprecate :FileKeyValues, :none, 2024,  | 
| 105 | 
            -
                    deprecate :FileKeyValues=, :none, 2024,  | 
| 104 | 
            +
                    deprecate :FileKeyValues, :none, 2024, 4
         | 
| 105 | 
            +
                    deprecate :FileKeyValues=, :none, 2024, 4
         | 
| 106 106 |  | 
| 107 107 | 
             
                    def initialize(filename=nil, fileconf=nil, keyconf=nil, oriparam=nil, needrestart=nil, filepath=nil, filekeyvalues=nil, filekeyvaluesnew=nil)
         | 
| 108 108 | 
             
                      @FileName = filename
         | 
| @@ -202,10 +202,14 @@ module TencentCloud | |
| 202 202 | 
             
                    # @type HaType: Integer
         | 
| 203 203 | 
             
                    # @param CaseSensitive: 表名大小写是否敏感,0:敏感;1:不敏感,以小写进行比较;2:不敏感,表名改为以小写存储
         | 
| 204 204 | 
             
                    # @type CaseSensitive: Integer
         | 
| 205 | 
            +
                    # @param EnableMultiZones: 是否开启多可用区
         | 
| 206 | 
            +
                    # @type EnableMultiZones: Boolean
         | 
| 207 | 
            +
                    # @param UserMultiZoneInfos: 开启多可用区后,用户的所有可用区和子网信息
         | 
| 208 | 
            +
                    # @type UserMultiZoneInfos: :class:`Tencentcloud::Cdwdoris.v20211228.models.NetworkInfo`
         | 
| 205 209 |  | 
| 206 | 
            -
                    attr_accessor :Zone, :FeSpec, :BeSpec, :HaFlag, :UserVPCId, :UserSubnetId, :ProductVersion, :ChargeProperties, :InstanceName, :DorisUserPwd, :Tags, :HaType, :CaseSensitive
         | 
| 210 | 
            +
                    attr_accessor :Zone, :FeSpec, :BeSpec, :HaFlag, :UserVPCId, :UserSubnetId, :ProductVersion, :ChargeProperties, :InstanceName, :DorisUserPwd, :Tags, :HaType, :CaseSensitive, :EnableMultiZones, :UserMultiZoneInfos
         | 
| 207 211 |  | 
| 208 | 
            -
                    def initialize(zone=nil, fespec=nil, bespec=nil, haflag=nil, uservpcid=nil, usersubnetid=nil, productversion=nil, chargeproperties=nil, instancename=nil, dorisuserpwd=nil, tags=nil, hatype=nil, casesensitive=nil)
         | 
| 212 | 
            +
                    def initialize(zone=nil, fespec=nil, bespec=nil, haflag=nil, uservpcid=nil, usersubnetid=nil, productversion=nil, chargeproperties=nil, instancename=nil, dorisuserpwd=nil, tags=nil, hatype=nil, casesensitive=nil, enablemultizones=nil, usermultizoneinfos=nil)
         | 
| 209 213 | 
             
                      @Zone = zone
         | 
| 210 214 | 
             
                      @FeSpec = fespec
         | 
| 211 215 | 
             
                      @BeSpec = bespec
         | 
| @@ -219,6 +223,8 @@ module TencentCloud | |
| 219 223 | 
             
                      @Tags = tags
         | 
| 220 224 | 
             
                      @HaType = hatype
         | 
| 221 225 | 
             
                      @CaseSensitive = casesensitive
         | 
| 226 | 
            +
                      @EnableMultiZones = enablemultizones
         | 
| 227 | 
            +
                      @UserMultiZoneInfos = usermultizoneinfos
         | 
| 222 228 | 
             
                    end
         | 
| 223 229 |  | 
| 224 230 | 
             
                    def deserialize(params)
         | 
| @@ -251,6 +257,11 @@ module TencentCloud | |
| 251 257 | 
             
                      end
         | 
| 252 258 | 
             
                      @HaType = params['HaType']
         | 
| 253 259 | 
             
                      @CaseSensitive = params['CaseSensitive']
         | 
| 260 | 
            +
                      @EnableMultiZones = params['EnableMultiZones']
         | 
| 261 | 
            +
                      unless params['UserMultiZoneInfos'].nil?
         | 
| 262 | 
            +
                        @UserMultiZoneInfos = NetworkInfo.new
         | 
| 263 | 
            +
                        @UserMultiZoneInfos.deserialize(params['UserMultiZoneInfos'])
         | 
| 264 | 
            +
                      end
         | 
| 254 265 | 
             
                    end
         | 
| 255 266 | 
             
                  end
         | 
| 256 267 |  | 
| @@ -1260,13 +1271,19 @@ module TencentCloud | |
| 1260 1271 | 
             
                    # @param BindSGs: 已绑定的安全组信息
         | 
| 1261 1272 | 
             
                    # 注意:此字段可能返回 null,表示取不到有效值。
         | 
| 1262 1273 | 
             
                    # @type BindSGs: Array
         | 
| 1274 | 
            +
                    # @param EnableMultiZones: 是否为多可用区
         | 
| 1275 | 
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         | 
| 1276 | 
            +
                    # @type EnableMultiZones: Boolean
         | 
| 1277 | 
            +
                    # @param UserNetworkInfos: 用户可用区和子网信息
         | 
| 1278 | 
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         | 
| 1279 | 
            +
                    # @type UserNetworkInfos: String
         | 
| 1263 1280 |  | 
| 1264 | 
            -
                    attr_accessor :InstanceId, :InstanceName, :Status, :Version, :Region, :Zone, :VpcId, :SubnetId, :PayMode, :CreateTime, :ExpireTime, :MasterSummary, :CoreSummary, :HA, :HaType, :AccessInfo, :Id, :RegionId, :ZoneDesc, :FlowMsg, :StatusDesc, :RenewFlag, :Tags, :Monitor, :HasClsTopic, :ClsTopicId, :ClsLogSetId, :EnableXMLConfig, :RegionDesc, :Eip, :CosMoveFactor, :Kind, :CosBucketName, :CanAttachCbs, :BuildVersion, :Components, :IfExistCatalog, :Characteristic, :RestartTimeout, :GraceShutdownWaitSeconds, :CaseSensitive, :IsWhiteSGs, :BindSGs
         | 
| 1281 | 
            +
                    attr_accessor :InstanceId, :InstanceName, :Status, :Version, :Region, :Zone, :VpcId, :SubnetId, :PayMode, :CreateTime, :ExpireTime, :MasterSummary, :CoreSummary, :HA, :HaType, :AccessInfo, :Id, :RegionId, :ZoneDesc, :FlowMsg, :StatusDesc, :RenewFlag, :Tags, :Monitor, :HasClsTopic, :ClsTopicId, :ClsLogSetId, :EnableXMLConfig, :RegionDesc, :Eip, :CosMoveFactor, :Kind, :CosBucketName, :CanAttachCbs, :BuildVersion, :Components, :IfExistCatalog, :Characteristic, :RestartTimeout, :GraceShutdownWaitSeconds, :CaseSensitive, :IsWhiteSGs, :BindSGs, :EnableMultiZones, :UserNetworkInfos
         | 
| 1265 1282 | 
             
                    extend Gem::Deprecate
         | 
| 1266 | 
            -
                    deprecate :IfExistCatalog, :none, 2024,  | 
| 1267 | 
            -
                    deprecate :IfExistCatalog=, :none, 2024,  | 
| 1283 | 
            +
                    deprecate :IfExistCatalog, :none, 2024, 4
         | 
| 1284 | 
            +
                    deprecate :IfExistCatalog=, :none, 2024, 4
         | 
| 1268 1285 |  | 
| 1269 | 
            -
                    def initialize(instanceid=nil, instancename=nil, status=nil, version=nil, region=nil, zone=nil, vpcid=nil, subnetid=nil, paymode=nil, createtime=nil, expiretime=nil, mastersummary=nil, coresummary=nil, ha=nil, hatype=nil, accessinfo=nil, id=nil, regionid=nil, zonedesc=nil, flowmsg=nil, statusdesc=nil, renewflag=nil, tags=nil, monitor=nil, hasclstopic=nil, clstopicid=nil, clslogsetid=nil, enablexmlconfig=nil, regiondesc=nil, eip=nil, cosmovefactor=nil, kind=nil, cosbucketname=nil, canattachcbs=nil, buildversion=nil, components=nil, ifexistcatalog=nil, characteristic=nil, restarttimeout=nil, graceshutdownwaitseconds=nil, casesensitive=nil, iswhitesgs=nil, bindsgs=nil)
         | 
| 1286 | 
            +
                    def initialize(instanceid=nil, instancename=nil, status=nil, version=nil, region=nil, zone=nil, vpcid=nil, subnetid=nil, paymode=nil, createtime=nil, expiretime=nil, mastersummary=nil, coresummary=nil, ha=nil, hatype=nil, accessinfo=nil, id=nil, regionid=nil, zonedesc=nil, flowmsg=nil, statusdesc=nil, renewflag=nil, tags=nil, monitor=nil, hasclstopic=nil, clstopicid=nil, clslogsetid=nil, enablexmlconfig=nil, regiondesc=nil, eip=nil, cosmovefactor=nil, kind=nil, cosbucketname=nil, canattachcbs=nil, buildversion=nil, components=nil, ifexistcatalog=nil, characteristic=nil, restarttimeout=nil, graceshutdownwaitseconds=nil, casesensitive=nil, iswhitesgs=nil, bindsgs=nil, enablemultizones=nil, usernetworkinfos=nil)
         | 
| 1270 1287 | 
             
                      @InstanceId = instanceid
         | 
| 1271 1288 | 
             
                      @InstanceName = instancename
         | 
| 1272 1289 | 
             
                      @Status = status
         | 
| @@ -1310,6 +1327,8 @@ module TencentCloud | |
| 1310 1327 | 
             
                      @CaseSensitive = casesensitive
         | 
| 1311 1328 | 
             
                      @IsWhiteSGs = iswhitesgs
         | 
| 1312 1329 | 
             
                      @BindSGs = bindsgs
         | 
| 1330 | 
            +
                      @EnableMultiZones = enablemultizones
         | 
| 1331 | 
            +
                      @UserNetworkInfos = usernetworkinfos
         | 
| 1313 1332 | 
             
                    end
         | 
| 1314 1333 |  | 
| 1315 1334 | 
             
                    def deserialize(params)
         | 
| @@ -1369,6 +1388,8 @@ module TencentCloud | |
| 1369 1388 | 
             
                      @CaseSensitive = params['CaseSensitive']
         | 
| 1370 1389 | 
             
                      @IsWhiteSGs = params['IsWhiteSGs']
         | 
| 1371 1390 | 
             
                      @BindSGs = params['BindSGs']
         | 
| 1391 | 
            +
                      @EnableMultiZones = params['EnableMultiZones']
         | 
| 1392 | 
            +
                      @UserNetworkInfos = params['UserNetworkInfos']
         | 
| 1372 1393 | 
             
                    end
         | 
| 1373 1394 | 
             
                  end
         | 
| 1374 1395 |  | 
| @@ -1468,6 +1489,33 @@ module TencentCloud | |
| 1468 1489 | 
             
                    end
         | 
| 1469 1490 | 
             
                  end
         | 
| 1470 1491 |  | 
| 1492 | 
            +
                  # 网络信息
         | 
| 1493 | 
            +
                  class NetworkInfo < TencentCloud::Common::AbstractModel
         | 
| 1494 | 
            +
                    # @param Zone: 可用区
         | 
| 1495 | 
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         | 
| 1496 | 
            +
                    # @type Zone: String
         | 
| 1497 | 
            +
                    # @param SubnetId: 子网id
         | 
| 1498 | 
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         | 
| 1499 | 
            +
                    # @type SubnetId: String
         | 
| 1500 | 
            +
                    # @param SubnetIpNum: 当前子网可用ip数
         | 
| 1501 | 
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         | 
| 1502 | 
            +
                    # @type SubnetIpNum: Integer
         | 
| 1503 | 
            +
             | 
| 1504 | 
            +
                    attr_accessor :Zone, :SubnetId, :SubnetIpNum
         | 
| 1505 | 
            +
             | 
| 1506 | 
            +
                    def initialize(zone=nil, subnetid=nil, subnetipnum=nil)
         | 
| 1507 | 
            +
                      @Zone = zone
         | 
| 1508 | 
            +
                      @SubnetId = subnetid
         | 
| 1509 | 
            +
                      @SubnetIpNum = subnetipnum
         | 
| 1510 | 
            +
                    end
         | 
| 1511 | 
            +
             | 
| 1512 | 
            +
                    def deserialize(params)
         | 
| 1513 | 
            +
                      @Zone = params['Zone']
         | 
| 1514 | 
            +
                      @SubnetId = params['SubnetId']
         | 
| 1515 | 
            +
                      @SubnetIpNum = params['SubnetIpNum']
         | 
| 1516 | 
            +
                    end
         | 
| 1517 | 
            +
                  end
         | 
| 1518 | 
            +
             | 
| 1471 1519 | 
             
                  # NodeInfo
         | 
| 1472 1520 | 
             
                  class NodeInfo < TencentCloud::Common::AbstractModel
         | 
| 1473 1521 | 
             
                    # @param Ip: 用户IP
         | 
| @@ -1476,17 +1524,42 @@ module TencentCloud | |
| 1476 1524 | 
             
                    # @param Status: 节点状态
         | 
| 1477 1525 | 
             
                    # 注意:此字段可能返回 null,表示取不到有效值。
         | 
| 1478 1526 | 
             
                    # @type Status: Integer
         | 
| 1527 | 
            +
                    # @param NodeName: 节点角色名
         | 
| 1528 | 
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         | 
| 1529 | 
            +
                    # @type NodeName: String
         | 
| 1530 | 
            +
                    # @param ComponentName: 组件名
         | 
| 1531 | 
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         | 
| 1532 | 
            +
                    # @type ComponentName: String
         | 
| 1533 | 
            +
                    # @param NodeRole: 节点角色
         | 
| 1534 | 
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         | 
| 1535 | 
            +
                    # @type NodeRole: String
         | 
| 1536 | 
            +
                    # @param LastRestartTime: 节点上次重启的时间
         | 
| 1537 | 
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         | 
| 1538 | 
            +
                    # @type LastRestartTime: String
         | 
| 1539 | 
            +
                    # @param Zone: 节点所在可用区
         | 
| 1540 | 
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         | 
| 1541 | 
            +
                    # @type Zone: String
         | 
| 1479 1542 |  | 
| 1480 | 
            -
                    attr_accessor :Ip, :Status
         | 
| 1543 | 
            +
                    attr_accessor :Ip, :Status, :NodeName, :ComponentName, :NodeRole, :LastRestartTime, :Zone
         | 
| 1481 1544 |  | 
| 1482 | 
            -
                    def initialize(ip=nil, status=nil)
         | 
| 1545 | 
            +
                    def initialize(ip=nil, status=nil, nodename=nil, componentname=nil, noderole=nil, lastrestarttime=nil, zone=nil)
         | 
| 1483 1546 | 
             
                      @Ip = ip
         | 
| 1484 1547 | 
             
                      @Status = status
         | 
| 1548 | 
            +
                      @NodeName = nodename
         | 
| 1549 | 
            +
                      @ComponentName = componentname
         | 
| 1550 | 
            +
                      @NodeRole = noderole
         | 
| 1551 | 
            +
                      @LastRestartTime = lastrestarttime
         | 
| 1552 | 
            +
                      @Zone = zone
         | 
| 1485 1553 | 
             
                    end
         | 
| 1486 1554 |  | 
| 1487 1555 | 
             
                    def deserialize(params)
         | 
| 1488 1556 | 
             
                      @Ip = params['Ip']
         | 
| 1489 1557 | 
             
                      @Status = params['Status']
         | 
| 1558 | 
            +
                      @NodeName = params['NodeName']
         | 
| 1559 | 
            +
                      @ComponentName = params['ComponentName']
         | 
| 1560 | 
            +
                      @NodeRole = params['NodeRole']
         | 
| 1561 | 
            +
                      @LastRestartTime = params['LastRestartTime']
         | 
| 1562 | 
            +
                      @Zone = params['Zone']
         | 
| 1490 1563 | 
             
                    end
         | 
| 1491 1564 | 
             
                  end
         | 
| 1492 1565 |  | 
    
        metadata
    CHANGED
    
    | @@ -1,14 +1,14 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: tencentcloud-sdk-cdwdoris
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 3.0. | 
| 4 | 
            +
              version: 3.0.795
         | 
| 5 5 | 
             
            platform: ruby
         | 
| 6 6 | 
             
            authors:
         | 
| 7 7 | 
             
            - Tencent Cloud
         | 
| 8 8 | 
             
            autorequire: 
         | 
| 9 9 | 
             
            bindir: bin
         | 
| 10 10 | 
             
            cert_chain: []
         | 
| 11 | 
            -
            date: 2024- | 
| 11 | 
            +
            date: 2024-04-01 00:00:00.000000000 Z
         | 
| 12 12 | 
             
            dependencies:
         | 
| 13 13 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 14 14 | 
             
              name: tencentcloud-sdk-common
         |