tencentcloud-sdk-wedata 3.0.814 → 3.0.815

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/v20210820/models.rb +298 -14
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 219a441361ca294b24281d8601d594d370f057b3
4
- data.tar.gz: 0e8a545026950575f735e7b50d364502421b91ce
3
+ metadata.gz: 5eecbbfb88cef53e0a65ef4ec658a6bd95c5e4e0
4
+ data.tar.gz: 739879206ffaf73a2458f216db82fe240ba63fc2
5
5
  SHA512:
6
- metadata.gz: a70c107c2848a36de6a967663512253c702610e36844f7b2469f797d1210688ce8519b67f927c30efea92690352d401e461367c158d1932573f4533b1beb0633
7
- data.tar.gz: f9f76af4fd0db03c1482427a66d05e8d2ba6a3bcbb16258a07af32a1d93ee7c2b83b07af532a8dd247cccaa3a5d27a935f6163e6bd8e6056813e54257230a634
6
+ metadata.gz: bbb0a721cba6d4923ad11f6e0e9540502a82641803e57d99876d63c53ec3019d1df280d2f3bf8ab396c45501040b37d022408c01ec89772f747f885e6a6397d7
7
+ data.tar.gz: ad76d25c8017d04e5dcc70ddff65941127e4bd21998920bdb835ce7e562f2a7b65fc3e1f355c0505dfabab82289fb568fe3cdcc60855046d0cf765278401504e
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.814
1
+ 3.0.815
@@ -580,6 +580,182 @@ module TencentCloud
580
580
  end
581
581
  end
582
582
 
