tencentcloud-sdk-emr 3.0.733 → 3.0.735
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 +222 -8
 - metadata +3 -3
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA1:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: 64dcf9070435ebda34f8d20129ce21ace469bd77
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: 3d838e76ac3cb1b9357412e0f86a03e002d39870
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: 58ae5a299d166f20dc54214acc70c68a5fb8a1a28eae1a8731f6d68e13ca8b968fc0bda091c4e7155ec115e2f4c48e37e2882f739f1e908576a2b44d4f3bdda0
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: ae69627fa8b077631b683f375f8dbfbe02fcb3731208aba09c104cc6c9093a20cb32ce7241e15b97590442c7cd0ad6fda9cdca8faf698f762107b5a3e2f65bd3
         
     | 
    
        data/lib/VERSION
    CHANGED
    
    | 
         @@ -1 +1 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            3.0. 
     | 
| 
      
 1 
     | 
    
         
            +
            3.0.735
         
     | 
    
        data/lib/v20190103/models.rb
    CHANGED
    
    | 
         @@ -204,10 +204,16 @@ module TencentCloud 
     | 
|
| 
       204 
204 
     | 
    
         
             
                    # @param CompensateCount: 补偿次数
         
     | 
| 
       205 
205 
     | 
    
         
             
                    # 注意:此字段可能返回 null,表示取不到有效值。
         
     | 
| 
       206 
206 
     | 
    
         
             
                    # @type CompensateCount: Integer
         
     | 
| 
      
 207 
     | 
    
         
            +
                    # @param RetryCount: 重试次数
         
     | 
| 
      
 208 
     | 
    
         
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         
     | 
| 
      
 209 
     | 
    
         
            +
                    # @type RetryCount: Integer
         
     | 
| 
      
 210 
     | 
    
         
            +
                    # @param RetryInfo: 重试信息
         
     | 
| 
      
 211 
     | 
    
         
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         
     | 
| 
      
 212 
     | 
    
         
            +
                    # @type RetryInfo: String
         
     | 
| 
       207 
213 
     | 
    
         | 
| 
       208 
     | 
    
         
            -
                    attr_accessor :StrategyName, :ScaleAction, :ActionStatus, :ActionTime, :ScaleInfo, :ExpectScaleNum, :EndTime, :StrategyType, :SpecInfo, :CompensateFlag, :CompensateCount
         
     | 
| 
      
 214 
     | 
    
         
            +
                    attr_accessor :StrategyName, :ScaleAction, :ActionStatus, :ActionTime, :ScaleInfo, :ExpectScaleNum, :EndTime, :StrategyType, :SpecInfo, :CompensateFlag, :CompensateCount, :RetryCount, :RetryInfo
         
     | 
| 
       209 
215 
     | 
    
         | 
| 
       210 
     | 
    
         
            -
                    def initialize(strategyname=nil, scaleaction=nil, actionstatus=nil, actiontime=nil, scaleinfo=nil, expectscalenum=nil, endtime=nil, strategytype=nil, specinfo=nil, compensateflag=nil, compensatecount=nil)
         
     | 
| 
      
 216 
     | 
    
         
            +
                    def initialize(strategyname=nil, scaleaction=nil, actionstatus=nil, actiontime=nil, scaleinfo=nil, expectscalenum=nil, endtime=nil, strategytype=nil, specinfo=nil, compensateflag=nil, compensatecount=nil, retrycount=nil, retryinfo=nil)
         
     | 
| 
       211 
217 
     | 
    
         
             
                      @StrategyName = strategyname
         
     | 
| 
       212 
218 
     | 
    
         
             
                      @ScaleAction = scaleaction
         
     | 
| 
       213 
219 
     | 
    
         
             
                      @ActionStatus = actionstatus
         
     | 
| 
         @@ -219,6 +225,8 @@ module TencentCloud 
     | 
|
| 
       219 
225 
     | 
    
         
             
                      @SpecInfo = specinfo
         
     | 
| 
       220 
226 
     | 
    
         
             
                      @CompensateFlag = compensateflag
         
     | 
| 
       221 
227 
     | 
    
         
             
                      @CompensateCount = compensatecount
         
     | 
| 
      
 228 
     | 
    
         
            +
                      @RetryCount = retrycount
         
     | 
| 
      
 229 
     | 
    
         
            +
                      @RetryInfo = retryinfo
         
     | 
| 
       222 
230 
     | 
    
         
             
                    end
         
     | 
| 
       223 
231 
     | 
    
         | 
| 
       224 
232 
     | 
    
         
             
                    def deserialize(params)
         
     | 
| 
         @@ -233,6 +241,8 @@ module TencentCloud 
     | 
|
| 
       233 
241 
     | 
    
         
             
                      @SpecInfo = params['SpecInfo']
         
     | 
| 
       234 
242 
     | 
    
         
             
                      @CompensateFlag = params['CompensateFlag']
         
     | 
| 
       235 
243 
     | 
    
         
             
                      @CompensateCount = params['CompensateCount']
         
     | 
