tencentcloud-sdk-dlc 3.0.885 → 3.0.887
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/v20210125/models.rb +60 -7
 - 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: 8e512534a4dc328b0ea5a6098e4d7f17230088a5
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: 7e7ed6eb14e3dae16a49fcd9159715e4d215f3b6
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: 77a748496329341be27166497470c96b3bdf9a8f386f9e024f97570fe883c751a7b7ee1ec0dbe626f1494d6418530821fa8d3e27dce1ad9e96855d8b8ca8fd9f
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: aac5645af1ebec65d0e09a5eccc9e56854407afea247dcab07009929208b5245c0be4f8897a9fbe66c3222b77e4345ced0e865d2cbfbf014992bf7d423f731c7
         
     | 
    
        data/lib/VERSION
    CHANGED
    
    | 
         @@ -1 +1 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            3.0. 
     | 
| 
      
 1 
     | 
    
         
            +
            3.0.887
         
     | 
    
        data/lib/v20210125/models.rb
    CHANGED
    
    | 
         @@ -8969,14 +8969,30 @@ module TencentCloud 
     | 
|
| 
       8969 
8969 
     | 
    
         
             
                    # @type SpaceUsedSize: Float
         
     | 
| 
       8970 
8970 
     | 
    
         
             
                    # @param CreateTimeStamp: 创建时候的时间戳
         
     | 
| 
       8971 
8971 
     | 
    
         
             
                    # @type CreateTimeStamp: Integer
         
     | 
| 
      
 8972 
     | 
    
         
            +
                    # @param DefaultBucket: 是否是用户默认桶,0:默认桶,1:非默认桶
         
     | 
| 
      
 8973 
     | 
    
         
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         
     | 
| 
      
 8974 
     | 
    
         
            +
                    # @type DefaultBucket: Integer
         
     | 
| 
      
 8975 
     | 
    
         
            +
                    # @param ShortName: 托管存储short name
         
     | 
| 
      
 8976 
     | 
    
         
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         
     | 
| 
      
 8977 
     | 
    
         
            +
                    # @type ShortName: String
         
     | 
| 
      
 8978 
     | 
    
         
            +
                    # @param Description: 桶描述信息
         
     | 
| 
      
 8979 
     | 
    
         
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         
     | 
| 
      
 8980 
     | 
    
         
            +
                    # @type Description: String
         
     | 
| 
      
 8981 
     | 
    
         
            +
                    # @param Status: 托管桶状态,当前取值为:creating、bind、readOnly、isolate
         
     | 
| 
      
 8982 
     | 
    
         
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         
     | 
| 
      
 8983 
     | 
    
         
            +
                    # @type Status: String
         
     | 
| 
       8972 
8984 
     | 
    
         | 
| 
       8973 
     | 
    
         
            -
                    attr_accessor :Name, :Type, :SpaceUsedSize, :CreateTimeStamp
         
     | 
| 
      
 8985 
     | 
    
         
            +
                    attr_accessor :Name, :Type, :SpaceUsedSize, :CreateTimeStamp, :DefaultBucket, :ShortName, :Description, :Status
         
     | 
| 
       8974 
8986 
     | 
    
         | 
| 
       8975 
     | 
    
         
            -
                    def initialize(name=nil, type=nil, spaceusedsize=nil, createtimestamp=nil)
         
     | 
| 
      
 8987 
     | 
    
         
            +
                    def initialize(name=nil, type=nil, spaceusedsize=nil, createtimestamp=nil, defaultbucket=nil, shortname=nil, description=nil, status=nil)
         
     | 
| 
       8976 
8988 
     | 
    
         
             
                      @Name = name
         
     | 
| 
       8977 
8989 
     | 
    
         
             
                      @Type = type
         
     | 
| 
       8978 
8990 
     | 
    
         
             
                      @SpaceUsedSize = spaceusedsize
         
     | 
| 
       8979 
8991 
     | 
    
         
             
                      @CreateTimeStamp = createtimestamp
         
     | 
| 
      
 8992 
     | 
    
         
            +
                      @DefaultBucket = defaultbucket
         
     | 
| 
      
 8993 
     | 
    
         
            +
                      @ShortName = shortname
         
     | 
| 
      
 8994 
     | 
    
         
            +
                      @Description = description
         
     | 
| 
      
 8995 
     | 
    
         
            +
                      @Status = status
         
     | 