583
+ # 集群基础信息
584
+ class BaseClusterInfo < TencentCloud::Common::AbstractModel
585
+ # @param ClusterId: 集群id
586
+ # 注意:此字段可能返回 null,表示取不到有效值。
587
+ # @type ClusterId: String
588
+ # @param ClusterType: 集群类型,EMR/CDW等
589
+ # 注意:此字段可能返回 null,表示取不到有效值。
590
+ # @type ClusterType: String
591
+ # @param ClusterName: 集群名称
592
+ # 注意:此字段可能返回 null,表示取不到有效值。
593
+ # @type ClusterName: String
594
+ # @param RegionCn: 地域中文
595
+ # 注意:此字段可能返回 null,表示取不到有效值。
596
+ # @type RegionCn: String
597
+ # @param RegionEn: 地域英文
598
+ # 注意:此字段可能返回 null,表示取不到有效值。
599
+ # @type RegionEn: String
600
+ # @param RegionArea: 地区
601
+ # 注意:此字段可能返回 null,表示取不到有效值。
602
+ # @type RegionArea: String
603
+ # @param Used: 集群是否使用
604
+ # 注意:此字段可能返回 null,表示取不到有效值。
605
+ # @type Used: Boolean
606
+ # @param Status: 集群状态
607
+ # 注意:此字段可能返回 null,表示取不到有效值。
608
+ # @type Status: Integer
609
+ # @param StatusInfo: 集群状态信息
610
+ # 注意:此字段可能返回 null,表示取不到有效值。
611
+ # @type StatusInfo: String
612
+ # @param StorageType: 集群存储类型
613
+ # 注意:此字段可能返回 null,表示取不到有效值。
614
+ # @type StorageType: String
615
+ # @param ComputeType: 集群计算类型
616
+ # 注意:此字段可能返回 null,表示取不到有效值。
617
+ # @type ComputeType: String
618
+ # @param ClusterResource: 集群资源量
619
+ # 注意:此字段可能返回 null,表示取不到有效值。
620
+ # @type ClusterResource: String
621
+ # @param ChargeType: 集群付费方式
622
+ # 注意:此字段可能返回 null,表示取不到有效值。
623
+ # @type ChargeType: String
624
+ # @param CreateTime: 集群创建时间
625
+ # 注意:此字段可能返回 null,表示取不到有效值。
626
+ # @type CreateTime: String
627
+ # @param ExtraConf: 额外配置
628
+ # 注意:此字段可能返回 null,表示取不到有效值。
629
+ # @type ExtraConf: String
630
+ # @param RangerUserName: ranger账号名称
631
+ # 注意:此字段可能返回 null,表示取不到有效值。
632
+ # @type RangerUserName: String
633
+ # @param CdwUserName: cdw账号(用于展示)
634
+ # 注意:此字段可能返回 null,表示取不到有效值。
635
+ # @type CdwUserName: String
636
+
637
+ attr_accessor :ClusterId, :ClusterType, :ClusterName, :RegionCn, :RegionEn, :RegionArea, :Used, :Status, :StatusInfo, :StorageType, :ComputeType, :ClusterResource, :ChargeType, :CreateTime, :ExtraConf, :RangerUserName, :CdwUserName
638
+
639
+ def initialize(clusterid=nil, clustertype=nil, clustername=nil, regioncn=nil, regionen=nil, regionarea=nil, used=nil, status=nil, statusinfo=nil, storagetype=nil, computetype=nil, clusterresource=nil, chargetype=nil, createtime=nil, extraconf=nil, rangerusername=nil, cdwusername=nil)
640
+ @ClusterId = clusterid
641
+ @ClusterType = clustertype
642
+ @ClusterName = clustername
643
+ @RegionCn = regioncn
644
+ @RegionEn = regionen
645
+ @RegionArea = regionarea
646
+ @Used = used
647
+ @Status = status
648
+ @StatusInfo = statusinfo
649
+ @StorageType = storagetype
650
+ @ComputeType = computetype
651
+ @ClusterResource = clusterresource
652
+ @ChargeType = chargetype
653
+ @CreateTime = createtime
654
+ @ExtraConf = extraconf
655
+ @RangerUserName = rangerusername
656
+ @CdwUserName = cdwusername
657
+ end
658
+
659
+ def deserialize(params)
660
+ @ClusterId = params['ClusterId']
661
+ @ClusterType = params['ClusterType']
662
+ @ClusterName = params['ClusterName']
663
+ @RegionCn = params['RegionCn']
664
+ @RegionEn = params['RegionEn']
665
+ @RegionArea = params['RegionArea']
666
+ @Used = params['Used']
667
+ @Status = params['Status']
668
+ @StatusInfo = params['StatusInfo']
669
+ @StorageType = params['StorageType']
670
+ @ComputeType = params['ComputeType']
671
+ @ClusterResource = params['ClusterResource']
672
+ @ChargeType = params['ChargeType']
673
+ @CreateTime = params['CreateTime']
674
+ @ExtraConf = params['ExtraConf']
675
+ @RangerUserName = params['RangerUserName']
676
+ @CdwUserName = params['CdwUserName']
677
+ end
678
+ end
679
+
680
+ # 租户基础信息
681
+ class BaseTenant < TencentCloud::Common::AbstractModel
682
+ # @param TenantId: 租户id
683
+ # 注意:此字段可能返回 null,表示取不到有效值。
684
+ # @type TenantId: String
685
+ # @param TenantName: 租户标识
686
+ # 注意:此字段可能返回 null,表示取不到有效值。
687
+ # @type TenantName: String
688
+ # @param DisplayName: 租户显示名称,一般是中文名
689
+ # 注意:此字段可能返回 null,表示取不到有效值。
690
+ # @type DisplayName: String
691
+ # @param Description: 备注
692
+ # 注意:此字段可能返回 null,表示取不到有效值。
693
+ # @type Description: String
694
+ # @param OwnerUserId: 租户主账号
695
+ # 注意:此字段可能返回 null,表示取不到有效值。
696
+ # @type OwnerUserId: String
697
+ # @param Params: 租户的额外配置参数, json格式字符串
698
+ # 注意:此字段可能返回 null,表示取不到有效值。
699
+ # @type Params: String
700
+
701
+ attr_accessor :TenantId, :TenantName, :DisplayName, :Description, :OwnerUserId, :Params
702
+
703
+ def initialize(tenantid=nil, tenantname=nil, displayname=nil, description=nil, owneruserid=nil, params=nil)
704
+ @TenantId = tenantid
705
+ @TenantName = tenantname
706
+ @DisplayName = displayname
707
+ @Description = description
708
+ @OwnerUserId = owneruserid
709
+ @Params = params
710
+ end
711
+
712
+ def deserialize(params)
713
+ @TenantId = params['TenantId']
714
+ @TenantName = params['TenantName']
715
+ @DisplayName = params['DisplayName']
716
+ @Description = params['Description']
717
+ @OwnerUserId = params['OwnerUserId']
718
+ @Params = params['Params']
719
+ end
720
+ end
721
+
722
+ # 基础用户信息
723
+ class BaseUser < TencentCloud::Common::AbstractModel
724
+ # @param UserId: 有云的UIN,全局唯一
725
+ # 注意:此字段可能返回 null,表示取不到有效值。
726
+ # @type UserId: String
727
+ # @param UserName: 用户全局唯一标识
728
+ # 注意:此字段可能返回 null,表示取不到有效值。
729
+ # @type UserName: String
730
+ # @param DisplayName: 用户显示名称
731
+ # 注意:此字段可能返回 null,表示取不到有效值。
732
+ # @type DisplayName: String
733
+ # @param PhoneNum: 电话号码
734
+ # 注意:此字段可能返回 null,表示取不到有效值。
735
+ # @type PhoneNum: String
736
+ # @param Email: 邮箱
737
+ # 注意:此字段可能返回 null,表示取不到有效值。
738
+ # @type Email: String
739
+
740
+ attr_accessor :UserId, :UserName, :DisplayName, :PhoneNum, :Email
741
+
742
+ def initialize(userid=nil, username=nil, displayname=nil, phonenum=nil, email=nil)
743
+ @UserId = userid
744
+ @UserName = username
745
+ @DisplayName = displayname
746
+ @PhoneNum = phonenum
747
+ @Email = email
748
+ end
749
+
750
+ def deserialize(params)
751
+ @UserId = params['UserId']
752
+ @UserName = params['UserName']
753
+ @DisplayName = params['DisplayName']
754
+ @PhoneNum = params['PhoneNum']
755
+ @Email = params['Email']
756
+ end
757
+ end
758
+
583
759
  # BatchCreateIntegrationTaskAlarms请求参数结构体
