tencentcloud-sdk-emr 3.0.1199 → 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 +12 -4
- 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
|
|
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
|