| 
      
 244 
     | 
    
         
            +
                      @RetryCount = params['RetryCount']
         
     | 
| 
      
 245 
     | 
    
         
            +
                      @RetryInfo = params['RetryInfo']
         
     | 
| 
       236 
246 
     | 
    
         
             
                    end
         
     | 
| 
       237 
247 
     | 
    
         
             
                  end
         
     | 
| 
       238 
248 
     | 
    
         | 
| 
         @@ -583,10 +593,21 @@ module TencentCloud 
     | 
|
| 
       583 
593 
     | 
    
         
             
                    # @param IsCvmReplace: 是否开通异常节点自动补偿
         
     | 
| 
       584 
594 
     | 
    
         
             
                    # 注意:此字段可能返回 null,表示取不到有效值。
         
     | 
| 
       585 
595 
     | 
    
         
             
                    # @type IsCvmReplace: Boolean
         
     | 
| 
      
 596 
     | 
    
         
            +
                    # @param ClusterTitle: 标题
         
     | 
| 
      
 597 
     | 
    
         
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         
     | 
| 
      
 598 
     | 
    
         
            +
                    # @type ClusterTitle: String
         
     | 
| 
      
 599 
     | 
    
         
            +
                    # @param ConfigDetail: 集群产品配置信息
         
     | 
| 
      
 600 
     | 
    
         
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         
     | 
| 
      
 601 
     | 
    
         
            +
                    # @type ConfigDetail: :class:`Tencentcloud::Emr.v20190103.models.EmrProductConfigDetail`
         
     | 
| 
       586 
602 
     | 
    
         | 
| 
       587 
     | 
    
         
            -
                    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
         
     | 
| 
      
 603 
     | 
    
         
            +
                    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
         
     | 
| 
      
 604 
     | 
    
         
            +
                    extend Gem::Deprecate
         
     | 
| 
      
 605 
     | 
    
         
            +
                    deprecate :Ftitle, :none, 2023, 12
         
     | 
| 
      
 606 
     | 
    
         
            +
                    deprecate :Ftitle=, :none, 2023, 12
         
     | 
| 
      
 607 
     | 
    
         
            +
                    deprecate :Config, :none, 2023, 12
         
     | 
| 
      
 608 
     | 
    
         
            +
                    deprecate :Config=, :none, 2023, 12
         
     | 
| 
       588 
609 
     | 
    
         | 
| 
       589 
     | 
    
         
            -
                    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)
         
     | 
| 
      
 610 
     | 
    
         
            +
                    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)
         
     | 
| 
       590 
611 
     | 
    
         
             
                      @Id = id
         
     | 
| 
       591 
612 
     | 
    
         
             
                      @ClusterId = clusterid
         
     | 
| 
       592 
613 
     | 
    
         
             
                      @Ftitle = ftitle
         
     | 
| 
         @@ -629,6 +650,8 @@ module TencentCloud 
     | 
|
| 
       629 
650 
     | 
    
         
             
                      @TopologyInfoList = topologyinfolist
         
     | 
| 
       630 
651 
     | 
    
         
             
                      @IsMultiZoneCluster = ismultizonecluster
         
     | 
| 
       631 
652 
     | 
    
         
             
                      @IsCvmReplace = iscvmreplace
         
     | 
| 
      
 653 
     | 
    
         
            +
                      @ClusterTitle = clustertitle
         
     | 
| 
      
 654 
     | 
    
         
            +
                      @ConfigDetail = configdetail
         
     | 
| 
       632 
655 
     | 
    
         
             
                    end
         
     | 
| 
       633 
656 
     | 
    
         | 
| 
       634 
657 
     | 
    
         
             
                    def deserialize(params)
         
     | 
| 
         @@ -698,6 +721,11 @@ module TencentCloud 
     | 
|
| 
       698 
721 
     | 
    
         
             
                      end
         
     | 
| 
       699 
722 
     | 
    
         
             
                      @IsMultiZoneCluster = params['IsMultiZoneCluster']
         
     | 
| 
       700 
723 
     | 
    
         
             
                      @IsCvmReplace = params['IsCvmReplace']
         
     | 
| 
      
 724 
     | 
    
         
            +
                      @ClusterTitle = params['ClusterTitle']
         
     | 
| 
      
 725 
     | 
    
         
            +
                      unless params['ConfigDetail'].nil?
         
     | 
| 
      
 726 
     | 
    
         
            +
                        @ConfigDetail = EmrProductConfigDetail.new
         
     | 
| 
      
 727 
     | 
    
         
            +
                        @ConfigDetail.deserialize(params['ConfigDetail'])
         
     | 
| 
      
 728 
     | 
    
         
            +
                      end
         
     | 
| 
       701 
729 
     | 
    
         
             
                    end
         
     | 
| 
       702 
730 
     | 
    
         
             
                  end
         
     | 
| 
       703 
731 
     | 
    
         | 
| 
         @@ -1485,6 +1513,8 @@ module TencentCloud 
     | 
