tencentcloud-sdk-nodejs-intl-en 3.0.1201 → 3.0.1203
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.
- package/package.json +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/csip/v20221121/csip_client.js +55 -12
- package/tencentcloud/csip/v20221121/models.js +1533 -602
- package/tencentcloud/intlpartnersmgt/v20220928/intlpartnersmgt_client.js +14 -0
- package/tencentcloud/intlpartnersmgt/v20220928/models.js +78 -5
- package/tencentcloud/ocr/v20181119/models.js +171 -1
- package/tencentcloud/ocr/v20181119/ocr_client.js +13 -0
- package/tencentcloud/sqlserver/v20180328/models.js +27 -13
- package/tencentcloud/sqlserver/v20180328/sqlserver_client.js +1 -1
|
@@ -352,6 +352,53 @@ class TaskCenterWeakPwdRiskInputParam extends AbstractModel {
|
|
|
352
352
|
}
|
|
353
353
|
}
|
|
354
354
|
|
|
355
|
+
/**
|
|
356
|
+
* DescribeOrganizationUserInfo request structure.
|
|
357
|
+
* @class
|
|
358
|
+
*/
|
|
359
|
+
class DescribeOrganizationUserInfoRequest extends AbstractModel {
|
|
360
|
+
constructor(){
|
|
361
|
+
super();
|
|
362
|
+
|
|
363
|
+
/**
|
|
364
|
+
* Member ID of the group account
|
|
365
|
+
* @type {Array.<string> || null}
|
|
366
|
+
*/
|
|
367
|
+
this.MemberId = null;
|
|
368
|
+
|
|
369
|
+
/**
|
|
370
|
+
* Filter content
|
|
371
|
+
* @type {Filter || null}
|
|
372
|
+
*/
|
|
373
|
+
this.Filter = null;
|
|
374
|
+
|
|
375
|
+
/**
|
|
376
|
+
* No support for multi-cloud
|
|
377
|
+
* @type {boolean || null}
|
|
378
|
+
*/
|
|
379
|
+
this.NotSupportCloud = null;
|
|
380
|
+
|
|
381
|
+
}
|
|
382
|
+
|
|
383
|
+
/**
|
|
384
|
+
* @private
|
|
385
|
+
*/
|
|
386
|
+
deserialize(params) {
|
|
387
|
+
if (!params) {
|
|
388
|
+
return;
|
|
389
|
+
}
|
|
390
|
+
this.MemberId = 'MemberId' in params ? params.MemberId : null;
|
|
391
|
+
|
|
392
|
+
if (params.Filter) {
|
|
393
|
+
let obj = new Filter();
|
|
394
|
+
obj.deserialize(params.Filter)
|
|
395
|
+
this.Filter = obj;
|
|
396
|
+
}
|
|
397
|
+
this.NotSupportCloud = 'NotSupportCloud' in params ? params.NotSupportCloud : null;
|
|
398
|
+
|
|
399
|
+
}
|
|
400
|
+
}
|
|
401
|
+
|
|
355
402
|
/**
|
|
356
403
|
* ModifyRiskCenterRiskStatus request structure.
|
|
357
404
|
* @class
|
|
@@ -1813,26 +1860,156 @@ Note: This field may return·null, indicating that no valid values can be obtain
|
|
|
1813
1860
|
}
|
|
1814
1861
|
|
|
1815
1862
|
/**
|
|
1816
|
-
*
|
|
1863
|
+
*
|
|
1817
1864
|
* @class
|
|
1818
1865
|
*/
|
|
1819
|
-
class
|
|
1866
|
+
class OrganizationUserInfo extends AbstractModel {
|
|
1820
1867
|
constructor(){
|
|
1821
1868
|
super();
|
|
1822
1869
|
|
|
1823
1870
|
/**
|
|
1824
|
-
*
|
|
1825
|
-
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
1871
|
+
*
|
|
1826
1872
|
* @type {string || null}
|
|
1827
1873
|
*/
|
|
1828
|
-
this.
|
|
1874
|
+
this.Uin = null;
|
|
1829
1875
|
|
|
1830
1876
|
/**
|
|
1831
|
-
*
|
|
1832
|
-
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
1877
|
+
*
|
|
1833
1878
|
* @type {string || null}
|
|
1834
1879
|
*/
|
|
1835
|
-
this.
|
|
1880
|
+
this.NickName = null;
|
|
1881
|
+
|
|
1882
|
+
/**
|
|
1883
|
+
*
|
|
1884
|
+
* @type {string || null}
|
|
1885
|
+
*/
|
|
1886
|
+
this.NodeName = null;
|
|
1887
|
+
|
|
1888
|
+
/**
|
|
1889
|
+
*
|
|
1890
|
+
* @type {number || null}
|
|
1891
|
+
*/
|
|
1892
|
+
this.AssetCount = null;
|
|
1893
|
+
|
|
1894
|
+
/**
|
|
1895
|
+
*
|
|
1896
|
+
* @type {number || null}
|
|
1897
|
+
*/
|
|
1898
|
+
this.RiskCount = null;
|
|
1899
|
+
|
|
1900
|
+
/**
|
|
1901
|
+
*
|
|
1902
|
+
* @type {number || null}
|
|
1903
|
+
*/
|
|
1904
|
+
this.AttackCount = null;
|
|
1905
|
+
|
|
1906
|
+
/**
|
|
1907
|
+
*
|
|
1908
|
+
* @type {string || null}
|
|
1909
|
+
*/
|
|
1910
|
+
this.Role = null;
|
|
1911
|
+
|
|
1912
|
+
/**
|
|
1913
|
+
*
|
|
1914
|
+
* @type {string || null}
|
|
1915
|
+
*/
|
|
1916
|
+
this.MemberId = null;
|
|
1917
|
+
|
|
1918
|
+
/**
|
|
1919
|
+
*
|
|
1920
|
+
* @type {string || null}
|
|
1921
|
+
*/
|
|
1922
|
+
this.AppId = null;
|
|
1923
|
+
|
|
1924
|
+
/**
|
|
1925
|
+
*
|
|
1926
|
+
* @type {string || null}
|
|
1927
|
+
*/
|
|
1928
|
+
this.JoinType = null;
|
|
1929
|
+
|
|
1930
|
+
/**
|
|
1931
|
+
*
|
|
1932
|
+
* @type {string || null}
|
|
1933
|
+
*/
|
|
1934
|
+
this.CFWProtect = null;
|
|
1935
|
+
|
|
1936
|
+
/**
|
|
1937
|
+
*
|
|
1938
|
+
* @type {string || null}
|
|
1939
|
+
*/
|
|
1940
|
+
this.WAFProtect = null;
|
|
1941
|
+
|
|
1942
|
+
/**
|
|
1943
|
+
*
|
|
1944
|
+
* @type {string || null}
|
|
1945
|
+
*/
|
|
1946
|
+
this.CWPProtect = null;
|
|
1947
|
+
|
|
1948
|
+
/**
|
|
1949
|
+
*
|
|
1950
|
+
* @type {number || null}
|
|
1951
|
+
*/
|
|
1952
|
+
this.Enable = null;
|
|
1953
|
+
|
|
1954
|
+
/**
|
|
1955
|
+
*
|
|
1956
|
+
* @type {string || null}
|
|
1957
|
+
*/
|
|
1958
|
+
this.CSIPProtect = null;
|
|
1959
|
+
|
|
1960
|
+
/**
|
|
1961
|
+
*
|
|
1962
|
+
* @type {number || null}
|
|
1963
|
+
*/
|
|
1964
|
+
this.QuotaConsumer = null;
|
|
1965
|
+
|
|
1966
|
+
/**
|
|
1967
|
+
*
|
|
1968
|
+
* @type {number || null}
|
|
1969
|
+
*/
|
|
1970
|
+
this.CloudType = null;
|
|
1971
|
+
|
|
1972
|
+
/**
|
|
1973
|
+
*
|
|
1974
|
+
* @type {number || null}
|
|
1975
|
+
*/
|
|
1976
|
+
this.SyncFrequency = null;
|
|
1977
|
+
|
|
1978
|
+
/**
|
|
1979
|
+
*
|
|
1980
|
+
* @type {boolean || null}
|
|
1981
|
+
*/
|
|
1982
|
+
this.IsExpired = null;
|
|
1983
|
+
|
|
1984
|
+
/**
|
|
1985
|
+
*
|
|
1986
|
+
* @type {Array.<string> || null}
|
|
1987
|
+
*/
|
|
1988
|
+
this.PermissionList = null;
|
|
1989
|
+
|
|
1990
|
+
/**
|
|
1991
|
+
* 1
|
|
1992
|
+
* @type {number || null}
|
|
1993
|
+
*/
|
|
1994
|
+
this.AuthType = null;
|
|
1995
|
+
|
|
1996
|
+
/**
|
|
1997
|
+
*
|
|
1998
|
+
* @type {number || null}
|
|
1999
|
+
*/
|
|
2000
|
+
this.TcMemberType = null;
|
|
2001
|
+
|
|
2002
|
+
/**
|
|
2003
|
+
*
|
|
2004
|
+
* @type {number || null}
|
|
2005
|
+
*/
|
|
2006
|
+
this.SubUserCount = null;
|
|
2007
|
+
|
|
2008
|
+
/**
|
|
2009
|
+
*
|
|
2010
|
+
* @type {string || null}
|
|
2011
|
+
*/
|
|
2012
|
+
this.JoinTypeInfo = null;
|
|
1836
2013
|
|
|
1837
2014
|
}
|
|
1838
2015
|
|
|
@@ -1843,43 +2020,55 @@ Note: This field may return·null, indicating that no valid values can be obtain
|
|
|
1843
2020
|
if (!params) {
|
|
1844
2021
|
return;
|
|
1845
2022
|
}
|
|
1846
|
-
this.
|
|
1847
|
-
this.
|
|
2023
|
+
this.Uin = 'Uin' in params ? params.Uin : null;
|
|
2024
|
+
this.NickName = 'NickName' in params ? params.NickName : null;
|
|
2025
|
+
this.NodeName = 'NodeName' in params ? params.NodeName : null;
|
|
2026
|
+
this.AssetCount = 'AssetCount' in params ? params.AssetCount : null;
|
|
2027
|
+
this.RiskCount = 'RiskCount' in params ? params.RiskCount : null;
|
|
2028
|
+
this.AttackCount = 'AttackCount' in params ? params.AttackCount : null;
|
|
2029
|
+
this.Role = 'Role' in params ? params.Role : null;
|
|
2030
|
+
this.MemberId = 'MemberId' in params ? params.MemberId : null;
|
|
2031
|
+
this.AppId = 'AppId' in params ? params.AppId : null;
|
|
2032
|
+
this.JoinType = 'JoinType' in params ? params.JoinType : null;
|
|
2033
|
+
this.CFWProtect = 'CFWProtect' in params ? params.CFWProtect : null;
|
|
2034
|
+
this.WAFProtect = 'WAFProtect' in params ? params.WAFProtect : null;
|
|
2035
|
+
this.CWPProtect = 'CWPProtect' in params ? params.CWPProtect : null;
|
|
2036
|
+
this.Enable = 'Enable' in params ? params.Enable : null;
|
|
2037
|
+
this.CSIPProtect = 'CSIPProtect' in params ? params.CSIPProtect : null;
|
|
2038
|
+
this.QuotaConsumer = 'QuotaConsumer' in params ? params.QuotaConsumer : null;
|
|
2039
|
+
this.CloudType = 'CloudType' in params ? params.CloudType : null;
|
|
2040
|
+
this.SyncFrequency = 'SyncFrequency' in params ? params.SyncFrequency : null;
|
|
2041
|
+
this.IsExpired = 'IsExpired' in params ? params.IsExpired : null;
|
|
2042
|
+
this.PermissionList = 'PermissionList' in params ? params.PermissionList : null;
|
|
2043
|
+
this.AuthType = 'AuthType' in params ? params.AuthType : null;
|
|
2044
|
+
this.TcMemberType = 'TcMemberType' in params ? params.TcMemberType : null;
|
|
2045
|
+
this.SubUserCount = 'SubUserCount' in params ? params.SubUserCount : null;
|
|
2046
|
+
this.JoinTypeInfo = 'JoinTypeInfo' in params ? params.JoinTypeInfo : null;
|
|
1848
2047
|
|
|
1849
2048
|
}
|
|
1850
2049
|
}
|
|
1851
2050
|
|
|
1852
2051
|
/**
|
|
1853
|
-
*
|
|
2052
|
+
* Asset tags
|
|
1854
2053
|
* @class
|
|
1855
2054
|
*/
|
|
1856
|
-
class
|
|
2055
|
+
class AssetTag extends AbstractModel {
|
|
1857
2056
|
constructor(){
|
|
1858
2057
|
super();
|
|
1859
2058
|
|
|
1860
2059
|
/**
|
|
1861
|
-
*
|
|
1862
|
-
|
|
1863
|
-
*/
|
|
1864
|
-
this.Id = null;
|
|
1865
|
-
|
|
1866
|
-
/**
|
|
1867
|
-
* User AppId
|
|
1868
|
-
* @type {string || null}
|
|
1869
|
-
*/
|
|
1870
|
-
this.AppId = null;
|
|
1871
|
-
|
|
1872
|
-
/**
|
|
1873
|
-
* Public IP/domain name
|
|
2060
|
+
* Tag key. It supports alphanumeric characters and underscores (_).
|
|
2061
|
+
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
1874
2062
|
* @type {string || null}
|
|
1875
2063
|
*/
|
|
1876
|
-
this.
|
|
2064
|
+
this.TagKey = null;
|
|
1877
2065
|
|
|
1878
2066
|
/**
|
|
1879
|
-
*
|
|
2067
|
+
* Tag value. It supports alphanumeric characters and underscores (_).
|
|
2068
|
+
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
1880
2069
|
* @type {string || null}
|
|
1881
2070
|
*/
|
|
1882
|
-
this.
|
|
2071
|
+
this.TagValue = null;
|
|
1883
2072
|
|
|
1884
2073
|
}
|
|
1885
2074
|
|
|
@@ -1890,10 +2079,8 @@ class RiskCenterStatusKey extends AbstractModel {
|
|
|
1890
2079
|
if (!params) {
|
|
1891
2080
|
return;
|
|
1892
2081
|
}
|
|
1893
|
-
this.
|
|
1894
|
-
this.
|
|
1895
|
-
this.PublicIPDomain = 'PublicIPDomain' in params ? params.PublicIPDomain : null;
|
|
1896
|
-
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
2082
|
+
this.TagKey = 'TagKey' in params ? params.TagKey : null;
|
|
2083
|
+
this.TagValue = 'TagValue' in params ? params.TagValue : null;
|
|
1897
2084
|
|
|
1898
2085
|
}
|
|
1899
2086
|
}
|
|
@@ -2070,46 +2257,202 @@ class Tag extends AbstractModel {
|
|
|
2070
2257
|
}
|
|
2071
2258
|
|
|
2072
2259
|
/**
|
|
2073
|
-
*
|
|
2260
|
+
* Details of a content risk
|
|
2074
2261
|
* @class
|
|
2075
2262
|
*/
|
|
2076
|
-
class
|
|
2263
|
+
class WebsiteRisk extends AbstractModel {
|
|
2077
2264
|
constructor(){
|
|
2078
2265
|
super();
|
|
2079
2266
|
|
|
2080
2267
|
/**
|
|
2081
|
-
*
|
|
2082
|
-
* @type {
|
|
2268
|
+
* Affected assets
|
|
2269
|
+
* @type {string || null}
|
|
2083
2270
|
*/
|
|
2084
|
-
this.
|
|
2271
|
+
this.AffectAsset = null;
|
|
2085
2272
|
|
|
2086
2273
|
/**
|
|
2087
|
-
*
|
|
2088
|
-
* @type {
|
|
2274
|
+
* Risk level
|
|
2275
|
+
* @type {string || null}
|
|
2089
2276
|
*/
|
|
2090
|
-
this.
|
|
2277
|
+
this.Level = null;
|
|
2091
2278
|
|
|
2092
2279
|
/**
|
|
2093
|
-
*
|
|
2280
|
+
* Last detected
|
|
2281
|
+
* @type {string || null}
|
|
2282
|
+
*/
|
|
2283
|
+
this.RecentTime = null;
|
|
2284
|
+
|
|
2285
|
+
/**
|
|
2286
|
+
* First detected
|
|
2287
|
+
* @type {string || null}
|
|
2288
|
+
*/
|
|
2289
|
+
this.FirstTime = null;
|
|
2290
|
+
|
|
2291
|
+
/**
|
|
2292
|
+
* Status of the risk. `0`: Not handled, `1`: Handled; `2`: Ignored
|
|
2094
2293
|
* @type {number || null}
|
|
2095
2294
|
*/
|
|
2096
|
-
this.
|
|
2295
|
+
this.Status = null;
|
|
2097
2296
|
|
|
2098
2297
|
/**
|
|
2099
|
-
*
|
|
2100
|
-
* @type {
|
|
2298
|
+
* Unique ID of the asset
|
|
2299
|
+
* @type {string || null}
|
|
2101
2300
|
*/
|
|
2102
|
-
this.
|
|
2301
|
+
this.Id = null;
|
|
2103
2302
|
|
|
2104
2303
|
/**
|
|
2105
|
-
*
|
|
2304
|
+
* Frontend index
|
|
2106
2305
|
* @type {string || null}
|
|
2107
2306
|
*/
|
|
2108
|
-
this.
|
|
2307
|
+
this.Index = null;
|
|
2109
2308
|
|
|
2110
|
-
|
|
2309
|
+
/**
|
|
2310
|
+
* Instance ID
|
|
2311
|
+
* @type {string || null}
|
|
2312
|
+
*/
|
|
2313
|
+
this.InstanceId = null;
|
|
2111
2314
|
|
|
2112
|
-
|
|
2315
|
+
/**
|
|
2316
|
+
* Instance name
|
|
2317
|
+
* @type {string || null}
|
|
2318
|
+
*/
|
|
2319
|
+
this.InstanceName = null;
|
|
2320
|
+
|
|
2321
|
+
/**
|
|
2322
|
+
* User `appid`
|
|
2323
|
+
* @type {string || null}
|
|
2324
|
+
*/
|
|
2325
|
+
this.AppId = null;
|
|
2326
|
+
|
|
2327
|
+
/**
|
|
2328
|
+
* User name.
|
|
2329
|
+
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
2330
|
+
* @type {string || null}
|
|
2331
|
+
*/
|
|
2332
|
+
this.Nick = null;
|
|
2333
|
+
|
|
2334
|
+
/**
|
|
2335
|
+
* User `uin`
|
|
2336
|
+
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
2337
|
+
* @type {string || null}
|
|
2338
|
+
*/
|
|
2339
|
+
this.Uin = null;
|
|
2340
|
+
|
|
2341
|
+
/**
|
|
2342
|
+
* URL of the risk
|
|
2343
|
+
* @type {string || null}
|
|
2344
|
+
*/
|
|
2345
|
+
this.URL = null;
|
|
2346
|
+
|
|
2347
|
+
/**
|
|
2348
|
+
* URL of the risk file
|
|
2349
|
+
* @type {string || null}
|
|
2350
|
+
*/
|
|
2351
|
+
this.URLPath = null;
|
|
2352
|
+
|
|
2353
|
+
/**
|
|
2354
|
+
* Instance type
|
|
2355
|
+
* @type {string || null}
|
|
2356
|
+
*/
|
|
2357
|
+
this.InstanceType = null;
|
|
2358
|
+
|
|
2359
|
+
/**
|
|
2360
|
+
* Check type.
|
|
2361
|
+
* @type {string || null}
|
|
2362
|
+
*/
|
|
2363
|
+
this.DetectEngine = null;
|
|
2364
|
+
|
|
2365
|
+
/**
|
|
2366
|
+
* Result description.
|
|
2367
|
+
* @type {string || null}
|
|
2368
|
+
*/
|
|
2369
|
+
this.ResultDescribe = null;
|
|
2370
|
+
|
|
2371
|
+
/**
|
|
2372
|
+
* Source URL
|
|
2373
|
+
* @type {string || null}
|
|
2374
|
+
*/
|
|
2375
|
+
this.SourceURL = null;
|
|
2376
|
+
|
|
2377
|
+
/**
|
|
2378
|
+
* Source file URL
|
|
2379
|
+
* @type {string || null}
|
|
2380
|
+
*/
|
|
2381
|
+
this.SourceURLPath = null;
|
|
2382
|
+
|
|
2383
|
+
}
|
|
2384
|
+
|
|
2385
|
+
/**
|
|
2386
|
+
* @private
|
|
2387
|
+
*/
|
|
2388
|
+
deserialize(params) {
|
|
2389
|
+
if (!params) {
|
|
2390
|
+
return;
|
|
2391
|
+
}
|
|
2392
|
+
this.AffectAsset = 'AffectAsset' in params ? params.AffectAsset : null;
|
|
2393
|
+
this.Level = 'Level' in params ? params.Level : null;
|
|
2394
|
+
this.RecentTime = 'RecentTime' in params ? params.RecentTime : null;
|
|
2395
|
+
this.FirstTime = 'FirstTime' in params ? params.FirstTime : null;
|
|
2396
|
+
this.Status = 'Status' in params ? params.Status : null;
|
|
2397
|
+
this.Id = 'Id' in params ? params.Id : null;
|
|
2398
|
+
this.Index = 'Index' in params ? params.Index : null;
|
|
2399
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
2400
|
+
this.InstanceName = 'InstanceName' in params ? params.InstanceName : null;
|
|
2401
|
+
this.AppId = 'AppId' in params ? params.AppId : null;
|
|
2402
|
+
this.Nick = 'Nick' in params ? params.Nick : null;
|
|
2403
|
+
this.Uin = 'Uin' in params ? params.Uin : null;
|
|
2404
|
+
this.URL = 'URL' in params ? params.URL : null;
|
|
2405
|
+
this.URLPath = 'URLPath' in params ? params.URLPath : null;
|
|
2406
|
+
this.InstanceType = 'InstanceType' in params ? params.InstanceType : null;
|
|
2407
|
+
this.DetectEngine = 'DetectEngine' in params ? params.DetectEngine : null;
|
|
2408
|
+
this.ResultDescribe = 'ResultDescribe' in params ? params.ResultDescribe : null;
|
|
2409
|
+
this.SourceURL = 'SourceURL' in params ? params.SourceURL : null;
|
|
2410
|
+
this.SourceURLPath = 'SourceURLPath' in params ? params.SourceURLPath : null;
|
|
2411
|
+
|
|
2412
|
+
}
|
|
2413
|
+
}
|
|
2414
|
+
|
|
2415
|
+
/**
|
|
2416
|
+
* DeleteDomainAndIp request structure.
|
|
2417
|
+
* @class
|
|
2418
|
+
*/
|
|
2419
|
+
class DeleteDomainAndIpRequest extends AbstractModel {
|
|
2420
|
+
constructor(){
|
|
2421
|
+
super();
|
|
2422
|
+
|
|
2423
|
+
/**
|
|
2424
|
+
* u200c-
|
|
2425
|
+
* @type {Array.<PublicIpDomainListKey> || null}
|
|
2426
|
+
*/
|
|
2427
|
+
this.Content = null;
|
|
2428
|
+
|
|
2429
|
+
/**
|
|
2430
|
+
* Whether to retain the path configuration. `1`: Retain; Others: Do not retain. It defaults to do not retain if not specified.
|
|
2431
|
+
* @type {number || null}
|
|
2432
|
+
*/
|
|
2433
|
+
this.RetainPath = null;
|
|
2434
|
+
|
|
2435
|
+
/**
|
|
2436
|
+
* Whether to ignore this asset in the future. `1`: Ignore; Others: Do not ignore. It defaults to ignore if not specified.
|
|
2437
|
+
* @type {number || null}
|
|
2438
|
+
*/
|
|
2439
|
+
this.IgnoreAsset = null;
|
|
2440
|
+
|
|
2441
|
+
/**
|
|
2442
|
+
* Asset tags
|
|
2443
|
+
* @type {Array.<AssetTag> || null}
|
|
2444
|
+
*/
|
|
2445
|
+
this.Tags = null;
|
|
2446
|
+
|
|
2447
|
+
/**
|
|
2448
|
+
* Deletion mode. Values: `ALL` (delete all). If it's not specified, `Content` is required.
|
|
2449
|
+
* @type {string || null}
|
|
2450
|
+
*/
|
|
2451
|
+
this.Type = null;
|
|
2452
|
+
|
|
2453
|
+
}
|
|
2454
|
+
|
|
2455
|
+
/**
|
|
2113
2456
|
* @private
|
|
2114
2457
|
*/
|
|
2115
2458
|
deserialize(params) {
|
|
@@ -2189,6 +2532,34 @@ class DescribeScanTaskListRequest extends AbstractModel {
|
|
|
2189
2532
|
}
|
|
2190
2533
|
}
|
|
2191
2534
|
|
|
2535
|
+
/**
|
|
2536
|
+
* DescribeOrganizationInfo request structure.
|
|
2537
|
+
* @class
|
|
2538
|
+
*/
|
|
2539
|
+
class DescribeOrganizationInfoRequest extends AbstractModel {
|
|
2540
|
+
constructor(){
|
|
2541
|
+
super();
|
|
2542
|
+
|
|
2543
|
+
/**
|
|
2544
|
+
* Member ID of the group account
|
|
2545
|
+
* @type {Array.<string> || null}
|
|
2546
|
+
*/
|
|
2547
|
+
this.MemberId = null;
|
|
2548
|
+
|
|
2549
|
+
}
|
|
2550
|
+
|
|
2551
|
+
/**
|
|
2552
|
+
* @private
|
|
2553
|
+
*/
|
|
2554
|
+
deserialize(params) {
|
|
2555
|
+
if (!params) {
|
|
2556
|
+
return;
|
|
2557
|
+
}
|
|
2558
|
+
this.MemberId = 'MemberId' in params ? params.MemberId : null;
|
|
2559
|
+
|
|
2560
|
+
}
|
|
2561
|
+
}
|
|
2562
|
+
|
|
2192
2563
|
/**
|
|
2193
2564
|
* List of task IDs
|
|
2194
2565
|
* @class
|
|
@@ -2386,101 +2757,364 @@ Note: This field may return·null, indicating that no valid values can be obtain
|
|
|
2386
2757
|
}
|
|
2387
2758
|
}
|
|
2388
2759
|
|
|
2389
|
-
/**
|
|
2390
|
-
* DescribeSearchBugInfo request structure.
|
|
2391
|
-
* @class
|
|
2392
|
-
*/
|
|
2393
|
-
class DescribeSearchBugInfoRequest extends AbstractModel {
|
|
2394
|
-
constructor(){
|
|
2395
|
-
super();
|
|
2760
|
+
/**
|
|
2761
|
+
* DescribeSearchBugInfo request structure.
|
|
2762
|
+
* @class
|
|
2763
|
+
*/
|
|
2764
|
+
class DescribeSearchBugInfoRequest extends AbstractModel {
|
|
2765
|
+
constructor(){
|
|
2766
|
+
super();
|
|
2767
|
+
|
|
2768
|
+
/**
|
|
2769
|
+
* Type of the query action. `1`: Query emergency vulnerabilities; `2`: Query all vulnerabilities; `3`: Query a specific vulnerability. When `Id=3`, `CVEId` is required.
|
|
2770
|
+
* @type {string || null}
|
|
2771
|
+
*/
|
|
2772
|
+
this.Id = null;
|
|
2773
|
+
|
|
2774
|
+
/**
|
|
2775
|
+
* CVE number of the vulnerability. It's required when `Id=3`.
|
|
2776
|
+
* @type {string || null}
|
|
2777
|
+
*/
|
|
2778
|
+
this.CVEId = null;
|
|
2779
|
+
|
|
2780
|
+
}
|
|
2781
|
+
|
|
2782
|
+
/**
|
|
2783
|
+
* @private
|
|
2784
|
+
*/
|
|
2785
|
+
deserialize(params) {
|
|
2786
|
+
if (!params) {
|
|
2787
|
+
return;
|
|
2788
|
+
}
|
|
2789
|
+
this.Id = 'Id' in params ? params.Id : null;
|
|
2790
|
+
this.CVEId = 'CVEId' in params ? params.CVEId : null;
|
|
2791
|
+
|
|
2792
|
+
}
|
|
2793
|
+
}
|
|
2794
|
+
|
|
2795
|
+
/**
|
|
2796
|
+
* Temp download URL for the report PDF
|
|
2797
|
+
* @class
|
|
2798
|
+
*/
|
|
2799
|
+
class TaskLogURL extends AbstractModel {
|
|
2800
|
+
constructor(){
|
|
2801
|
+
super();
|
|
2802
|
+
|
|
2803
|
+
/**
|
|
2804
|
+
* Temp download URL for the report
|
|
2805
|
+
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
2806
|
+
* @type {string || null}
|
|
2807
|
+
*/
|
|
2808
|
+
this.URL = null;
|
|
2809
|
+
|
|
2810
|
+
/**
|
|
2811
|
+
* Task report ID
|
|
2812
|
+
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
2813
|
+
* @type {string || null}
|
|
2814
|
+
*/
|
|
2815
|
+
this.LogId = null;
|
|
2816
|
+
|
|
2817
|
+
/**
|
|
2818
|
+
* Task report name
|
|
2819
|
+
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
2820
|
+
* @type {string || null}
|
|
2821
|
+
*/
|
|
2822
|
+
this.TaskLogName = null;
|
|
2823
|
+
|
|
2824
|
+
/**
|
|
2825
|
+
* APP ID
|
|
2826
|
+
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
2827
|
+
* @type {string || null}
|
|
2828
|
+
*/
|
|
2829
|
+
this.AppId = null;
|
|
2830
|
+
|
|
2831
|
+
}
|
|
2832
|
+
|
|
2833
|
+
/**
|
|
2834
|
+
* @private
|
|
2835
|
+
*/
|
|
2836
|
+
deserialize(params) {
|
|
2837
|
+
if (!params) {
|
|
2838
|
+
return;
|
|
2839
|
+
}
|
|
2840
|
+
this.URL = 'URL' in params ? params.URL : null;
|
|
2841
|
+
this.LogId = 'LogId' in params ? params.LogId : null;
|
|
2842
|
+
this.TaskLogName = 'TaskLogName' in params ? params.TaskLogName : null;
|
|
2843
|
+
this.AppId = 'AppId' in params ? params.AppId : null;
|
|
2844
|
+
|
|
2845
|
+
}
|
|
2846
|
+
}
|
|
2847
|
+
|
|
2848
|
+
/**
|
|
2849
|
+
* AddNewBindRoleUser request structure.
|
|
2850
|
+
* @class
|
|
2851
|
+
*/
|
|
2852
|
+
class AddNewBindRoleUserRequest extends AbstractModel {
|
|
2853
|
+
constructor(){
|
|
2854
|
+
super();
|
|
2855
|
+
|
|
2856
|
+
}
|
|
2857
|
+
|
|
2858
|
+
/**
|
|
2859
|
+
* @private
|
|
2860
|
+
*/
|
|
2861
|
+
deserialize(params) {
|
|
2862
|
+
if (!params) {
|
|
2863
|
+
return;
|
|
2864
|
+
}
|
|
2865
|
+
|
|
2866
|
+
}
|
|
2867
|
+
}
|
|
2868
|
+
|
|
2869
|
+
/**
|
|
2870
|
+
* DescribeOrganizationUserInfo response structure.
|
|
2871
|
+
* @class
|
|
2872
|
+
*/
|
|
2873
|
+
class DescribeOrganizationUserInfoResponse extends AbstractModel {
|
|
2874
|
+
constructor(){
|
|
2875
|
+
super();
|
|
2876
|
+
|
|
2877
|
+
/**
|
|
2878
|
+
* Total number of items
|
|
2879
|
+
* @type {number || null}
|
|
2880
|
+
*/
|
|
2881
|
+
this.TotalCount = null;
|
|
2882
|
+
|
|
2883
|
+
/**
|
|
2884
|
+
* Group User List
|
|
2885
|
+
* @type {Array.<OrganizationUserInfo> || null}
|
|
2886
|
+
*/
|
|
2887
|
+
this.Data = null;
|
|
2888
|
+
|
|
2889
|
+
/**
|
|
2890
|
+
* Join method enumeration
|
|
2891
|
+
* @type {Array.<FilterDataObject> || null}
|
|
2892
|
+
*/
|
|
2893
|
+
this.JoinTypeLst = null;
|
|
2894
|
+
|
|
2895
|
+
/**
|
|
2896
|
+
* Cloud vendor enumeration
|
|
2897
|
+
* @type {Array.<FilterDataObject> || null}
|
|
2898
|
+
*/
|
|
2899
|
+
this.CloudTypeLst = null;
|
|
2900
|
+
|
|
2901
|
+
/**
|
|
2902
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
2903
|
+
* @type {string || null}
|
|
2904
|
+
*/
|
|
2905
|
+
this.RequestId = null;
|
|
2906
|
+
|
|
2907
|
+
}
|
|
2908
|
+
|
|
2909
|
+
/**
|
|
2910
|
+
* @private
|
|
2911
|
+
*/
|
|
2912
|
+
deserialize(params) {
|
|
2913
|
+
if (!params) {
|
|
2914
|
+
return;
|
|
2915
|
+
}
|
|
2916
|
+
this.TotalCount = 'TotalCount' in params ? params.TotalCount : null;
|
|
2917
|
+
|
|
2918
|
+
if (params.Data) {
|
|
2919
|
+
this.Data = new Array();
|
|
2920
|
+
for (let z in params.Data) {
|
|
2921
|
+
let obj = new OrganizationUserInfo();
|
|
2922
|
+
obj.deserialize(params.Data[z]);
|
|
2923
|
+
this.Data.push(obj);
|
|
2924
|
+
}
|
|
2925
|
+
}
|
|
2926
|
+
|
|
2927
|
+
if (params.JoinTypeLst) {
|
|
2928
|
+
this.JoinTypeLst = new Array();
|
|
2929
|
+
for (let z in params.JoinTypeLst) {
|
|
2930
|
+
let obj = new FilterDataObject();
|
|
2931
|
+
obj.deserialize(params.JoinTypeLst[z]);
|
|
2932
|
+
this.JoinTypeLst.push(obj);
|
|
2933
|
+
}
|
|
2934
|
+
}
|
|
2935
|
+
|
|
2936
|
+
if (params.CloudTypeLst) {
|
|
2937
|
+
this.CloudTypeLst = new Array();
|
|
2938
|
+
for (let z in params.CloudTypeLst) {
|
|
2939
|
+
let obj = new FilterDataObject();
|
|
2940
|
+
obj.deserialize(params.CloudTypeLst[z]);
|
|
2941
|
+
this.CloudTypeLst.push(obj);
|
|
2942
|
+
}
|
|
2943
|
+
}
|
|
2944
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
2945
|
+
|
|
2946
|
+
}
|
|
2947
|
+
}
|
|
2948
|
+
|
|
2949
|
+
/**
|
|
2950
|
+
*
|
|
2951
|
+
* @class
|
|
2952
|
+
*/
|
|
2953
|
+
class OrganizationInfo extends AbstractModel {
|
|
2954
|
+
constructor(){
|
|
2955
|
+
super();
|
|
2956
|
+
|
|
2957
|
+
/**
|
|
2958
|
+
*
|
|
2959
|
+
* @type {string || null}
|
|
2960
|
+
*/
|
|
2961
|
+
this.NickName = null;
|
|
2962
|
+
|
|
2963
|
+
/**
|
|
2964
|
+
*
|
|
2965
|
+
* @type {string || null}
|
|
2966
|
+
*/
|
|
2967
|
+
this.NodeName = null;
|
|
2968
|
+
|
|
2969
|
+
/**
|
|
2970
|
+
*
|
|
2971
|
+
* @type {string || null}
|
|
2972
|
+
*/
|
|
2973
|
+
this.Role = null;
|
|
2974
|
+
|
|
2975
|
+
/**
|
|
2976
|
+
*
|
|
2977
|
+
* @type {string || null}
|
|
2978
|
+
*/
|
|
2979
|
+
this.MemberId = null;
|
|
2980
|
+
|
|
2981
|
+
/**
|
|
2982
|
+
*
|
|
2983
|
+
* @type {string || null}
|
|
2984
|
+
*/
|
|
2985
|
+
this.JoinType = null;
|
|
2986
|
+
|
|
2987
|
+
/**
|
|
2988
|
+
*
|
|
2989
|
+
* @type {string || null}
|
|
2990
|
+
*/
|
|
2991
|
+
this.GroupName = null;
|
|
2992
|
+
|
|
2993
|
+
/**
|
|
2994
|
+
*
|
|
2995
|
+
* @type {string || null}
|
|
2996
|
+
*/
|
|
2997
|
+
this.AdminName = null;
|
|
2998
|
+
|
|
2999
|
+
/**
|
|
3000
|
+
*
|
|
3001
|
+
* @type {string || null}
|
|
3002
|
+
*/
|
|
3003
|
+
this.AdminUin = null;
|
|
3004
|
+
|
|
3005
|
+
/**
|
|
3006
|
+
*
|
|
3007
|
+
* @type {string || null}
|
|
3008
|
+
*/
|
|
3009
|
+
this.CreateTime = null;
|
|
3010
|
+
|
|
3011
|
+
/**
|
|
3012
|
+
*
|
|
3013
|
+
* @type {number || null}
|
|
3014
|
+
*/
|
|
3015
|
+
this.NodeCount = null;
|
|
3016
|
+
|
|
3017
|
+
/**
|
|
3018
|
+
*
|
|
3019
|
+
* @type {number || null}
|
|
3020
|
+
*/
|
|
3021
|
+
this.MemberCount = null;
|
|
3022
|
+
|
|
3023
|
+
/**
|
|
3024
|
+
*
|
|
3025
|
+
* @type {number || null}
|
|
3026
|
+
*/
|
|
3027
|
+
this.SubAccountCount = null;
|
|
2396
3028
|
|
|
2397
3029
|
/**
|
|
2398
|
-
*
|
|
2399
|
-
* @type {
|
|
3030
|
+
*
|
|
3031
|
+
* @type {number || null}
|
|
2400
3032
|
*/
|
|
2401
|
-
this.
|
|
3033
|
+
this.AbnormalSubUserCount = null;
|
|
2402
3034
|
|
|
2403
3035
|
/**
|
|
2404
|
-
*
|
|
2405
|
-
* @type {string || null}
|
|
3036
|
+
*
|
|
3037
|
+
* @type {Array.<string> || null}
|
|
2406
3038
|
*/
|
|
2407
|
-
this.
|
|
3039
|
+
this.GroupPermission = null;
|
|
2408
3040
|
|
|
2409
|
-
|
|
3041
|
+
/**
|
|
3042
|
+
*
|
|
3043
|
+
* @type {Array.<string> || null}
|
|
3044
|
+
*/
|
|
3045
|
+
this.MemberPermission = null;
|
|
2410
3046
|
|
|
2411
|
-
|
|
2412
|
-
|
|
2413
|
-
|
|
2414
|
-
|
|
2415
|
-
|
|
2416
|
-
return;
|
|
2417
|
-
}
|
|
2418
|
-
this.Id = 'Id' in params ? params.Id : null;
|
|
2419
|
-
this.CVEId = 'CVEId' in params ? params.CVEId : null;
|
|
3047
|
+
/**
|
|
3048
|
+
*
|
|
3049
|
+
* @type {number || null}
|
|
3050
|
+
*/
|
|
3051
|
+
this.GroupPayMode = null;
|
|
2420
3052
|
|
|
2421
|
-
|
|
2422
|
-
|
|
3053
|
+
/**
|
|
3054
|
+
*
|
|
3055
|
+
* @type {number || null}
|
|
3056
|
+
*/
|
|
3057
|
+
this.MemberPayMode = null;
|
|
2423
3058
|
|
|
2424
|
-
/**
|
|
2425
|
-
|
|
2426
|
-
|
|
2427
|
-
|
|
2428
|
-
|
|
2429
|
-
constructor(){
|
|
2430
|
-
super();
|
|
3059
|
+
/**
|
|
3060
|
+
*
|
|
3061
|
+
* @type {string || null}
|
|
3062
|
+
*/
|
|
3063
|
+
this.CFWProtect = null;
|
|
2431
3064
|
|
|
2432
3065
|
/**
|
|
2433
|
-
*
|
|
2434
|
-
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
3066
|
+
*
|
|
2435
3067
|
* @type {string || null}
|
|
2436
3068
|
*/
|
|
2437
|
-
this.
|
|
3069
|
+
this.WAFProtect = null;
|
|
2438
3070
|
|
|
2439
3071
|
/**
|
|
2440
|
-
*
|
|
2441
|
-
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
3072
|
+
*
|
|
2442
3073
|
* @type {string || null}
|
|
2443
3074
|
*/
|
|
2444
|
-
this.
|
|
3075
|
+
this.CWPProtect = null;
|
|
2445
3076
|
|
|
2446
3077
|
/**
|
|
2447
|
-
*
|
|
2448
|
-
|
|
3078
|
+
*
|
|
3079
|
+
* @type {Array.<string> || null}
|
|
3080
|
+
*/
|
|
3081
|
+
this.Departments = null;
|
|
3082
|
+
|
|
3083
|
+
/**
|
|
3084
|
+
*
|
|
2449
3085
|
* @type {string || null}
|
|
2450
3086
|
*/
|
|
2451
|
-
this.
|
|
3087
|
+
this.MemberCreateTime = null;
|
|
2452
3088
|
|
|
2453
3089
|
/**
|
|
2454
|
-
*
|
|
2455
|
-
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
3090
|
+
* Advanced/Enterprise/Ultimate
|
|
2456
3091
|
* @type {string || null}
|
|
2457
3092
|
*/
|
|
2458
|
-
this.
|
|
3093
|
+
this.CSIPProtect = null;
|
|
2459
3094
|
|
|
2460
|
-
|
|
3095
|
+
/**
|
|
3096
|
+
*
|
|
3097
|
+
* @type {number || null}
|
|
3098
|
+
*/
|
|
3099
|
+
this.QuotaConsumer = null;
|
|
2461
3100
|
|
|
2462
|
-
|
|
2463
|
-
|
|
2464
|
-
|
|
2465
|
-
|
|
2466
|
-
|
|
2467
|
-
return;
|
|
2468
|
-
}
|
|
2469
|
-
this.URL = 'URL' in params ? params.URL : null;
|
|
2470
|
-
this.LogId = 'LogId' in params ? params.LogId : null;
|
|
2471
|
-
this.TaskLogName = 'TaskLogName' in params ? params.TaskLogName : null;
|
|
2472
|
-
this.AppId = 'AppId' in params ? params.AppId : null;
|
|
3101
|
+
/**
|
|
3102
|
+
*
|
|
3103
|
+
* @type {number || null}
|
|
3104
|
+
*/
|
|
3105
|
+
this.EnableAdminCount = null;
|
|
2473
3106
|
|
|
2474
|
-
|
|
2475
|
-
|
|
3107
|
+
/**
|
|
3108
|
+
*
|
|
3109
|
+
* @type {Array.<CloudCountDesc> || null}
|
|
3110
|
+
*/
|
|
3111
|
+
this.CloudCountDesc = null;
|
|
2476
3112
|
|
|
2477
|
-
/**
|
|
2478
|
-
|
|
2479
|
-
|
|
2480
|
-
|
|
2481
|
-
|
|
2482
|
-
constructor(){
|
|
2483
|
-
super();
|
|
3113
|
+
/**
|
|
3114
|
+
*
|
|
3115
|
+
* @type {number || null}
|
|
3116
|
+
*/
|
|
3117
|
+
this.AdminCount = null;
|
|
2484
3118
|
|
|
2485
3119
|
}
|
|
2486
3120
|
|
|
@@ -2491,6 +3125,41 @@ class AddNewBindRoleUserRequest extends AbstractModel {
|
|
|
2491
3125
|
if (!params) {
|
|
2492
3126
|
return;
|
|
2493
3127
|
}
|
|
3128
|
+
this.NickName = 'NickName' in params ? params.NickName : null;
|
|
3129
|
+
this.NodeName = 'NodeName' in params ? params.NodeName : null;
|
|
3130
|
+
this.Role = 'Role' in params ? params.Role : null;
|
|
3131
|
+
this.MemberId = 'MemberId' in params ? params.MemberId : null;
|
|
3132
|
+
this.JoinType = 'JoinType' in params ? params.JoinType : null;
|
|
3133
|
+
this.GroupName = 'GroupName' in params ? params.GroupName : null;
|
|
3134
|
+
this.AdminName = 'AdminName' in params ? params.AdminName : null;
|
|
3135
|
+
this.AdminUin = 'AdminUin' in params ? params.AdminUin : null;
|
|
3136
|
+
this.CreateTime = 'CreateTime' in params ? params.CreateTime : null;
|
|
3137
|
+
this.NodeCount = 'NodeCount' in params ? params.NodeCount : null;
|
|
3138
|
+
this.MemberCount = 'MemberCount' in params ? params.MemberCount : null;
|
|
3139
|
+
this.SubAccountCount = 'SubAccountCount' in params ? params.SubAccountCount : null;
|
|
3140
|
+
this.AbnormalSubUserCount = 'AbnormalSubUserCount' in params ? params.AbnormalSubUserCount : null;
|
|
3141
|
+
this.GroupPermission = 'GroupPermission' in params ? params.GroupPermission : null;
|
|
3142
|
+
this.MemberPermission = 'MemberPermission' in params ? params.MemberPermission : null;
|
|
3143
|
+
this.GroupPayMode = 'GroupPayMode' in params ? params.GroupPayMode : null;
|
|
3144
|
+
this.MemberPayMode = 'MemberPayMode' in params ? params.MemberPayMode : null;
|
|
3145
|
+
this.CFWProtect = 'CFWProtect' in params ? params.CFWProtect : null;
|
|
3146
|
+
this.WAFProtect = 'WAFProtect' in params ? params.WAFProtect : null;
|
|
3147
|
+
this.CWPProtect = 'CWPProtect' in params ? params.CWPProtect : null;
|
|
3148
|
+
this.Departments = 'Departments' in params ? params.Departments : null;
|
|
3149
|
+
this.MemberCreateTime = 'MemberCreateTime' in params ? params.MemberCreateTime : null;
|
|
3150
|
+
this.CSIPProtect = 'CSIPProtect' in params ? params.CSIPProtect : null;
|
|
3151
|
+
this.QuotaConsumer = 'QuotaConsumer' in params ? params.QuotaConsumer : null;
|
|
3152
|
+
this.EnableAdminCount = 'EnableAdminCount' in params ? params.EnableAdminCount : null;
|
|
3153
|
+
|
|
3154
|
+
if (params.CloudCountDesc) {
|
|
3155
|
+
this.CloudCountDesc = new Array();
|
|
3156
|
+
for (let z in params.CloudCountDesc) {
|
|
3157
|
+
let obj = new CloudCountDesc();
|
|
3158
|
+
obj.deserialize(params.CloudCountDesc[z]);
|
|
3159
|
+
this.CloudCountDesc.push(obj);
|
|
3160
|
+
}
|
|
3161
|
+
}
|
|
3162
|
+
this.AdminCount = 'AdminCount' in params ? params.AdminCount : null;
|
|
2494
3163
|
|
|
2495
3164
|
}
|
|
2496
3165
|
}
|
|
@@ -3260,179 +3929,37 @@ class StopRiskCenterTaskResponse extends AbstractModel {
|
|
|
3260
3929
|
if (!params) {
|
|
3261
3930
|
return;
|
|
3262
3931
|
}
|
|
3263
|
-
this.Status = 'Status' in params ? params.Status : null;
|
|
3264
|
-
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
3265
|
-
|
|
3266
|
-
}
|
|
3267
|
-
}
|
|
3268
|
-
|
|
3269
|
-
/**
|
|
3270
|
-
* Service risk
|
|
3271
|
-
* @class
|
|
3272
|
-
*/
|
|
3273
|
-
class ServerRisk extends AbstractModel {
|
|
3274
|
-
constructor(){
|
|
3275
|
-
super();
|
|
3276
|
-
|
|
3277
|
-
/**
|
|
3278
|
-
* Service tag
|
|
3279
|
-
* @type {string || null}
|
|
3280
|
-
*/
|
|
3281
|
-
this.ServiceTag = null;
|
|
3282
|
-
|
|
3283
|
-
/**
|
|
3284
|
-
* Port
|
|
3285
|
-
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
3286
|
-
* @type {number || null}
|
|
3287
|
-
*/
|
|
3288
|
-
this.Port = null;
|
|
3289
|
-
|
|
3290
|
-
/**
|
|
3291
|
-
* Affected assets
|
|
3292
|
-
* @type {string || null}
|
|
3293
|
-
*/
|
|
3294
|
-
this.AffectAsset = null;
|
|
3295
|
-
|
|
3296
|
-
/**
|
|
3297
|
-
* Instance ID
|
|
3298
|
-
* @type {string || null}
|
|
3299
|
-
*/
|
|
3300
|
-
this.InstanceId = null;
|
|
3301
|
-
|
|
3302
|
-
/**
|
|
3303
|
-
* Instance name
|
|
3304
|
-
* @type {string || null}
|
|
3305
|
-
*/
|
|
3306
|
-
this.InstanceName = null;
|
|
3307
|
-
|
|
3308
|
-
/**
|
|
3309
|
-
* Asset type
|
|
3310
|
-
* @type {string || null}
|
|
3311
|
-
*/
|
|
3312
|
-
this.InstanceType = null;
|
|
3313
|
-
|
|
3314
|
-
/**
|
|
3315
|
-
* Risk level
|
|
3316
|
-
* @type {string || null}
|
|
3317
|
-
*/
|
|
3318
|
-
this.Level = null;
|
|
3319
|
-
|
|
3320
|
-
/**
|
|
3321
|
-
* Network protocol
|
|
3322
|
-
* @type {string || null}
|
|
3323
|
-
*/
|
|
3324
|
-
this.Protocol = null;
|
|
3325
|
-
|
|
3326
|
-
/**
|
|
3327
|
-
* Components
|
|
3328
|
-
* @type {string || null}
|
|
3329
|
-
*/
|
|
3330
|
-
this.Component = null;
|
|
3331
|
-
|
|
3332
|
-
/**
|
|
3333
|
-
* Service
|
|
3334
|
-
* @type {string || null}
|
|
3335
|
-
*/
|
|
3336
|
-
this.Service = null;
|
|
3337
|
-
|
|
3338
|
-
/**
|
|
3339
|
-
* Last detected
|
|
3340
|
-
* @type {string || null}
|
|
3341
|
-
*/
|
|
3342
|
-
this.RecentTime = null;
|
|
3343
|
-
|
|
3344
|
-
/**
|
|
3345
|
-
* First detected
|
|
3346
|
-
* @type {string || null}
|
|
3347
|
-
*/
|
|
3348
|
-
this.FirstTime = null;
|
|
3349
|
-
|
|
3350
|
-
/**
|
|
3351
|
-
* Risk Details
|
|
3352
|
-
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
3353
|
-
* @type {string || null}
|
|
3354
|
-
*/
|
|
3355
|
-
this.RiskDetails = null;
|
|
3356
|
-
|
|
3357
|
-
/**
|
|
3358
|
-
* Handling suggestion
|
|
3359
|
-
* @type {string || null}
|
|
3360
|
-
*/
|
|
3361
|
-
this.Suggestion = null;
|
|
3362
|
-
|
|
3363
|
-
/**
|
|
3364
|
-
* Status of the risk. `0`: Not handled, `1`: Handled; `2`: Ignored
|
|
3365
|
-
* @type {number || null}
|
|
3366
|
-
*/
|
|
3367
|
-
this.Status = null;
|
|
3368
|
-
|
|
3369
|
-
/**
|
|
3370
|
-
* Unique ID of the asset
|
|
3371
|
-
* @type {string || null}
|
|
3372
|
-
*/
|
|
3373
|
-
this.Id = null;
|
|
3374
|
-
|
|
3375
|
-
/**
|
|
3376
|
-
* User `appid`
|
|
3377
|
-
* @type {string || null}
|
|
3378
|
-
*/
|
|
3379
|
-
this.AppId = null;
|
|
3380
|
-
|
|
3381
|
-
/**
|
|
3382
|
-
* User name.
|
|
3383
|
-
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
3384
|
-
* @type {string || null}
|
|
3385
|
-
*/
|
|
3386
|
-
this.Nick = null;
|
|
3387
|
-
|
|
3388
|
-
/**
|
|
3389
|
-
* User `uin`
|
|
3390
|
-
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
3391
|
-
* @type {string || null}
|
|
3392
|
-
*/
|
|
3393
|
-
this.Uin = null;
|
|
3394
|
-
|
|
3395
|
-
/**
|
|
3396
|
-
* Service snapshot
|
|
3397
|
-
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
3398
|
-
* @type {string || null}
|
|
3399
|
-
*/
|
|
3400
|
-
this.ServiceSnapshot = null;
|
|
3932
|
+
this.Status = 'Status' in params ? params.Status : null;
|
|
3933
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
3401
3934
|
|
|
3402
|
-
|
|
3403
|
-
|
|
3404
|
-
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
3405
|
-
* @type {string || null}
|
|
3406
|
-
*/
|
|
3407
|
-
this.Url = null;
|
|
3935
|
+
}
|
|
3936
|
+
}
|
|
3408
3937
|
|
|
3409
|
-
|
|
3410
|
-
|
|
3411
|
-
|
|
3412
|
-
|
|
3413
|
-
|
|
3414
|
-
|
|
3938
|
+
/**
|
|
3939
|
+
* DescribeOrganizationInfo response structure.
|
|
3940
|
+
* @class
|
|
3941
|
+
*/
|
|
3942
|
+
class DescribeOrganizationInfoResponse extends AbstractModel {
|
|
3943
|
+
constructor(){
|
|
3944
|
+
super();
|
|
3415
3945
|
|
|
3416
3946
|
/**
|
|
3417
|
-
*
|
|
3418
|
-
|
|
3419
|
-
* @type {Array.<ServerRiskSuggestion> || null}
|
|
3947
|
+
* Total number of items
|
|
3948
|
+
* @type {number || null}
|
|
3420
3949
|
*/
|
|
3421
|
-
this.
|
|
3950
|
+
this.TotalCount = null;
|
|
3422
3951
|
|
|
3423
3952
|
/**
|
|
3424
|
-
*
|
|
3425
|
-
|
|
3426
|
-
* @type {Array.<ServerRiskSuggestion> || null}
|
|
3953
|
+
* Group User List
|
|
3954
|
+
* @type {Array.<OrganizationInfo> || null}
|
|
3427
3955
|
*/
|
|
3428
|
-
this.
|
|
3956
|
+
this.Data = null;
|
|
3429
3957
|
|
|
3430
3958
|
/**
|
|
3431
|
-
*
|
|
3432
|
-
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
3959
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
3433
3960
|
* @type {string || null}
|
|
3434
3961
|
*/
|
|
3435
|
-
this.
|
|
3962
|
+
this.RequestId = null;
|
|
3436
3963
|
|
|
3437
3964
|
}
|
|
3438
3965
|
|
|
@@ -3443,47 +3970,50 @@ Note: This field may return·null, indicating that no valid values can be obtain
|
|
|
3443
3970
|
if (!params) {
|
|
3444
3971
|
return;
|
|
3445
3972
|
}
|
|
3446
|
-
this.
|
|
3447
|
-
this.Port = 'Port' in params ? params.Port : null;
|
|
3448
|
-
this.AffectAsset = 'AffectAsset' in params ? params.AffectAsset : null;
|
|
3449
|
-
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
3450
|
-
this.InstanceName = 'InstanceName' in params ? params.InstanceName : null;
|
|
3451
|
-
this.InstanceType = 'InstanceType' in params ? params.InstanceType : null;
|
|
3452
|
-
this.Level = 'Level' in params ? params.Level : null;
|
|
3453
|
-
this.Protocol = 'Protocol' in params ? params.Protocol : null;
|
|
3454
|
-
this.Component = 'Component' in params ? params.Component : null;
|
|
3455
|
-
this.Service = 'Service' in params ? params.Service : null;
|
|
3456
|
-
this.RecentTime = 'RecentTime' in params ? params.RecentTime : null;
|
|
3457
|
-
this.FirstTime = 'FirstTime' in params ? params.FirstTime : null;
|
|
3458
|
-
this.RiskDetails = 'RiskDetails' in params ? params.RiskDetails : null;
|
|
3459
|
-
this.Suggestion = 'Suggestion' in params ? params.Suggestion : null;
|
|
3460
|
-
this.Status = 'Status' in params ? params.Status : null;
|
|
3461
|
-
this.Id = 'Id' in params ? params.Id : null;
|
|
3462
|
-
this.AppId = 'AppId' in params ? params.AppId : null;
|
|
3463
|
-
this.Nick = 'Nick' in params ? params.Nick : null;
|
|
3464
|
-
this.Uin = 'Uin' in params ? params.Uin : null;
|
|
3465
|
-
this.ServiceSnapshot = 'ServiceSnapshot' in params ? params.ServiceSnapshot : null;
|
|
3466
|
-
this.Url = 'Url' in params ? params.Url : null;
|
|
3467
|
-
this.Index = 'Index' in params ? params.Index : null;
|
|
3973
|
+
this.TotalCount = 'TotalCount' in params ? params.TotalCount : null;
|
|
3468
3974
|
|
|
3469
|
-
if (params.
|
|
3470
|
-
this.
|
|
3471
|
-
for (let z in params.
|
|
3472
|
-
let obj = new
|
|
3473
|
-
obj.deserialize(params.
|
|
3474
|
-
this.
|
|
3975
|
+
if (params.Data) {
|
|
3976
|
+
this.Data = new Array();
|
|
3977
|
+
for (let z in params.Data) {
|
|
3978
|
+
let obj = new OrganizationInfo();
|
|
3979
|
+
obj.deserialize(params.Data[z]);
|
|
3980
|
+
this.Data.push(obj);
|
|
3475
3981
|
}
|
|
3476
3982
|
}
|
|
3983
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
3477
3984
|
|
|
3478
|
-
|
|
3479
|
-
|
|
3480
|
-
|
|
3481
|
-
|
|
3482
|
-
|
|
3483
|
-
|
|
3484
|
-
|
|
3985
|
+
}
|
|
3986
|
+
}
|
|
3987
|
+
|
|
3988
|
+
/**
|
|
3989
|
+
* DescribeVpcAssets request structure.
|
|
3990
|
+
* @class
|
|
3991
|
+
*/
|
|
3992
|
+
class DescribeVpcAssetsRequest extends AbstractModel {
|
|
3993
|
+
constructor(){
|
|
3994
|
+
super();
|
|
3995
|
+
|
|
3996
|
+
/**
|
|
3997
|
+
* Filter parameters
|
|
3998
|
+
* @type {Filter || null}
|
|
3999
|
+
*/
|
|
4000
|
+
this.Filter = null;
|
|
4001
|
+
|
|
4002
|
+
}
|
|
4003
|
+
|
|
4004
|
+
/**
|
|
4005
|
+
* @private
|
|
4006
|
+
*/
|
|
4007
|
+
deserialize(params) {
|
|
4008
|
+
if (!params) {
|
|
4009
|
+
return;
|
|
4010
|
+
}
|
|
4011
|
+
|
|
4012
|
+
if (params.Filter) {
|
|
4013
|
+
let obj = new Filter();
|
|
4014
|
+
obj.deserialize(params.Filter)
|
|
4015
|
+
this.Filter = obj;
|
|
3485
4016
|
}
|
|
3486
|
-
this.StatusCode = 'StatusCode' in params ? params.StatusCode : null;
|
|
3487
4017
|
|
|
3488
4018
|
}
|
|
3489
4019
|
}
|
|
@@ -3900,18 +4430,36 @@ class FilterDataObject extends AbstractModel {
|
|
|
3900
4430
|
}
|
|
3901
4431
|
|
|
3902
4432
|
/**
|
|
3903
|
-
*
|
|
4433
|
+
* Risk data
|
|
3904
4434
|
* @class
|
|
3905
4435
|
*/
|
|
3906
|
-
class
|
|
4436
|
+
class RiskCenterStatusKey extends AbstractModel {
|
|
3907
4437
|
constructor(){
|
|
3908
4438
|
super();
|
|
3909
4439
|
|
|
3910
4440
|
/**
|
|
3911
|
-
*
|
|
3912
|
-
* @type {
|
|
4441
|
+
* Risk ID
|
|
4442
|
+
* @type {string || null}
|
|
3913
4443
|
*/
|
|
3914
|
-
this.
|
|
4444
|
+
this.Id = null;
|
|
4445
|
+
|
|
4446
|
+
/**
|
|
4447
|
+
* User AppId
|
|
4448
|
+
* @type {string || null}
|
|
4449
|
+
*/
|
|
4450
|
+
this.AppId = null;
|
|
4451
|
+
|
|
4452
|
+
/**
|
|
4453
|
+
* Public IP/domain name
|
|
4454
|
+
* @type {string || null}
|
|
4455
|
+
*/
|
|
4456
|
+
this.PublicIPDomain = null;
|
|
4457
|
+
|
|
4458
|
+
/**
|
|
4459
|
+
* Instance ID.
|
|
4460
|
+
* @type {string || null}
|
|
4461
|
+
*/
|
|
4462
|
+
this.InstanceId = null;
|
|
3915
4463
|
|
|
3916
4464
|
}
|
|
3917
4465
|
|
|
@@ -3922,12 +4470,10 @@ class DescribeVpcAssetsRequest extends AbstractModel {
|
|
|
3922
4470
|
if (!params) {
|
|
3923
4471
|
return;
|
|
3924
4472
|
}
|
|
3925
|
-
|
|
3926
|
-
|
|
3927
|
-
|
|
3928
|
-
|
|
3929
|
-
this.Filter = obj;
|
|
3930
|
-
}
|
|
4473
|
+
this.Id = 'Id' in params ? params.Id : null;
|
|
4474
|
+
this.AppId = 'AppId' in params ? params.AppId : null;
|
|
4475
|
+
this.PublicIPDomain = 'PublicIPDomain' in params ? params.PublicIPDomain : null;
|
|
4476
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
3931
4477
|
|
|
3932
4478
|
}
|
|
3933
4479
|
}
|
|
@@ -4199,94 +4745,242 @@ Note: This field may return·null, indicating that no valid values can be obtain
|
|
|
4199
4745
|
this.OsList.push(obj);
|
|
4200
4746
|
}
|
|
4201
4747
|
}
|
|
4202
|
-
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
4748
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
4749
|
+
|
|
4750
|
+
}
|
|
4751
|
+
}
|
|
4752
|
+
|
|
4753
|
+
/**
|
|
4754
|
+
* Details of a database asset.
|
|
4755
|
+
* @class
|
|
4756
|
+
*/
|
|
4757
|
+
class DbAssetInfo extends AbstractModel {
|
|
4758
|
+
constructor(){
|
|
4759
|
+
super();
|
|
4760
|
+
|
|
4761
|
+
/**
|
|
4762
|
+
* CFW status
|
|
4763
|
+
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
4764
|
+
* @type {number || null}
|
|
4765
|
+
*/
|
|
4766
|
+
this.CFWStatus = null;
|
|
4767
|
+
|
|
4768
|
+
/**
|
|
4769
|
+
* Asset ID
|
|
4770
|
+
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
4771
|
+
* @type {string || null}
|
|
4772
|
+
*/
|
|
4773
|
+
this.AssetId = null;
|
|
4774
|
+
|
|
4775
|
+
/**
|
|
4776
|
+
* VPC information
|
|
4777
|
+
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
4778
|
+
* @type {string || null}
|
|
4779
|
+
*/
|
|
4780
|
+
this.VpcName = null;
|
|
4781
|
+
|
|
4782
|
+
/**
|
|
4783
|
+
* Asset type
|
|
4784
|
+
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
4785
|
+
* @type {string || null}
|
|
4786
|
+
*/
|
|
4787
|
+
this.AssetType = null;
|
|
4788
|
+
|
|
4789
|
+
/**
|
|
4790
|
+
* Public IP
|
|
4791
|
+
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
4792
|
+
* @type {string || null}
|
|
4793
|
+
*/
|
|
4794
|
+
this.PublicIp = null;
|
|
4795
|
+
|
|
4796
|
+
/**
|
|
4797
|
+
* Private IP
|
|
4798
|
+
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
4799
|
+
* @type {string || null}
|
|
4800
|
+
*/
|
|
4801
|
+
this.PrivateIp = null;
|
|
4802
|
+
|
|
4803
|
+
/**
|
|
4804
|
+
* Region
|
|
4805
|
+
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
4806
|
+
* @type {string || null}
|
|
4807
|
+
*/
|
|
4808
|
+
this.Region = null;
|
|
4809
|
+
|
|
4810
|
+
/**
|
|
4811
|
+
*
|
|
4812
|
+
* @type {string || null}
|
|
4813
|
+
*/
|
|
4814
|
+
this.VpcId = null;
|
|
4815
|
+
|
|
4816
|
+
/**
|
|
4817
|
+
* Asset name
|
|
4818
|
+
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
4819
|
+
* @type {string || null}
|
|
4820
|
+
*/
|
|
4821
|
+
this.AssetName = null;
|
|
4822
|
+
|
|
4823
|
+
/**
|
|
4824
|
+
* CFW edition
|
|
4825
|
+
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
4826
|
+
* @type {number || null}
|
|
4827
|
+
*/
|
|
4828
|
+
this.CFWProtectLevel = null;
|
|
4829
|
+
|
|
4830
|
+
/**
|
|
4831
|
+
* Tag information
|
|
4832
|
+
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
4833
|
+
* @type {Array.<Tag> || null}
|
|
4834
|
+
*/
|
|
4835
|
+
this.Tag = null;
|
|
4836
|
+
|
|
4837
|
+
}
|
|
4838
|
+
|
|
4839
|
+
/**
|
|
4840
|
+
* @private
|
|
4841
|
+
*/
|
|
4842
|
+
deserialize(params) {
|
|
4843
|
+
if (!params) {
|
|
4844
|
+
return;
|
|
4845
|
+
}
|
|
4846
|
+
this.CFWStatus = 'CFWStatus' in params ? params.CFWStatus : null;
|
|
4847
|
+
this.AssetId = 'AssetId' in params ? params.AssetId : null;
|
|
4848
|
+
this.VpcName = 'VpcName' in params ? params.VpcName : null;
|
|
4849
|
+
this.AssetType = 'AssetType' in params ? params.AssetType : null;
|
|
4850
|
+
this.PublicIp = 'PublicIp' in params ? params.PublicIp : null;
|
|
4851
|
+
this.PrivateIp = 'PrivateIp' in params ? params.PrivateIp : null;
|
|
4852
|
+
this.Region = 'Region' in params ? params.Region : null;
|
|
4853
|
+
this.VpcId = 'VpcId' in params ? params.VpcId : null;
|
|
4854
|
+
this.AssetName = 'AssetName' in params ? params.AssetName : null;
|
|
4855
|
+
this.CFWProtectLevel = 'CFWProtectLevel' in params ? params.CFWProtectLevel : null;
|
|
4856
|
+
|
|
4857
|
+
if (params.Tag) {
|
|
4858
|
+
this.Tag = new Array();
|
|
4859
|
+
for (let z in params.Tag) {
|
|
4860
|
+
let obj = new Tag();
|
|
4861
|
+
obj.deserialize(params.Tag[z]);
|
|
4862
|
+
this.Tag.push(obj);
|
|
4863
|
+
}
|
|
4864
|
+
}
|
|
4203
4865
|
|
|
4204
4866
|
}
|
|
4205
4867
|
}
|
|
4206
4868
|
|
|
4207
4869
|
/**
|
|
4208
|
-
*
|
|
4870
|
+
*
|
|
4209
4871
|
* @class
|
|
4210
4872
|
*/
|
|
4211
|
-
class
|
|
4873
|
+
class SubUserInfo extends AbstractModel {
|
|
4212
4874
|
constructor(){
|
|
4213
4875
|
super();
|
|
4214
4876
|
|
|
4215
4877
|
/**
|
|
4216
|
-
*
|
|
4217
|
-
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
4878
|
+
*
|
|
4218
4879
|
* @type {number || null}
|
|
4219
4880
|
*/
|
|
4220
|
-
this.
|
|
4881
|
+
this.ID = null;
|
|
4221
4882
|
|
|
4222
4883
|
/**
|
|
4223
|
-
*
|
|
4224
|
-
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
4884
|
+
*
|
|
4225
4885
|
* @type {string || null}
|
|
4226
4886
|
*/
|
|
4227
|
-
this.
|
|
4887
|
+
this.AppID = null;
|
|
4228
4888
|
|
|
4229
4889
|
/**
|
|
4230
|
-
*
|
|
4231
|
-
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
4890
|
+
*
|
|
4232
4891
|
* @type {string || null}
|
|
4233
4892
|
*/
|
|
4234
|
-
this.
|
|
4893
|
+
this.Uin = null;
|
|
4235
4894
|
|
|
4236
4895
|
/**
|
|
4237
|
-
*
|
|
4238
|
-
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
4896
|
+
*
|
|
4239
4897
|
* @type {string || null}
|
|
4240
4898
|
*/
|
|
4241
|
-
this.
|
|
4899
|
+
this.NickName = null;
|
|
4242
4900
|
|
|
4243
4901
|
/**
|
|
4244
|
-
*
|
|
4245
|
-
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
4902
|
+
*
|
|
4246
4903
|
* @type {string || null}
|
|
4247
4904
|
*/
|
|
4248
|
-
this.
|
|
4905
|
+
this.OwnerAppID = null;
|
|
4249
4906
|
|
|
4250
4907
|
/**
|
|
4251
|
-
*
|
|
4252
|
-
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
4908
|
+
*
|
|
4253
4909
|
* @type {string || null}
|
|
4254
4910
|
*/
|
|
4255
|
-
this.
|
|
4911
|
+
this.OwnerUin = null;
|
|
4256
4912
|
|
|
4257
4913
|
/**
|
|
4258
|
-
*
|
|
4259
|
-
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
4914
|
+
*
|
|
4260
4915
|
* @type {string || null}
|
|
4261
4916
|
*/
|
|
4262
|
-
this.
|
|
4917
|
+
this.OwnerNickName = null;
|
|
4263
4918
|
|
|
4264
4919
|
/**
|
|
4265
4920
|
*
|
|
4266
4921
|
* @type {string || null}
|
|
4267
4922
|
*/
|
|
4268
|
-
this.
|
|
4923
|
+
this.OwnerMemberID = null;
|
|
4269
4924
|
|
|
4270
4925
|
/**
|
|
4271
|
-
*
|
|
4272
|
-
|
|
4273
|
-
* @type {string || null}
|
|
4926
|
+
*
|
|
4927
|
+
* @type {number || null}
|
|
4274
4928
|
*/
|
|
4275
|
-
this.
|
|
4929
|
+
this.CloudType = null;
|
|
4276
4930
|
|
|
4277
4931
|
/**
|
|
4278
|
-
*
|
|
4279
|
-
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
4932
|
+
*
|
|
4280
4933
|
* @type {number || null}
|
|
4281
4934
|
*/
|
|
4282
|
-
this.
|
|
4935
|
+
this.ServiceCount = null;
|
|
4283
4936
|
|
|
4284
4937
|
/**
|
|
4285
|
-
*
|
|
4286
|
-
|
|
4287
|
-
* @type {Array.<Tag> || null}
|
|
4938
|
+
*
|
|
4939
|
+
* @type {number || null}
|
|
4288
4940
|
*/
|
|
4289
|
-
this.
|
|
4941
|
+
this.InterfaceCount = null;
|
|
4942
|
+
|
|
4943
|
+
/**
|
|
4944
|
+
*
|
|
4945
|
+
* @type {number || null}
|
|
4946
|
+
*/
|
|
4947
|
+
this.AssetCount = null;
|
|
4948
|
+
|
|
4949
|
+
/**
|
|
4950
|
+
*
|
|
4951
|
+
* @type {number || null}
|
|
4952
|
+
*/
|
|
4953
|
+
this.LogCount = null;
|
|
4954
|
+
|
|
4955
|
+
/**
|
|
4956
|
+
*
|
|
4957
|
+
* @type {number || null}
|
|
4958
|
+
*/
|
|
4959
|
+
this.ConfigRiskCount = null;
|
|
4960
|
+
|
|
4961
|
+
/**
|
|
4962
|
+
*
|
|
4963
|
+
* @type {number || null}
|
|
4964
|
+
*/
|
|
4965
|
+
this.ActionRiskCount = null;
|
|
4966
|
+
|
|
4967
|
+
/**
|
|
4968
|
+
*
|
|
4969
|
+
* @type {boolean || null}
|
|
4970
|
+
*/
|
|
4971
|
+
this.IsAccessCloudAudit = null;
|
|
4972
|
+
|
|
4973
|
+
/**
|
|
4974
|
+
*
|
|
4975
|
+
* @type {boolean || null}
|
|
4976
|
+
*/
|
|
4977
|
+
this.IsAccessCheck = null;
|
|
4978
|
+
|
|
4979
|
+
/**
|
|
4980
|
+
*
|
|
4981
|
+
* @type {boolean || null}
|
|
4982
|
+
*/
|
|
4983
|
+
this.IsAccessUeba = null;
|
|
4290
4984
|
|
|
4291
4985
|
}
|
|
4292
4986
|
|
|
@@ -4297,25 +4991,66 @@ Note: This field may return·null, indicating that no valid values can be obtain
|
|
|
4297
4991
|
if (!params) {
|
|
4298
4992
|
return;
|
|
4299
4993
|
}
|
|
4300
|
-
this.
|
|
4301
|
-
this.
|
|
4302
|
-
this.
|
|
4303
|
-
this.
|
|
4304
|
-
this.
|
|
4305
|
-
this.
|
|
4306
|
-
this.
|
|
4307
|
-
this.
|
|
4308
|
-
this.
|
|
4309
|
-
this.
|
|
4994
|
+
this.ID = 'ID' in params ? params.ID : null;
|
|
4995
|
+
this.AppID = 'AppID' in params ? params.AppID : null;
|
|
4996
|
+
this.Uin = 'Uin' in params ? params.Uin : null;
|
|
4997
|
+
this.NickName = 'NickName' in params ? params.NickName : null;
|
|
4998
|
+
this.OwnerAppID = 'OwnerAppID' in params ? params.OwnerAppID : null;
|
|
4999
|
+
this.OwnerUin = 'OwnerUin' in params ? params.OwnerUin : null;
|
|
5000
|
+
this.OwnerNickName = 'OwnerNickName' in params ? params.OwnerNickName : null;
|
|
5001
|
+
this.OwnerMemberID = 'OwnerMemberID' in params ? params.OwnerMemberID : null;
|
|
5002
|
+
this.CloudType = 'CloudType' in params ? params.CloudType : null;
|
|
5003
|
+
this.ServiceCount = 'ServiceCount' in params ? params.ServiceCount : null;
|
|
5004
|
+
this.InterfaceCount = 'InterfaceCount' in params ? params.InterfaceCount : null;
|
|
5005
|
+
this.AssetCount = 'AssetCount' in params ? params.AssetCount : null;
|
|
5006
|
+
this.LogCount = 'LogCount' in params ? params.LogCount : null;
|
|
5007
|
+
this.ConfigRiskCount = 'ConfigRiskCount' in params ? params.ConfigRiskCount : null;
|
|
5008
|
+
this.ActionRiskCount = 'ActionRiskCount' in params ? params.ActionRiskCount : null;
|
|
5009
|
+
this.IsAccessCloudAudit = 'IsAccessCloudAudit' in params ? params.IsAccessCloudAudit : null;
|
|
5010
|
+
this.IsAccessCheck = 'IsAccessCheck' in params ? params.IsAccessCheck : null;
|
|
5011
|
+
this.IsAccessUeba = 'IsAccessUeba' in params ? params.IsAccessUeba : null;
|
|
4310
5012
|
|
|
4311
|
-
|
|
4312
|
-
|
|
4313
|
-
|
|
4314
|
-
|
|
4315
|
-
|
|
4316
|
-
|
|
4317
|
-
|
|
5013
|
+
}
|
|
5014
|
+
}
|
|
5015
|
+
|
|
5016
|
+
/**
|
|
5017
|
+
*
|
|
5018
|
+
* @class
|
|
5019
|
+
*/
|
|
5020
|
+
class CloudCountDesc extends AbstractModel {
|
|
5021
|
+
constructor(){
|
|
5022
|
+
super();
|
|
5023
|
+
|
|
5024
|
+
/**
|
|
5025
|
+
*
|
|
5026
|
+
* @type {number || null}
|
|
5027
|
+
*/
|
|
5028
|
+
this.CloudType = null;
|
|
5029
|
+
|
|
5030
|
+
/**
|
|
5031
|
+
*
|
|
5032
|
+
* @type {number || null}
|
|
5033
|
+
*/
|
|
5034
|
+
this.CloudCount = null;
|
|
5035
|
+
|
|
5036
|
+
/**
|
|
5037
|
+
*
|
|
5038
|
+
* @type {string || null}
|
|
5039
|
+
*/
|
|
5040
|
+
this.CloudDesc = null;
|
|
5041
|
+
|
|
5042
|
+
}
|
|
5043
|
+
|
|
5044
|
+
/**
|
|
5045
|
+
* @private
|
|
5046
|
+
*/
|
|
5047
|
+
deserialize(params) {
|
|
5048
|
+
if (!params) {
|
|
5049
|
+
return;
|
|
4318
5050
|
}
|
|
5051
|
+
this.CloudType = 'CloudType' in params ? params.CloudType : null;
|
|
5052
|
+
this.CloudCount = 'CloudCount' in params ? params.CloudCount : null;
|
|
5053
|
+
this.CloudDesc = 'CloudDesc' in params ? params.CloudDesc : null;
|
|
4319
5054
|
|
|
4320
5055
|
}
|
|
4321
5056
|
}
|
|
@@ -4743,128 +5478,60 @@ Note: This field may return·null, indicating that no valid values can be obtain
|
|
|
4743
5478
|
}
|
|
4744
5479
|
|
|
4745
5480
|
/**
|
|
4746
|
-
*
|
|
5481
|
+
* DescribeDbAssets response structure.
|
|
4747
5482
|
* @class
|
|
4748
5483
|
*/
|
|
4749
|
-
class
|
|
5484
|
+
class DescribeDbAssetsResponse extends AbstractModel {
|
|
4750
5485
|
constructor(){
|
|
4751
5486
|
super();
|
|
4752
5487
|
|
|
4753
5488
|
/**
|
|
4754
|
-
*
|
|
4755
|
-
|
|
4756
|
-
*/
|
|
4757
|
-
this.AffectAsset = null;
|
|
4758
|
-
|
|
4759
|
-
/**
|
|
4760
|
-
* Risk level
|
|
4761
|
-
* @type {string || null}
|
|
4762
|
-
*/
|
|
4763
|
-
this.Level = null;
|
|
4764
|
-
|
|
4765
|
-
/**
|
|
4766
|
-
* Last detected
|
|
4767
|
-
* @type {string || null}
|
|
4768
|
-
*/
|
|
4769
|
-
this.RecentTime = null;
|
|
4770
|
-
|
|
4771
|
-
/**
|
|
4772
|
-
* First detected
|
|
4773
|
-
* @type {string || null}
|
|
4774
|
-
*/
|
|
4775
|
-
this.FirstTime = null;
|
|
4776
|
-
|
|
4777
|
-
/**
|
|
4778
|
-
* Status of the risk. `0`: Not handled, `1`: Handled; `2`: Ignored
|
|
5489
|
+
* Total number of results
|
|
5490
|
+
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
4779
5491
|
* @type {number || null}
|
|
4780
5492
|
*/
|
|
4781
|
-
this.
|
|
4782
|
-
|
|
4783
|
-
/**
|
|
4784
|
-
* Unique ID of the asset
|
|
4785
|
-
* @type {string || null}
|
|
4786
|
-
*/
|
|
4787
|
-
this.Id = null;
|
|
4788
|
-
|
|
4789
|
-
/**
|
|
4790
|
-
* Frontend index
|
|
4791
|
-
* @type {string || null}
|
|
4792
|
-
*/
|
|
4793
|
-
this.Index = null;
|
|
4794
|
-
|
|
4795
|
-
/**
|
|
4796
|
-
* Instance ID
|
|
4797
|
-
* @type {string || null}
|
|
4798
|
-
*/
|
|
4799
|
-
this.InstanceId = null;
|
|
4800
|
-
|
|
4801
|
-
/**
|
|
4802
|
-
* Instance name
|
|
4803
|
-
* @type {string || null}
|
|
4804
|
-
*/
|
|
4805
|
-
this.InstanceName = null;
|
|
4806
|
-
|
|
4807
|
-
/**
|
|
4808
|
-
* User `appid`
|
|
4809
|
-
* @type {string || null}
|
|
4810
|
-
*/
|
|
4811
|
-
this.AppId = null;
|
|
5493
|
+
this.Total = null;
|
|
4812
5494
|
|
|
4813
5495
|
/**
|
|
4814
|
-
*
|
|
5496
|
+
* Total of assets
|
|
4815
5497
|
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
4816
|
-
* @type {
|
|
5498
|
+
* @type {Array.<DBAssetVO> || null}
|
|
4817
5499
|
*/
|
|
4818
|
-
this.
|
|
5500
|
+
this.Data = null;
|
|
4819
5501
|
|
|
4820
5502
|
/**
|
|
4821
|
-
*
|
|
5503
|
+
* List of regions
|
|
4822
5504
|
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
4823
|
-
* @type {
|
|
4824
|
-
*/
|
|
4825
|
-
this.Uin = null;
|
|
4826
|
-
|
|
4827
|
-
/**
|
|
4828
|
-
* URL of the risk
|
|
4829
|
-
* @type {string || null}
|
|
4830
|
-
*/
|
|
4831
|
-
this.URL = null;
|
|
4832
|
-
|
|
4833
|
-
/**
|
|
4834
|
-
* URL of the risk file
|
|
4835
|
-
* @type {string || null}
|
|
4836
|
-
*/
|
|
4837
|
-
this.URLPath = null;
|
|
4838
|
-
|
|
4839
|
-
/**
|
|
4840
|
-
* Instance type
|
|
4841
|
-
* @type {string || null}
|
|
5505
|
+
* @type {Array.<FilterDataObject> || null}
|
|
4842
5506
|
*/
|
|
4843
|
-
this.
|
|
5507
|
+
this.RegionList = null;
|
|
4844
5508
|
|
|
4845
5509
|
/**
|
|
4846
|
-
*
|
|
4847
|
-
|
|
5510
|
+
* List of asset types
|
|
5511
|
+
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
5512
|
+
* @type {Array.<FilterDataObject> || null}
|
|
4848
5513
|
*/
|
|
4849
|
-
this.
|
|
5514
|
+
this.AssetTypeList = null;
|
|
4850
5515
|
|
|
4851
5516
|
/**
|
|
4852
|
-
*
|
|
4853
|
-
|
|
5517
|
+
* List of VPCs
|
|
5518
|
+
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
5519
|
+
* @type {Array.<FilterDataObject> || null}
|
|
4854
5520
|
*/
|
|
4855
|
-
this.
|
|
5521
|
+
this.VpcList = null;
|
|
4856
5522
|
|
|
4857
5523
|
/**
|
|
4858
|
-
*
|
|
4859
|
-
|
|
5524
|
+
* List of users (AppId)
|
|
5525
|
+
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
5526
|
+
* @type {Array.<FilterDataObject> || null}
|
|
4860
5527
|
*/
|
|
4861
|
-
this.
|
|
5528
|
+
this.AppIdList = null;
|
|
4862
5529
|
|
|
4863
5530
|
/**
|
|
4864
|
-
*
|
|
5531
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
4865
5532
|
* @type {string || null}
|
|
4866
5533
|
*/
|
|
4867
|
-
this.
|
|
5534
|
+
this.RequestId = null;
|
|
4868
5535
|
|
|
4869
5536
|
}
|
|
4870
5537
|
|
|
@@ -4875,25 +5542,53 @@ Note: This field may return·null, indicating that no valid values can be obtain
|
|
|
4875
5542
|
if (!params) {
|
|
4876
5543
|
return;
|
|
4877
5544
|
}
|
|
4878
|
-
this.
|
|
4879
|
-
|
|
4880
|
-
|
|
4881
|
-
|
|
4882
|
-
|
|
4883
|
-
|
|
4884
|
-
|
|
4885
|
-
|
|
4886
|
-
|
|
4887
|
-
|
|
4888
|
-
|
|
4889
|
-
|
|
4890
|
-
|
|
4891
|
-
|
|
4892
|
-
|
|
4893
|
-
|
|
4894
|
-
|
|
4895
|
-
|
|
4896
|
-
|
|
5545
|
+
this.Total = 'Total' in params ? params.Total : null;
|
|
5546
|
+
|
|
5547
|
+
if (params.Data) {
|
|
5548
|
+
this.Data = new Array();
|
|
5549
|
+
for (let z in params.Data) {
|
|
5550
|
+
let obj = new DBAssetVO();
|
|
5551
|
+
obj.deserialize(params.Data[z]);
|
|
5552
|
+
this.Data.push(obj);
|
|
5553
|
+
}
|
|
5554
|
+
}
|
|
5555
|
+
|
|
5556
|
+
if (params.RegionList) {
|
|
5557
|
+
this.RegionList = new Array();
|
|
5558
|
+
for (let z in params.RegionList) {
|
|
5559
|
+
let obj = new FilterDataObject();
|
|
5560
|
+
obj.deserialize(params.RegionList[z]);
|
|
5561
|
+
this.RegionList.push(obj);
|
|
5562
|
+
}
|
|
5563
|
+
}
|
|
5564
|
+
|
|
5565
|
+
if (params.AssetTypeList) {
|
|
5566
|
+
this.AssetTypeList = new Array();
|
|
5567
|
+
for (let z in params.AssetTypeList) {
|
|
5568
|
+
let obj = new FilterDataObject();
|
|
5569
|
+
obj.deserialize(params.AssetTypeList[z]);
|
|
5570
|
+
this.AssetTypeList.push(obj);
|
|
5571
|
+
}
|
|
5572
|
+
}
|
|
5573
|
+
|
|
5574
|
+
if (params.VpcList) {
|
|
5575
|
+
this.VpcList = new Array();
|
|
5576
|
+
for (let z in params.VpcList) {
|
|
5577
|
+
let obj = new FilterDataObject();
|
|
5578
|
+
obj.deserialize(params.VpcList[z]);
|
|
5579
|
+
this.VpcList.push(obj);
|
|
5580
|
+
}
|
|
5581
|
+
}
|
|
5582
|
+
|
|
5583
|
+
if (params.AppIdList) {
|
|
5584
|
+
this.AppIdList = new Array();
|
|
5585
|
+
for (let z in params.AppIdList) {
|
|
5586
|
+
let obj = new FilterDataObject();
|
|
5587
|
+
obj.deserialize(params.AppIdList[z]);
|
|
5588
|
+
this.AppIdList.push(obj);
|
|
5589
|
+
}
|
|
5590
|
+
}
|
|
5591
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
4897
5592
|
|
|
4898
5593
|
}
|
|
4899
5594
|
}
|
|
@@ -7120,25 +7815,208 @@ class DescribeRiskCenterPortViewPortRiskListResponse extends AbstractModel {
|
|
|
7120
7815
|
}
|
|
7121
7816
|
}
|
|
7122
7817
|
|
|
7123
|
-
/**
|
|
7124
|
-
* DeleteDomainAndIp response structure.
|
|
7125
|
-
* @class
|
|
7126
|
-
*/
|
|
7127
|
-
class DeleteDomainAndIpResponse extends AbstractModel {
|
|
7128
|
-
constructor(){
|
|
7129
|
-
super();
|
|
7818
|
+
/**
|
|
7819
|
+
* DeleteDomainAndIp response structure.
|
|
7820
|
+
* @class
|
|
7821
|
+
*/
|
|
7822
|
+
class DeleteDomainAndIpResponse extends AbstractModel {
|
|
7823
|
+
constructor(){
|
|
7824
|
+
super();
|
|
7825
|
+
|
|
7826
|
+
/**
|
|
7827
|
+
* Number of deleted assets
|
|
7828
|
+
* @type {number || null}
|
|
7829
|
+
*/
|
|
7830
|
+
this.Data = null;
|
|
7831
|
+
|
|
7832
|
+
/**
|
|
7833
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
7834
|
+
* @type {string || null}
|
|
7835
|
+
*/
|
|
7836
|
+
this.RequestId = null;
|
|
7837
|
+
|
|
7838
|
+
}
|
|
7839
|
+
|
|
7840
|
+
/**
|
|
7841
|
+
* @private
|
|
7842
|
+
*/
|
|
7843
|
+
deserialize(params) {
|
|
7844
|
+
if (!params) {
|
|
7845
|
+
return;
|
|
7846
|
+
}
|
|
7847
|
+
this.Data = 'Data' in params ? params.Data : null;
|
|
7848
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
7849
|
+
|
|
7850
|
+
}
|
|
7851
|
+
}
|
|
7852
|
+
|
|
7853
|
+
/**
|
|
7854
|
+
* Service risk
|
|
7855
|
+
* @class
|
|
7856
|
+
*/
|
|
7857
|
+
class ServerRisk extends AbstractModel {
|
|
7858
|
+
constructor(){
|
|
7859
|
+
super();
|
|
7860
|
+
|
|
7861
|
+
/**
|
|
7862
|
+
* Service tag
|
|
7863
|
+
* @type {string || null}
|
|
7864
|
+
*/
|
|
7865
|
+
this.ServiceTag = null;
|
|
7866
|
+
|
|
7867
|
+
/**
|
|
7868
|
+
* Port
|
|
7869
|
+
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
7870
|
+
* @type {number || null}
|
|
7871
|
+
*/
|
|
7872
|
+
this.Port = null;
|
|
7873
|
+
|
|
7874
|
+
/**
|
|
7875
|
+
* Affected assets
|
|
7876
|
+
* @type {string || null}
|
|
7877
|
+
*/
|
|
7878
|
+
this.AffectAsset = null;
|
|
7879
|
+
|
|
7880
|
+
/**
|
|
7881
|
+
* Instance ID
|
|
7882
|
+
* @type {string || null}
|
|
7883
|
+
*/
|
|
7884
|
+
this.InstanceId = null;
|
|
7885
|
+
|
|
7886
|
+
/**
|
|
7887
|
+
* Instance name
|
|
7888
|
+
* @type {string || null}
|
|
7889
|
+
*/
|
|
7890
|
+
this.InstanceName = null;
|
|
7891
|
+
|
|
7892
|
+
/**
|
|
7893
|
+
* Asset type
|
|
7894
|
+
* @type {string || null}
|
|
7895
|
+
*/
|
|
7896
|
+
this.InstanceType = null;
|
|
7897
|
+
|
|
7898
|
+
/**
|
|
7899
|
+
* Risk level
|
|
7900
|
+
* @type {string || null}
|
|
7901
|
+
*/
|
|
7902
|
+
this.Level = null;
|
|
7903
|
+
|
|
7904
|
+
/**
|
|
7905
|
+
* Network protocol
|
|
7906
|
+
* @type {string || null}
|
|
7907
|
+
*/
|
|
7908
|
+
this.Protocol = null;
|
|
7909
|
+
|
|
7910
|
+
/**
|
|
7911
|
+
* Components
|
|
7912
|
+
* @type {string || null}
|
|
7913
|
+
*/
|
|
7914
|
+
this.Component = null;
|
|
7915
|
+
|
|
7916
|
+
/**
|
|
7917
|
+
* Service
|
|
7918
|
+
* @type {string || null}
|
|
7919
|
+
*/
|
|
7920
|
+
this.Service = null;
|
|
7921
|
+
|
|
7922
|
+
/**
|
|
7923
|
+
* Last detected
|
|
7924
|
+
* @type {string || null}
|
|
7925
|
+
*/
|
|
7926
|
+
this.RecentTime = null;
|
|
7927
|
+
|
|
7928
|
+
/**
|
|
7929
|
+
* First detected
|
|
7930
|
+
* @type {string || null}
|
|
7931
|
+
*/
|
|
7932
|
+
this.FirstTime = null;
|
|
7933
|
+
|
|
7934
|
+
/**
|
|
7935
|
+
* Risk Details
|
|
7936
|
+
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
7937
|
+
* @type {string || null}
|
|
7938
|
+
*/
|
|
7939
|
+
this.RiskDetails = null;
|
|
7940
|
+
|
|
7941
|
+
/**
|
|
7942
|
+
* Handling suggestion
|
|
7943
|
+
* @type {string || null}
|
|
7944
|
+
*/
|
|
7945
|
+
this.Suggestion = null;
|
|
7946
|
+
|
|
7947
|
+
/**
|
|
7948
|
+
* Status of the risk. `0`: Not handled, `1`: Handled; `2`: Ignored
|
|
7949
|
+
* @type {number || null}
|
|
7950
|
+
*/
|
|
7951
|
+
this.Status = null;
|
|
7952
|
+
|
|
7953
|
+
/**
|
|
7954
|
+
* Unique ID of the asset
|
|
7955
|
+
* @type {string || null}
|
|
7956
|
+
*/
|
|
7957
|
+
this.Id = null;
|
|
7958
|
+
|
|
7959
|
+
/**
|
|
7960
|
+
* User `appid`
|
|
7961
|
+
* @type {string || null}
|
|
7962
|
+
*/
|
|
7963
|
+
this.AppId = null;
|
|
7964
|
+
|
|
7965
|
+
/**
|
|
7966
|
+
* User name.
|
|
7967
|
+
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
7968
|
+
* @type {string || null}
|
|
7969
|
+
*/
|
|
7970
|
+
this.Nick = null;
|
|
7971
|
+
|
|
7972
|
+
/**
|
|
7973
|
+
* User `uin`
|
|
7974
|
+
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
7975
|
+
* @type {string || null}
|
|
7976
|
+
*/
|
|
7977
|
+
this.Uin = null;
|
|
7978
|
+
|
|
7979
|
+
/**
|
|
7980
|
+
* Service snapshot
|
|
7981
|
+
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
7982
|
+
* @type {string || null}
|
|
7983
|
+
*/
|
|
7984
|
+
this.ServiceSnapshot = null;
|
|
7985
|
+
|
|
7986
|
+
/**
|
|
7987
|
+
* Service access URL.
|
|
7988
|
+
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
7989
|
+
* @type {string || null}
|
|
7990
|
+
*/
|
|
7991
|
+
this.Url = null;
|
|
7992
|
+
|
|
7993
|
+
/**
|
|
7994
|
+
* Data entry key
|
|
7995
|
+
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
7996
|
+
* @type {string || null}
|
|
7997
|
+
*/
|
|
7998
|
+
this.Index = null;
|
|
7999
|
+
|
|
8000
|
+
/**
|
|
8001
|
+
* List of risks
|
|
8002
|
+
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
8003
|
+
* @type {Array.<ServerRiskSuggestion> || null}
|
|
8004
|
+
*/
|
|
8005
|
+
this.RiskList = null;
|
|
7130
8006
|
|
|
7131
8007
|
/**
|
|
7132
|
-
*
|
|
7133
|
-
|
|
8008
|
+
* List of fix suggestions
|
|
8009
|
+
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
8010
|
+
* @type {Array.<ServerRiskSuggestion> || null}
|
|
7134
8011
|
*/
|
|
7135
|
-
this.
|
|
8012
|
+
this.SuggestionList = null;
|
|
7136
8013
|
|
|
7137
8014
|
/**
|
|
7138
|
-
*
|
|
8015
|
+
* HTTP response code
|
|
8016
|
+
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
7139
8017
|
* @type {string || null}
|
|
7140
8018
|
*/
|
|
7141
|
-
this.
|
|
8019
|
+
this.StatusCode = null;
|
|
7142
8020
|
|
|
7143
8021
|
}
|
|
7144
8022
|
|
|
@@ -7149,8 +8027,47 @@ class DeleteDomainAndIpResponse extends AbstractModel {
|
|
|
7149
8027
|
if (!params) {
|
|
7150
8028
|
return;
|
|
7151
8029
|
}
|
|
7152
|
-
this.
|
|
7153
|
-
this.
|
|
8030
|
+
this.ServiceTag = 'ServiceTag' in params ? params.ServiceTag : null;
|
|
8031
|
+
this.Port = 'Port' in params ? params.Port : null;
|
|
8032
|
+
this.AffectAsset = 'AffectAsset' in params ? params.AffectAsset : null;
|
|
8033
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
8034
|
+
this.InstanceName = 'InstanceName' in params ? params.InstanceName : null;
|
|
8035
|
+
this.InstanceType = 'InstanceType' in params ? params.InstanceType : null;
|
|
8036
|
+
this.Level = 'Level' in params ? params.Level : null;
|
|
8037
|
+
this.Protocol = 'Protocol' in params ? params.Protocol : null;
|
|
8038
|
+
this.Component = 'Component' in params ? params.Component : null;
|
|
8039
|
+
this.Service = 'Service' in params ? params.Service : null;
|
|
8040
|
+
this.RecentTime = 'RecentTime' in params ? params.RecentTime : null;
|
|
8041
|
+
this.FirstTime = 'FirstTime' in params ? params.FirstTime : null;
|
|
8042
|
+
this.RiskDetails = 'RiskDetails' in params ? params.RiskDetails : null;
|
|
8043
|
+
this.Suggestion = 'Suggestion' in params ? params.Suggestion : null;
|
|
8044
|
+
this.Status = 'Status' in params ? params.Status : null;
|
|
8045
|
+
this.Id = 'Id' in params ? params.Id : null;
|
|
8046
|
+
this.AppId = 'AppId' in params ? params.AppId : null;
|
|
8047
|
+
this.Nick = 'Nick' in params ? params.Nick : null;
|
|
8048
|
+
this.Uin = 'Uin' in params ? params.Uin : null;
|
|
8049
|
+
this.ServiceSnapshot = 'ServiceSnapshot' in params ? params.ServiceSnapshot : null;
|
|
8050
|
+
this.Url = 'Url' in params ? params.Url : null;
|
|
8051
|
+
this.Index = 'Index' in params ? params.Index : null;
|
|
8052
|
+
|
|
8053
|
+
if (params.RiskList) {
|
|
8054
|
+
this.RiskList = new Array();
|
|
8055
|
+
for (let z in params.RiskList) {
|
|
8056
|
+
let obj = new ServerRiskSuggestion();
|
|
8057
|
+
obj.deserialize(params.RiskList[z]);
|
|
8058
|
+
this.RiskList.push(obj);
|
|
8059
|
+
}
|
|
8060
|
+
}
|
|
8061
|
+
|
|
8062
|
+
if (params.SuggestionList) {
|
|
8063
|
+
this.SuggestionList = new Array();
|
|
8064
|
+
for (let z in params.SuggestionList) {
|
|
8065
|
+
let obj = new ServerRiskSuggestion();
|
|
8066
|
+
obj.deserialize(params.SuggestionList[z]);
|
|
8067
|
+
this.SuggestionList.push(obj);
|
|
8068
|
+
}
|
|
8069
|
+
}
|
|
8070
|
+
this.StatusCode = 'StatusCode' in params ? params.StatusCode : null;
|
|
7154
8071
|
|
|
7155
8072
|
}
|
|
7156
8073
|
}
|
|
@@ -8720,60 +9637,18 @@ Note: This field may return·null, indicating that no valid values can be obtain
|
|
|
8720
9637
|
}
|
|
8721
9638
|
|
|
8722
9639
|
/**
|
|
8723
|
-
*
|
|
9640
|
+
* DescribeTaskLogList request structure.
|
|
8724
9641
|
* @class
|
|
8725
9642
|
*/
|
|
8726
|
-
class
|
|
9643
|
+
class DescribeTaskLogListRequest extends AbstractModel {
|
|
8727
9644
|
constructor(){
|
|
8728
9645
|
super();
|
|
8729
9646
|
|
|
8730
9647
|
/**
|
|
8731
|
-
*
|
|
8732
|
-
|
|
8733
|
-
* @type {number || null}
|
|
8734
|
-
*/
|
|
8735
|
-
this.Total = null;
|
|
8736
|
-
|
|
8737
|
-
/**
|
|
8738
|
-
* Total of assets
|
|
8739
|
-
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
8740
|
-
* @type {Array.<DBAssetVO> || null}
|
|
8741
|
-
*/
|
|
8742
|
-
this.Data = null;
|
|
8743
|
-
|
|
8744
|
-
/**
|
|
8745
|
-
* List of regions
|
|
8746
|
-
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
8747
|
-
* @type {Array.<FilterDataObject> || null}
|
|
8748
|
-
*/
|
|
8749
|
-
this.RegionList = null;
|
|
8750
|
-
|
|
8751
|
-
/**
|
|
8752
|
-
* List of asset types
|
|
8753
|
-
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
8754
|
-
* @type {Array.<FilterDataObject> || null}
|
|
8755
|
-
*/
|
|
8756
|
-
this.AssetTypeList = null;
|
|
8757
|
-
|
|
8758
|
-
/**
|
|
8759
|
-
* List of VPCs
|
|
8760
|
-
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
8761
|
-
* @type {Array.<FilterDataObject> || null}
|
|
8762
|
-
*/
|
|
8763
|
-
this.VpcList = null;
|
|
8764
|
-
|
|
8765
|
-
/**
|
|
8766
|
-
* List of users (AppId)
|
|
8767
|
-
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
8768
|
-
* @type {Array.<FilterDataObject> || null}
|
|
8769
|
-
*/
|
|
8770
|
-
this.AppIdList = null;
|
|
8771
|
-
|
|
8772
|
-
/**
|
|
8773
|
-
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
8774
|
-
* @type {string || null}
|
|
9648
|
+
* Filter conditions
|
|
9649
|
+
* @type {Filter || null}
|
|
8775
9650
|
*/
|
|
8776
|
-
this.
|
|
9651
|
+
this.Filter = null;
|
|
8777
9652
|
|
|
8778
9653
|
}
|
|
8779
9654
|
|
|
@@ -8784,53 +9659,12 @@ Note: This field may return·null, indicating that no valid values can be obtain
|
|
|
8784
9659
|
if (!params) {
|
|
8785
9660
|
return;
|
|
8786
9661
|
}
|
|
8787
|
-
this.Total = 'Total' in params ? params.Total : null;
|
|
8788
|
-
|
|
8789
|
-
if (params.Data) {
|
|
8790
|
-
this.Data = new Array();
|
|
8791
|
-
for (let z in params.Data) {
|
|
8792
|
-
let obj = new DBAssetVO();
|
|
8793
|
-
obj.deserialize(params.Data[z]);
|
|
8794
|
-
this.Data.push(obj);
|
|
8795
|
-
}
|
|
8796
|
-
}
|
|
8797
|
-
|
|
8798
|
-
if (params.RegionList) {
|
|
8799
|
-
this.RegionList = new Array();
|
|
8800
|
-
for (let z in params.RegionList) {
|
|
8801
|
-
let obj = new FilterDataObject();
|
|
8802
|
-
obj.deserialize(params.RegionList[z]);
|
|
8803
|
-
this.RegionList.push(obj);
|
|
8804
|
-
}
|
|
8805
|
-
}
|
|
8806
|
-
|
|
8807
|
-
if (params.AssetTypeList) {
|
|
8808
|
-
this.AssetTypeList = new Array();
|
|
8809
|
-
for (let z in params.AssetTypeList) {
|
|
8810
|
-
let obj = new FilterDataObject();
|
|
8811
|
-
obj.deserialize(params.AssetTypeList[z]);
|
|
8812
|
-
this.AssetTypeList.push(obj);
|
|
8813
|
-
}
|
|
8814
|
-
}
|
|
8815
|
-
|
|
8816
|
-
if (params.VpcList) {
|
|
8817
|
-
this.VpcList = new Array();
|
|
8818
|
-
for (let z in params.VpcList) {
|
|
8819
|
-
let obj = new FilterDataObject();
|
|
8820
|
-
obj.deserialize(params.VpcList[z]);
|
|
8821
|
-
this.VpcList.push(obj);
|
|
8822
|
-
}
|
|
8823
|
-
}
|
|
8824
9662
|
|
|
8825
|
-
if (params.
|
|
8826
|
-
|
|
8827
|
-
|
|
8828
|
-
|
|
8829
|
-
obj.deserialize(params.AppIdList[z]);
|
|
8830
|
-
this.AppIdList.push(obj);
|
|
8831
|
-
}
|
|
9663
|
+
if (params.Filter) {
|
|
9664
|
+
let obj = new Filter();
|
|
9665
|
+
obj.deserialize(params.Filter)
|
|
9666
|
+
this.Filter = obj;
|
|
8832
9667
|
}
|
|
8833
|
-
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
8834
9668
|
|
|
8835
9669
|
}
|
|
8836
9670
|
}
|
|
@@ -9321,15 +10155,101 @@ class ModifyRiskCenterRiskStatusResponse extends AbstractModel {
|
|
|
9321
10155
|
}
|
|
9322
10156
|
|
|
9323
10157
|
/**
|
|
9324
|
-
*
|
|
10158
|
+
* DescribeSubUserInfo response structure.
|
|
9325
10159
|
* @class
|
|
9326
10160
|
*/
|
|
9327
|
-
class
|
|
10161
|
+
class DescribeSubUserInfoResponse extends AbstractModel {
|
|
9328
10162
|
constructor(){
|
|
9329
10163
|
super();
|
|
9330
10164
|
|
|
9331
10165
|
/**
|
|
9332
|
-
*
|
|
10166
|
+
* total
|
|
10167
|
+
* @type {number || null}
|
|
10168
|
+
*/
|
|
10169
|
+
this.TotalCount = null;
|
|
10170
|
+
|
|
10171
|
+
/**
|
|
10172
|
+
* Sub-user list
|
|
10173
|
+
* @type {Array.<SubUserInfo> || null}
|
|
10174
|
+
*/
|
|
10175
|
+
this.Data = null;
|
|
10176
|
+
|
|
10177
|
+
/**
|
|
10178
|
+
* Manufacturer Enumeration List
|
|
10179
|
+
* @type {Array.<FilterDataObject> || null}
|
|
10180
|
+
*/
|
|
10181
|
+
this.CloudTypeLst = null;
|
|
10182
|
+
|
|
10183
|
+
/**
|
|
10184
|
+
* Enumeration of appid of the main account
|
|
10185
|
+
* @type {Array.<FilterDataObject> || null}
|
|
10186
|
+
*/
|
|
10187
|
+
this.OwnerAppIDLst = null;
|
|
10188
|
+
|
|
10189
|
+
/**
|
|
10190
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
10191
|
+
* @type {string || null}
|
|
10192
|
+
*/
|
|
10193
|
+
this.RequestId = null;
|
|
10194
|
+
|
|
10195
|
+
}
|
|
10196
|
+
|
|
10197
|
+
/**
|
|
10198
|
+
* @private
|
|
10199
|
+
*/
|
|
10200
|
+
deserialize(params) {
|
|
10201
|
+
if (!params) {
|
|
10202
|
+
return;
|
|
10203
|
+
}
|
|
10204
|
+
this.TotalCount = 'TotalCount' in params ? params.TotalCount : null;
|
|
10205
|
+
|
|
10206
|
+
if (params.Data) {
|
|
10207
|
+
this.Data = new Array();
|
|
10208
|
+
for (let z in params.Data) {
|
|
10209
|
+
let obj = new SubUserInfo();
|
|
10210
|
+
obj.deserialize(params.Data[z]);
|
|
10211
|
+
this.Data.push(obj);
|
|
10212
|
+
}
|
|
10213
|
+
}
|
|
10214
|
+
|
|
10215
|
+
if (params.CloudTypeLst) {
|
|
10216
|
+
this.CloudTypeLst = new Array();
|
|
10217
|
+
for (let z in params.CloudTypeLst) {
|
|
10218
|
+
let obj = new FilterDataObject();
|
|
10219
|
+
obj.deserialize(params.CloudTypeLst[z]);
|
|
10220
|
+
this.CloudTypeLst.push(obj);
|
|
10221
|
+
}
|
|
10222
|
+
}
|
|
10223
|
+
|
|
10224
|
+
if (params.OwnerAppIDLst) {
|
|
10225
|
+
this.OwnerAppIDLst = new Array();
|
|
10226
|
+
for (let z in params.OwnerAppIDLst) {
|
|
10227
|
+
let obj = new FilterDataObject();
|
|
10228
|
+
obj.deserialize(params.OwnerAppIDLst[z]);
|
|
10229
|
+
this.OwnerAppIDLst.push(obj);
|
|
10230
|
+
}
|
|
10231
|
+
}
|
|
10232
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
10233
|
+
|
|
10234
|
+
}
|
|
10235
|
+
}
|
|
10236
|
+
|
|
10237
|
+
/**
|
|
10238
|
+
* DescribeSubUserInfo request structure.
|
|
10239
|
+
* @class
|
|
10240
|
+
*/
|
|
10241
|
+
class DescribeSubUserInfoRequest extends AbstractModel {
|
|
10242
|
+
constructor(){
|
|
10243
|
+
super();
|
|
10244
|
+
|
|
10245
|
+
/**
|
|
10246
|
+
* Member ID of the group account
|
|
10247
|
+
* @type {Array.<string> || null}
|
|
10248
|
+
*/
|
|
10249
|
+
this.MemberId = null;
|
|
10250
|
+
|
|
10251
|
+
/**
|
|
10252
|
+
* Filter content
|
|
9333
10253
|
* @type {Filter || null}
|
|
9334
10254
|
*/
|
|
9335
10255
|
this.Filter = null;
|
|
@@ -9343,6 +10263,7 @@ class DescribeTaskLogListRequest extends AbstractModel {
|
|
|
9343
10263
|
if (!params) {
|
|
9344
10264
|
return;
|
|
9345
10265
|
}
|
|
10266
|
+
this.MemberId = 'MemberId' in params ? params.MemberId : null;
|
|
9346
10267
|
|
|
9347
10268
|
if (params.Filter) {
|
|
9348
10269
|
let obj = new Filter();
|
|
@@ -9542,6 +10463,7 @@ module.exports = {
|
|
|
9542
10463
|
DescribeRiskCenterAssetViewWeakPasswordRiskListResponse: DescribeRiskCenterAssetViewWeakPasswordRiskListResponse,
|
|
9543
10464
|
DescribeVULRiskAdvanceCFGListResponse: DescribeVULRiskAdvanceCFGListResponse,
|
|
9544
10465
|
TaskCenterWeakPwdRiskInputParam: TaskCenterWeakPwdRiskInputParam,
|
|
10466
|
+
DescribeOrganizationUserInfoRequest: DescribeOrganizationUserInfoRequest,
|
|
9545
10467
|
ModifyRiskCenterRiskStatusRequest: ModifyRiskCenterRiskStatusRequest,
|
|
9546
10468
|
ReportItemKey: ReportItemKey,
|
|
9547
10469
|
CVMAssetVO: CVMAssetVO,
|
|
@@ -9553,20 +10475,24 @@ module.exports = {
|
|
|
9553
10475
|
VULRiskAdvanceCFGList: VULRiskAdvanceCFGList,
|
|
9554
10476
|
StopRiskCenterTaskRequest: StopRiskCenterTaskRequest,
|
|
9555
10477
|
DataSearchBug: DataSearchBug,
|
|
10478
|
+
OrganizationUserInfo: OrganizationUserInfo,
|
|
9556
10479
|
AssetTag: AssetTag,
|
|
9557
|
-
RiskCenterStatusKey: RiskCenterStatusKey,
|
|
9558
10480
|
DescribeVULRiskAdvanceCFGListRequest: DescribeVULRiskAdvanceCFGListRequest,
|
|
9559
10481
|
DescribeRiskCenterAssetViewCFGRiskListRequest: DescribeRiskCenterAssetViewCFGRiskListRequest,
|
|
9560
10482
|
DescribeDomainAssetsRequest: DescribeDomainAssetsRequest,
|
|
9561
10483
|
Tag: Tag,
|
|
10484
|
+
WebsiteRisk: WebsiteRisk,
|
|
9562
10485
|
DeleteDomainAndIpRequest: DeleteDomainAndIpRequest,
|
|
9563
10486
|
DescribeScanTaskListRequest: DescribeScanTaskListRequest,
|
|
10487
|
+
DescribeOrganizationInfoRequest: DescribeOrganizationInfoRequest,
|
|
9564
10488
|
TaskIdListKey: TaskIdListKey,
|
|
9565
10489
|
DescribeRiskCenterWebsiteRiskListResponse: DescribeRiskCenterWebsiteRiskListResponse,
|
|
9566
10490
|
DescribeScanReportListResponse: DescribeScanReportListResponse,
|
|
9567
10491
|
DescribeSearchBugInfoRequest: DescribeSearchBugInfoRequest,
|
|
9568
10492
|
TaskLogURL: TaskLogURL,
|
|
9569
10493
|
AddNewBindRoleUserRequest: AddNewBindRoleUserRequest,
|
|
10494
|
+
DescribeOrganizationUserInfoResponse: DescribeOrganizationUserInfoResponse,
|
|
10495
|
+
OrganizationInfo: OrganizationInfo,
|
|
9570
10496
|
DescribeListenerListResponse: DescribeListenerListResponse,
|
|
9571
10497
|
DBAssetVO: DBAssetVO,
|
|
9572
10498
|
AssetInfoDetail: AssetInfoDetail,
|
|
@@ -9575,20 +10501,23 @@ module.exports = {
|
|
|
9575
10501
|
DescribeSubnetAssetsResponse: DescribeSubnetAssetsResponse,
|
|
9576
10502
|
DescribeRiskCenterAssetViewPortRiskListRequest: DescribeRiskCenterAssetViewPortRiskListRequest,
|
|
9577
10503
|
StopRiskCenterTaskResponse: StopRiskCenterTaskResponse,
|
|
9578
|
-
|
|
10504
|
+
DescribeOrganizationInfoResponse: DescribeOrganizationInfoResponse,
|
|
10505
|
+
DescribeVpcAssetsRequest: DescribeVpcAssetsRequest,
|
|
9579
10506
|
TaskAssetObject: TaskAssetObject,
|
|
9580
10507
|
IpAssetListVO: IpAssetListVO,
|
|
9581
10508
|
FilterDataObject: FilterDataObject,
|
|
9582
|
-
|
|
10509
|
+
RiskCenterStatusKey: RiskCenterStatusKey,
|
|
9583
10510
|
DescribeRiskCenterAssetViewWeakPasswordRiskListRequest: DescribeRiskCenterAssetViewWeakPasswordRiskListRequest,
|
|
9584
10511
|
PublicIpDomainListKey: PublicIpDomainListKey,
|
|
9585
10512
|
DescribeCVMAssetsResponse: DescribeCVMAssetsResponse,
|
|
9586
10513
|
DbAssetInfo: DbAssetInfo,
|
|
10514
|
+
SubUserInfo: SubUserInfo,
|
|
10515
|
+
CloudCountDesc: CloudCountDesc,
|
|
9587
10516
|
DescribePublicIpAssetsRequest: DescribePublicIpAssetsRequest,
|
|
9588
10517
|
AssetClusterPod: AssetClusterPod,
|
|
9589
10518
|
DescribeCVMAssetInfoRequest: DescribeCVMAssetInfoRequest,
|
|
9590
10519
|
AssetViewWeakPassRisk: AssetViewWeakPassRisk,
|
|
9591
|
-
|
|
10520
|
+
DescribeDbAssetsResponse: DescribeDbAssetsResponse,
|
|
9592
10521
|
CreateRiskCenterScanTaskRequest: CreateRiskCenterScanTaskRequest,
|
|
9593
10522
|
DescribeRiskCenterAssetViewCFGRiskListResponse: DescribeRiskCenterAssetViewCFGRiskListResponse,
|
|
9594
10523
|
DescribeRiskCenterVULViewVULRiskListResponse: DescribeRiskCenterVULViewVULRiskListResponse,
|
|
@@ -9615,6 +10544,7 @@ module.exports = {
|
|
|
9615
10544
|
DescribeRiskCenterPortViewPortRiskListRequest: DescribeRiskCenterPortViewPortRiskListRequest,
|
|
9616
10545
|
DescribeRiskCenterPortViewPortRiskListResponse: DescribeRiskCenterPortViewPortRiskListResponse,
|
|
9617
10546
|
DeleteDomainAndIpResponse: DeleteDomainAndIpResponse,
|
|
10547
|
+
ServerRisk: ServerRisk,
|
|
9618
10548
|
ReportTaskIdList: ReportTaskIdList,
|
|
9619
10549
|
AddNewBindRoleUserResponse: AddNewBindRoleUserResponse,
|
|
9620
10550
|
WhereFilter: WhereFilter,
|
|
@@ -9630,7 +10560,7 @@ module.exports = {
|
|
|
9630
10560
|
DescribeTaskLogListResponse: DescribeTaskLogListResponse,
|
|
9631
10561
|
BugInfoDetail: BugInfoDetail,
|
|
9632
10562
|
DescribeDomainAssetsResponse: DescribeDomainAssetsResponse,
|
|
9633
|
-
|
|
10563
|
+
DescribeTaskLogListRequest: DescribeTaskLogListRequest,
|
|
9634
10564
|
DescribeRiskCenterAssetViewVULRiskListResponse: DescribeRiskCenterAssetViewVULRiskListResponse,
|
|
9635
10565
|
DescribeCVMAssetsRequest: DescribeCVMAssetsRequest,
|
|
9636
10566
|
DescribeRiskCenterServerRiskListRequest: DescribeRiskCenterServerRiskListRequest,
|
|
@@ -9639,7 +10569,8 @@ module.exports = {
|
|
|
9639
10569
|
DescribeListenerListRequest: DescribeListenerListRequest,
|
|
9640
10570
|
DeleteRiskScanTaskResponse: DeleteRiskScanTaskResponse,
|
|
9641
10571
|
ModifyRiskCenterRiskStatusResponse: ModifyRiskCenterRiskStatusResponse,
|
|
9642
|
-
|
|
10572
|
+
DescribeSubUserInfoResponse: DescribeSubUserInfoResponse,
|
|
10573
|
+
DescribeSubUserInfoRequest: DescribeSubUserInfoRequest,
|
|
9643
10574
|
DescribeRiskCenterAssetViewPortRiskListResponse: DescribeRiskCenterAssetViewPortRiskListResponse,
|
|
9644
10575
|
DescribeTaskLogURLRequest: DescribeTaskLogURLRequest,
|
|
9645
10576
|
|