tencentcloud-sdk-dasb 3.0.932 → 3.0.934
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/v20191018/models.rb +32 -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: ee65b96c3e2c2eb8329bb91d7c5c93d8334abcca
|
4
|
+
data.tar.gz: 3760de57243e9f14cf7a6dce69545aa9d6fbff7a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 366c4d94c6c3c650f6b4b074ef26a633b472600493565ab76a39ff816dff82b313b8f868a4c88d597686ea1023703b9fad05816b1dcd018527adc2eddeb4a042
|
7
|
+
data.tar.gz: a19398eaaf09a0dcc58b4c42e08c34f0793e1b06fc5b66d97ec20bb38c20aa84aa1a98722901564d8d181424a6dafa8651b0a6cb4eaea207183a3a64969aa539
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.934
|
data/lib/v20191018/models.rb
CHANGED
@@ -681,19 +681,24 @@ module TencentCloud
|
|
681
681
|
# @type Name: String
|
682
682
|
# @param CmdList: 命令列表,命令之间用换行符("\n")分隔
|
683
683
|
# @type CmdList: String
|
684
|
+
# @param Type: 命令模板类型 1-内置 2-自定义
|
685
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
686
|
+
# @type Type: Integer
|
684
687
|
|
685
|
-
attr_accessor :Id, :Name, :CmdList
|
688
|
+
attr_accessor :Id, :Name, :CmdList, :Type
|
686
689
|
|
687
|
-
def initialize(id=nil, name=nil, cmdlist=nil)
|
690
|
+
def initialize(id=nil, name=nil, cmdlist=nil, type=nil)
|
688
691
|
@Id = id
|
689
692
|
@Name = name
|
690
693
|
@CmdList = cmdlist
|
694
|
+
@Type = type
|
691
695
|
end
|
692
696
|
|
693
697
|
def deserialize(params)
|
694
698
|
@Id = params['Id']
|
695
699
|
@Name = params['Name']
|
696
700
|
@CmdList = params['CmdList']
|
701
|
+
@Type = params['Type']
|
697
702
|
end
|
698
703
|
end
|
699
704
|
|
@@ -1872,10 +1877,12 @@ module TencentCloud
|
|
1872
1877
|
# @type Status: Integer
|
1873
1878
|
# @param DepartmentId: 部门ID,用于过滤属于某个部门的访问权限
|
1874
1879
|
# @type DepartmentId: String
|
1880
|
+
# @param Filters: 过滤数组
|
1881
|
+
# @type Filters: Array
|
1875
1882
|
|
1876
|
-
attr_accessor :IdSet, :Name, :Offset, :Limit, :Exact, :AuthorizedUserIdSet, :AuthorizedDeviceIdSet, :Status, :DepartmentId
|
1883
|
+
attr_accessor :IdSet, :Name, :Offset, :Limit, :Exact, :AuthorizedUserIdSet, :AuthorizedDeviceIdSet, :Status, :DepartmentId, :Filters
|
1877
1884
|
|
1878
|
-
def initialize(idset=nil, name=nil, offset=nil, limit=nil, exact=nil, authorizeduseridset=nil, authorizeddeviceidset=nil, status=nil, departmentid=nil)
|
1885
|
+
def initialize(idset=nil, name=nil, offset=nil, limit=nil, exact=nil, authorizeduseridset=nil, authorizeddeviceidset=nil, status=nil, departmentid=nil, filters=nil)
|
1879
1886
|
@IdSet = idset
|
1880
1887
|
@Name = name
|
1881
1888
|
@Offset = offset
|
@@ -1885,6 +1892,7 @@ module TencentCloud
|
|
1885
1892
|
@AuthorizedDeviceIdSet = authorizeddeviceidset
|
1886
1893
|
@Status = status
|
1887
1894
|
@DepartmentId = departmentid
|
1895
|
+
@Filters = filters
|
1888
1896
|
end
|
1889
1897
|
|
1890
1898
|
def deserialize(params)
|
@@ -1897,6 +1905,14 @@ module TencentCloud
|
|
1897
1905
|
@AuthorizedDeviceIdSet = params['AuthorizedDeviceIdSet']
|
1898
1906
|
@Status = params['Status']
|
1899
1907
|
@DepartmentId = params['DepartmentId']
|
1908
|
+
unless params['Filters'].nil?
|
1909
|
+
@Filters = []
|
1910
|
+
params['Filters'].each do |i|
|
1911
|
+
filter_tmp = Filter.new
|
1912
|
+
filter_tmp.deserialize(i)
|
1913
|
+
@Filters << filter_tmp
|
1914
|
+
end
|
1915
|
+
end
|
1900
1916
|
end
|
1901
1917
|
end
|
1902
1918
|
|
@@ -2115,16 +2131,19 @@ module TencentCloud
|
|
2115
2131
|
# @type IdSet: Array
|
2116
2132
|
# @param Name: 命令模板名,模糊查询,最大长度64字符
|
2117
2133
|
# @type Name: String
|
2134
|
+
# @param Type: 命令模板类型 1-内置模板 2-自定义模板
|
2135
|
+
# @type Type: Integer
|
2118
2136
|
# @param Offset: 分页偏移位置,默认值为0
|
2119
2137
|
# @type Offset: Integer
|
2120
2138
|
# @param Limit: 每页条目数量,默认20
|
2121
2139
|
# @type Limit: Integer
|
2122
2140
|
|
2123
|
-
attr_accessor :IdSet, :Name, :Offset, :Limit
|
2141
|
+
attr_accessor :IdSet, :Name, :Type, :Offset, :Limit
|
2124
2142
|
|
2125
|
-
def initialize(idset=nil, name=nil, offset=nil, limit=nil)
|
2143
|
+
def initialize(idset=nil, name=nil, type=nil, offset=nil, limit=nil)
|
2126
2144
|
@IdSet = idset
|
2127
2145
|
@Name = name
|
2146
|
+
@Type = type
|
2128
2147
|
@Offset = offset
|
2129
2148
|
@Limit = limit
|
2130
2149
|
end
|
@@ -2132,6 +2151,7 @@ module TencentCloud
|
|
2132
2151
|
def deserialize(params)
|
2133
2152
|
@IdSet = params['IdSet']
|
2134
2153
|
@Name = params['Name']
|
2154
|
+
@Type = params['Type']
|
2135
2155
|
@Offset = params['Offset']
|
2136
2156
|
@Limit = params['Limit']
|
2137
2157
|
end
|
@@ -3689,14 +3709,17 @@ module TencentCloud
|
|
3689
3709
|
# @param Encoding: CmdList字段前端是否base64传值。
|
3690
3710
|
# 0:否,1:是
|
3691
3711
|
# @type Encoding: Integer
|
3712
|
+
# @param Type: 命令模板类型 1-内置模板 2-自定义模板
|
3713
|
+
# @type Type: Integer
|
3692
3714
|
|
3693
|
-
attr_accessor :Name, :CmdList, :Id, :Encoding
|
3715
|
+
attr_accessor :Name, :CmdList, :Id, :Encoding, :Type
|
3694
3716
|
|
3695
|
-
def initialize(name=nil, cmdlist=nil, id=nil, encoding=nil)
|
3717
|
+
def initialize(name=nil, cmdlist=nil, id=nil, encoding=nil, type=nil)
|
3696
3718
|
@Name = name
|
3697
3719
|
@CmdList = cmdlist
|
3698
3720
|
@Id = id
|
3699
3721
|
@Encoding = encoding
|
3722
|
+
@Type = type
|
3700
3723
|
end
|
3701
3724
|
|
3702
3725
|
def deserialize(params)
|
@@ -3704,6 +3727,7 @@ module TencentCloud
|
|
3704
3727
|
@CmdList = params['CmdList']
|
3705
3728
|
@Id = params['Id']
|
3706
3729
|
@Encoding = params['Encoding']
|
3730
|
+
@Type = params['Type']
|
3707
3731
|
end
|
3708
3732
|
end
|
3709
3733
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-dasb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.934
|
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-10-
|
11
|
+
date: 2024-10-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|