tencentcloud-sdk-emr 3.0.1094 → 3.0.1095

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20190103/models.rb +12 -4
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8b61215cb87cb901fed0fefafe73af8129a6445c
4
- data.tar.gz: 5f51764df7db298b790e380b2ebf45ea047d6d61
3
+ metadata.gz: eb58afb17353a9df889c8af679955c1da9bb820a
4
+ data.tar.gz: cc9e70b80c94d7c427832ce89222488e138f5c43
5
5
  SHA512:
6
- metadata.gz: d76f795402f071039828ec3649701fdbd6a4a501b75cbba7874946968503f2446c0b0e05179300e426cdbebb95b20ff5fa2d30d227009b40362dfbcbf965112a
7
- data.tar.gz: 65ac4f69fd66854adc0c3ae1d2635eb8eb71ae6d81ff8a2d41d655742b3ec8aaba5e088da7e0ca03b24b6c0685ea1b843296600abe358dfe693115e8403bef74
6
+ metadata.gz: d93607020273b2d9c4279cbd401f6635cde4f64465f4176e12ac73e66d74479506758a12f34717ad2797e6d84b594fc341efa6ebf124fa5c84086ddd9cbd98c0
7
+ data.tar.gz: 7cd1ec5a8acb19f2ad7069d7a14091513df8599724b0b02431c8e6b3ae16771c98bd020f2237f17586685a381dc959988088ec3d36ca53198578f5afa991eae1
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1094
1
+ 3.0.1095
@@ -1848,10 +1848,12 @@ module TencentCloud
1848
1848
  # @type CosBucket: String
1849
1849
  # @param NodeMarks: 节点标识信息,目前只提供给tf平台使用
1850
1850
  # @type NodeMarks: Array
1851
+ # @param LoadBalancerId: clb id
1852
+ # @type LoadBalancerId: String
1851
1853
 
1852
- attr_accessor :ProductVersion, :EnableSupportHAFlag, :InstanceName, :InstanceChargeType, :LoginSettings, :SceneSoftwareConfig, :InstanceChargePrepaid, :SecurityGroupIds, :ScriptBootstrapActionConfig, :ClientToken, :NeedMasterWan, :EnableRemoteLoginFlag, :EnableKerberosFlag, :CustomConf, :Tags, :DisasterRecoverGroupIds, :EnableCbsEncryptFlag, :MetaDBInfo, :DependService, :ZoneResourceConfiguration, :CosBucket, :NodeMarks
1854
+ 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
1853
1855
 
1854
- 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)
1856
+ 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)
1855
1857
  @ProductVersion = productversion
1856
1858
  @EnableSupportHAFlag = enablesupporthaflag
1857
1859
  @InstanceName = instancename
@@ -1874,6 +1876,7 @@ module TencentCloud
1874
1876
  @ZoneResourceConfiguration = zoneresourceconfiguration
1875
1877
  @CosBucket = cosbucket
1876
1878
  @NodeMarks = nodemarks
1879
+ @LoadBalancerId = loadbalancerid
1877
1880
  end
1878
1881
 
1879
1882
  def deserialize(params)
@@ -1946,6 +1949,7 @@ module TencentCloud
1946
1949
  @NodeMarks << nodemark_tmp
1947
1950
  end
1948
1951
  end
1952
+ @LoadBalancerId = params['LoadBalancerId']
1949
1953
  end
1950
1954
  end
1951
1955
 
@@ -4047,15 +4051,18 @@ module TencentCloud
4047
4051
  # @param MetaInfo: 用户所有的标签键列表
4048
4052
  # 注意:此字段可能返回 null,表示取不到有效值。
4049
4053
  # @type MetaInfo: Array
4054
+ # @param RedisInfo: 集群依赖的Redis实例Id
4055
+ # @type RedisInfo: Array
4050
4056
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4051
4057
  # @type RequestId: String
4052
4058
 
4053
- attr_accessor :TotalCnt, :NodeList, :MetaInfo, :RequestId
4059
+ attr_accessor :TotalCnt, :NodeList, :MetaInfo, :RedisInfo, :RequestId
4054
4060
 
4055
- def initialize(totalcnt=nil, nodelist=nil, metainfo=nil, requestid=nil)
4061
+ def initialize(totalcnt=nil, nodelist=nil, metainfo=nil, redisinfo=nil, requestid=nil)
4056
4062
  @TotalCnt = totalcnt
4057
4063
  @NodeList = nodelist
4058
4064
  @MetaInfo = metainfo
4065
+ @RedisInfo = redisinfo
4059
4066
  @RequestId = requestid
4060
4067
  end
4061
4068
 
@@ -4070,6 +4077,7 @@ module TencentCloud
4070
4077
  end
4071
4078
  end
4072
4079
  @MetaInfo = params['MetaInfo']
4080
+ @RedisInfo = params['RedisInfo']
4073
4081
  @RequestId = params['RequestId']
4074
4082
  end
4075
4083
  end
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.1094
4
+ version: 3.0.1095
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-07-05 00:00:00.000000000 Z
11
+ date: 2025-07-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common