584
760
  class BatchCreateIntegrationTaskAlarmsRequest < TencentCloud::Common::AbstractModel
585
761
  # @param TaskIds: 任务id
@@ -1724,8 +1900,8 @@ module TencentCloud
1724
1900
 
1725
1901
  attr_accessor :ProjectId, :AlarmRegularName, :TaskId, :Id, :TaskType, :MonitorType
1726
1902
  extend Gem::Deprecate
1727
- deprecate :TaskId, :none, 2024, 4
1728
- deprecate :TaskId=, :none, 2024, 4
1903
+ deprecate :TaskId, :none, 2024, 5
1904
+ deprecate :TaskId=, :none, 2024, 5
1729
1905
 
1730
1906
  def initialize(projectid=nil, alarmregularname=nil, taskid=nil, id=nil, tasktype=nil, monitortype=nil)
1731
1907
  @ProjectId = projectid
@@ -7231,12 +7407,12 @@ module TencentCloud
7231
7407
 
7232
7408
  attr_accessor :ProjectId, :Category, :PageNumber, :PageSize, :EventName, :EventType, :EventSubType, :EventBroadcastType, :Status, :CreationTimeStart, :CreationTimeEnd, :EventTriggeredTimeStart, :EventTriggeredTimeEnd, :LogTimeStart, :LogTimeEnd, :Dimension, :TimeToLive, :SortItem, :SortType
7233
7409
  extend Gem::Deprecate
7234
- deprecate :EventType, :none, 2024, 4
7235
- deprecate :EventType=, :none, 2024, 4
7236
- deprecate :EventBroadcastType, :none, 2024, 4
7237
- deprecate :EventBroadcastType=, :none, 2024, 4
7238
- deprecate :Status, :none, 2024, 4
7239
- deprecate :Status=, :none, 2024, 4
7410
+ deprecate :EventType, :none, 2024, 5
7411
+ deprecate :EventType=, :none, 2024, 5
7412
+ deprecate :EventBroadcastType, :none, 2024, 5
7413
+ deprecate :EventBroadcastType=, :none, 2024, 5
7414
+ deprecate :Status, :none, 2024, 5
7415
+ deprecate :Status=, :none, 2024, 5
7240
7416
 
7241
7417
  def initialize(projectid=nil, category=nil, pagenumber=nil, pagesize=nil, eventname=nil, eventtype=nil, eventsubtype=nil, eventbroadcasttype=nil, status=nil, creationtimestart=nil, creationtimeend=nil, eventtriggeredtimestart=nil, eventtriggeredtimeend=nil, logtimestart=nil, logtimeend=nil, dimension=nil, timetolive=nil, sortitem=nil, sorttype=nil)
7242
7418
  @ProjectId = projectid
@@ -9307,16 +9483,23 @@ module TencentCloud
9307
9483
 
9308
9484
  # DescribeProject返回参数结构体
9309
9485
  class DescribeProjectResponse < TencentCloud::Common::AbstractModel