| 
       8980 
8996 
     | 
    
         
             
                    end
         
     | 
| 
       8981 
8997 
     | 
    
         | 
| 
       8982 
8998 
     | 
    
         
             
                    def deserialize(params)
         
     | 
| 
         @@ -8984,6 +9000,10 @@ module TencentCloud 
     | 
|
| 
       8984 
9000 
     | 
    
         
             
                      @Type = params['Type']
         
     | 
| 
       8985 
9001 
     | 
    
         
             
                      @SpaceUsedSize = params['SpaceUsedSize']
         
     | 
| 
       8986 
9002 
     | 
    
         
             
                      @CreateTimeStamp = params['CreateTimeStamp']
         
     | 
| 
      
 9003 
     | 
    
         
            +
                      @DefaultBucket = params['DefaultBucket']
         
     | 
| 
      
 9004 
     | 
    
         
            +
                      @ShortName = params['ShortName']
         
     | 
| 
      
 9005 
     | 
    
         
            +
                      @Description = params['Description']
         
     | 
| 
      
 9006 
     | 
    
         
            +
                      @Status = params['Status']
         
     | 
| 
       8987 
9007 
     | 
    
         
             
                    end
         
     | 
| 
       8988 
9008 
     | 
    
         
             
                  end
         
     | 
| 
       8989 
9009 
     | 
    
         | 
| 
         @@ -10979,19 +10999,29 @@ module TencentCloud 
     | 
|
| 
       10979 
10999 
     | 
    
         
             
                    # @param DropTable: 是否删表
         
     | 
| 
       10980 
11000 
     | 
    
         
             
                    # 注意:此字段可能返回 null,表示取不到有效值。
         
     | 
| 
       10981 
11001 
     | 
    
         
             
                    # @type DropTable: Boolean
         
     | 
| 
      
 11002 
     | 
    
         
            +
                    # @param ExpiredField: 过期字段
         
     | 
| 
      
 11003 
     | 
    
         
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         
     | 
| 
      
 11004 
     | 
    
         
            +
                    # @type ExpiredField: String
         
     | 
| 
      
 11005 
     | 
    
         
            +
                    # @param ExpiredFieldFormat: 过期字段格式
         
     | 
| 
      
 11006 
     | 
    
         
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         
     | 
| 
      
 11007 
     | 
    
         
            +
                    # @type ExpiredFieldFormat: String
         
     | 
| 
       10982 
11008 
     | 
    
         | 
| 
       10983 
     | 
    
         
            -
                    attr_accessor :LifecycleEnable, :Expiration, :DropTable
         
     | 
| 
      
 11009 
     | 
    
         
            +
                    attr_accessor :LifecycleEnable, :Expiration, :DropTable, :ExpiredField, :ExpiredFieldFormat
         
     | 
| 
       10984 
11010 
     | 
    
         | 
| 
       10985 
     | 
    
         
            -
                    def initialize(lifecycleenable=nil, expiration=nil, droptable=nil)
         
     | 
| 
      
 11011 
     | 
    
         
            +
                    def initialize(lifecycleenable=nil, expiration=nil, droptable=nil, expiredfield=nil, expiredfieldformat=nil)
         
     | 
| 
       10986 
11012 
     | 
    
         
             
                      @LifecycleEnable = lifecycleenable
         
     | 
| 
       10987 
11013 
     | 
    
         
             
                      @Expiration = expiration
         
     | 
| 
       10988 
11014 
     | 
    
         
             
                      @DropTable = droptable
         
     | 
| 
      
 11015 
     | 
    
         
            +
                      @ExpiredField = expiredfield
         
     | 
| 
      
 11016 
     | 
    
         
            +
                      @ExpiredFieldFormat = expiredfieldformat
         
     | 
| 
       10989 
11017 
     | 
    
         
             
                    end
         
     | 
| 
       10990 
11018 
     | 
    
         | 
| 
       10991 
11019 
     | 
    
         
             
                    def deserialize(params)
         
     | 
| 
       10992 
11020 
     | 
    
         
             
                      @LifecycleEnable = params['LifecycleEnable']
         
     | 
| 
       10993 
11021 
     | 
    
         
             
                      @Expiration = params['Expiration']
         
     | 
| 
       10994 
11022 
     | 
    
         
             
                      @DropTable = params['DropTable']
         
     | 
