tencentcloud-sdk-emr 3.0.1198 → 3.0.1204
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/v20190103/models.rb +24 -8
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ed771d0095d9ce59541a459dcbae4a4a4fb51fdc
|
|
4
|
+
data.tar.gz: c2549e75962697e163627303087e016050739219
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c67a586eaab9605f39d39f199c3a27c0d0c107aa3d762f2654ce9f1e813f481ce6ce2ef8e1d3e30dcd8f5f21f12ca7ccc1e84d4908a08dff984ac2a60bc62d66
|
|
7
|
+
data.tar.gz: 67cb8be80498fe4318f62860ac01ebca3ed326b88ff2cef112c8a8efc174f595f27418d44cfd91d0637572a9e9cfc9cf89a3745e20b3ab514cef06f515fbe537
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.1204
|
data/lib/v20190103/models.rb
CHANGED
|
@@ -1895,10 +1895,12 @@ module TencentCloud
|
|
|
1895
1895
|
# @type DefaultMetaVersion: String
|
|
1896
1896
|
# @param NeedCdbAudit: 是否开通数据库审计
|
|
1897
1897
|
# @type NeedCdbAudit: Integer
|
|
1898
|
+
# @param SgIP: 安全指定来源ip
|
|
1899
|
+
# @type SgIP: String
|
|
1898
1900
|
|
|
1899
|
-
attr_accessor :ProductVersion, :EnableSupportHAFlag, :InstanceName, :InstanceChargeType, :LoginSettings, :SceneSoftwareConfig, :InstanceChargePrepaid, :SecurityGroupIds, :ScriptBootstrapActionConfig, :ClientToken, :NeedMasterWan, :EnableRemoteLoginFlag, :EnableKerberosFlag, :CustomConf, :Tags, :DisasterRecoverGroupIds, :EnableCbsEncryptFlag, :MetaDBInfo, :DependService, :ZoneResourceConfiguration, :CosBucket, :NodeMarks, :LoadBalancerId, :DefaultMetaVersion, :NeedCdbAudit
|
|
1901
|
+
attr_accessor :ProductVersion, :EnableSupportHAFlag, :InstanceName, :InstanceChargeType, :LoginSettings, :SceneSoftwareConfig, :InstanceChargePrepaid, :SecurityGroupIds, :ScriptBootstrapActionConfig, :ClientToken, :NeedMasterWan, :EnableRemoteLoginFlag, :EnableKerberosFlag, :CustomConf, :Tags, :DisasterRecoverGroupIds, :EnableCbsEncryptFlag, :MetaDBInfo, :DependService, :ZoneResourceConfiguration, :CosBucket, :NodeMarks, :LoadBalancerId, :DefaultMetaVersion, :NeedCdbAudit, :SgIP
|
|
1900
1902
|
|
|
1901
|
-
def initialize(productversion=nil, enablesupporthaflag=nil, instancename=nil, instancechargetype=nil, loginsettings=nil, scenesoftwareconfig=nil, instancechargeprepaid=nil, securitygroupids=nil, scriptbootstrapactionconfig=nil, clienttoken=nil, needmasterwan=nil, enableremoteloginflag=nil, enablekerberosflag=nil, customconf=nil, tags=nil, disasterrecovergroupids=nil, enablecbsencryptflag=nil, metadbinfo=nil, dependservice=nil, zoneresourceconfiguration=nil, cosbucket=nil, nodemarks=nil, loadbalancerid=nil, defaultmetaversion=nil, needcdbaudit=nil)
|
|
1903
|
+
def initialize(productversion=nil, enablesupporthaflag=nil, instancename=nil, instancechargetype=nil, loginsettings=nil, scenesoftwareconfig=nil, instancechargeprepaid=nil, securitygroupids=nil, scriptbootstrapactionconfig=nil, clienttoken=nil, needmasterwan=nil, enableremoteloginflag=nil, enablekerberosflag=nil, customconf=nil, tags=nil, disasterrecovergroupids=nil, enablecbsencryptflag=nil, metadbinfo=nil, dependservice=nil, zoneresourceconfiguration=nil, cosbucket=nil, nodemarks=nil, loadbalancerid=nil, defaultmetaversion=nil, needcdbaudit=nil, sgip=nil)
|
|
1902
1904
|
@ProductVersion = productversion
|
|
1903
1905
|
@EnableSupportHAFlag = enablesupporthaflag
|
|
1904
1906
|
@InstanceName = instancename
|
|
@@ -1924,6 +1926,7 @@ module TencentCloud
|
|
|
1924
1926
|
@LoadBalancerId = loadbalancerid
|
|
1925
1927
|
@DefaultMetaVersion = defaultmetaversion
|
|
1926
1928
|
@NeedCdbAudit = needcdbaudit
|
|
1929
|
+
@SgIP = sgip
|
|
1927
1930
|
end
|
|
1928
1931
|
|
|
1929
1932
|
def deserialize(params)
|
|
@@ -1999,6 +2002,7 @@ module TencentCloud
|
|
|
1999
2002
|
@LoadBalancerId = params['LoadBalancerId']
|
|
2000
2003
|
@DefaultMetaVersion = params['DefaultMetaVersion']
|
|
2001
2004
|
@NeedCdbAudit = params['NeedCdbAudit']
|
|
2005
|
+
@SgIP = params['SgIP']
|
|
2002
2006
|
end
|
|
2003
2007
|
end
|
|
2004
2008
|
|
|
@@ -2191,10 +2195,12 @@ module TencentCloud
|
|
|
2191
2195
|
# @type DefaultMetaVersion: String
|
|
2192
2196
|
# @param NeedCdbAudit: 是否开通审计:0:不开通,1:开通
|
|
2193
2197
|
# @type NeedCdbAudit: Integer
|
|
2198
|
+
# @param SgIP: 安全组指定来源ip
|
|
2199
|
+
# @type SgIP: String
|
|
2194
2200
|
|
|
2195
|
-
attr_accessor :ProductId, :Software, :SupportHA, :InstanceName, :PayMode, :TimeSpan, :TimeUnit, :LoginSettings, :VPCSettings, :ResourceSpec, :COSSettings, :Placement, :SgId, :PreExecutedFileSettings, :AutoRenew, :ClientToken, :NeedMasterWan, :RemoteLoginAtCreate, :CheckSecurity, :ExtendFsField, :Tags, :DisasterRecoverGroupIds, :CbsEncrypt, :MetaType, :UnifyMetaInstanceId, :MetaDBInfo, :ApplicationRole, :SceneName, :ExternalService, :VersionID, :MultiZone, :MultiZoneSettings, :CosBucket, :NodeMarks, :LoadBalancerId, :DefaultMetaVersion, :NeedCdbAudit
|
|
2201
|
+
attr_accessor :ProductId, :Software, :SupportHA, :InstanceName, :PayMode, :TimeSpan, :TimeUnit, :LoginSettings, :VPCSettings, :ResourceSpec, :COSSettings, :Placement, :SgId, :PreExecutedFileSettings, :AutoRenew, :ClientToken, :NeedMasterWan, :RemoteLoginAtCreate, :CheckSecurity, :ExtendFsField, :Tags, :DisasterRecoverGroupIds, :CbsEncrypt, :MetaType, :UnifyMetaInstanceId, :MetaDBInfo, :ApplicationRole, :SceneName, :ExternalService, :VersionID, :MultiZone, :MultiZoneSettings, :CosBucket, :NodeMarks, :LoadBalancerId, :DefaultMetaVersion, :NeedCdbAudit, :SgIP
|
|
2196
2202
|
|
|
2197
|
-
def initialize(productid=nil, software=nil, supportha=nil, instancename=nil, paymode=nil, timespan=nil, timeunit=nil, loginsettings=nil, vpcsettings=nil, resourcespec=nil, cossettings=nil, placement=nil, sgid=nil, preexecutedfilesettings=nil, autorenew=nil, clienttoken=nil, needmasterwan=nil, remoteloginatcreate=nil, checksecurity=nil, extendfsfield=nil, tags=nil, disasterrecovergroupids=nil, cbsencrypt=nil, metatype=nil, unifymetainstanceid=nil, metadbinfo=nil, applicationrole=nil, scenename=nil, externalservice=nil, versionid=nil, multizone=nil, multizonesettings=nil, cosbucket=nil, nodemarks=nil, loadbalancerid=nil, defaultmetaversion=nil, needcdbaudit=nil)
|
|
2203
|
+
def initialize(productid=nil, software=nil, supportha=nil, instancename=nil, paymode=nil, timespan=nil, timeunit=nil, loginsettings=nil, vpcsettings=nil, resourcespec=nil, cossettings=nil, placement=nil, sgid=nil, preexecutedfilesettings=nil, autorenew=nil, clienttoken=nil, needmasterwan=nil, remoteloginatcreate=nil, checksecurity=nil, extendfsfield=nil, tags=nil, disasterrecovergroupids=nil, cbsencrypt=nil, metatype=nil, unifymetainstanceid=nil, metadbinfo=nil, applicationrole=nil, scenename=nil, externalservice=nil, versionid=nil, multizone=nil, multizonesettings=nil, cosbucket=nil, nodemarks=nil, loadbalancerid=nil, defaultmetaversion=nil, needcdbaudit=nil, sgip=nil)
|
|
2198
2204
|
@ProductId = productid
|
|
2199
2205
|
@Software = software
|
|
2200
2206
|
@SupportHA = supportha
|
|
@@ -2232,6 +2238,7 @@ module TencentCloud
|
|
|
2232
2238
|
@LoadBalancerId = loadbalancerid
|
|
2233
2239
|
@DefaultMetaVersion = defaultmetaversion
|
|
2234
2240
|
@NeedCdbAudit = needcdbaudit
|
|
2241
|
+
@SgIP = sgip
|
|
2235
2242
|
end
|
|
2236
2243
|
|
|
2237
2244
|
def deserialize(params)
|
|
@@ -2325,6 +2332,7 @@ module TencentCloud
|
|
|
2325
2332
|
@LoadBalancerId = params['LoadBalancerId']
|
|
2326
2333
|
@DefaultMetaVersion = params['DefaultMetaVersion']
|
|
2327
2334
|
@NeedCdbAudit = params['NeedCdbAudit']
|
|
2335
|
+
@SgIP = params['SgIP']
|
|
2328
2336
|
end
|
|
2329
2337
|
end
|
|
2330
2338
|
|
|
@@ -13677,10 +13685,12 @@ module TencentCloud
|
|
|
13677
13685
|
# @type ExecutionStatement: String
|
|
13678
13686
|
# @param User: 用户
|
|
13679
13687
|
# @type User: String
|
|
13688
|
+
# @param ErrorCode: 错误码
|
|
13689
|
+
# @type ErrorCode: String
|
|
13680
13690
|
|
|
13681
|
-
attr_accessor :ClientIP, :CPUCost, :DefaultDB, :EndTime, :ExecutionIP, :QueryID, :QueryType, :MemCost, :PlanCpuCosts, :PlanMemCosts, :QueryTime, :ResourceGroup, :ReturnRows, :ScanBytes, :ScanRows, :BeginTime, :ExecutionState, :ExecutionStatement, :User
|
|
13691
|
+
attr_accessor :ClientIP, :CPUCost, :DefaultDB, :EndTime, :ExecutionIP, :QueryID, :QueryType, :MemCost, :PlanCpuCosts, :PlanMemCosts, :QueryTime, :ResourceGroup, :ReturnRows, :ScanBytes, :ScanRows, :BeginTime, :ExecutionState, :ExecutionStatement, :User, :ErrorCode
|
|
13682
13692
|
|
|
13683
|
-
def initialize(clientip=nil, cpucost=nil, defaultdb=nil, endtime=nil, executionip=nil, queryid=nil, querytype=nil, memcost=nil, plancpucosts=nil, planmemcosts=nil, querytime=nil, resourcegroup=nil, returnrows=nil, scanbytes=nil, scanrows=nil, begintime=nil, executionstate=nil, executionstatement=nil, user=nil)
|
|
13693
|
+
def initialize(clientip=nil, cpucost=nil, defaultdb=nil, endtime=nil, executionip=nil, queryid=nil, querytype=nil, memcost=nil, plancpucosts=nil, planmemcosts=nil, querytime=nil, resourcegroup=nil, returnrows=nil, scanbytes=nil, scanrows=nil, begintime=nil, executionstate=nil, executionstatement=nil, user=nil, errorcode=nil)
|
|
13684
13694
|
@ClientIP = clientip
|
|
13685
13695
|
@CPUCost = cpucost
|
|
13686
13696
|
@DefaultDB = defaultdb
|
|
@@ -13700,6 +13710,7 @@ module TencentCloud
|
|
|
13700
13710
|
@ExecutionState = executionstate
|
|
13701
13711
|
@ExecutionStatement = executionstatement
|
|
13702
13712
|
@User = user
|
|
13713
|
+
@ErrorCode = errorcode
|
|
13703
13714
|
end
|
|
13704
13715
|
|
|
13705
13716
|
def deserialize(params)
|
|
@@ -13722,6 +13733,7 @@ module TencentCloud
|
|
|
13722
13733
|
@ExecutionState = params['ExecutionState']
|
|
13723
13734
|
@ExecutionStatement = params['ExecutionStatement']
|
|
13724
13735
|
@User = params['User']
|
|
13736
|
+
@ErrorCode = params['ErrorCode']
|
|
13725
13737
|
end
|
|
13726
13738
|
end
|
|
13727
13739
|
|
|
@@ -14553,10 +14565,12 @@ module TencentCloud
|
|
|
14553
14565
|
# @type User: String
|
|
14554
14566
|
# @param WrittenBytes: 写入字节数
|
|
14555
14567
|
# @type WrittenBytes: Integer
|
|
14568
|
+
# @param ErrorMessage: Error日志
|
|
14569
|
+
# @type ErrorMessage: String
|
|
14556
14570
|
|
|
14557
|
-
attr_accessor :Catalog, :ClientIpAddr, :CompletedSplits, :CpuTime, :CumulativeMemory, :DurationMillis, :EndTime, :Id, :InternalNetworkBytes, :OutputBytes, :PeakUserMemoryBytes, :PhysicalInputBytes, :ProcessedInputBytes, :SqlCompileTime, :StartTime, :State, :Statement, :User, :WrittenBytes
|
|
14571
|
+
attr_accessor :Catalog, :ClientIpAddr, :CompletedSplits, :CpuTime, :CumulativeMemory, :DurationMillis, :EndTime, :Id, :InternalNetworkBytes, :OutputBytes, :PeakUserMemoryBytes, :PhysicalInputBytes, :ProcessedInputBytes, :SqlCompileTime, :StartTime, :State, :Statement, :User, :WrittenBytes, :ErrorMessage
|
|
14558
14572
|
|
|
14559
|
-
def initialize(catalog=nil, clientipaddr=nil, completedsplits=nil, cputime=nil, cumulativememory=nil, durationmillis=nil, endtime=nil, id=nil, internalnetworkbytes=nil, outputbytes=nil, peakusermemorybytes=nil, physicalinputbytes=nil, processedinputbytes=nil, sqlcompiletime=nil, starttime=nil, state=nil, statement=nil, user=nil, writtenbytes=nil)
|
|
14573
|
+
def initialize(catalog=nil, clientipaddr=nil, completedsplits=nil, cputime=nil, cumulativememory=nil, durationmillis=nil, endtime=nil, id=nil, internalnetworkbytes=nil, outputbytes=nil, peakusermemorybytes=nil, physicalinputbytes=nil, processedinputbytes=nil, sqlcompiletime=nil, starttime=nil, state=nil, statement=nil, user=nil, writtenbytes=nil, errormessage=nil)
|
|
14560
14574
|
@Catalog = catalog
|
|
14561
14575
|
@ClientIpAddr = clientipaddr
|
|
14562
14576
|
@CompletedSplits = completedsplits
|
|
@@ -14576,6 +14590,7 @@ module TencentCloud
|
|
|
14576
14590
|
@Statement = statement
|
|
14577
14591
|
@User = user
|
|
14578
14592
|
@WrittenBytes = writtenbytes
|
|
14593
|
+
@ErrorMessage = errormessage
|
|
14579
14594
|
end
|
|
14580
14595
|
|
|
14581
14596
|
def deserialize(params)
|
|
@@ -14598,6 +14613,7 @@ module TencentCloud
|
|
|
14598
14613
|
@Statement = params['Statement']
|
|
14599
14614
|
@User = params['User']
|
|
14600
14615
|
@WrittenBytes = params['WrittenBytes']
|
|
14616
|
+
@ErrorMessage = params['ErrorMessage']
|
|
14601
14617
|
end
|
|
14602
14618
|
end
|
|
14603
14619
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tencentcloud-sdk-emr
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.1204
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tencent Cloud
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-01-
|
|
11
|
+
date: 2026-01-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|