tencentcloud-sdk-emr 3.0.923 → 3.0.925

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20190103/models.rb +12 -104
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e19efb0b8955784b569d5e79a95b1a556ddfbdc8
4
- data.tar.gz: d0a288826a1a1e917c3e47b7730c5a5536bca5bb
3
+ metadata.gz: f2989ea498d15b48ee594b36e5747e51ef6784c0
4
+ data.tar.gz: 30be7d2d9818c60ef09be01a50d96f921e1e0664
5
5
  SHA512:
6
- metadata.gz: 090b055c3da08ad20bfe5bfc9e096d3d326209b5220058ddb81a769bff2556ceadadc01ac0ba0008c7bb9b38704743190786ff9534327896cb29604166030bb1
7
- data.tar.gz: 4a658156f6d8911eb8fc716766bfc8144de1f5526a58209fbe3ab2a42512eef79cfc78c6241a38189c5bface27ad14cf57bbe5aa86dcf3e5f3e313e0a97313bd
6
+ metadata.gz: 3cef73deeb0bdae8d638273e6a002dffd5ec747cee3b156508b85a07277629b16b8bfcfad95d65ac82f1000dd6aa7f912e24d41a28ed6ce72f6b12e4d8766165
7
+ data.tar.gz: 488367fa916d42eb4aa0e575c93774597a3d923f8a27d1c36c7701b95006915a6ebee08450962ea48d36dd14d9d1bce95ed35baf342555dd91952bf52eb7e00b
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.923
1
+ 3.0.925
@@ -810,10 +810,10 @@ module TencentCloud
810
810
 
811
811
  attr_accessor :Id, :ClusterId, :Ftitle, :ClusterName, :RegionId, :ZoneId, :AppId, :Uin, :ProjectId, :VpcId, :SubnetId, :Status, :AddTime, :RunTime, :Config, :MasterIp, :EmrVersion, :ChargeType, :TradeVersion, :ResourceOrderId, :IsTradeCluster, :AlarmInfo, :IsWoodpeckerCluster, :MetaDb, :Tags, :HiveMetaDb, :ServiceClass, :AliasInfo, :ProductId, :Zone, :SceneName, :SceneServiceClass, :SceneEmrVersion, :DisplayName, :VpcName, :SubnetName, :ClusterExternalServiceInfo, :UniqVpcId, :UniqSubnetId, :TopologyInfoList, :IsMultiZoneCluster, :IsCvmReplace, :ClusterTitle, :ConfigDetail
812
812
  extend Gem::Deprecate
813
- deprecate :Ftitle, :none, 2024, 9
814
- deprecate :Ftitle=, :none, 2024, 9
815
- deprecate :Config, :none, 2024, 9
816
- deprecate :Config=, :none, 2024, 9
813
+ deprecate :Ftitle, :none, 2024, 10
814
+ deprecate :Ftitle=, :none, 2024, 10
815
+ deprecate :Config, :none, 2024, 10
816
+ deprecate :Config=, :none, 2024, 10
817
817
 
818
818
  def initialize(id=nil, clusterid=nil, ftitle=nil, clustername=nil, regionid=nil, zoneid=nil, appid=nil, uin=nil, projectid=nil, vpcid=nil, subnetid=nil, status=nil, addtime=nil, runtime=nil, config=nil, masterip=nil, emrversion=nil, chargetype=nil, tradeversion=nil, resourceorderid=nil, istradecluster=nil, alarminfo=nil, iswoodpeckercluster=nil, metadb=nil, tags=nil, hivemetadb=nil, serviceclass=nil, aliasinfo=nil, productid=nil, zone=nil, scenename=nil, sceneserviceclass=nil, sceneemrversion=nil, displayname=nil, vpcname=nil, subnetname=nil, clusterexternalserviceinfo=nil, uniqvpcid=nil, uniqsubnetid=nil, topologyinfolist=nil, ismultizonecluster=nil, iscvmreplace=nil, clustertitle=nil, configdetail=nil)
819
819
  @Id = id
@@ -2949,7 +2949,7 @@ module TencentCloud
2949
2949
  # @type PageSize: Integer
2950
2950
  # @param Page: 分页查询时的页号,从1开始
2951
2951
  # @type Page: Integer
2952
- # @param Type: 查询类型,支持HIVE,SPARK,MAPREDUCE,TRINO等类型,默认查询全部
2952
+ # @param Type: 查询类型,支持HIVE,SPARK,DLC_SPARK,SPARK_SQL,SCHEDULE,MAPREDUCE,TRINO等类型,默认查询全部
2953
2953
  # @type Type: String
2954
2954
 