9486
+ # @param Data: 项目信息
9487
+ # @type Data: :class:`Tencentcloud::Wedata.v20210820.models.Project`
9310
9488
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
9311
9489
  # @type RequestId: String
9312
9490
 
9313
- attr_accessor :RequestId
9491
+ attr_accessor :Data, :RequestId
9314
9492
 
9315
- def initialize(requestid=nil)
9493
+ def initialize(data=nil, requestid=nil)
9494
+ @Data = data
9316
9495
  @RequestId = requestid
9317
9496
  end
9318
9497
 
9319
9498
  def deserialize(params)
9499
+ unless params['Data'].nil?
9500
+ @Data = Project.new
9501
+ @Data.deserialize(params['Data'])
9502
+ end
9320
9503
  @RequestId = params['RequestId']
9321
9504
  end
9322
9505
  end
@@ -12768,8 +12951,8 @@ module TencentCloud
12768
12951
 
12769
12952
  attr_accessor :DimType, :Count, :QualityDim
12770
12953
  extend Gem::Deprecate
12771
- deprecate :DimType, :none, 2024, 4
12772
- deprecate :DimType=, :none, 2024, 4
12954
+ deprecate :DimType, :none, 2024, 5
12955
+ deprecate :DimType=, :none, 2024, 5
12773
12956
 
12774
12957
  def initialize(dimtype=nil, count=nil, qualitydim=nil)
12775
12958
  @DimType = dimtype
@@ -17902,8 +18085,8 @@ module TencentCloud
17902
18085
 
17903
18086
  attr_accessor :ProjectId, :TaskId, :DelayTime, :StartupTime, :SelfDepend, :StartTime, :EndTime, :TaskAction, :CycleType, :CycleStep, :CrontabExpression, :ExecutionStartTime, :ExecutionEndTime, :TaskName, :RetryWait, :TryLimit, :Retriable, :RunPriority, :TaskExt, :ResourceGroup, :YarnQueue, :BrokerIp, :InCharge, :Notes, :TaskParamInfos, :SourceServer, :TargetServer, :DependencyWorkflow, :DependencyConfigDTOs, :ExecutionTTL, :ScriptChange, :InChargeIds
17904
18087
  extend Gem::Deprecate
17905
- deprecate :InCharge, :none, 2024, 4
17906
- deprecate :InCharge=, :none, 2024, 4
18088
+ deprecate :InCharge, :none, 2024, 5
18089
+ deprecate :InCharge=, :none, 2024, 5
17907
18090
 
17908
18091
  def initialize(projectid=nil, taskid=nil, delaytime=nil, startuptime=nil, selfdepend=nil, starttime=nil, endtime=nil, taskaction=nil, cycletype=nil, cyclestep=nil, crontabexpression=nil, executionstarttime=nil, executionendtime=nil, taskname=nil, retrywait=nil, trylimit=nil, retriable=nil, runpriority=nil, taskext=nil, resourcegroup=nil, yarnqueue=nil, brokerip=nil, incharge=nil, notes=nil, taskparaminfos=nil, sourceserver=nil, targetserver=nil, dependencyworkflow=nil, dependencyconfigdtos=nil, executionttl=nil, scriptchange=nil, inchargeids=nil)
17909
18092
  @ProjectId = projectid
@@ -19261,6 +19444,107 @@ module TencentCloud
19261
19444
  end
19262
19445
  end
19263
19446
 