| 
      
 11023 
     | 
    
         
            +
                      @ExpiredField = params['ExpiredField']
         
     | 
| 
      
 11024 
     | 
    
         
            +
                      @ExpiredFieldFormat = params['ExpiredFieldFormat']
         
     | 
| 
       10995 
11025 
     | 
    
         
             
                    end
         
     | 
| 
       10996 
11026 
     | 
    
         
             
                  end
         
     | 
| 
       10997 
11027 
     | 
    
         | 
| 
         @@ -11050,12 +11080,18 @@ module TencentCloud 
     | 
|
| 
       11050 
11080 
     | 
    
         | 
| 
       11051 
11081 
     | 
    
         
             
                  # SmartOptimizerWrittenPolicy
         
     | 
| 
       11052 
11082 
     | 
    
         
             
                  class SmartOptimizerWrittenPolicy < TencentCloud::Common::AbstractModel
         
     | 
| 
      
 11083 
     | 
    
         
            +
                    # @param WrittenEnable: none/enable/disable/default
         
     | 
| 
      
 11084 
     | 
    
         
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         
     | 
| 
      
 11085 
     | 
    
         
            +
                    # @type WrittenEnable: String
         
     | 
| 
       11053 
11086 
     | 
    
         | 
| 
      
 11087 
     | 
    
         
            +
                    attr_accessor :WrittenEnable
         
     | 
| 
       11054 
11088 
     | 
    
         | 
| 
       11055 
     | 
    
         
            -
                    def initialize()
         
     | 
| 
      
 11089 
     | 
    
         
            +
                    def initialize(writtenenable=nil)
         
     | 
| 
      
 11090 
     | 
    
         
            +
                      @WrittenEnable = writtenenable
         
     | 
| 
       11056 
11091 
     | 
    
         
             
                    end
         
     | 
| 
       11057 
11092 
     | 
    
         | 
| 
       11058 
11093 
     | 
    
         
             
                    def deserialize(params)
         
     | 
| 
      
 11094 
     | 
    
         
            +
                      @WrittenEnable = params['WrittenEnable']
         
     | 
| 
       11059 
11095 
     | 
    
         
             
                    end
         
     | 
| 
       11060 
11096 
     | 
    
         
             
                  end
         
     | 
| 
       11061 
11097 
     | 
    
         | 
| 
         @@ -11672,24 +11708,37 @@ module TencentCloud 
     | 
|
| 
       11672 
11708 
     | 
    
         
             
                  # 表字段描述信息
         
     | 
| 
       11673 
11709 
     | 
    
         
             
                  class TColumn < TencentCloud::Common::AbstractModel
         
     | 
| 
       11674 
11710 
     | 
    
         
             
                    # @param Name: 字段名称
         
     | 
| 
      
 11711 
     | 
    
         
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         
     | 
| 
       11675 
11712 
     | 
    
         
             
                    # @type Name: String
         
     | 
| 
       11676 
11713 
     | 
    
         
             
                    # @param Type: 字段类型
         
     | 
| 
      
 11714 
     | 
    
         
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         
     | 
| 
       11677 
11715 
     | 
    
         
             
                    # @type Type: String
         
     | 
| 
       11678 
11716 
     | 
    
         
             
                    # @param Comment: 字段描述
         
     | 
| 
      
 11717 
     | 
    
         
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         
     | 
| 
       11679 
11718 
     | 
    
         
             
                    # @type Comment: String
         
     | 
| 
       11680 
11719 
     | 
    
         
             
                    # @param Default: 字段默认值
         
     | 
| 
      
 11720 
     | 
    
         
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         
     | 
| 
       11681 
11721 
     | 
    
         
             
                    # @type Default: String
         
     | 
| 
       11682 
11722 
     | 
    
         
             
                    # @param NotNull: 字段是否是非空
         
     | 
| 
      
 11723 
     | 
    
         
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         
     | 
| 
       11683 
11724 
     | 
    
         
             
                    # @type NotNull: Boolean
         
     | 
| 
       11684 
11725 
     | 
    
         
             
                    # @param Precision: 表示整个 numeric 的长度,取值1-38
         
     | 
| 
      
 11726 
     | 
    
         
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         
     | 
| 
       11685 
11727 
     | 
    
         
             
                    # @type Precision: Integer
         
     | 
| 
       11686 
