tencentcloud-sdk-cdwdoris 3.0.896 → 3.0.897

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/v20211228/models.rb +39 -12
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: cf336a24e153642b2458e54623d17695ad4db2f4
4
- data.tar.gz: 6dd2506b7677ed996895bcd601cf5ee1efe31e9c
3
+ metadata.gz: 16e1744a8d60bb6fccc5bae400c21f932f32f625
4
+ data.tar.gz: 6c11750d3b24c24800649eb6a6dd813060b0e5cf
5
5
  SHA512:
6
- metadata.gz: 2ffa60112e29267f0302fb36a7bd414d66a56c6821c420c1f7a1a2e90f937a79ef318b9294caaa22d9c8deaa32db8c96e03ea1ab95e5078c3804493f5dec9ec6
7
- data.tar.gz: d0b006b86e3f2392bb959388cc585e9961cb8479d37ee684900a5220de02e58e6095eb8150c485cb16810b072b399463185a948a9c0b83dafe07b5d5f1a62447
6
+ metadata.gz: 13bed5cf02d1571419e7bc3eb96a3ba5179c30cd77701a76234bb7c93335e09bb79e8528987e071152d378a341621860e6b2089f1364ade87c45d634368f8c77
7
+ data.tar.gz: 341fc450545fd21b4f32bc2c4eb96923c8e2a1f730a29738302ffb5e1daa2f91f99296114cca7c295528d89665446142dcb4725ea8515da0c1f66eedc6d1569e
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.896
1
+ 3.0.897
@@ -510,8 +510,8 @@ module TencentCloud
510
510
 
511
511
  attr_accessor :FileName, :FileConf, :KeyConf, :OriParam, :NeedRestart, :FilePath, :FileKeyValues, :FileKeyValuesNew
512
512
  extend Gem::Deprecate
513
- deprecate :FileKeyValues, :none, 2024, 8
514
- deprecate :FileKeyValues=, :none, 2024, 8
513
+ deprecate :FileKeyValues, :none, 2024, 9
514
+ deprecate :FileKeyValues=, :none, 2024, 9
515
515
 
516
516
  def initialize(filename=nil, fileconf=nil, keyconf=nil, oriparam=nil, needrestart=nil, filepath=nil, filekeyvalues=nil, filekeyvaluesnew=nil)
517
517
  @FileName = filename
@@ -2386,8 +2386,8 @@ module TencentCloud
2386
2386
 
2387
2387
  attr_accessor :InstanceID, :Input
2388
2388
  extend Gem::Deprecate
2389
- deprecate :InstanceID, :none, 2024, 8
2390
- deprecate :InstanceID=, :none, 2024, 8
2389
+ deprecate :InstanceID, :none, 2024, 9
2390
+ deprecate :InstanceID=, :none, 2024, 9
2391
2391
 
2392
2392
  def initialize(instanceid=nil, input=nil)
2393
2393
  @InstanceID = instanceid
@@ -2431,7 +2431,7 @@ module TencentCloud
2431
2431
  # @type Offset: Integer
2432
2432
  # @param Limit: 分页参数,分页步长,默认为10
2433
2433
  # @type Limit: Integer
2434
- # @param SearchTags: 搜索标签列表
2434
+ # @param SearchTags: 搜索标签列表,没匹配到则不过滤集群列表
2435
2435
  # @type SearchTags: Array
2436
2436
 
2437
2437
  attr_accessor :SearchInstanceId, :SearchInstanceName, :Offset, :Limit, :SearchTags
@@ -2813,6 +2813,17 @@ module TencentCloud
2813
2813
 
2814
2814
  # DescribeSqlApis请求参数结构体
2815
2815
  class DescribeSqlApisRequest < TencentCloud::Common::AbstractModel
2816
+ # @param InstanceId: 实例id
2817
+ # @type InstanceId: String
2818
+ # @param ApiType: GetUsers:获取用户列表;
2819
+ # GetDatabases:获取数据库列表;
2820
+ # GetTables:获取数据库表列表;
2821
+ # GetUserPrivilegesV2:获取用户下的权限,粒度到表级别;
2822
+ # DeleteUser:删除用户;
2823
+ # GetCatalog:获取Catalog列表;
2824
+ # @type ApiType: String
2825
+ # @param UserName: 用户名称
2826
+ # @type UserName: String
2816
2827
  # @param WhiteHost: 用户链接来自的 IP
2817
2828
  # @type WhiteHost: String
2818
2829
  # @param Catalog: catalog名称
@@ -2824,9 +2835,12 @@ module TencentCloud
2824
2835
  # @param TableName: 表名
2825
2836
  # @type TableName: String
2826
2837
 
2827
- attr_accessor :WhiteHost, :Catalog, :Catalogs, :DatabaseName, :TableName
2838
+ attr_accessor :InstanceId, :ApiType, :UserName, :WhiteHost, :Catalog, :Catalogs, :DatabaseName, :TableName
2828
2839
 
2829
- def initialize(whitehost=nil, catalog=nil, catalogs=nil, databasename=nil, tablename=nil)
2840
+ def initialize(instanceid=nil, apitype=nil, username=nil, whitehost=nil, catalog=nil, catalogs=nil, databasename=nil, tablename=nil)
2841
+ @InstanceId = instanceid
2842
+ @ApiType = apitype
2843
+ @UserName = username
2830
2844
  @WhiteHost = whitehost