|
| 
       1485 
1513 
     | 
    
         
             
                    # <li>renew:表示获取所有待续费的节点信息,包括cdb信息,自动续费节点不会返回。</li>
         
     | 
| 
       1486 
1514 
     | 
    
         
             
                    # 注意:现在只支持以上取值,输入其他值会导致错误。
         
     | 
| 
       1487 
1515 
     | 
    
         
             
                    # @type NodeFlag: String
         
     | 
| 
      
 1516 
     | 
    
         
            +
                    # @param ExportDb: 导出全部节点信息csv时是否携带cdb信息
         
     | 
| 
      
 1517 
     | 
    
         
            +
                    # @type ExportDb: Boolean
         
     | 
| 
       1488 
1518 
     | 
    
         
             
                    # @param Offset: 页编号,默认值为0,表示第一页。
         
     | 
| 
       1489 
1519 
     | 
    
         
             
                    # @type Offset: Integer
         
     | 
| 
       1490 
1520 
     | 
    
         
             
                    # @param Limit: 每页返回数量,默认值为100,最大值为100。
         
     | 
| 
         @@ -1498,11 +1528,12 @@ module TencentCloud 
     | 
|
| 
       1498 
1528 
     | 
    
         
             
                    # @param Asc: 无
         
     | 
| 
       1499 
1529 
     | 
    
         
             
                    # @type Asc: Integer
         
     | 
| 
       1500 
1530 
     | 
    
         | 
| 
       1501 
     | 
    
         
            -
                    attr_accessor :InstanceId, :NodeFlag, :Offset, :Limit, :HardwareResourceType, :SearchFields, :OrderField, :Asc
         
     | 
| 
      
 1531 
     | 
    
         
            +
                    attr_accessor :InstanceId, :NodeFlag, :ExportDb, :Offset, :Limit, :HardwareResourceType, :SearchFields, :OrderField, :Asc
         
     | 
| 
       1502 
1532 
     | 
    
         | 
| 
       1503 
     | 
    
         
            -
                    def initialize(instanceid=nil, nodeflag=nil, offset=nil, limit=nil, hardwareresourcetype=nil, searchfields=nil, orderfield=nil, asc=nil)
         
     | 
| 
      
 1533 
     | 
    
         
            +
                    def initialize(instanceid=nil, nodeflag=nil, exportdb=nil, offset=nil, limit=nil, hardwareresourcetype=nil, searchfields=nil, orderfield=nil, asc=nil)
         
     | 
| 
       1504 
1534 
     | 
    
         
             
                      @InstanceId = instanceid
         
     | 
| 
       1505 
1535 
     | 
    
         
             
                      @NodeFlag = nodeflag
         
     | 
| 
      
 1536 
     | 
    
         
            +
                      @ExportDb = exportdb
         
     | 
| 
       1506 
1537 
     | 
    
         
             
                      @Offset = offset
         
     | 
| 
       1507 
1538 
     | 
    
         
             
                      @Limit = limit
         
     | 
| 
       1508 
1539 
     | 
    
         
             
                      @HardwareResourceType = hardwareresourcetype
         
     | 
| 
         @@ -1514,6 +1545,7 @@ module TencentCloud 
     | 
|
| 
       1514 
1545 
     | 
    
         
             
                    def deserialize(params)
         
     | 
| 
       1515 
1546 
     | 
    
         
             
                      @InstanceId = params['InstanceId']
         
     | 
| 
       1516 
1547 
     | 
    
         
             
                      @NodeFlag = params['NodeFlag']
         
     | 
| 
      
 1548 
     | 
    
         
            +
                      @ExportDb = params['ExportDb']
         
     | 
| 
       1517 
1549 
     | 
    
         
             
                      @Offset = params['Offset']
         
     | 
| 
       1518 
1550 
     | 
    
         
             
                      @Limit = params['Limit']
         
     | 
| 
       1519 
1551 
     | 
    
         
             
                      @HardwareResourceType = params['HardwareResourceType']
         
     | 
| 
         @@ -2640,6 +2672,125 @@ module TencentCloud 
     | 
|
| 
       2640 
2672 
     | 
    
         
             
                    end
         
     | 
| 
       2641 
2673 
     | 
    
         
             
                  end
         
     | 
| 
       2642 
2674 
     | 
    
         | 
| 
      
 2675 
     | 
    
         
            +
                  # EMR产品配置
         
     | 
| 
      
 2676 
     | 
    
         
            +
                  class EmrProductConfigDetail < TencentCloud::Common::AbstractModel
         
     | 
| 
      
 2677 
     | 
    
         
            +
                    # @param SoftInfo: 软件信息
         
     | 
| 
      
 2678 
     | 
    
         
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         
     | 
| 
      
 2679 
     | 
    
         
            +
                    # @type SoftInfo: Array
         
     | 
| 
      
 2680 
     | 
    
         
            +
                    # @param MasterNodeSize: Master节点个数
         
     | 