2955
2955
  attr_accessor :InstanceId, :StartTime, :EndTime, :PageSize, :Page, :Type
@@ -3868,99 +3868,7 @@ module TencentCloud
3868
3868
 
3869
3869
  # DescribeYarnQueue返回参数结构体
3870
3870
  class DescribeYarnQueueResponse < TencentCloud::Common::AbstractModel
3871
- # @param Queue: 队列信息。是一个对象转成的json字符串,对应的golang结构体如下所示,比如`QueueWithConfigSetForFairScheduler`的第一个字段`Name`:
3872
-
3873
- # ```
3874
- # Name string `json:"name"` //队列名称
3875
- # ```
3876
- # - `Name`:字段名
3877
- # - `string`:字段类型
3878
- # - `json:"name"`:表示在序列化和反序列化`json`时,对应的`json key`,下面以`json key`来指代
3879
- # - `//`:后面的注释内容对应页面上看到的名称
3880
-
3881
- # 字段类型以`*`开头的表示取值可能为json规范下的null,不同的语言需要使用能表达null的类型来接收,比如java的包装类型;字段类型以`[]`开头的表示是数组类型;`json key`在调用`ModifyYarnQueueV2 `接口也会使用。
3882
-
3883
- # - 公平调度器
3884
-
3885
- # ```
3886
- # type QueueWithConfigSetForFairScheduler struct {
3887
- # Name string `json:"name"` //队列名称
3888
- # MyId string `json:"myId"` // 队列id,用于编辑、删除、克隆时使用
3889
- # ParentId string `json:"parentId"` // 父队列Id
3890
- # Type *string `json:"type"` // 队列归属。parent或空,当确定某个队列是父队列,且没有子队列时,才可以设置,通常用来支持放置策略nestedUserQueue
3891
- # AclSubmitApps *AclForYarnQueue `json:"aclSubmitApps"` // 提交访问控制
3892
- # AclAdministerApps *AclForYarnQueue `json:"aclAdministerApps"` // 管理访问控制
3893
- # MinSharePreemptionTimeout *int `json:"minSharePreemptionTimeout"` // 最小共享优先权超时时间
3894
- # FairSharePreemptionTimeout *int `json:"fairSharePreemptionTimeout"` // 公平份额抢占超时时间
3895
- # FairSharePreemptionThreshold *float32 `json:"fairSharePreemptionThreshold"` // 公平份额抢占阈值。取值 (0,1]
3896
- # AllowPreemptionFrom *bool `json:"allowPreemptionFrom"` // 抢占模式
3897
- # SchedulingPolicy *string `json:"schedulingPolicy"` // 调度策略,取值有drf、fair、fifo
3898
- # IsDefault *bool `json:"isDefault"` // 是否是root.default队列
3899
- # IsRoot *bool `json:"isRoot"` // 是否是root队列
3900
- # ConfigSets []ConfigSetForFairScheduler `json:"configSets"` // 配置集设置
3901
- # Children []QueueWithConfigSetForFairScheduler `json:"queues"` // 子队列信息。递归
3902
- # }
3903
-
3904
- # type AclForYarnQueue struct {
3905
- # User *string `json:"user"` //用户名
3906
- # Group *string `json:"group"`//组名
3907
- # }
3908
-
3909
- # type ConfigSetForFairScheduler struct {
3910
- # Name string `json:"name"` // 配置集名称
3911
- # MinResources *YarnResource `json:"minResources"` // 最小资源量
3912
- # MaxResources *YarnResource `json:"maxResources"` // 最大资源量
3913
- # MaxChildResources *YarnResource `json:"maxChildResources"` // 能够分配给为未声明子队列的最大资源量
3914
- # MaxRunningApps *int `json:"maxRunningApps"` // 最高可同时处于运行的App数量
3915
- # Weight *float32 `json:"weight"` // 权重
3916
- # MaxAMShare *float32 `json:"maxAMShare"` // App Master最大份额
3917
- # }
3918
-
3919
- # type YarnResource struct {
3920
- # Vcores *int `json:"vcores"`
3921
- # Memory *int `json:"memory"`
3922
- # Type *string `json:"type"` // 当值为`percent`时,表示使用的百分比,否则就是使用的绝对数值
3923
- # }
3924
- # ```
3925
-
3926
- # - 容量调度器
3927
-
3928
- # ```
3929
- # type QueueForCapacitySchedulerV3 struct {
3930
- # Name string `json:"name"` // 队列名称
3931
- # MyId string `json:"myId"` // 队列id,用于编辑、删除、克隆时使用
3932
- # ParentId string `json:"parentId"` // 父队列Id
3933
- # Configs []ConfigForCapacityV3 `json:"configs"` //配置集设置
3934
- # State *string `json:"state"` // 资源池状态
3935
- # DefaultNodeLabelExpression *string `json:"default-node-label-expression"` // 默认标签表达式
3936
- # AclSubmitApps *AclForYarnQueue `json:"acl_submit_applications"` // 提交访问控制
3937
- # AclAdminQueue *AclForYarnQueue `json:"acl_administer_queue"` //管理访问控制
3938
- # MaxAllocationMB *int32 `json:"maximum-allocation-mb"` // 分配Container最大内存数量
3939
- # MaxAllocationVcores *int32 `json:"maximum-allocation-vcores"` // Container最大vCore数量
3940
- # IsDefault *bool `json:"isDefault"`// 是否是root.default队列
3941
- # IsRoot *bool `json:"isRoot"` // 是否是root队列
3942
- # Queues []*QueueForCapacitySchedulerV3 `json:"queues"`//子队列信息。递归
3943
- # }
3944
- # type ConfigForCapacityV3 struct {
3945
- # Name string `json:"configName"` // 配置集名称
3946
- # Labels []CapacityLabel `json:"labels"` // 标签信息
3947
- # MinUserLimitPercent *int32 `json:"minimum-user-limit-percent"` // 用户最小容量
3948
- # UserLimitFactor *float32 `json:"user-limit-factor" valid:"rangeExcludeLeft(0|)"` // 用户资源因子
3949
- # MaxApps *int32 `json:"maximum-applications" valid:"rangeExcludeLeft(0|)"` // 最大应用数Max-Applications
3950
- # MaxAmPercent *float32 `json:"maximum-am-resource-percent"` // 最大AM比例
3951
- # DefaultApplicationPriority *int32 `json:"default-application-priority"` // 资源池优先级
3952
- # }
3953
- # type CapacityLabel struct {
3954
- # Name string `json:"labelName"`
3955
- # Capacity *float32 `json:"capacity"` // 容量
3956
- # MaxCapacity *float32 `json:"maximum-capacity"` //最大容量
3957
- # }
3958
-
3959
- # type AclForYarnQueue struct {
3960
- # User *string `json:"user"` //用户名
3961
- # Group *string `json:"group"`//组名
3962
- # }
3963
- # ```
3871
+ # @param Queue: 队列信息。是一个对象转成的json字符串,对应的golang结构体如下所示,例如`QueueWithConfigSetForFairScheduler`的第一个字段`Name`:```Name string `json:"name"` //队列名称```- `Name`:字段名- `string`:字段类型- `json:"name"`:表示在序列化和反序列化`json`时,对应的`json key`,下面以`json key`来指代- `//`:后面的注释内容对应页面上看到的名称字段类型以`*`开头的表示取值可能为json规范下的null,不同的语言需要使用能表达null的类型来接收,例如java的包装类型;字段类型以`[]`开头的表示是数组类型;`json key`在调用`ModifyYarnQueueV2 `接口也会使用。- 公平调度器```type QueueWithConfigSetForFairScheduler struct { Name string `json:"name"` //队列名称 MyId string `json:"myId"` // 队列id,用于编辑、删除、克隆时使用 ParentId string `json:"parentId"` // 父队列Id Type *string `json:"type"` // 队列归属。parent或空,当确定某个队列是父队列,且没有子队列时,才可以设置,通常用来支持放置策略nestedUserQueue AclSubmitApps *AclForYarnQueue `json:"aclSubmitApps"` // 提交访问控制 AclAdministerApps *AclForYarnQueue `json:"aclAdministerApps"` // 管理访问控制 MinSharePreemptionTimeout *int `json:"minSharePreemptionTimeout"` // 最小共享优先权超时时间 FairSharePreemptionTimeout *int `json:"fairSharePreemptionTimeout"` // 公平份额抢占超时时间 FairSharePreemptionThreshold *float32 `json:"fairSharePreemptionThreshold"` // 公平份额抢占阈值。取值 (0,1] AllowPreemptionFrom *bool `json:"allowPreemptionFrom"` // 抢占模式 SchedulingPolicy *string `json:"schedulingPolicy"` // 调度策略,取值有drf、fair、fifo IsDefault *bool `json:"isDefault"` // 是否是root.default队列 IsRoot *bool `json:"isRoot"` // 是否是root队列 ConfigSets []ConfigSetForFairScheduler `json:"configSets"` // 配置集设置 Children []QueueWithConfigSetForFairScheduler `json:"queues"` // 子队列信息。递归}type AclForYarnQueue struct { User *string `json:"user"` //用户名 Group *string `json:"group"`//组名}type ConfigSetForFairScheduler struct { Name string `json:"name"` // 配置集名称 MinResources *YarnResource `json:"minResources"` // 最小资源量 MaxResources *YarnResource `json:"maxResources"` // 最大资源量 MaxChildResources *YarnResource `json:"maxChildResources"` // 能够分配给为未声明子队列的最大资源量 MaxRunningApps *int `json:"maxRunningApps"` // 最高可同时处于运行的App数量 Weight *float32 `json:"weight"` // 权重 MaxAMShare *float32 `json:"maxAMShare"` // App Master最大份额}type YarnResource struct { Vcores *int `json:"vcores"` Memory *int `json:"memory"` Type *string `json:"type"` // 当值为`percent`时,表示使用的百分比,否则就是使用的绝对数值}```- 容量调度器```type QueueForCapacitySchedulerV3 struct { Name string `json:"name"` // 队列名称 MyId string `json:"myId"` // 队列id,用于编辑、删除、克隆时使用 ParentId string `json:"parentId"` // 父队列Id Configs []ConfigForCapacityV3 `json:"configs"` //配置集设置 State *string `json:"state"` // 资源池状态 DefaultNodeLabelExpression *string `json:"default-node-label-expression"` // 默认标签表达式 AclSubmitApps *AclForYarnQueue `json:"acl_submit_applications"` // 提交访问控制 AclAdminQueue *AclForYarnQueue `json:"acl_administer_queue"` //管理访问控制 MaxAllocationMB *int32 `json:"maximum-allocation-mb"` // 分配Container最大内存数量 MaxAllocationVcores *int32 `json:"maximum-allocation-vcores"` // Container最大vCore数量 IsDefault *bool `json:"isDefault"`// 是否是root.default队列 IsRoot *bool `json:"isRoot"` // 是否是root队列 Queues []*QueueForCapacitySchedulerV3 `json:"queues"`//子队列信息。递归}type ConfigForCapacityV3 struct { Name string `json:"configName"` // 配置集名称 Labels []CapacityLabel `json:"labels"` // 标签信息 MinUserLimitPercent *int32 `json:"minimum-user-limit-percent"` // 用户最小容量 UserLimitFactor *float32 `json:"user-limit-factor" valid:"rangeExcludeLeft(0|)"` // 用户资源因子 MaxApps *int32 `json:"maximum-applications" valid:"rangeExcludeLeft(0|)"` // 最大应用数Max-Applications MaxAmPercent *float32 `json:"maximum-am-resource-percent"` // 最大AM比例 DefaultApplicationPriority *int32 `json:"default-application-priority"` // 资源池优先级}type CapacityLabel struct { Name string `json:"labelName"` Capacity *float32 `json:"capacity"` // 容量 MaxCapacity *float32 `json:"maximum-capacity"` //最大容量}type AclForYarnQueue struct { User *string `json:"user"` //用户名 Group *string `json:"group"`//组名}```
3964
3872
  # @type Queue: String