11728 
     | 
    
         
             
                    # @param Scale: 表示小数部分的长度
         
     | 
| 
       11687 
11729 
     | 
    
         
             
                    # Scale小于Precision
         
     | 
| 
      
 11730 
     | 
    
         
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         
     | 
| 
       11688 
11731 
     | 
    
         
             
                    # @type Scale: Integer
         
     | 
| 
      
 11732 
     | 
    
         
            +
                    # @param Position: 字段位置,小的在前
         
     | 
| 
      
 11733 
     | 
    
         
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         
     | 
| 
      
 11734 
     | 
    
         
            +
                    # @type Position: Integer
         
     | 
| 
      
 11735 
     | 
    
         
            +
                    # @param IsPartition: 是否为分区字段
         
     | 
| 
      
 11736 
     | 
    
         
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         
     | 
| 
      
 11737 
     | 
    
         
            +
                    # @type IsPartition: Boolean
         
     | 
| 
       11689 
11738 
     | 
    
         | 
| 
       11690 
     | 
    
         
            -
                    attr_accessor :Name, :Type, :Comment, :Default, :NotNull, :Precision, :Scale
         
     | 
| 
      
 11739 
     | 
    
         
            +
                    attr_accessor :Name, :Type, :Comment, :Default, :NotNull, :Precision, :Scale, :Position, :IsPartition
         
     | 
| 
       11691 
11740 
     | 
    
         | 
| 
       11692 
     | 
    
         
            -
                    def initialize(name=nil, type=nil, comment=nil, default=nil, notnull=nil, precision=nil, scale=nil)
         
     | 
| 
      
 11741 
     | 
    
         
            +
                    def initialize(name=nil, type=nil, comment=nil, default=nil, notnull=nil, precision=nil, scale=nil, position=nil, ispartition=nil)
         
     | 
| 
       11693 
11742 
     | 
    
         
             
                      @Name = name
         
     | 
| 
       11694 
11743 
     | 
    
         
             
                      @Type = type
         
     | 
| 
       11695 
11744 
     | 
    
         
             
                      @Comment = comment
         
     | 
| 
         @@ -11697,6 +11746,8 @@ module TencentCloud 
     | 
|
| 
       11697 
11746 
     | 
    
         
             
                      @NotNull = notnull
         
     | 
| 
       11698 
11747 
     | 
    
         
             
                      @Precision = precision
         
     | 
| 
       11699 
11748 
     | 
    
         
             
                      @Scale = scale
         
     | 
| 
      
 11749 
     | 
    
         
            +
                      @Position = position
         
     | 
| 
      
 11750 
     | 
    
         
            +
                      @IsPartition = ispartition
         
     | 
| 
       11700 
11751 
     | 
    
         
             
                    end
         
     | 
| 
       11701 
11752 
     | 
    
         | 
| 
       11702 
11753 
     | 
    
         
             
                    def deserialize(params)
         
     | 
| 
         @@ -11707,6 +11758,8 @@ module TencentCloud 
     | 
|
| 
       11707 
11758 
     | 
    
         
             
                      @NotNull = params['NotNull']
         
     | 
| 
       11708 
11759 
     | 
    
         
             
                      @Precision = params['Precision']
         
     | 
| 
       11709 
11760 
     | 
    
         
             
                      @Scale = params['Scale']
         
     | 
| 
      
 11761 
     | 
    
         
            +
                      @Position = params['Position']
         
     | 
| 
      
 11762 
     | 
    
         
            +
                      @IsPartition = params['IsPartition']
         
     | 
| 
       11710 
11763 
     | 
    
         
             
                    end
         
     | 
| 
       11711 
11764 
     | 
    
         
             
                  end
         
     | 
| 
       11712 
11765 
     | 
    
         | 
    
        metadata
    CHANGED
    
    | 
         @@ -1,14 +1,14 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: tencentcloud-sdk-dlc
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version
         
     | 
| 
       4 
     | 
    
         
            -
              version: 3.0. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 3.0.887
         
     | 
| 
       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-08- 
     | 
| 
      
 11 
     | 
    
         
            +
            date: 2024-08-16 00:00:00.000000000 Z
         
     | 
| 
       12 
12 
     | 
    
         
             
            dependencies:
         
     | 
| 
       13 
13 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       14 
14 
     | 
    
         
             
              name: tencentcloud-sdk-common
         
     |