| 
      
 2681 
     | 
    
         
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         
     | 
| 
      
 2682 
     | 
    
         
            +
                    # @type MasterNodeSize: Integer
         
     | 
| 
      
 2683 
     | 
    
         
            +
                    # @param CoreNodeSize: Core节点个数
         
     | 
| 
      
 2684 
     | 
    
         
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         
     | 
| 
      
 2685 
     | 
    
         
            +
                    # @type CoreNodeSize: Integer
         
     | 
| 
      
 2686 
     | 
    
         
            +
                    # @param TaskNodeSize: Task节点个数
         
     | 
| 
      
 2687 
     | 
    
         
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         
     | 
| 
      
 2688 
     | 
    
         
            +
                    # @type TaskNodeSize: Integer
         
     | 
| 
      
 2689 
     | 
    
         
            +
                    # @param ComNodeSize: Common节点个数
         
     | 
| 
      
 2690 
     | 
    
         
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         
     | 
| 
      
 2691 
     | 
    
         
            +
                    # @type ComNodeSize: Integer
         
     | 
| 
      
 2692 
     | 
    
         
            +
                    # @param MasterResource: Master节点资源
         
     | 
| 
      
 2693 
     | 
    
         
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         
     | 
| 
      
 2694 
     | 
    
         
            +
                    # @type MasterResource: :class:`Tencentcloud::Emr.v20190103.models.ResourceDetail`
         
     | 
| 
      
 2695 
     | 
    
         
            +
                    # @param CoreResource: Core节点资源
         
     | 
| 
      
 2696 
     | 
    
         
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         
     | 
| 
      
 2697 
     | 
    
         
            +
                    # @type CoreResource: :class:`Tencentcloud::Emr.v20190103.models.ResourceDetail`
         
     | 
| 
      
 2698 
     | 
    
         
            +
                    # @param TaskResource: Task节点资源
         
     | 
| 
      
 2699 
     | 
    
         
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         
     | 
| 
      
 2700 
     | 
    
         
            +
                    # @type TaskResource: :class:`Tencentcloud::Emr.v20190103.models.ResourceDetail`
         
     | 
| 
      
 2701 
     | 
    
         
            +
                    # @param ComResource: Common节点资源
         
     | 
| 
      
 2702 
     | 
    
         
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         
     | 
| 
      
 2703 
     | 
    
         
            +
                    # @type ComResource: :class:`Tencentcloud::Emr.v20190103.models.ResourceDetail`
         
     | 
| 
      
 2704 
     | 
    
         
            +
                    # @param OnCos: 是否使用COS
         
     | 
| 
      
 2705 
     | 
    
         
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         
     | 
| 
      
 2706 
     | 
    
         
            +
                    # @type OnCos: Boolean
         
     | 
| 
      
 2707 
     | 
    
         
            +
                    # @param ChargeType: 收费类型
         
     | 
| 
      
 2708 
     | 
    
         
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         
     | 
| 
      
 2709 
     | 
    
         
            +
                    # @type ChargeType: Integer
         
     | 
| 
      
 2710 
     | 
    
         
            +
                    # @param RouterNodeSize: Router节点个数
         
     | 
| 
      
 2711 
     | 
    
         
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         
     | 
| 
      
 2712 
     | 
    
         
            +
                    # @type RouterNodeSize: Integer
         
     | 
| 
      
 2713 
     | 
    
         
            +
                    # @param SupportHA: 是否支持HA
         
     | 
| 
      
 2714 
     | 
    
         
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         
     | 
| 
      
 2715 
     | 
    
         
            +
                    # @type SupportHA: Boolean
         
     | 
| 
      
 2716 
     | 
    
         
            +
                    # @param SecurityOn: 是否支持安全模式
         
     | 
| 
      
 2717 
     | 
    
         
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         
     | 
| 
      
 2718 
     | 
    
         
            +
                    # @type SecurityOn: Boolean
         
     | 
| 
      
 2719 
     | 
    
         
            +
                    # @param SecurityGroup: 安全组名称
         
     | 
| 
      
 2720 
     | 
    
         
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         
     | 
| 
      
 2721 
     | 
    
         
            +
                    # @type SecurityGroup: String
         
     | 
| 
      
 2722 
     | 
    
         
            +
                    # @param CbsEncrypt: 是否开启Cbs加密
         
     | 
| 
      
 2723 
     | 
    
         
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         
     | 
| 
      
 2724 
     | 
    
         
            +
                    # @type CbsEncrypt: Integer
         
     | 
| 
      
 2725 
     | 
    
         
            +
                    # @param ApplicationRole: 自定义应用角色。
         
     | 
| 
      
 2726 
     | 
    
         
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         
     | 
| 
      
 2727 
     | 
    
         
            +
                    # @type ApplicationRole: String
         
     | 
| 
      
 2728 
     | 
    
         
            +
                    # @param SecurityGroups: 安全组
         
     | 
| 
      
 2729 
     | 
    
         
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         
     | 
