tencentcloud-sdk-tcss 1.0.266 → 1.0.269

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20201101/models.rb +29 -8
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fdaa1b6e839529dc9a013d6dbbd5a1c14d0ef9cb
4
- data.tar.gz: d4fc12f954d2670beec4cc2f2a84eb2c683a9fe9
3
+ metadata.gz: 84e8ff3c118f5240c5a183279b860918dddfcbb4
4
+ data.tar.gz: 7c967b94a54eaf88f229c00b9beeec99531e7ffc
5
5
  SHA512:
6
- metadata.gz: 52cf7460df974c5050d52bf63c5a1cac1e47acfeb7c6fa0bffa7996aeaeac6d8bedaafbf8ad547968919c35e03ab0be1e638d7449ebabb1186bd19422cc3da30
7
- data.tar.gz: 3d83935235e3b70b7b4fbdd3ac8a4d197eeacac455c3c2568a5084656d054f523e1ad94e1e9bf4cdc14ae91b9918a36986254a2a5203bf5a7cda3abf4897b0cb
6
+ metadata.gz: 317d25edc6514e783054af1d8f1e68915a96c9ad0fe29290fba9531ad77813fb8b4f8a60e581bc347cc9ef63cd5e783250dd660b8002be8b214242fff54fe981
7
+ data.tar.gz: 1c248c963798d6b9b4c8f8984e2c1932895ba2be52c3e5e1aa2dda2bb58874e192985dd1b160dac3cda3ff455494298f3fc26bf6aa92ad6d51706978fb7438ae
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.266
1
+ 1.0.269
@@ -561,10 +561,12 @@ module TencentCloud
561
561
  # @type RegistryRegion: String
562
562
  # @param SpeedLimit: 限速
563
563
  # @type SpeedLimit: Integer
564
+ # @param Insecure: 安全模式(证书校验):0(默认) 非安全模式(跳过证书校验):1
565
+ # @type Insecure: Integer
564
566
 
565
- attr_accessor :Name, :Username, :Password, :Url, :RegistryType, :NetType, :RegistryVersion, :RegistryRegion, :SpeedLimit
567
+ attr_accessor :Name, :Username, :Password, :Url, :RegistryType, :NetType, :RegistryVersion, :RegistryRegion, :SpeedLimit, :Insecure
566
568
 
567
- def initialize(name=nil, username=nil, password=nil, url=nil, registrytype=nil, nettype=nil, registryversion=nil, registryregion=nil, speedlimit=nil)
569
+ def initialize(name=nil, username=nil, password=nil, url=nil, registrytype=nil, nettype=nil, registryversion=nil, registryregion=nil, speedlimit=nil, insecure=nil)
568
570
  @Name = name
569
571
  @Username = username
570
572
  @Password = password
@@ -574,6 +576,7 @@ module TencentCloud
574
576
  @RegistryVersion = registryversion
575
577
  @RegistryRegion = registryregion
576
578
  @SpeedLimit = speedlimit
579
+ @Insecure = insecure
577
580
  end
578
581
 
579
582
  def deserialize(params)
@@ -586,6 +589,7 @@ module TencentCloud
586
589
  @RegistryVersion = params['RegistryVersion']
587
590
  @RegistryRegion = params['RegistryRegion']
588
591
  @SpeedLimit = params['SpeedLimit']
592
+ @Insecure = params['Insecure']
589
593
  end
590
594
  end
591
595
 
@@ -5454,12 +5458,15 @@ module TencentCloud
5454
5458
  # @param SpeedLimit: 限速
5455
5459
  # 注意:此字段可能返回 null,表示取不到有效值。
5456
5460
  # @type SpeedLimit: Integer
5461
+ # @param Insecure: 安全模式(证书校验):0(默认) 非安全模式(跳过证书校验):1
5462
+ # 注意:此字段可能返回 null,表示取不到有效值。
5463
+ # @type Insecure: Integer
5457
5464
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
5458
5465
  # @type RequestId: String
5459
5466
 
5460
- attr_accessor :Name, :Username, :Password, :Url, :RegistryType, :RegistryVersion, :NetType, :RegistryRegion, :SpeedLimit, :RequestId
5467
+ attr_accessor :Name, :Username, :Password, :Url, :RegistryType, :RegistryVersion, :NetType, :RegistryRegion, :SpeedLimit, :Insecure, :RequestId
5461
5468
 
