tencentcloud-sdk-tcss 1.0.267 → 1.0.268
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20201101/models.rb +29 -8
- 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: 63a957af6db18b9cb9885e9f49f91d7030288575
|
4
|
+
data.tar.gz: d52474fd0bb2d8113f073ee003d4b73a79730dfe
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3bbd19cc5b99509a21dd74ca9cb2006d792a866355e345c536fa0dc294b2b57f7f79ffaa3aa6f6bedea076764ae55a140fcba7072a88e0d0d9565b243d7f1ff8
|
7
|
+
data.tar.gz: cd07c725cb86877ae6ace357fe622c11599ccee75f041862adf210ed728990b6daeab0e6c04a8d42c07b4920a026794bd7033d77b541bcef58cae59cb559cb99
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.268
|
data/lib/v20201101/models.rb
CHANGED
@@ -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.
|
4
|
+
version: 1.0.268
|
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-03-
|
11
|
+
date: 2022-03-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|