tencentcloud-sdk-emr 3.0.924 → 3.0.925

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 +1 -93
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fc149a9a0f5799c27f9f210fc43b62a11cb20a17
4
- data.tar.gz: c2f3519e01fab95e130101a6e2be89ba39b42971
3
+ metadata.gz: f2989ea498d15b48ee594b36e5747e51ef6784c0
4
+ data.tar.gz: 30be7d2d9818c60ef09be01a50d96f921e1e0664
5
5
  SHA512:
6
- metadata.gz: b80add759337ef4354c5113c468be2b0b1b54482ba04f864df60f0b671502fcc3c9010d6eabc1844e6291f41390373fc9daead7c4b58a2a792105bb20c8d6582
7
- data.tar.gz: 012267d9489fbbfbbe90ee52292fc636ec0e6bf58a7ceffbbf0993df2f96657eb614b12303ec0662b8b5753daa5489cab7d29c87eecbbb64d5e557e37946a6cb
6
+ metadata.gz: 3cef73deeb0bdae8d638273e6a002dffd5ec747cee3b156508b85a07277629b16b8bfcfad95d65ac82f1000dd6aa7f912e24d41a28ed6ce72f6b12e4d8766165
7
+ data.tar.gz: 488367fa916d42eb4aa0e575c93774597a3d923f8a27d1c36c7701b95006915a6ebee08450962ea48d36dd14d9d1bce95ed35baf342555dd91952bf52eb7e00b
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.924
1
+ 3.0.925
@@ -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
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.924
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-14 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