5462
- def initialize(name=nil, username=nil, password=nil, url=nil, registrytype=nil, registryversion=nil, nettype=nil, registryregion=nil, speedlimit=nil, requestid=nil)
5469
+ def initialize(name=nil, username=nil, password=nil, url=nil, registrytype=nil, registryversion=nil, nettype=nil, registryregion=nil, speedlimit=nil, insecure=nil, requestid=nil)
5463
5470
  @Name = name
5464
5471
  @Username = username
5465
5472
  @Password = password
@@ -5469,6 +5476,7 @@ module TencentCloud
5469
5476
  @NetType = nettype
5470
5477
  @RegistryRegion = registryregion
5471
5478
  @SpeedLimit = speedlimit
5479
+ @Insecure = insecure
5472
5480
  @RequestId = requestid
5473
5481
  end
5474
5482
 
@@ -5482,6 +5490,7 @@ module TencentCloud
5482
5490
  @NetType = params['NetType']
5483
5491
  @RegistryRegion = params['RegistryRegion']
5484
5492
  @SpeedLimit = params['SpeedLimit']
5493
+ @Insecure = params['Insecure']
5485
5494
  @RequestId = params['RequestId']
5486
5495
  end
5487
5496
  end
@@ -7806,14 +7815,20 @@ module TencentCloud
7806
7815
  # @type AssetTypeSet: Array
7807
7816
  # @param Filters: 查询过滤器
7808
7817
  # @type Filters: Array
7818
+ # @param By: 排序字段
7819
+ # @type By: String
7820
+ # @param Order: 排序方式 desc asc
7821
+ # @type Order: String
7809
7822
 
7810
- attr_accessor :Offset, :Limit, :AssetTypeSet, :Filters
7823
+ attr_accessor :Offset, :Limit, :AssetTypeSet, :Filters, :By, :Order
7811
7824
 
7812
- def initialize(offset=nil, limit=nil, assettypeset=nil, filters=nil)
7825
+ def initialize(offset=nil, limit=nil, assettypeset=nil, filters=nil, by=nil, order=nil)
7813
7826
  @Offset = offset
7814
7827
  @Limit = limit
7815
7828
  @AssetTypeSet = assettypeset
7816
7829
  @Filters = filters
7830
+ @By = by
7831
+ @Order = order
7817
7832
  end
7818
7833
 
7819
7834
  def deserialize(params)
@@ -7828,6 +7843,8 @@ module TencentCloud
7828
7843
  @Filters << compliancefilters_tmp
7829
7844
  end
7830
7845
  end
7846
+ @By = params['By']
7847
+ @Order = params['Order']
7831
7848
  end
7832
7849
  end
7833
7850
 
@@ -13775,10 +13792,12 @@ module TencentCloud
13775
13792
  # @type RegistryRegion: String
13776
13793
  # @param SpeedLimit: 限速
13777
13794
  # @type SpeedLimit: Integer
13795
+ # @param Insecure: 安全模式(证书校验):0(默认) 非安全模式(跳过证书校验):1
13796
+ # @type Insecure: Integer
13778
13797
 
13779
- attr_accessor :Name, :Username, :Password, :Url, :RegistryType, :NetType, :RegistryVersion, :RegistryRegion, :SpeedLimit
13798
+ attr_accessor :Name, :Username, :Password, :Url, :RegistryType, :NetType, :RegistryVersion, :RegistryRegion, :SpeedLimit, :Insecure
13780
13799
 
13781
- def initialize(name=nil, username=nil, password=nil, url=nil, registrytype=nil, nettype=nil, registryversion=nil, registryregion=nil, speedlimit=nil)
13800
+ def initialize(name=nil, username=nil, password=nil, url=nil, registrytype=nil, nettype=nil, registryversion=nil, registryregion=nil, speedlimit=nil, insecure=nil)
13782
13801
  @Name = name
13783
13802
  @Username = username
13784
13803
  @Password = password
@@ -13788,6 +13807,7 @@ module TencentCloud
13788
13807
  @RegistryVersion = registryversion
13789
13808
  @RegistryRegion = registryregion
13790
13809
  @SpeedLimit = speedlimit
13810
+ @Insecure = insecure
13791
13811
  end
13792
13812
 
13793
13813
  def deserialize(params)
@@ -13800,6 +13820,7 @@ module TencentCloud
13800
13820
  @RegistryVersion = params['RegistryVersion']
13801
13821
  @RegistryRegion = params['RegistryRegion']
13802
13822
  @SpeedLimit = params['SpeedLimit']
13823
+ @Insecure = params['Insecure']
13803
13824
  end
13804
13825
  end
13805
13826
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-tcss
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.266
4
+ version: 1.0.269
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-02-28 00:00:00.000000000 Z
11
+ date: 2022-03-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common