2831
2845
  @Catalog = catalog
2832
2846
  @Catalogs = catalogs
@@ -2835,6 +2849,9 @@ module TencentCloud
2835
2849
  end
2836
2850
 
2837
2851
  def deserialize(params)
2852
+ @InstanceId = params['InstanceId']
2853
+ @ApiType = params['ApiType']
2854
+ @UserName = params['UserName']
2838
2855
  @WhiteHost = params['WhiteHost']
2839
2856
  @Catalog = params['Catalog']
2840
2857
  @Catalogs = params['Catalogs']
@@ -2845,16 +2862,26 @@ module TencentCloud
2845
2862
 
2846
2863
  # DescribeSqlApis返回参数结构体
2847
2864
  class DescribeSqlApisResponse < TencentCloud::Common::AbstractModel
2865
+ # @param ReturnData: 返回的查询数据,大部分情况是list,也可能是bool
2866
+ # 注意:此字段可能返回 null,表示取不到有效值。
2867
+ # @type ReturnData: String
2868
+ # @param ErrorMsg: 错误消息
2869
+ # 注意:此字段可能返回 null,表示取不到有效值。
2870
+ # @type ErrorMsg: String
2848
2871
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2849
2872
  # @type RequestId: String
2850
2873
 
2851
- attr_accessor :RequestId
2874
+ attr_accessor :ReturnData, :ErrorMsg, :RequestId
2852
2875
 
2853
- def initialize(requestid=nil)
2876
+ def initialize(returndata=nil, errormsg=nil, requestid=nil)
2877
+ @ReturnData = returndata
2878
+ @ErrorMsg = errormsg
2854
2879
  @RequestId = requestid
2855
2880
  end
2856
2881
 
2857
2882
  def deserialize(params)
2883
+ @ReturnData = params['ReturnData']
2884
+ @ErrorMsg = params['ErrorMsg']
2858
2885
  @RequestId = params['RequestId']
2859
2886
  end
2860
2887
  end
@@ -3349,8 +3376,8 @@ module TencentCloud
3349
3376
 
3350
3377
  attr_accessor :InstanceId, :InstanceName, :Status, :Version, :Region, :Zone, :VpcId, :SubnetId, :PayMode, :CreateTime, :ExpireTime, :MasterSummary, :CoreSummary, :HA, :HaType, :AccessInfo, :Id, :RegionId, :ZoneDesc, :FlowMsg, :StatusDesc, :RenewFlag, :Tags, :Monitor, :HasClsTopic, :ClsTopicId, :ClsLogSetId, :EnableXMLConfig, :RegionDesc, :Eip, :CosMoveFactor, :Kind, :CosBucketName, :CanAttachCbs, :BuildVersion, :Components, :IfExistCatalog, :Characteristic, :RestartTimeout, :GraceShutdownWaitSeconds, :CaseSensitive, :IsWhiteSGs, :BindSGs, :EnableMultiZones, :UserNetworkInfos, :EnableCoolDown, :CoolDownBucket, :Details, :EnableDlc, :AccountType
3351
3378
  extend Gem::Deprecate
3352
- deprecate :IfExistCatalog, :none, 2024, 8
3353
- deprecate :IfExistCatalog=, :none, 2024, 8
3379
+ deprecate :IfExistCatalog, :none, 2024, 9
3380
+ deprecate :IfExistCatalog=, :none, 2024, 9
3354
3381
 
3355
3382
  def initialize(instanceid=nil, instancename=nil, status=nil, version=nil, region=nil, zone=nil, vpcid=nil, subnetid=nil, paymode=nil, createtime=nil, expiretime=nil, mastersummary=nil, coresummary=nil, ha=nil, hatype=nil, accessinfo=nil, id=nil, regionid=nil, zonedesc=nil, flowmsg=nil, statusdesc=nil, renewflag=nil, tags=nil, monitor=nil, hasclstopic=nil, clstopicid=nil, clslogsetid=nil, enablexmlconfig=nil, regiondesc=nil, eip=nil, cosmovefactor=nil, kind=nil, cosbucketname=nil, canattachcbs=nil, buildversion=nil, components=nil, ifexistcatalog=nil, characteristic=nil, restarttimeout=nil, graceshutdownwaitseconds=nil, casesensitive=nil, iswhitesgs=nil, bindsgs=nil, enablemultizones=nil, usernetworkinfos=nil, enablecooldown=nil, cooldownbucket=nil, details=nil, enabledlc=nil, accounttype=nil)
3356
3383
  @InstanceId = instanceid
@@ -5078,7 +5105,7 @@ module TencentCloud
5078
5105
  # @type TagKey: String
5079
5106
  # @param TagValue: 标签的值
5080
5107
  # @type TagValue: String
5081
- # @param AllValue: 1表示只输入标签的键,没有输入值;0表示输入键时且输入值
5108
+ # @param AllValue: 1表示只输入标签的键,没有输入值;非1则表示输入键时且输入值
5082
5109
  # @type AllValue: Integer
5083
5110
 
5084
5111
  attr_accessor :TagKey, :TagValue, :AllValue
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-cdwdoris
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.896
4
+ version: 3.0.897
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-08-28 00:00:00.000000000 Z
11
+ date: 2024-09-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common