3965
3873
  # @param Version: 版本
3966
3874
  # @type Version: String
@@ -9875,12 +9783,12 @@ module TencentCloud
9875
9783
 
9876
9784
  attr_accessor :DetectAlert, :DetetcFunctionKey, :DetetcFunctionValue, :DetetcTime, :DetectFunctionKey, :DetectFunctionValue, :DetectTime
9877
9785
  extend Gem::Deprecate
9878
- deprecate :DetetcFunctionKey, :none, 2024, 9
9879
- deprecate :DetetcFunctionKey=, :none, 2024, 9
9880
- deprecate :DetetcFunctionValue, :none, 2024, 9
9881
- deprecate :DetetcFunctionValue=, :none, 2024, 9
9882
- deprecate :DetetcTime, :none, 2024, 9
9883
- deprecate :DetetcTime=, :none, 2024, 9
9786
+ deprecate :DetetcFunctionKey, :none, 2024, 10
9787
+ deprecate :DetetcFunctionKey=, :none, 2024, 10
9788
+ deprecate :DetetcFunctionValue, :none, 2024, 10
9789
+ deprecate :DetetcFunctionValue=, :none, 2024, 10
9790
+ deprecate :DetetcTime, :none, 2024, 10
9791
+ deprecate :DetetcTime=, :none, 2024, 10
9884
9792
 
9885
9793
  def initialize(detectalert=nil, detetcfunctionkey=nil, detetcfunctionvalue=nil, detetctime=nil, detectfunctionkey=nil, detectfunctionvalue=nil, detecttime=nil)
9886
9794
  @DetectAlert = detectalert
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.923
4
+ version: 3.0.925
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-10-13 00:00:00.000000000 Z
11
+ date: 2024-10-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common