| 
      
 2730 
     | 
    
         
            +
                    # @type SecurityGroups: Array
         
     | 
| 
      
 2731 
     | 
    
         
            +
                    # @param PublicKeyId: SSH密钥Id
         
     | 
| 
      
 2732 
     | 
    
         
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         
     | 
| 
      
 2733 
     | 
    
         
            +
                    # @type PublicKeyId: String
         
     | 
| 
      
 2734 
     | 
    
         
            +
             
     | 
| 
      
 2735 
     | 
    
         
            +
                    attr_accessor :SoftInfo, :MasterNodeSize, :CoreNodeSize, :TaskNodeSize, :ComNodeSize, :MasterResource, :CoreResource, :TaskResource, :ComResource, :OnCos, :ChargeType, :RouterNodeSize, :SupportHA, :SecurityOn, :SecurityGroup, :CbsEncrypt, :ApplicationRole, :SecurityGroups, :PublicKeyId
         
     | 
| 
      
 2736 
     | 
    
         
            +
             
     | 
| 
      
 2737 
     | 
    
         
            +
                    def initialize(softinfo=nil, masternodesize=nil, corenodesize=nil, tasknodesize=nil, comnodesize=nil, masterresource=nil, coreresource=nil, taskresource=nil, comresource=nil, oncos=nil, chargetype=nil, routernodesize=nil, supportha=nil, securityon=nil, securitygroup=nil, cbsencrypt=nil, applicationrole=nil, securitygroups=nil, publickeyid=nil)
         
     | 
| 
      
 2738 
     | 
    
         
            +
                      @SoftInfo = softinfo
         
     | 
| 
      
 2739 
     | 
    
         
            +
                      @MasterNodeSize = masternodesize
         
     | 
| 
      
 2740 
     | 
    
         
            +
                      @CoreNodeSize = corenodesize
         
     | 
| 
      
 2741 
     | 
    
         
            +
                      @TaskNodeSize = tasknodesize
         
     | 
| 
      
 2742 
     | 
    
         
            +
                      @ComNodeSize = comnodesize
         
     | 
| 
      
 2743 
     | 
    
         
            +
                      @MasterResource = masterresource
         
     | 
| 
      
 2744 
     | 
    
         
            +
                      @CoreResource = coreresource
         
     | 
| 
      
 2745 
     | 
    
         
            +
                      @TaskResource = taskresource
         
     | 
| 
      
 2746 
     | 
    
         
            +
                      @ComResource = comresource
         
     | 
| 
      
 2747 
     | 
    
         
            +
                      @OnCos = oncos
         
     | 
| 
      
 2748 
     | 
    
         
            +
                      @ChargeType = chargetype
         
     | 
| 
      
 2749 
     | 
    
         
            +
                      @RouterNodeSize = routernodesize
         
     | 
| 
      
 2750 
     | 
    
         
            +
                      @SupportHA = supportha
         
     | 
| 
      
 2751 
     | 
    
         
            +
                      @SecurityOn = securityon
         
     | 
| 
      
 2752 
     | 
    
         
            +
                      @SecurityGroup = securitygroup
         
     | 
| 
      
 2753 
     | 
    
         
            +
                      @CbsEncrypt = cbsencrypt
         
     | 
| 
      
 2754 
     | 
    
         
            +
                      @ApplicationRole = applicationrole
         
     | 
| 
      
 2755 
     | 
    
         
            +
                      @SecurityGroups = securitygroups
         
     | 
| 
      
 2756 
     | 
    
         
            +
                      @PublicKeyId = publickeyid
         
     | 
| 
      
 2757 
     | 
    
         
            +
                    end
         
     | 
| 
      
 2758 
     | 
    
         
            +
             
     | 
| 
      
 2759 
     | 
    
         
            +
                    def deserialize(params)
         
     | 
| 
      
 2760 
     | 
    
         
            +
                      @SoftInfo = params['SoftInfo']
         
     | 
| 
      
 2761 
     | 
    
         
            +
                      @MasterNodeSize = params['MasterNodeSize']
         
     | 
| 
      
 2762 
     | 
    
         
            +
                      @CoreNodeSize = params['CoreNodeSize']
         
     | 
| 
      
 2763 
     | 
    
         
            +
                      @TaskNodeSize = params['TaskNodeSize']
         
     | 
| 
      
 2764 
     | 
    
         
            +
                      @ComNodeSize = params['ComNodeSize']
         
     | 
| 
      
 2765 
     | 
    
         
            +
                      unless params['MasterResource'].nil?
         
     | 
| 
      
 2766 
     | 
    
         
            +
                        @MasterResource = ResourceDetail.new
         
     | 
| 
      
 2767 
     | 
    
         
            +
                        @MasterResource.deserialize(params['MasterResource'])
         
     | 
| 
      
 2768 
     | 
    
         
            +
                      end
         
     | 
| 
      
 2769 
     | 
    
         
            +
                      unless params['CoreResource'].nil?
         
     | 