19447
+ # 项目信息
19448
+ class Project < TencentCloud::Common::AbstractModel
19449
+ # @param TenantId: 项目的所在租户ID
19450
+ # 注意:此字段可能返回 null,表示取不到有效值。
19451
+ # @type TenantId: String
19452
+ # @param ProjectId: 项目id
19453
+ # 注意:此字段可能返回 null,表示取不到有效值。
19454
+ # @type ProjectId: String
19455
+ # @param ProjectName: 项目标识,英文名
19456
+ # 注意:此字段可能返回 null,表示取不到有效值。
19457
+ # @type ProjectName: String
19458
+ # @param DisplayName: 项目显示名称,可以为中文名
19459
+ # 注意:此字段可能返回 null,表示取不到有效值。
19460
+ # @type DisplayName: String
19461
+ # @param Region: 地域
19462
+ # 注意:此字段可能返回 null,表示取不到有效值。
19463
+ # @type Region: String
19464
+ # @param Description: 备注
19465
+ # 注意:此字段可能返回 null,表示取不到有效值。
19466
+ # @type Description: String
19467
+ # @param CreateTime: 创建时间
19468
+ # 注意:此字段可能返回 null,表示取不到有效值。
19469
+ # @type CreateTime: String
19470
+ # @param Creator: 创建者
19471
+ # 注意:此字段可能返回 null,表示取不到有效值。
19472
+ # @type Creator: :class:`Tencentcloud::Wedata.v20210820.models.BaseUser`
19473
+ # @param Tenant: 租户信息
19474
+ # 注意:此字段可能返回 null,表示取不到有效值。
19475
+ # @type Tenant: :class:`Tencentcloud::Wedata.v20210820.models.BaseTenant`
19476
+ # @param AdminUsers: 项目的管理员
19477
+ # 注意:此字段可能返回 null,表示取不到有效值。
19478
+ # @type AdminUsers: Array
19479
+ # @param Clusters: 项目关联的集群信息
19480
+ # 注意:此字段可能返回 null,表示取不到有效值。
19481
+ # @type Clusters: Array
19482
+ # @param Params: 项目的额外配置参数
19483
+ # 注意:此字段可能返回 null,表示取不到有效值。
19484
+ # @type Params: String
19485
+ # @param Status: 项目状态:0:禁用,1:启用,-3:禁用中,2:启用中
19486
+ # @type Status: Integer
19487
+ # @param Model: 项目类型,SIMPLE:简单模式 STANDARD:标准模式
19488
+ # 注意:此字段可能返回 null,表示取不到有效值。
19489
+ # @type Model: String
19490
+
19491
+ attr_accessor :TenantId, :ProjectId, :ProjectName, :DisplayName, :Region, :Description, :CreateTime, :Creator, :Tenant, :AdminUsers, :Clusters, :Params, :Status, :Model
19492
+
19493
+ def initialize(tenantid=nil, projectid=nil, projectname=nil, displayname=nil, region=nil, description=nil, createtime=nil, creator=nil, tenant=nil, adminusers=nil, clusters=nil, params=nil, status=nil, model=nil)
19494
+ @TenantId = tenantid
19495
+ @ProjectId = projectid
19496
+ @ProjectName = projectname
19497
+ @DisplayName = displayname
19498
+ @Region = region
19499
+ @Description = description
19500
+ @CreateTime = createtime
19501
+ @Creator = creator
19502
+ @Tenant = tenant
19503
+ @AdminUsers = adminusers
19504
+ @Clusters = clusters
19505
+ @Params = params
19506
+ @Status = status
19507
+ @Model = model
19508
+ end
19509
+
19510
+ def deserialize(params)
19511
+ @TenantId = params['TenantId']
19512
+ @ProjectId = params['ProjectId']
19513
+ @ProjectName = params['ProjectName']
19514
+ @DisplayName = params['DisplayName']
19515
+ @Region = params['Region']
19516
+ @Description = params['Description']
19517
+ @CreateTime = params['CreateTime']
19518
+ unless params['Creator'].nil?
19519
+ @Creator = BaseUser.new
19520
+ @Creator.deserialize(params['Creator'])
19521
+ end
19522
+ unless params['Tenant'].nil?
19523
+ @Tenant = BaseTenant.new
19524
+ @Tenant.deserialize(params['Tenant'])
19525
+ end
19526
+ unless params['AdminUsers'].nil?
19527
+ @AdminUsers = []
19528
+ params['AdminUsers'].each do |i|
19529
+ baseuser_tmp = BaseUser.new
19530
+ baseuser_tmp.deserialize(i)
19531
+ @AdminUsers << baseuser_tmp
19532
+ end
19533
+ end
19534
+ unless params['Clusters'].nil?
19535
+ @Clusters = []
19536
+ params['Clusters'].each do |i|
19537
+ baseclusterinfo_tmp = BaseClusterInfo.new
19538
+ baseclusterinfo_tmp.deserialize(i)
19539
+ @Clusters << baseclusterinfo_tmp
19540
+ end
19541
+ end
19542
+ @Params = params['Params']
19543
+ @Status = params['Status']
19544
+ @Model = params['Model']
19545
+ end
19546
+ end
19547
+
19264
19548
  # 基础信息
19265
19549
  class ProjectBaseInfoOpsRequest < TencentCloud::Common::AbstractModel
19266
19550
  # @param ProjectId: 项目Id
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-wedata
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.814
4
+ version: 3.0.815
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud