tencentcloud-sdk-cfw 3.0.713 → 3.0.714
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/v20190904/models.rb +6 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 084ddd1e5328876b02dc9cea0bac5087c2442c0c
|
|
4
|
+
data.tar.gz: 29abece08b4dee756d4759c0fe3d9323e9503fe0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b830607f9dc8cd34f800d715742fc3786bf1d6d925da0c58224a832b956243843afefb1264f73af559ddd6eabb007563a4e064e58c668b0a45830757db733054
|
|
7
|
+
data.tar.gz: 2f340229c3d0dfe0bd7d12b53803bd49aa5034cae22e3e53e2739c7fca983e41f2c57f9a687dd4191e25575ec829c0235e50ec69ede65aa628a8a9ba51d3ae71
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.714
|
data/lib/v20190904/models.rb
CHANGED
|
@@ -3921,17 +3921,21 @@ module TencentCloud
|
|
|
3921
3921
|
# @type QueryType: String
|
|
3922
3922
|
# @param GroupId: 资产组id 全部传0
|
|
3923
3923
|
# @type GroupId: String
|
|
3924
|
+
# @param ShowType: all 包含子组 own自己
|
|
3925
|
+
# @type ShowType: String
|
|
3924
3926
|
|
|
3925
|
-
attr_accessor :QueryType, :GroupId
|
|
3927
|
+
attr_accessor :QueryType, :GroupId, :ShowType
|
|
3926
3928
|
|
|
3927
|
-
def initialize(querytype=nil, groupid=nil)
|
|
3929
|
+
def initialize(querytype=nil, groupid=nil, showtype=nil)
|
|
3928
3930
|
@QueryType = querytype
|
|
3929
3931
|
@GroupId = groupid
|
|
3932
|
+
@ShowType = showtype
|
|
3930
3933
|
end
|
|
3931
3934
|
|
|
3932
3935
|
def deserialize(params)
|
|
3933
3936
|
@QueryType = params['QueryType']
|
|
3934
3937
|
@GroupId = params['GroupId']
|
|
3938
|
+
@ShowType = params['ShowType']
|
|
3935
3939
|
end
|
|
3936
3940
|
end
|
|
3937
3941
|
|