tencentcloud-sdk-cdwdoris 3.0.1026 → 3.0.1027
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/v20211228/models.rb +114 -34
- 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: c4eae0c8b05ac1d6d911b146c07d59799c9218c5
|
4
|
+
data.tar.gz: a6558d7a7d15c73c6ec5497629d1311b0109b4d7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fe051c68873f2ed0cb82f5f5147f0ec5433a1689688569fc818992bdbc18cadb7750b77c29661aba97f6f75947d4ccd8abcbf5d8288fb7aa348579e217b35313
|
7
|
+
data.tar.gz: d571b6dd9c2237000d27017535521b763af657b5bd785d0cfc88f355f7709eb7bfd698cec61610a8d74e83fea871c93878306acb4cead9778297b391bd7f5d30
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1027
|
data/lib/v20211228/models.rb
CHANGED
@@ -25,13 +25,19 @@ module TencentCloud
|
|
25
25
|
# @type ApiType: String
|
26
26
|
# @param UserPrivilege: 用户权限类型 0:普通用户 1:管理员
|
27
27
|
# @type UserPrivilege: Integer
|
28
|
+
# @param ComputeGroups: 计算组列表
|
29
|
+
# @type ComputeGroups: Array
|
30
|
+
# @param InstanceId: 集群ID
|
31
|
+
# @type InstanceId: String
|
28
32
|
|
29
|
-
attr_accessor :UserInfo, :ApiType, :UserPrivilege
|
33
|
+
attr_accessor :UserInfo, :ApiType, :UserPrivilege, :ComputeGroups, :InstanceId
|
30
34
|
|
31
|
-
def initialize(userinfo=nil, apitype=nil, userprivilege=nil)
|
35
|
+
def initialize(userinfo=nil, apitype=nil, userprivilege=nil, computegroups=nil, instanceid=nil)
|
32
36
|
@UserInfo = userinfo
|
33
37
|
@ApiType = apitype
|
34
38
|
@UserPrivilege = userprivilege
|
39
|
+
@ComputeGroups = computegroups
|
40
|
+
@InstanceId = instanceid
|
35
41
|
end
|
36
42
|
|
37
43
|
def deserialize(params)
|
@@ -41,6 +47,8 @@ module TencentCloud
|
|
41
47
|
end
|
42
48
|
@ApiType = params['ApiType']
|
43
49
|
@UserPrivilege = params['UserPrivilege']
|
50
|
+
@ComputeGroups = params['ComputeGroups']
|
51
|
+
@InstanceId = params['InstanceId']
|
44
52
|
end
|
45
53
|
end
|
46
54
|
|
@@ -472,6 +480,8 @@ module TencentCloud
|
|
472
480
|
|
473
481
|
# 用于返回XML格式的配置文件和内容以及其他配置文件有关的信息
|
474
482
|
class ClusterConfigsInfoFromEMR < TencentCloud::Common::AbstractModel
|
483
|
+
# @param ComputeGroupId: 计算组id
|
484
|
+
# @type ComputeGroupId: String
|
475
485
|
# @param FileName: 配置文件名称
|
476
486
|
# @type FileName: String
|
477
487
|
# @param FileConf: 配置文件对应的相关属性信息
|
@@ -490,12 +500,13 @@ module TencentCloud
|
|
490
500
|
# @param FileKeyValuesNew: 配置文件kv值
|
491
501
|
# @type FileKeyValuesNew: Array
|
492
502
|
|
493
|
-
attr_accessor :FileName, :FileConf, :KeyConf, :OriParam, :NeedRestart, :FilePath, :FileKeyValues, :FileKeyValuesNew
|
503
|
+
attr_accessor :ComputeGroupId, :FileName, :FileConf, :KeyConf, :OriParam, :NeedRestart, :FilePath, :FileKeyValues, :FileKeyValuesNew
|
494
504
|
extend Gem::Deprecate
|
495
505
|
deprecate :FileKeyValues, :none, 2025, 3
|
496
506
|
deprecate :FileKeyValues=, :none, 2025, 3
|
497
507
|
|
498
|
-
def initialize(filename=nil, fileconf=nil, keyconf=nil, oriparam=nil, needrestart=nil, filepath=nil, filekeyvalues=nil, filekeyvaluesnew=nil)
|
508
|
+
def initialize(computegroupid=nil, filename=nil, fileconf=nil, keyconf=nil, oriparam=nil, needrestart=nil, filepath=nil, filekeyvalues=nil, filekeyvaluesnew=nil)
|
509
|
+
@ComputeGroupId = computegroupid
|
499
510
|
@FileName = filename
|
500
511
|
@FileConf = fileconf
|
501
512
|
@KeyConf = keyconf
|
@@ -507,6 +518,7 @@ module TencentCloud
|
|
507
518
|
end
|
508
519
|
|
509
520
|
def deserialize(params)
|
521
|
+
@ComputeGroupId = params['ComputeGroupId']
|
510
522
|
@FileName = params['FileName']
|
511
523
|
@FileConf = params['FileConf']
|
512
524
|
@KeyConf = params['KeyConf']
|
@@ -1094,10 +1106,12 @@ module TencentCloud
|
|
1094
1106
|
# @type State: String
|
1095
1107
|
# @param IsQuery: 是否是查询
|
1096
1108
|
# @type IsQuery: Boolean
|
1109
|
+
# @param ComputeGroup: 计算组
|
1110
|
+
# @type ComputeGroup: String
|
1097
1111
|
|
1098
|
-
attr_accessor :OsUser, :InitialQueryId, :Sql, :QueryStartTime, :DurationMs, :ReadRows, :ResultRows, :ResultBytes, :MemoryUsage, :InitialAddress, :DbName, :SqlType, :Catalog, :State, :IsQuery
|
1112
|
+
attr_accessor :OsUser, :InitialQueryId, :Sql, :QueryStartTime, :DurationMs, :ReadRows, :ResultRows, :ResultBytes, :MemoryUsage, :InitialAddress, :DbName, :SqlType, :Catalog, :State, :IsQuery, :ComputeGroup
|
1099
1113
|
|
1100
|
-
def initialize(osuser=nil, initialqueryid=nil, sql=nil, querystarttime=nil, durationms=nil, readrows=nil, resultrows=nil, resultbytes=nil, memoryusage=nil, initialaddress=nil, dbname=nil, sqltype=nil, catalog=nil, state=nil, isquery=nil)
|
1114
|
+
def initialize(osuser=nil, initialqueryid=nil, sql=nil, querystarttime=nil, durationms=nil, readrows=nil, resultrows=nil, resultbytes=nil, memoryusage=nil, initialaddress=nil, dbname=nil, sqltype=nil, catalog=nil, state=nil, isquery=nil, computegroup=nil)
|
1101
1115
|
@OsUser = osuser
|
1102
1116
|
@InitialQueryId = initialqueryid
|
1103
1117
|
@Sql = sql
|
@@ -1113,6 +1127,7 @@ module TencentCloud
|
|
1113
1127
|
@Catalog = catalog
|
1114
1128
|
@State = state
|
1115
1129
|
@IsQuery = isquery
|
1130
|
+
@ComputeGroup = computegroup
|
1116
1131
|
end
|
1117
1132
|
|
1118
1133
|
def deserialize(params)
|
@@ -1131,6 +1146,7 @@ module TencentCloud
|
|
1131
1146
|
@Catalog = params['Catalog']
|
1132
1147
|
@State = params['State']
|
1133
1148
|
@IsQuery = params['IsQuery']
|
1149
|
+
@ComputeGroup = params['ComputeGroup']
|
1134
1150
|
end
|
1135
1151
|
end
|
1136
1152
|
|
@@ -1892,10 +1908,12 @@ module TencentCloud
|
|
1892
1908
|
# @type Catalogs: Array
|
1893
1909
|
# @param IsQuery: 是否是查询
|
1894
1910
|
# @type IsQuery: Array
|
1911
|
+
# @param ComputeGroups: 计算组列表
|
1912
|
+
# @type ComputeGroups: Array
|
1895
1913
|
|
1896
|
-
attr_accessor :InstanceId, :StartTime, :EndTime, :PageSize, :PageNum, :OrderType, :User, :DbName, :SqlType, :Sql, :Users, :DbNames, :SqlTypes, :Catalogs, :IsQuery
|
1914
|
+
attr_accessor :InstanceId, :StartTime, :EndTime, :PageSize, :PageNum, :OrderType, :User, :DbName, :SqlType, :Sql, :Users, :DbNames, :SqlTypes, :Catalogs, :IsQuery, :ComputeGroups
|
1897
1915
|
|
1898
|
-
def initialize(instanceid=nil, starttime=nil, endtime=nil, pagesize=nil, pagenum=nil, ordertype=nil, user=nil, dbname=nil, sqltype=nil, sql=nil, users=nil, dbnames=nil, sqltypes=nil, catalogs=nil, isquery=nil)
|
1916
|
+
def initialize(instanceid=nil, starttime=nil, endtime=nil, pagesize=nil, pagenum=nil, ordertype=nil, user=nil, dbname=nil, sqltype=nil, sql=nil, users=nil, dbnames=nil, sqltypes=nil, catalogs=nil, isquery=nil, computegroups=nil)
|
1899
1917
|
@InstanceId = instanceid
|
1900
1918
|
@StartTime = starttime
|
1901
1919
|
@EndTime = endtime
|
@@ -1911,6 +1929,7 @@ module TencentCloud
|
|
1911
1929
|
@SqlTypes = sqltypes
|
1912
1930
|
@Catalogs = catalogs
|
1913
1931
|
@IsQuery = isquery
|
1932
|
+
@ComputeGroups = computegroups
|
1914
1933
|
end
|
1915
1934
|
|
1916
1935
|
def deserialize(params)
|
@@ -1929,6 +1948,7 @@ module TencentCloud
|
|
1929
1948
|
@SqlTypes = params['SqlTypes']
|
1930
1949
|
@Catalogs = params['Catalogs']
|
1931
1950
|
@IsQuery = params['IsQuery']
|
1951
|
+
@ComputeGroups = params['ComputeGroups']
|
1932
1952
|
end
|
1933
1953
|
end
|
1934
1954
|
|
@@ -1984,10 +2004,12 @@ module TencentCloud
|
|
1984
2004
|
# @type Catalogs: Array
|
1985
2005
|
# @param IsQuery: 是否是查询
|
1986
2006
|
# @type IsQuery: Array
|
2007
|
+
# @param ComputeGroups: 计算组列表
|
2008
|
+
# @type ComputeGroups: Array
|
1987
2009
|
|
1988
|
-
attr_accessor :InstanceId, :StartTime, :EndTime, :PageSize, :PageNum, :OrderType, :User, :DbName, :SqlType, :Sql, :Users, :DbNames, :SqlTypes, :Catalogs, :IsQuery
|
2010
|
+
attr_accessor :InstanceId, :StartTime, :EndTime, :PageSize, :PageNum, :OrderType, :User, :DbName, :SqlType, :Sql, :Users, :DbNames, :SqlTypes, :Catalogs, :IsQuery, :ComputeGroups
|
1989
2011
|
|
1990
|
-
def initialize(instanceid=nil, starttime=nil, endtime=nil, pagesize=nil, pagenum=nil, ordertype=nil, user=nil, dbname=nil, sqltype=nil, sql=nil, users=nil, dbnames=nil, sqltypes=nil, catalogs=nil, isquery=nil)
|
2012
|
+
def initialize(instanceid=nil, starttime=nil, endtime=nil, pagesize=nil, pagenum=nil, ordertype=nil, user=nil, dbname=nil, sqltype=nil, sql=nil, users=nil, dbnames=nil, sqltypes=nil, catalogs=nil, isquery=nil, computegroups=nil)
|
1991
2013
|
@InstanceId = instanceid
|
1992
2014
|
@StartTime = starttime
|
1993
2015
|
@EndTime = endtime
|
@@ -2003,6 +2025,7 @@ module TencentCloud
|
|
2003
2025
|
@SqlTypes = sqltypes
|
2004
2026
|
@Catalogs = catalogs
|
2005
2027
|
@IsQuery = isquery
|
2028
|
+
@ComputeGroups = computegroups
|
2006
2029
|
end
|
2007
2030
|
|
2008
2031
|
def deserialize(params)
|
@@ -2021,6 +2044,7 @@ module TencentCloud
|
|
2021
2044
|
@SqlTypes = params['SqlTypes']
|
2022
2045
|
@Catalogs = params['Catalogs']
|
2023
2046
|
@IsQuery = params['IsQuery']
|
2047
|
+
@ComputeGroups = params['ComputeGroups']
|
2024
2048
|
end
|
2025
2049
|
end
|
2026
2050
|
|
@@ -2266,15 +2290,18 @@ module TencentCloud
|
|
2266
2290
|
# @type StartTime: String
|
2267
2291
|
# @param EndTime: 结束时间
|
2268
2292
|
# @type EndTime: String
|
2293
|
+
# @param ComputeGroupId: 计算组ID
|
2294
|
+
# @type ComputeGroupId: String
|
2269
2295
|
|
2270
|
-
attr_accessor :InstanceId, :Offset, :Limit, :StartTime, :EndTime
|
2296
|
+
attr_accessor :InstanceId, :Offset, :Limit, :StartTime, :EndTime, :ComputeGroupId
|
2271
2297
|
|
2272
|
-
def initialize(instanceid=nil, offset=nil, limit=nil, starttime=nil, endtime=nil)
|
2298
|
+
def initialize(instanceid=nil, offset=nil, limit=nil, starttime=nil, endtime=nil, computegroupid=nil)
|
2273
2299
|
@InstanceId = instanceid
|
2274
2300
|
@Offset = offset
|
2275
2301
|
@Limit = limit
|
2276
2302
|
@StartTime = starttime
|
2277
2303
|
@EndTime = endtime
|
2304
|
+
@ComputeGroupId = computegroupid
|
2278
2305
|
end
|
2279
2306
|
|
2280
2307
|
def deserialize(params)
|
@@ -2283,6 +2310,7 @@ module TencentCloud
|
|
2283
2310
|
@Limit = params['Limit']
|
2284
2311
|
@StartTime = params['StartTime']
|
2285
2312
|
@EndTime = params['EndTime']
|
2313
|
+
@ComputeGroupId = params['ComputeGroupId']
|
2286
2314
|
end
|
2287
2315
|
end
|
2288
2316
|
|
@@ -2507,15 +2535,18 @@ module TencentCloud
|
|
2507
2535
|
# @type Limit: Integer
|
2508
2536
|
# @param SearchTags: 搜索标签列表,没匹配到则不过滤集群列表
|
2509
2537
|
# @type SearchTags: Array
|
2538
|
+
# @param InstanceType: 0 : 存算一体,1:存算分离,2:ALL
|
2539
|
+
# @type InstanceType: Integer
|
2510
2540
|
|
2511
|
-
attr_accessor :SearchInstanceId, :SearchInstanceName, :Offset, :Limit, :SearchTags
|
2541
|
+
attr_accessor :SearchInstanceId, :SearchInstanceName, :Offset, :Limit, :SearchTags, :InstanceType
|
2512
2542
|
|
2513
|
-
def initialize(searchinstanceid=nil, searchinstancename=nil, offset=nil, limit=nil, searchtags=nil)
|
2543
|
+
def initialize(searchinstanceid=nil, searchinstancename=nil, offset=nil, limit=nil, searchtags=nil, instancetype=nil)
|
2514
2544
|
@SearchInstanceId = searchinstanceid
|
2515
2545
|
@SearchInstanceName = searchinstancename
|
2516
2546
|
@Offset = offset
|
2517
2547
|
@Limit = limit
|
2518
2548
|
@SearchTags = searchtags
|
2549
|
+
@InstanceType = instancetype
|
2519
2550
|
end
|
2520
2551
|
|
2521
2552
|
def deserialize(params)
|
@@ -2531,6 +2562,7 @@ module TencentCloud
|
|
2531
2562
|
@SearchTags << searchtags_tmp
|
2532
2563
|
end
|
2533
2564
|
end
|
2565
|
+
@InstanceType = params['InstanceType']
|
2534
2566
|
end
|
2535
2567
|
end
|
2536
2568
|
|
@@ -2648,10 +2680,12 @@ module TencentCloud
|
|
2648
2680
|
# @type SortOrder: String
|
2649
2681
|
# @param UserName: user
|
2650
2682
|
# @type UserName: String
|
2683
|
+
# @param ComputeGroups: 计算组列表
|
2684
|
+
# @type ComputeGroups: Array
|
2651
2685
|
|
2652
|
-
attr_accessor :InstanceId, :QueryDurationMs, :StartTime, :EndTime, :DurationMs, :Sql, :ReadRows, :ResultBytes, :MemoryUsage, :IsQuery, :DbName, :CatalogName, :SortField, :SortOrder, :UserName
|
2686
|
+
attr_accessor :InstanceId, :QueryDurationMs, :StartTime, :EndTime, :DurationMs, :Sql, :ReadRows, :ResultBytes, :MemoryUsage, :IsQuery, :DbName, :CatalogName, :SortField, :SortOrder, :UserName, :ComputeGroups
|
2653
2687
|
|
2654
|
-
def initialize(instanceid=nil, querydurationms=nil, starttime=nil, endtime=nil, durationms=nil, sql=nil, readrows=nil, resultbytes=nil, memoryusage=nil, isquery=nil, dbname=nil, catalogname=nil, sortfield=nil, sortorder=nil, username=nil)
|
2688
|
+
def initialize(instanceid=nil, querydurationms=nil, starttime=nil, endtime=nil, durationms=nil, sql=nil, readrows=nil, resultbytes=nil, memoryusage=nil, isquery=nil, dbname=nil, catalogname=nil, sortfield=nil, sortorder=nil, username=nil, computegroups=nil)
|
2655
2689
|
@InstanceId = instanceid
|
2656
2690
|
@QueryDurationMs = querydurationms
|
2657
2691
|
@StartTime = starttime
|
@@ -2667,6 +2701,7 @@ module TencentCloud
|
|
2667
2701
|
@SortField = sortfield
|
2668
2702
|
@SortOrder = sortorder
|
2669
2703
|
@UserName = username
|
2704
|
+
@ComputeGroups = computegroups
|
2670
2705
|
end
|
2671
2706
|
|
2672
2707
|
def deserialize(params)
|
@@ -2685,6 +2720,7 @@ module TencentCloud
|
|
2685
2720
|
@SortField = params['SortField']
|
2686
2721
|
@SortOrder = params['SortOrder']
|
2687
2722
|
@UserName = params['UserName']
|
2723
|
+
@ComputeGroups = params['ComputeGroups']
|
2688
2724
|
end
|
2689
2725
|
end
|
2690
2726
|
|
@@ -2744,10 +2780,12 @@ module TencentCloud
|
|
2744
2780
|
# @type SortOrder: String
|
2745
2781
|
# @param UserName: user
|
2746
2782
|
# @type UserName: String
|
2783
|
+
# @param ComputeGroups: 计算组列表
|
2784
|
+
# @type ComputeGroups: Array
|
2747
2785
|
|
2748
|
-
attr_accessor :InstanceId, :QueryDurationMs, :StartTime, :EndTime, :PageSize, :PageNum, :DurationMs, :DbName, :IsQuery, :CatalogName, :Sql, :ReadRows, :ResultBytes, :MemoryUsage, :SortField, :SortOrder, :UserName
|
2786
|
+
attr_accessor :InstanceId, :QueryDurationMs, :StartTime, :EndTime, :PageSize, :PageNum, :DurationMs, :DbName, :IsQuery, :CatalogName, :Sql, :ReadRows, :ResultBytes, :MemoryUsage, :SortField, :SortOrder, :UserName, :ComputeGroups
|
2749
2787
|
|
2750
|
-
def initialize(instanceid=nil, querydurationms=nil, starttime=nil, endtime=nil, pagesize=nil, pagenum=nil, durationms=nil, dbname=nil, isquery=nil, catalogname=nil, sql=nil, readrows=nil, resultbytes=nil, memoryusage=nil, sortfield=nil, sortorder=nil, username=nil)
|
2788
|
+
def initialize(instanceid=nil, querydurationms=nil, starttime=nil, endtime=nil, pagesize=nil, pagenum=nil, durationms=nil, dbname=nil, isquery=nil, catalogname=nil, sql=nil, readrows=nil, resultbytes=nil, memoryusage=nil, sortfield=nil, sortorder=nil, username=nil, computegroups=nil)
|
2751
2789
|
@InstanceId = instanceid
|
2752
2790
|
@QueryDurationMs = querydurationms
|
2753
2791
|
@StartTime = starttime
|
@@ -2765,6 +2803,7 @@ module TencentCloud
|
|
2765
2803
|
@SortField = sortfield
|
2766
2804
|
@SortOrder = sortorder
|
2767
2805
|
@UserName = username
|
2806
|
+
@ComputeGroups = computegroups
|
2768
2807
|
end
|
2769
2808
|
|
2770
2809
|
def deserialize(params)
|
@@ -2785,6 +2824,7 @@ module TencentCloud
|
|
2785
2824
|
@SortField = params['SortField']
|
2786
2825
|
@SortOrder = params['SortOrder']
|
2787
2826
|
@UserName = params['UserName']
|
2827
|
+
@ComputeGroups = params['ComputeGroups']
|
2788
2828
|
end
|
2789
2829
|
end
|
2790
2830
|
|
@@ -2837,14 +2877,17 @@ module TencentCloud
|
|
2837
2877
|
# @type Zones: Array
|
2838
2878
|
# @param SpecName: 机型名称
|
2839
2879
|
# @type SpecName: String
|
2880
|
+
# @param IsSSC: 是否存算分离
|
2881
|
+
# @type IsSSC: Boolean
|
2840
2882
|
|
2841
|
-
attr_accessor :Zone, :PayMode, :Zones, :SpecName
|
2883
|
+
attr_accessor :Zone, :PayMode, :Zones, :SpecName, :IsSSC
|
2842
2884
|
|
2843
|
-
def initialize(zone=nil, paymode=nil, zones=nil, specname=nil)
|
2885
|
+
def initialize(zone=nil, paymode=nil, zones=nil, specname=nil, isssc=nil)
|
2844
2886
|
@Zone = zone
|
2845
2887
|
@PayMode = paymode
|
2846
2888
|
@Zones = zones
|
2847
2889
|
@SpecName = specname
|
2890
|
+
@IsSSC = isssc
|
2848
2891
|
end
|
2849
2892
|
|
2850
2893
|
def deserialize(params)
|
@@ -2852,6 +2895,7 @@ module TencentCloud
|
|
2852
2895
|
@PayMode = params['PayMode']
|
2853
2896
|
@Zones = params['Zones']
|
2854
2897
|
@SpecName = params['SpecName']
|
2898
|
+
@IsSSC = params['IsSSC']
|
2855
2899
|
end
|
2856
2900
|
end
|
2857
2901
|
|
@@ -3420,13 +3464,15 @@ module TencentCloud
|
|
3420
3464
|
# @type MonitorMode: Integer
|
3421
3465
|
# @param CNSummary: cn节点信息
|
3422
3466
|
# @type CNSummary: :class:`Tencentcloud::Cdwdoris.v20211228.models.NodesSummary`
|
3467
|
+
# @param ComputeGroupCount: 计算组个数
|
3468
|
+
# @type ComputeGroupCount: Integer
|
3423
3469
|
|
3424
|
-
attr_accessor :InstanceId, :InstanceName, :Status, :Version, :Region, :Zone, :VpcId, :SubnetId, :PayMode, :CreateTime, :ExpireTime, :MasterSummary, :CoreSummary, :HA, :HaType, :AccessInfo, :Id, :RegionId, :ZoneDesc, :FlowMsg, :StatusDesc, :RenewFlag, :Tags, :Monitor, :HasClsTopic, :ClsTopicId, :ClsLogSetId, :EnableXMLConfig, :RegionDesc, :Eip, :CosMoveFactor, :Kind, :CosBucketName, :CanAttachCbs, :BuildVersion, :Components, :IfExistCatalog, :Characteristic, :RestartTimeout, :GraceShutdownWaitSeconds, :CaseSensitive, :IsWhiteSGs, :BindSGs, :EnableMultiZones, :UserNetworkInfos, :EnableCoolDown, :CoolDownBucket, :Details, :EnableDlc, :AccountType, :MonitorMode, :CNSummary
|
3470
|
+
attr_accessor :InstanceId, :InstanceName, :Status, :Version, :Region, :Zone, :VpcId, :SubnetId, :PayMode, :CreateTime, :ExpireTime, :MasterSummary, :CoreSummary, :HA, :HaType, :AccessInfo, :Id, :RegionId, :ZoneDesc, :FlowMsg, :StatusDesc, :RenewFlag, :Tags, :Monitor, :HasClsTopic, :ClsTopicId, :ClsLogSetId, :EnableXMLConfig, :RegionDesc, :Eip, :CosMoveFactor, :Kind, :CosBucketName, :CanAttachCbs, :BuildVersion, :Components, :IfExistCatalog, :Characteristic, :RestartTimeout, :GraceShutdownWaitSeconds, :CaseSensitive, :IsWhiteSGs, :BindSGs, :EnableMultiZones, :UserNetworkInfos, :EnableCoolDown, :CoolDownBucket, :Details, :EnableDlc, :AccountType, :MonitorMode, :CNSummary, :ComputeGroupCount
|
3425
3471
|
extend Gem::Deprecate
|
3426
3472
|
deprecate :IfExistCatalog, :none, 2025, 3
|
3427
3473
|
deprecate :IfExistCatalog=, :none, 2025, 3
|
3428
3474
|
|
3429
|
-
def initialize(instanceid=nil, instancename=nil, status=nil, version=nil, region=nil, zone=nil, vpcid=nil, subnetid=nil, paymode=nil, createtime=nil, expiretime=nil, mastersummary=nil, coresummary=nil, ha=nil, hatype=nil, accessinfo=nil, id=nil, regionid=nil, zonedesc=nil, flowmsg=nil, statusdesc=nil, renewflag=nil, tags=nil, monitor=nil, hasclstopic=nil, clstopicid=nil, clslogsetid=nil, enablexmlconfig=nil, regiondesc=nil, eip=nil, cosmovefactor=nil, kind=nil, cosbucketname=nil, canattachcbs=nil, buildversion=nil, components=nil, ifexistcatalog=nil, characteristic=nil, restarttimeout=nil, graceshutdownwaitseconds=nil, casesensitive=nil, iswhitesgs=nil, bindsgs=nil, enablemultizones=nil, usernetworkinfos=nil, enablecooldown=nil, cooldownbucket=nil, details=nil, enabledlc=nil, accounttype=nil, monitormode=nil, cnsummary=nil)
|
3475
|
+
def initialize(instanceid=nil, instancename=nil, status=nil, version=nil, region=nil, zone=nil, vpcid=nil, subnetid=nil, paymode=nil, createtime=nil, expiretime=nil, mastersummary=nil, coresummary=nil, ha=nil, hatype=nil, accessinfo=nil, id=nil, regionid=nil, zonedesc=nil, flowmsg=nil, statusdesc=nil, renewflag=nil, tags=nil, monitor=nil, hasclstopic=nil, clstopicid=nil, clslogsetid=nil, enablexmlconfig=nil, regiondesc=nil, eip=nil, cosmovefactor=nil, kind=nil, cosbucketname=nil, canattachcbs=nil, buildversion=nil, components=nil, ifexistcatalog=nil, characteristic=nil, restarttimeout=nil, graceshutdownwaitseconds=nil, casesensitive=nil, iswhitesgs=nil, bindsgs=nil, enablemultizones=nil, usernetworkinfos=nil, enablecooldown=nil, cooldownbucket=nil, details=nil, enabledlc=nil, accounttype=nil, monitormode=nil, cnsummary=nil, computegroupcount=nil)
|
3430
3476
|
@InstanceId = instanceid
|
3431
3477
|
@InstanceName = instancename
|
3432
3478
|
@Status = status
|
@@ -3479,6 +3525,7 @@ module TencentCloud
|
|
3479
3525
|
@AccountType = accounttype
|
3480
3526
|
@MonitorMode = monitormode
|
3481
3527
|
@CNSummary = cnsummary
|
3528
|
+
@ComputeGroupCount = computegroupcount
|
3482
3529
|
end
|
3483
3530
|
|
3484
3531
|
def deserialize(params)
|
@@ -3553,6 +3600,7 @@ module TencentCloud
|
|
3553
3600
|
@CNSummary = NodesSummary.new
|
3554
3601
|
@CNSummary.deserialize(params['CNSummary'])
|
3555
3602
|
end
|
3603
|
+
@ComputeGroupCount = params['ComputeGroupCount']
|
3556
3604
|
end
|
3557
3605
|
end
|
3558
3606
|
|
@@ -3584,10 +3632,12 @@ module TencentCloud
|
|
3584
3632
|
# @type Zone: String
|
3585
3633
|
# @param CreateTime: 创建时间
|
3586
3634
|
# @type CreateTime: String
|
3635
|
+
# @param ComputeGroupId: 计算组ID
|
3636
|
+
# @type ComputeGroupId: String
|
3587
3637
|
|
3588
|
-
attr_accessor :Ip, :Spec, :Core, :Memory, :DiskType, :DiskSize, :Role, :Status, :Rip, :FeRole, :UUID, :Zone, :CreateTime
|
3638
|
+
attr_accessor :Ip, :Spec, :Core, :Memory, :DiskType, :DiskSize, :Role, :Status, :Rip, :FeRole, :UUID, :Zone, :CreateTime, :ComputeGroupId
|
3589
3639
|
|
3590
|
-
def initialize(ip=nil, spec=nil, core=nil, memory=nil, disktype=nil, disksize=nil, role=nil, status=nil, rip=nil, ferole=nil, uuid=nil, zone=nil, createtime=nil)
|
3640
|
+
def initialize(ip=nil, spec=nil, core=nil, memory=nil, disktype=nil, disksize=nil, role=nil, status=nil, rip=nil, ferole=nil, uuid=nil, zone=nil, createtime=nil, computegroupid=nil)
|
3591
3641
|
@Ip = ip
|
3592
3642
|
@Spec = spec
|
3593
3643
|
@Core = core
|
@@ -3601,6 +3651,7 @@ module TencentCloud
|
|
3601
3651
|
@UUID = uuid
|
3602
3652
|
@Zone = zone
|
3603
3653
|
@CreateTime = createtime
|
3654
|
+
@ComputeGroupId = computegroupid
|
3604
3655
|
end
|
3605
3656
|
|
3606
3657
|
def deserialize(params)
|
@@ -3617,6 +3668,7 @@ module TencentCloud
|
|
3617
3668
|
@UUID = params['UUID']
|
3618
3669
|
@Zone = params['Zone']
|
3619
3670
|
@CreateTime = params['CreateTime']
|
3671
|
+
@ComputeGroupId = params['ComputeGroupId']
|
3620
3672
|
end
|
3621
3673
|
end
|
3622
3674
|
|
@@ -3644,10 +3696,12 @@ module TencentCloud
|
|
3644
3696
|
# @type JobId: Integer
|
3645
3697
|
# @param OperationDetail: 操作明细
|
3646
3698
|
# @type OperationDetail: String
|
3699
|
+
# @param ComputerGroupId: 计算组id
|
3700
|
+
# @type ComputerGroupId: String
|
3647
3701
|
|
3648
|
-
attr_accessor :Name, :Result, :Desc, :Level, :LevelDesc, :StartTime, :EndTime, :ResultDesc, :OperateUin, :JobId, :OperationDetail
|
3702
|
+
attr_accessor :Name, :Result, :Desc, :Level, :LevelDesc, :StartTime, :EndTime, :ResultDesc, :OperateUin, :JobId, :OperationDetail, :ComputerGroupId
|
3649
3703
|
|
3650
|
-
def initialize(name=nil, result=nil, desc=nil, level=nil, leveldesc=nil, starttime=nil, endtime=nil, resultdesc=nil, operateuin=nil, jobid=nil, operationdetail=nil)
|
3704
|
+
def initialize(name=nil, result=nil, desc=nil, level=nil, leveldesc=nil, starttime=nil, endtime=nil, resultdesc=nil, operateuin=nil, jobid=nil, operationdetail=nil, computergroupid=nil)
|
3651
3705
|
@Name = name
|
3652
3706
|
@Result = result
|
3653
3707
|
@Desc = desc
|
@@ -3659,6 +3713,7 @@ module TencentCloud
|
|
3659
3713
|
@OperateUin = operateuin
|
3660
3714
|
@JobId = jobid
|
3661
3715
|
@OperationDetail = operationdetail
|
3716
|
+
@ComputerGroupId = computergroupid
|
3662
3717
|
end
|
3663
3718
|
|
3664
3719
|
def deserialize(params)
|
@@ -3673,6 +3728,7 @@ module TencentCloud
|
|
3673
3728
|
@OperateUin = params['OperateUin']
|
3674
3729
|
@JobId = params['JobId']
|
3675
3730
|
@OperationDetail = params['OperationDetail']
|
3731
|
+
@ComputerGroupId = params['ComputerGroupId']
|
3676
3732
|
end
|
3677
3733
|
end
|
3678
3734
|
|
@@ -4086,14 +4142,20 @@ module TencentCloud
|
|
4086
4142
|
# @type UserPrivileges: :class:`Tencentcloud::Cdwdoris.v20211228.models.UpdateUserPrivileges`
|
4087
4143
|
# @param WhiteHost: 用户链接来自的 IP
|
4088
4144
|
# @type WhiteHost: String
|
4145
|
+
# @param UpdateType: 更新类型,默认0,1为更新绑定计算组
|
4146
|
+
# @type UpdateType: Integer
|
4147
|
+
# @param UpdateComputeGroups: 需绑定计算组列表
|
4148
|
+
# @type UpdateComputeGroups: Array
|
4089
4149
|
|
4090
|
-
attr_accessor :InstanceId, :UserName, :UserPrivileges, :WhiteHost
|
4150
|
+
attr_accessor :InstanceId, :UserName, :UserPrivileges, :WhiteHost, :UpdateType, :UpdateComputeGroups
|
4091
4151
|
|
4092
|
-
def initialize(instanceid=nil, username=nil, userprivileges=nil, whitehost=nil)
|
4152
|
+
def initialize(instanceid=nil, username=nil, userprivileges=nil, whitehost=nil, updatetype=nil, updatecomputegroups=nil)
|
4093
4153
|
@InstanceId = instanceid
|
4094
4154
|
@UserName = username
|
4095
4155
|
@UserPrivileges = userprivileges
|
4096
4156
|
@WhiteHost = whitehost
|
4157
|
+
@UpdateType = updatetype
|
4158
|
+
@UpdateComputeGroups = updatecomputegroups
|
4097
4159
|
end
|
4098
4160
|
|
4099
4161
|
def deserialize(params)
|
@@ -4104,6 +4166,8 @@ module TencentCloud
|
|
4104
4166
|
@UserPrivileges.deserialize(params['UserPrivileges'])
|
4105
4167
|
end
|
4106
4168
|
@WhiteHost = params['WhiteHost']
|
4169
|
+
@UpdateType = params['UpdateType']
|
4170
|
+
@UpdateComputeGroups = params['UpdateComputeGroups']
|
4107
4171
|
end
|
4108
4172
|
end
|
4109
4173
|
|
@@ -4302,10 +4366,14 @@ module TencentCloud
|
|
4302
4366
|
# @type Zone: String
|
4303
4367
|
# @param CreateTime: 创建时间
|
4304
4368
|
# @type CreateTime: String
|
4369
|
+
# @param ComputeGroupId: 计算组id
|
4370
|
+
# @type ComputeGroupId: String
|
4371
|
+
# @param RIp: rip
|
4372
|
+
# @type RIp: String
|
4305
4373
|
|
4306
|
-
attr_accessor :NodeName, :Status, :Ip, :NodeRole, :ComponentName, :LastRestartTime, :Id, :Zone, :CreateTime
|
4374
|
+
attr_accessor :NodeName, :Status, :Ip, :NodeRole, :ComponentName, :LastRestartTime, :Id, :Zone, :CreateTime, :ComputeGroupId, :RIp
|
4307
4375
|
|
4308
|
-
def initialize(nodename=nil, status=nil, ip=nil, noderole=nil, componentname=nil, lastrestarttime=nil, id=nil, zone=nil, createtime=nil)
|
4376
|
+
def initialize(nodename=nil, status=nil, ip=nil, noderole=nil, componentname=nil, lastrestarttime=nil, id=nil, zone=nil, createtime=nil, computegroupid=nil, rip=nil)
|
4309
4377
|
@NodeName = nodename
|
4310
4378
|
@Status = status
|
4311
4379
|
@Ip = ip
|
@@ -4315,6 +4383,8 @@ module TencentCloud
|
|
4315
4383
|
@Id = id
|
4316
4384
|
@Zone = zone
|
4317
4385
|
@CreateTime = createtime
|
4386
|
+
@ComputeGroupId = computegroupid
|
4387
|
+
@RIp = rip
|
4318
4388
|
end
|
4319
4389
|
|
4320
4390
|
def deserialize(params)
|
@@ -4327,6 +4397,8 @@ module TencentCloud
|
|
4327
4397
|
@Id = params['Id']
|
4328
4398
|
@Zone = params['Zone']
|
4329
4399
|
@CreateTime = params['CreateTime']
|
4400
|
+
@ComputeGroupId = params['ComputeGroupId']
|
4401
|
+
@RIp = params['RIp']
|
4330
4402
|
end
|
4331
4403
|
end
|
4332
4404
|
|
@@ -5281,10 +5353,12 @@ module TencentCloud
|
|
5281
5353
|
# @type CatalogName: String
|
5282
5354
|
# @param CpuTimeMs: cpu执行时间
|
5283
5355
|
# @type CpuTimeMs: Integer
|
5356
|
+
# @param ComputeGroup: 计算组
|
5357
|
+
# @type ComputeGroup: String
|
5284
5358
|
|
5285
|
-
attr_accessor :OsUser, :InitialQueryId, :Sql, :QueryStartTime, :DurationMs, :ReadRows, :ResultRows, :ResultBytes, :MemoryUsage, :InitialAddress, :DbName, :IsQuery, :ResultBytesMB, :MemoryUsageMB, :DurationSec, :State, :CatalogName, :CpuTimeMs
|
5359
|
+
attr_accessor :OsUser, :InitialQueryId, :Sql, :QueryStartTime, :DurationMs, :ReadRows, :ResultRows, :ResultBytes, :MemoryUsage, :InitialAddress, :DbName, :IsQuery, :ResultBytesMB, :MemoryUsageMB, :DurationSec, :State, :CatalogName, :CpuTimeMs, :ComputeGroup
|
5286
5360
|
|
5287
|
-
def initialize(osuser=nil, initialqueryid=nil, sql=nil, querystarttime=nil, durationms=nil, readrows=nil, resultrows=nil, resultbytes=nil, memoryusage=nil, initialaddress=nil, dbname=nil, isquery=nil, resultbytesmb=nil, memoryusagemb=nil, durationsec=nil, state=nil, catalogname=nil, cputimems=nil)
|
5361
|
+
def initialize(osuser=nil, initialqueryid=nil, sql=nil, querystarttime=nil, durationms=nil, readrows=nil, resultrows=nil, resultbytes=nil, memoryusage=nil, initialaddress=nil, dbname=nil, isquery=nil, resultbytesmb=nil, memoryusagemb=nil, durationsec=nil, state=nil, catalogname=nil, cputimems=nil, computegroup=nil)
|
5288
5362
|
@OsUser = osuser
|
5289
5363
|
@InitialQueryId = initialqueryid
|
5290
5364
|
@Sql = sql
|
@@ -5303,6 +5377,7 @@ module TencentCloud
|
|
5303
5377
|
@State = state
|
5304
5378
|
@CatalogName = catalogname
|
5305
5379
|
@CpuTimeMs = cputimems
|
5380
|
+
@ComputeGroup = computegroup
|
5306
5381
|
end
|
5307
5382
|
|
5308
5383
|
def deserialize(params)
|
@@ -5324,6 +5399,7 @@ module TencentCloud
|
|
5324
5399
|
@State = params['State']
|
5325
5400
|
@CatalogName = params['CatalogName']
|
5326
5401
|
@CpuTimeMs = params['CpuTimeMs']
|
5402
|
+
@ComputeGroup = params['ComputeGroup']
|
5327
5403
|
end
|
5328
5404
|
end
|
5329
5405
|
|
@@ -5519,15 +5595,18 @@ module TencentCloud
|
|
5519
5595
|
# @type Encrypt: Integer
|
5520
5596
|
# @param Main: 是否为主力园区
|
5521
5597
|
# @type Main: Boolean
|
5598
|
+
# @param ContainerEnabled: 0表示未开通容器化,1表示已开通容器化
|
5599
|
+
# @type ContainerEnabled: Integer
|
5522
5600
|
|
5523
|
-
attr_accessor :Name, :Desc, :ZoneId, :Encrypt, :Main
|
5601
|
+
attr_accessor :Name, :Desc, :ZoneId, :Encrypt, :Main, :ContainerEnabled
|
5524
5602
|
|
5525
|
-
def initialize(name=nil, desc=nil, zoneid=nil, encrypt=nil, main=nil)
|
5603
|
+
def initialize(name=nil, desc=nil, zoneid=nil, encrypt=nil, main=nil, containerenabled=nil)
|
5526
5604
|
@Name = name
|
5527
5605
|
@Desc = desc
|
5528
5606
|
@ZoneId = zoneid
|
5529
5607
|
@Encrypt = encrypt
|
5530
5608
|
@Main = main
|
5609
|
+
@ContainerEnabled = containerenabled
|
5531
5610
|
end
|
5532
5611
|
|
5533
5612
|
def deserialize(params)
|
@@ -5536,6 +5615,7 @@ module TencentCloud
|
|
5536
5615
|
@ZoneId = params['ZoneId']
|
5537
5616
|
@Encrypt = params['Encrypt']
|
5538
5617
|
@Main = params['Main']
|
5618
|
+
@ContainerEnabled = params['ContainerEnabled']
|
5539
5619
|
end
|
5540
5620
|
end
|
5541
5621
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-cdwdoris
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.1027
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-03-
|
11
|
+
date: 2025-03-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|