| 
      
 2770 
     | 
    
         
            +
                        @CoreResource = ResourceDetail.new
         
     | 
| 
      
 2771 
     | 
    
         
            +
                        @CoreResource.deserialize(params['CoreResource'])
         
     | 
| 
      
 2772 
     | 
    
         
            +
                      end
         
     | 
| 
      
 2773 
     | 
    
         
            +
                      unless params['TaskResource'].nil?
         
     | 
| 
      
 2774 
     | 
    
         
            +
                        @TaskResource = ResourceDetail.new
         
     | 
| 
      
 2775 
     | 
    
         
            +
                        @TaskResource.deserialize(params['TaskResource'])
         
     | 
| 
      
 2776 
     | 
    
         
            +
                      end
         
     | 
| 
      
 2777 
     | 
    
         
            +
                      unless params['ComResource'].nil?
         
     | 
| 
      
 2778 
     | 
    
         
            +
                        @ComResource = ResourceDetail.new
         
     | 
| 
      
 2779 
     | 
    
         
            +
                        @ComResource.deserialize(params['ComResource'])
         
     | 
| 
      
 2780 
     | 
    
         
            +
                      end
         
     | 
| 
      
 2781 
     | 
    
         
            +
                      @OnCos = params['OnCos']
         
     | 
| 
      
 2782 
     | 
    
         
            +
                      @ChargeType = params['ChargeType']
         
     | 
| 
      
 2783 
     | 
    
         
            +
                      @RouterNodeSize = params['RouterNodeSize']
         
     | 
| 
      
 2784 
     | 
    
         
            +
                      @SupportHA = params['SupportHA']
         
     | 
| 
      
 2785 
     | 
    
         
            +
                      @SecurityOn = params['SecurityOn']
         
     | 
| 
      
 2786 
     | 
    
         
            +
                      @SecurityGroup = params['SecurityGroup']
         
     | 
| 
      
 2787 
     | 
    
         
            +
                      @CbsEncrypt = params['CbsEncrypt']
         
     | 
| 
      
 2788 
     | 
    
         
            +
                      @ApplicationRole = params['ApplicationRole']
         
     | 
| 
      
 2789 
     | 
    
         
            +
                      @SecurityGroups = params['SecurityGroups']
         
     | 
| 
      
 2790 
     | 
    
         
            +
                      @PublicKeyId = params['PublicKeyId']
         
     | 
| 
      
 2791 
     | 
    
         
            +
                    end
         
     | 
| 
      
 2792 
     | 
    
         
            +
                  end
         
     | 
| 
      
 2793 
     | 
    
         
            +
             
     | 
| 
       2643 
2794 
     | 
    
         
             
                  # EMR产品配置
         
     | 
| 
       2644 
2795 
     | 
    
         
             
                  class EmrProductConfigOutter < TencentCloud::Common::AbstractModel
         
     | 
| 
       2645 
2796 
     | 
    
         
             
                    # @param SoftInfo: 软件信息
         
     | 
| 
         @@ -5736,6 +5887,63 @@ module TencentCloud 
     | 
|
| 
       5736 
5887 
     | 
    
         
             
                    end
         
     | 
| 
       5737 
5888 
     | 
    
         
             
                  end
         
     | 
| 
       5738 
5889 
     | 
    
         | 
| 
      
 5890 
     | 
    
         
            +
                  # 资源详情
         
     | 
| 
      
 5891 
     | 
    
         
            +
                  class ResourceDetail < TencentCloud::Common::AbstractModel
         
     | 
| 
      
 5892 
     | 
    
         
            +
                    # @param Spec: 规格
         
     | 
| 
      
 5893 
     | 
    
         
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         
     | 
| 
      
 5894 
     | 
    
         
            +
                    # @type Spec: String
         
     | 
| 
      
 5895 
     | 
    
         
            +
                    # @param SpecName: 规格名
         
     | 
| 
      
 5896 
     | 
    
         
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         
     | 
| 
      
 5897 
     | 
    
         
            +
                    # @type SpecName: String
         
     | 
| 
      
 5898 
     | 
    
         
            +
                    # @param StorageType: 硬盘类型
         
     | 
| 
      
 5899 
     | 
    
         
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         
     | 
| 
      
 5900 
     | 
    
         
            +
                    # @type StorageType: Integer
         
     | 
| 
      
 5901 
     | 
    
         
            +
                    # @param DiskType: 硬盘类型
         
     | 
| 
      
 5902 
     | 
    
         
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         
     | 
| 
      
 5903 
     | 
    
         
            +
                    # @type DiskType: String
         
     | 
| 
      
 5904 
     | 
    
         
            +
                    # @param RootSize: 系统盘大小
         
     | 
| 
      
 5905 
     | 
    
         
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         
     | 
| 
      
 5906 
     | 
    
         
            +
                    # @type RootSize: Integer
         
     | 
| 
      
 5907 
     | 
    
         
            +
                    # @param MemSize: 内存大小
         
     | 
| 
      
 5908 
     | 
    
         
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         
     | 
| 
      
 5909 
     | 
    
         
            +
                    # @type MemSize: Integer
         
     | 
| 
      
 5910 
     | 
    
         
            +
                    # @param Cpu: CPU个数
         
     | 
| 
      
 5911 
     | 
    
         
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         
     | 
| 
      
 5912 
     | 
    
         
            +
                    # @type Cpu: Integer
         
     | 
| 
      
 5913 
     | 
    
         
            +
                    # @param DiskSize: 硬盘大小
         
     | 
| 
      
 5914 
     | 
    
         
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         
     | 
| 
      
 5915 
     | 
    
         
            +
                    # @type DiskSize: Integer
         
     | 
| 
      
 5916 
     | 
    
         
            +
                    # @param InstanceType: 规格
         
     | 
| 
      
 5917 
     | 
    
         
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         
     | 
| 
      
 5918 
     | 
    
         
            +
                    # @type InstanceType: String
         
     | 
| 
      
 5919 
     | 
    
         
            +
             
     | 
| 
      
 5920 
     | 
    
         
            +
                    attr_accessor :Spec, :SpecName, :StorageType, :DiskType, :RootSize, :MemSize, :Cpu, :DiskSize, :InstanceType
         
     | 
| 
      
 5921 
     | 
    
         
            +
             
     | 
| 
      
 5922 
     | 
    
         
            +
                    def initialize(spec=nil, specname=nil, storagetype=nil, disktype=nil, rootsize=nil, memsize=nil, cpu=nil, disksize=nil, instancetype=nil)
         
     | 
| 
      
 5923 
     | 
    
         
            +
                      @Spec = spec
         
     | 
| 
      
 5924 
     | 
    
         
            +
                      @SpecName = specname
         
     | 
| 
      
 5925 
     | 
    
         
            +
                      @StorageType = storagetype
         
     | 
| 
      
 5926 
     | 
    
         
            +
                      @DiskType = disktype
         
     | 
| 
      
 5927 
     | 
    
         
            +
                      @RootSize = rootsize
         
     | 
| 
      
 5928 
     | 
    
         
            +
                      @MemSize = memsize
         
     | 
| 
      
 5929 
     | 
    
         
            +
                      @Cpu = cpu
         
     | 
| 
      
 5930 
     | 
    
         
            +
                      @DiskSize = disksize
         
     | 
| 
      
 5931 
     | 
    
         
            +
                      @InstanceType = instancetype
         
     | 
| 
      
 5932 
     | 
    
         
            +
                    end
         
     | 
| 
      
 5933 
     | 
    
         
            +
             
     | 
| 
      
 5934 
     | 
    
         
            +
                    def deserialize(params)
         
     | 
| 
      
 5935 
     | 
    
         
            +
                      @Spec = params['Spec']
         
     | 
| 
      
 5936 
     | 
    
         
            +
                      @SpecName = params['SpecName']
         
     | 
| 
      
 5937 
     | 
    
         
            +
                      @StorageType = params['StorageType']
         
     | 
| 
      
 5938 
     | 
    
         
            +
                      @DiskType = params['DiskType']
         
     | 
| 
      
 5939 
     | 
    
         
            +
                      @RootSize = params['RootSize']
         
     | 
| 
      
 5940 
     | 
    
         
            +
                      @MemSize = params['MemSize']
         
     | 
| 
      
 5941 
     | 
    
         
            +
                      @Cpu = params['Cpu']
         
     | 
| 
      
 5942 
     | 
    
         
            +
                      @DiskSize = params['DiskSize']
         
     | 
| 
      
 5943 
     | 
    
         
            +
                      @InstanceType = params['InstanceType']
         
     | 
| 
      
 5944 
     | 
    
         
            +
                    end
         
     | 
| 
      
 5945 
     | 
    
         
            +
                  end
         
     | 
| 
      
 5946 
     | 
    
         
            +
             
     | 
| 
       5739 
5947 
     | 
    
         
             
                  # RunJobFlow请求参数结构体
         
     | 
| 
       5740 
5948 
     | 
    
         
             
                  class RunJobFlowRequest < TencentCloud::Common::AbstractModel
         
     | 
| 
       5741 
5949 
     | 
    
         
             
                    # @param Name: 作业名称。
         
     | 
| 
         @@ -6254,14 +6462,17 @@ module TencentCloud 
     | 
|
| 
       6254 
6462 
     | 
    
         
             
                    # @type Args: Array
         
     | 
| 
       6255 
6463 
     | 
    
         
             
                    # @param CosFileName: 脚本文件名
         
     | 
| 
       6256 
6464 
     | 
    
         
             
                    # @type CosFileName: String
         
     | 
| 
      
 6465 
     | 
    
         
            +
                    # @param Remark: 备注
         
     | 
| 
      
 6466 
     | 
    
         
            +
                    # @type Remark: String
         
     | 
| 
       6257 
6467 
     | 
    
         | 
| 
       6258 
     | 
    
         
            -
                    attr_accessor :CosFileURI, :ExecutionMoment, :Args, :CosFileName
         
     | 
| 
      
 6468 
     | 
    
         
            +
                    attr_accessor :CosFileURI, :ExecutionMoment, :Args, :CosFileName, :Remark
         
     | 
| 
       6259 
6469 
     | 
    
         | 
| 
       6260 
     | 
    
         
            -
                    def initialize(cosfileuri=nil, executionmoment=nil, args=nil, cosfilename=nil)
         
     | 
| 
      
 6470 
     | 
    
         
            +
                    def initialize(cosfileuri=nil, executionmoment=nil, args=nil, cosfilename=nil, remark=nil)
         
     | 
| 
       6261 
6471 
     | 
    
         
             
                      @CosFileURI = cosfileuri
         
     | 
| 
       6262 
6472 
     | 
    
         
             
                      @ExecutionMoment = executionmoment
         
     | 
| 
       6263 
6473 
     | 
    
         
             
                      @Args = args
         
     | 
| 
       6264 
6474 
     | 
    
         
             
                      @CosFileName = cosfilename
         
     | 
| 
      
 6475 
     | 
    
         
            +
                      @Remark = remark
         
     | 
| 
       6265 
6476 
     | 
    
         
             
                    end
         
     | 
| 
       6266 
6477 
     | 
    
         | 
| 
       6267 
6478 
     | 
    
         
             
                    def deserialize(params)
         
     | 
| 
         @@ -6269,14 +6480,17 @@ module TencentCloud 
     | 
|
| 
       6269 
6480 
     | 
    
         
             
                      @ExecutionMoment = params['ExecutionMoment']
         
     | 
| 
       6270 
6481 
     | 
    
         
             
                      @Args = params['Args']
         
     | 
| 
       6271 
6482 
     | 
    
         
             
                      @CosFileName = params['CosFileName']
         
     | 
| 
      
 6483 
     | 
    
         
            +
                      @Remark = params['Remark']
         
     | 
| 
       6272 
6484 
     | 
    
         
             
                    end
         
     | 
| 
       6273 
6485 
     | 
    
         
             
                  end
         
     | 
| 
       6274 
6486 
     | 
    
         | 
| 
       6275 
6487 
     | 
    
         
             
                  # 搜索字段
         
     | 
| 
       6276 
6488 
     | 
    
         
             
                  class SearchItem < TencentCloud::Common::AbstractModel
         
     | 
| 
       6277 
6489 
     | 
    
         
             
                    # @param SearchType: 支持搜索的类型
         
     | 
| 
      
 6490 
     | 
    
         
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         
     | 
| 
       6278 
6491 
     | 
    
         
             
                    # @type SearchType: String
         
     | 
| 
       6279 
6492 
     | 
    
         
             
                    # @param SearchValue: 支持搜索的值
         
     | 
| 
      
 6493 
     | 
    
         
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         
     | 
| 
       6280 
6494 
     | 
    
         
             
                    # @type SearchValue: String
         
     | 
| 
       6281 
6495 
     | 
    
         | 
| 
       6282 
6496 
     | 
    
         
             
                    attr_accessor :SearchType, :SearchValue
         
     | 
    
        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.735
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors:
         
     | 
| 
       7 
7 
     | 
    
         
             
            - Tencent Cloud
         
     | 
| 
       8 
8 
     | 
    
         
             
            autorequire: 
         
     | 
| 
       9 
9 
     | 
    
         
             
            bindir: bin
         
     | 
| 
       10 
10 
     | 
    
         
             
            cert_chain: []
         
     | 
| 
       11 
     | 
    
         
            -
            date: 2023-12- 
     | 
| 
      
 11 
     | 
    
         
            +
            date: 2023-12-26 00:00:00.000000000 Z
         
     | 
| 
       12 
12 
     | 
    
         
             
            dependencies:
         
     | 
| 
       13 
13 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       14 
14 
     | 
    
         
             
              name: tencentcloud-sdk-common
         
     | 
| 
         @@ -33,9 +33,9 @@ executables: [] 
     | 
|
| 
       33 
33 
     | 
    
         
             
            extensions: []
         
     | 
| 
       34 
34 
     | 
    
         
             
            extra_rdoc_files: []
         
     | 
| 
       35 
35 
     | 
    
         
             
            files:
         
     | 
| 
      
 36 
     | 
    
         
            +
            - lib/tencentcloud-sdk-emr.rb
         
     | 
| 
       36 
37 
     | 
    
         
             
            - lib/v20190103/client.rb
         
     | 
| 
       37 
38 
     | 
    
         
             
            - lib/v20190103/models.rb
         
     | 
| 
       38 
     | 
    
         
            -
            - lib/tencentcloud-sdk-emr.rb
         
     | 
| 
       39 
39 
     | 
    
         
             
            - lib/VERSION
         
     | 
| 
       40 
40 
     | 
    
         
             
            homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
         
     | 
| 
       41 
41 
     | 
    
         
             
            licenses:
         
     |