tencentcloud-sdk-dsgc 3.0.922 → 3.0.923

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/v20190723/models.rb +110 -50
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d6b7d8065034453ed8b602226f4fc6b47a5c1a17
4
- data.tar.gz: d6a7c26fe426f20d22db9569c77bbabe39ed0977
3
+ metadata.gz: a864bb2bf9c9cef8b1bb3d85b29dc36f903363f9
4
+ data.tar.gz: b18ece8dff38c2c1b319f8fc52437991b2ed4a90
5
5
  SHA512:
6
- metadata.gz: 5bb8044131696e536ff4789060e5ca233ba11ac3993092a2685ba91182e18e708f868818247f581f828529d9be4022032c10db5918253a1fbb68b64e85a38d49
7
- data.tar.gz: 4ddd3fc6e30641de07b07de481477b1697add623c730c7de181e73fb67586733816c1e33dfef646b89d14f1b9e17a9a545ec938e30567f9177f4ccecff86e55f
6
+ metadata.gz: 0c9b43a0725c0bdcb98cbf28f6f3e86367bb4ac99457c18c0b3795a6333d7cfde4f093b93f94bccc1761f179c0fc50745d7239dbfe460a0ca8582fe2e13c64d9
7
+ data.tar.gz: 2ca5a2860f4e9b2afebd88b1d8ab02757721baf753e275c027ce84c165240b5e3575a64a06d9ec58ef5437297956d949504cd0464a22cf1fdd65041ce7760f13
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.922
1
+ 3.0.923
@@ -611,15 +611,21 @@ module TencentCloud
611
611
  # @type ResourceRegion: String
612
612
  # @param ResourcesAccount: 用户授权的账户信息,如果是一键自动授权模式,则不需要填写账户名与密码。
613
613
  # @type ResourcesAccount: Array
614
+ # @param CreateDefaultTask: 创建默认主模板扫描任务
615
+ # @type CreateDefaultTask: Boolean
616
+ # @param AuthRange: 授权范围(all:授权整个数据源 manual:手动指定数据库)
617
+ # @type AuthRange: String
614
618
 
615
- attr_accessor :DspaId, :AuthType, :MetaType, :ResourceRegion, :ResourcesAccount
619
+ attr_accessor :DspaId, :AuthType, :MetaType, :ResourceRegion, :ResourcesAccount, :CreateDefaultTask, :AuthRange
616
620
 
617
- def initialize(dspaid=nil, authtype=nil, metatype=nil, resourceregion=nil, resourcesaccount=nil)
621
+ def initialize(dspaid=nil, authtype=nil, metatype=nil, resourceregion=nil, resourcesaccount=nil, createdefaulttask=nil, authrange=nil)
618
622
  @DspaId = dspaid
619
623
  @AuthType = authtype
620
624
  @MetaType = metatype
621
625
  @ResourceRegion = resourceregion
622
626
  @ResourcesAccount = resourcesaccount
627
+ @CreateDefaultTask = createdefaulttask
628
+ @AuthRange = authrange
623
629
  end
624
630
 
625
631
  def deserialize(params)
@@ -635,6 +641,8 @@ module TencentCloud
635
641
  @ResourcesAccount << dsparesourceaccount_tmp
636
642
  end
637
643
  end
644
+ @CreateDefaultTask = params['CreateDefaultTask']
645
+ @AuthRange = params['AuthRange']
638
646
  end
639
647
  end
640
648
 
@@ -1475,12 +1483,12 @@ module TencentCloud
1475
1483
 
1476
1484
  attr_accessor :DspaId, :Name, :TemplateId, :BusinessName, :BusinessDept, :BusinessOwner, :ComplianceId, :DiscoveryCondition, :Description
1477
1485
  extend Gem::Deprecate
1478
- deprecate :BusinessName, :none, 2024, 9
1479
- deprecate :BusinessName=, :none, 2024, 9
1480
- deprecate :BusinessDept, :none, 2024, 9
1481
- deprecate :BusinessDept=, :none, 2024, 9
1482
- deprecate :BusinessOwner, :none, 2024, 9
1483
- deprecate :BusinessOwner=, :none, 2024, 9
1486
+ deprecate :BusinessName, :none, 2024, 10
1487
+ deprecate :BusinessName=, :none, 2024, 10
1488
+ deprecate :BusinessDept, :none, 2024, 10
1489
+ deprecate :BusinessDept=, :none, 2024, 10
1490
+ deprecate :BusinessOwner, :none, 2024, 10
1491
+ deprecate :BusinessOwner=, :none, 2024, 10
1484
1492
 
1485
1493
  def initialize(dspaid=nil, name=nil, templateid=nil, businessname=nil, businessdept=nil, businessowner=nil, complianceid=nil, discoverycondition=nil, description=nil)
1486
1494
  @DspaId = dspaid
@@ -1831,10 +1839,10 @@ module TencentCloud
1831
1839
 
1832
1840
  attr_accessor :DspaId, :ResourceRegion, :Buckets, :CosBucketItems
1833
1841
  extend Gem::Deprecate
1834
- deprecate :ResourceRegion, :none, 2024, 9
1835
- deprecate :ResourceRegion=, :none, 2024, 9
1836
- deprecate :Buckets, :none, 2024, 9
1837
- deprecate :Buckets=, :none, 2024, 9
1842
+ deprecate :ResourceRegion, :none, 2024, 10
1843
+ deprecate :ResourceRegion=, :none, 2024, 10
1844
+ deprecate :Buckets, :none, 2024, 10
1845
+ deprecate :Buckets=, :none, 2024, 10
1838
1846
 
1839
1847
  def initialize(dspaid=nil, resourceregion=nil, buckets=nil, cosbucketitems=nil)
1840
1848
  @DspaId = dspaid
@@ -1893,14 +1901,14 @@ module TencentCloud
1893
1901
 
1894
1902
  attr_accessor :DspaId, :MetaType, :ResourceRegion, :UpdateStatus, :UpdateId, :Items, :CloudResourceItems
1895
1903
  extend Gem::Deprecate
1896
- deprecate :ResourceRegion, :none, 2024, 9
1897
- deprecate :ResourceRegion=, :none, 2024, 9
1898
- deprecate :UpdateStatus, :none, 2024, 9
1899
- deprecate :UpdateStatus=, :none, 2024, 9
1900
- deprecate :UpdateId, :none, 2024, 9
1901
- deprecate :UpdateId=, :none, 2024, 9
1902
- deprecate :Items, :none, 2024, 9
1903
- deprecate :Items=, :none, 2024, 9
1904
+ deprecate :ResourceRegion, :none, 2024, 10
1905
+ deprecate :ResourceRegion=, :none, 2024, 10
1906
+ deprecate :UpdateStatus, :none, 2024, 10
1907
+ deprecate :UpdateStatus=, :none, 2024, 10
1908
+ deprecate :UpdateId, :none, 2024, 10
1909
+ deprecate :UpdateId=, :none, 2024, 10
1910
+ deprecate :Items, :none, 2024, 10
1911
+ deprecate :Items=, :none, 2024, 10
1904
1912
 
1905
1913
  def initialize(dspaid=nil, metatype=nil, resourceregion=nil, updatestatus=nil, updateid=nil, items=nil, cloudresourceitems=nil)
1906
1914
  @DspaId = dspaid
@@ -1952,10 +1960,10 @@ module TencentCloud
1952
1960
 
1953
1961
  attr_accessor :UpdateId, :MetaType, :DspaId, :ResourceRegion, :RequestId
1954
1962
  extend Gem::Deprecate
1955
- deprecate :UpdateId, :none, 2024, 9
1956
- deprecate :UpdateId=, :none, 2024, 9
1957
- deprecate :ResourceRegion, :none, 2024, 9
1958
- deprecate :ResourceRegion=, :none, 2024, 9
1963
+ deprecate :UpdateId, :none, 2024, 10
1964
+ deprecate :UpdateId=, :none, 2024, 10
1965
+ deprecate :ResourceRegion, :none, 2024, 10
1966
+ deprecate :ResourceRegion=, :none, 2024, 10
1959
1967
 
1960
1968
  def initialize(updateid=nil, metatype=nil, dspaid=nil, resourceregion=nil, requestid=nil)
1961
1969
  @UpdateId = updateid
@@ -2288,10 +2296,6 @@ module TencentCloud
2288
2296
  # @type ResourceRegion: String
2289
2297
  # @param ResourceId: 自建云资源ID。
2290
2298
  # @type ResourceId: String
2291
- # @param ResourceVip: 可用于访问自建云资源的IP。
2292
- # @type ResourceVip: String
2293
- # @param ResourceVPort: 可用于访问自建云资源的端口。
2294
- # @type ResourceVPort: Integer
2295
2299
  # @param ResourceUniqueVpcId: 自建云资源的VPC ID。
2296
2300
  # @type ResourceUniqueVpcId: String
2297
2301
  # @param ResourceUniqueSubnetId: 自建云资源的Subnet ID。
@@ -2300,9 +2304,15 @@ module TencentCloud
2300
2304
  # cvm - 通过云服务器直接访问。
2301
2305
  # clb - 通过LB的方式进行访问。
2302
2306
  # @type ResourceAccessType: String
2303
- # @param UserName: 账户名。
2307
+ # @param ResourceVip: 可用于访问自建云资源的IP。
2308
+ # emr的连接不需要使用该字段
2309
+ # @type ResourceVip: String
2310
+ # @param ResourceVPort: 可用于访问自建云资源的端口。
2311
+ # emr的连接不需要使用该字段
2312
+ # @type ResourceVPort: Integer
2313
+ # @param UserName: 账户名。如果emr_hive的连接方式为“LDAP”,则复用该字段
2304
2314
  # @type UserName: String
2305
- # @param Password: 账户密码。
2315
+ # @param Password: 账户密码。如果emr_hive的连接方式为“LDAP”,则复用该字段
2306
2316
  # @type Password: String
2307
2317
  # @param ResourceName: 资源名称,1-60个字符。
2308
2318
  # @type ResourceName: String
@@ -2313,24 +2323,27 @@ module TencentCloud
2313
2323
  # @type InstanceType: String
2314
2324
  # @param InstanceValue: 实例值
2315
2325
  # @type InstanceValue: String
2326
+ # @param AuthRange: 授权范围(all:授权整个数据源 manual:手动指定数据库)
2327
+ # @type AuthRange: String
2316
2328
 
2317
- attr_accessor :DspaId, :MetaType, :ResourceRegion, :ResourceId, :ResourceVip, :ResourceVPort, :ResourceUniqueVpcId, :ResourceUniqueSubnetId, :ResourceAccessType, :UserName, :Password, :ResourceName, :InstanceType, :InstanceValue
2329
+ attr_accessor :DspaId, :MetaType, :ResourceRegion, :ResourceId, :ResourceUniqueVpcId, :ResourceUniqueSubnetId, :ResourceAccessType, :ResourceVip, :ResourceVPort, :UserName, :Password, :ResourceName, :InstanceType, :InstanceValue, :AuthRange
2318
2330
 
2319
- def initialize(dspaid=nil, metatype=nil, resourceregion=nil, resourceid=nil, resourcevip=nil, resourcevport=nil, resourceuniquevpcid=nil, resourceuniquesubnetid=nil, resourceaccesstype=nil, username=nil, password=nil, resourcename=nil, instancetype=nil, instancevalue=nil)
2331
+ def initialize(dspaid=nil, metatype=nil, resourceregion=nil, resourceid=nil, resourceuniquevpcid=nil, resourceuniquesubnetid=nil, resourceaccesstype=nil, resourcevip=nil, resourcevport=nil, username=nil, password=nil, resourcename=nil, instancetype=nil, instancevalue=nil, authrange=nil)
2320
2332
  @DspaId = dspaid
2321
2333
  @MetaType = metatype
2322
2334
  @ResourceRegion = resourceregion
2323
2335
  @ResourceId = resourceid
2324
- @ResourceVip = resourcevip
2325
- @ResourceVPort = resourcevport
2326
2336
  @ResourceUniqueVpcId = resourceuniquevpcid
2327
2337
  @ResourceUniqueSubnetId = resourceuniquesubnetid
2328
2338
  @ResourceAccessType = resourceaccesstype
2339
+ @ResourceVip = resourcevip
2340
+ @ResourceVPort = resourcevport
2329
2341
  @UserName = username
2330
2342
  @Password = password
2331
2343
  @ResourceName = resourcename
2332
2344
  @InstanceType = instancetype
2333
2345
  @InstanceValue = instancevalue
2346
+ @AuthRange = authrange
2334
2347
  end
2335
2348
 
2336
2349
  def deserialize(params)
@@ -2338,16 +2351,17 @@ module TencentCloud
2338
2351
  @MetaType = params['MetaType']
2339
2352
  @ResourceRegion = params['ResourceRegion']
2340
2353
  @ResourceId = params['ResourceId']
2341
- @ResourceVip = params['ResourceVip']
2342
- @ResourceVPort = params['ResourceVPort']
2343
2354
  @ResourceUniqueVpcId = params['ResourceUniqueVpcId']
2344
2355
  @ResourceUniqueSubnetId = params['ResourceUniqueSubnetId']
2345
2356
  @ResourceAccessType = params['ResourceAccessType']
2357
+ @ResourceVip = params['ResourceVip']
2358
+ @ResourceVPort = params['ResourceVPort']
2346
2359
  @UserName = params['UserName']
2347
2360
  @Password = params['Password']
2348
2361
  @ResourceName = params['ResourceName']
2349
2362
  @InstanceType = params['InstanceType']
2350
2363
  @InstanceValue = params['InstanceValue']
2364
+ @AuthRange = params['AuthRange']
2351
2365
  end
2352
2366
  end
2353
2367
 
@@ -2564,10 +2578,12 @@ module TencentCloud
2564
2578
  # @type BindStatus: String
2565
2579
  # @param Storage: COS桶存储量
2566
2580
  # @type Storage: Float
2581
+ # @param GovernAuthStatus: 治理授权状态,0:关闭 1:开启
2582
+ # @type GovernAuthStatus: Integer
2567
2583
 
2568
- attr_accessor :Bucket, :CreateTime, :Valid, :ResourceId, :ResourceRegion, :BindStatus, :Storage
2584
+ attr_accessor :Bucket, :CreateTime, :Valid, :ResourceId, :ResourceRegion, :BindStatus, :Storage, :GovernAuthStatus
2569
2585
 
2570
- def initialize(bucket=nil, createtime=nil, valid=nil, resourceid=nil, resourceregion=nil, bindstatus=nil, storage=nil)
2586
+ def initialize(bucket=nil, createtime=nil, valid=nil, resourceid=nil, resourceregion=nil, bindstatus=nil, storage=nil, governauthstatus=nil)
2571
2587
  @Bucket = bucket
2572
2588
  @CreateTime = createtime
2573
2589
  @Valid = valid
@@ -2575,6 +2591,7 @@ module TencentCloud
2575
2591
  @ResourceRegion = resourceregion
2576
2592
  @BindStatus = bindstatus
2577
2593
  @Storage = storage
2594
+ @GovernAuthStatus = governauthstatus
2578
2595
  end
2579
2596
 
2580
2597
  def deserialize(params)
@@ -2585,6 +2602,7 @@ module TencentCloud
2585
2602
  @ResourceRegion = params['ResourceRegion']
2586
2603
  @BindStatus = params['BindStatus']
2587
2604
  @Storage = params['Storage']
2605
+ @GovernAuthStatus = params['GovernAuthStatus']
2588
2606
  end
2589
2607
  end
2590
2608
 
@@ -9373,10 +9391,16 @@ module TencentCloud
9373
9391
  # @param Channel: 实例渠道
9374
9392
  # 注意:此字段可能返回 null,表示取不到有效值。
9375
9393
  # @type Channel: String
9394
+ # @param InsAuthCount: 已授权的实例数量
9395
+ # 注意:此字段可能返回 null,表示取不到有效值。
9396
+ # @type InsAuthCount: Integer
9397
+ # @param InsTotalQuota: 已购买的实例数量
9398
+ # 注意:此字段可能返回 null,表示取不到有效值。
9399
+ # @type InsTotalQuota: Integer
9376
9400
 
9377
- attr_accessor :DspaId, :DspaName, :DspaDescription, :DBAuthCount, :CosBindCount, :InstanceVersion, :Status, :ExpiredAt, :AppId, :TrialVersion, :TrialEndAt, :DbTotalQuota, :CosTotalQuota, :CosQuotaUnit, :RenewFlag, :Channel
9401
+ attr_accessor :DspaId, :DspaName, :DspaDescription, :DBAuthCount, :CosBindCount, :InstanceVersion, :Status, :ExpiredAt, :AppId, :TrialVersion, :TrialEndAt, :DbTotalQuota, :CosTotalQuota, :CosQuotaUnit, :RenewFlag, :Channel, :InsAuthCount, :InsTotalQuota
9378
9402
 
9379
- def initialize(dspaid=nil, dspaname=nil, dspadescription=nil, dbauthcount=nil, cosbindcount=nil, instanceversion=nil, status=nil, expiredat=nil, appid=nil, trialversion=nil, trialendat=nil, dbtotalquota=nil, costotalquota=nil, cosquotaunit=nil, renewflag=nil, channel=nil)
9403
+ def initialize(dspaid=nil, dspaname=nil, dspadescription=nil, dbauthcount=nil, cosbindcount=nil, instanceversion=nil, status=nil, expiredat=nil, appid=nil, trialversion=nil, trialendat=nil, dbtotalquota=nil, costotalquota=nil, cosquotaunit=nil, renewflag=nil, channel=nil, insauthcount=nil, instotalquota=nil)
9380
9404
  @DspaId = dspaid
9381
9405
  @DspaName = dspaname
9382
9406
  @DspaDescription = dspadescription
@@ -9393,6 +9417,8 @@ module TencentCloud
9393
9417
  @CosQuotaUnit = cosquotaunit
9394
9418
  @RenewFlag = renewflag
9395
9419
  @Channel = channel
9420
+ @InsAuthCount = insauthcount
9421
+ @InsTotalQuota = instotalquota
9396
9422
  end
9397
9423
 
9398
9424
  def deserialize(params)
@@ -9412,6 +9438,8 @@ module TencentCloud
9412
9438
  @CosQuotaUnit = params['CosQuotaUnit']
9413
9439
  @RenewFlag = params['RenewFlag']
9414
9440
  @Channel = params['Channel']
9441
+ @InsAuthCount = params['InsAuthCount']
9442
+ @InsTotalQuota = params['InsTotalQuota']
9415
9443
  end
9416
9444
  end
9417
9445
 
@@ -9729,10 +9757,15 @@ module TencentCloud
9729
9757
  # @param InstanceValue: 实例值
9730
9758
  # 注意:此字段可能返回 null,表示取不到有效值。
9731
9759
  # @type InstanceValue: String
9760
+ # @param GovernAuthStatus: //治理授权状态(0:关闭 1:开启)
9761
+ # @type GovernAuthStatus: Integer
9762
+ # @param AuthRange: 授权范围:all - 授权整个数据源 manual:手动指定数据源
9763
+ # 注意:此字段可能返回 null,表示取不到有效值。
9764
+ # @type AuthRange: String
9732
9765
 
9733
- attr_accessor :ResourceId, :ResourceName, :ResourceVip, :ResourceVPort, :ResourceCreateTime, :ResourceUniqueVpcId, :ResourceUniqueSubnetId, :MetaType, :ResourceRegion, :ResourceSyncTime, :AuthStatus, :BuildType, :MasterInsId, :ResourceVpcId, :ResourceSubnetId, :Protocol, :ResourceVersion, :ResourceAuthType, :ResourceAuthAccount, :InstanceType, :InstanceValue
9766
+ attr_accessor :ResourceId, :ResourceName, :ResourceVip, :ResourceVPort, :ResourceCreateTime, :ResourceUniqueVpcId, :ResourceUniqueSubnetId, :MetaType, :ResourceRegion, :ResourceSyncTime, :AuthStatus, :BuildType, :MasterInsId, :ResourceVpcId, :ResourceSubnetId, :Protocol, :ResourceVersion, :ResourceAuthType, :ResourceAuthAccount, :InstanceType, :InstanceValue, :GovernAuthStatus, :AuthRange
9734
9767
 
9735
- def initialize(resourceid=nil, resourcename=nil, resourcevip=nil, resourcevport=nil, resourcecreatetime=nil, resourceuniquevpcid=nil, resourceuniquesubnetid=nil, metatype=nil, resourceregion=nil, resourcesynctime=nil, authstatus=nil, buildtype=nil, masterinsid=nil, resourcevpcid=nil, resourcesubnetid=nil, protocol=nil, resourceversion=nil, resourceauthtype=nil, resourceauthaccount=nil, instancetype=nil, instancevalue=nil)
9768
+ def initialize(resourceid=nil, resourcename=nil, resourcevip=nil, resourcevport=nil, resourcecreatetime=nil, resourceuniquevpcid=nil, resourceuniquesubnetid=nil, metatype=nil, resourceregion=nil, resourcesynctime=nil, authstatus=nil, buildtype=nil, masterinsid=nil, resourcevpcid=nil, resourcesubnetid=nil, protocol=nil, resourceversion=nil, resourceauthtype=nil, resourceauthaccount=nil, instancetype=nil, instancevalue=nil, governauthstatus=nil, authrange=nil)
9736
9769
  @ResourceId = resourceid
9737
9770
  @ResourceName = resourcename
9738
9771
  @ResourceVip = resourcevip
@@ -9754,6 +9787,8 @@ module TencentCloud
9754
9787
  @ResourceAuthAccount = resourceauthaccount
9755
9788
  @InstanceType = instancetype
9756
9789
  @InstanceValue = instancevalue
9790
+ @GovernAuthStatus = governauthstatus
9791
+ @AuthRange = authrange
9757
9792
  end
9758
9793
 
9759
9794
  def deserialize(params)
@@ -9778,6 +9813,8 @@ module TencentCloud
9778
9813
  @ResourceAuthAccount = params['ResourceAuthAccount']
9779
9814
  @InstanceType = params['InstanceType']
9780
9815
  @InstanceValue = params['InstanceValue']
9816
+ @GovernAuthStatus = params['GovernAuthStatus']
9817
+ @AuthRange = params['AuthRange']
9781
9818
  end
9782
9819
  end
9783
9820
 
@@ -10440,12 +10477,18 @@ module TencentCloud
10440
10477
  # @type DBUnbindNum: Integer
10441
10478
  # @param COSUnbindNum: cos月解绑次数
10442
10479
  # @type COSUnbindNum: Integer
10480
+ # @param InsTotalQuota: 用户购买的实例配额。
10481
+ # @type InsTotalQuota: Integer
10482
+ # @param InsRemainQuota: 用户可用的实例配额。
10483
+ # @type InsRemainQuota: Integer
10484
+ # @param Version: 用户购买的版本
10485
+ # @type Version: String
10443
10486
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
10444
10487
  # @type RequestId: String
10445
10488
 
10446
- attr_accessor :DspaId, :DbTotalQuota, :CosTotalQuota, :DbRemainQuota, :CosRemainQuota, :CosQuotaUnit, :DBUnbindNum, :COSUnbindNum, :RequestId
10489
+ attr_accessor :DspaId, :DbTotalQuota, :CosTotalQuota, :DbRemainQuota, :CosRemainQuota, :CosQuotaUnit, :DBUnbindNum, :COSUnbindNum, :InsTotalQuota, :InsRemainQuota, :Version, :RequestId
10447
10490
 
10448
- def initialize(dspaid=nil, dbtotalquota=nil, costotalquota=nil, dbremainquota=nil, cosremainquota=nil, cosquotaunit=nil, dbunbindnum=nil, cosunbindnum=nil, requestid=nil)
10491
+ def initialize(dspaid=nil, dbtotalquota=nil, costotalquota=nil, dbremainquota=nil, cosremainquota=nil, cosquotaunit=nil, dbunbindnum=nil, cosunbindnum=nil, instotalquota=nil, insremainquota=nil, version=nil, requestid=nil)
10449
10492
  @DspaId = dspaid
10450
10493
  @DbTotalQuota = dbtotalquota
10451
10494
  @CosTotalQuota = costotalquota
@@ -10454,6 +10497,9 @@ module TencentCloud
10454
10497
  @CosQuotaUnit = cosquotaunit
10455
10498
  @DBUnbindNum = dbunbindnum
10456
10499
  @COSUnbindNum = cosunbindnum
10500
+ @InsTotalQuota = instotalquota
10501
+ @InsRemainQuota = insremainquota
10502
+ @Version = version
10457
10503
  @RequestId = requestid
10458
10504
  end
10459
10505
 
@@ -10466,6 +10512,9 @@ module TencentCloud
10466
10512
  @CosQuotaUnit = params['CosQuotaUnit']
10467
10513
  @DBUnbindNum = params['DBUnbindNum']
10468
10514
  @COSUnbindNum = params['COSUnbindNum']
10515
+ @InsTotalQuota = params['InsTotalQuota']
10516
+ @InsRemainQuota = params['InsRemainQuota']
10517
+ @Version = params['Version']
10469
10518
  @RequestId = params['RequestId']
10470
10519
  end
10471
10520
  end
@@ -10745,6 +10794,8 @@ module TencentCloud
10745
10794
  # MetaType - cdb(云数据Mysql)、dcdb(TDSQL MySQL版)、mariadb(云数据库 MariaDB)、postgres(云数据库 PostgreSQL)、cynosdbmysql(TDSQL-C MySQL版)、cos(对象存储)、mysql_like_proto(自建型Mysql协议类关系型数据库)、postgre_like_proto(自建型Postgre协议类关系型数据库)。
10746
10795
 
10747
10796
  # ResourceId - 资源ID,支持模糊搜索。
10797
+
10798
+ # CvmID - 自建资源对应CvmId,如:ins-xxxxxxxx。该字段用于casb调用dsgc接口时,根据cvmId和vport确定具体的自建实例
10748
10799
  # @type Filters: Array
10749
10800
  # @param Limit: 分页步长,默认为100。
10750
10801
  # @type Limit: Integer
@@ -10885,8 +10936,8 @@ module TencentCloud
10885
10936
 
10886
10937
  attr_accessor :DspaId, :Status, :RiskLatestTableId, :Note, :ProcessPeople, :BathRiskIdList
10887
10938
  extend Gem::Deprecate
10888
- deprecate :RiskLatestTableId, :none, 2024, 9
10889
- deprecate :RiskLatestTableId=, :none, 2024, 9
10939
+ deprecate :RiskLatestTableId, :none, 2024, 10
10940
+ deprecate :RiskLatestTableId=, :none, 2024, 10
10890
10941
 
10891
10942
  def initialize(dspaid=nil, status=nil, risklatesttableid=nil, note=nil, processpeople=nil, bathriskidlist=nil)
10892
10943
  @DspaId = dspaid
@@ -12300,10 +12351,13 @@ module TencentCloud
12300
12351
  # @param ProgressPercent: 进度百分比
12301
12352
  # 注意:此字段可能返回 null,表示取不到有效值。
12302
12353
  # @type ProgressPercent: Integer
12354
+ # @param ReportTemplateName: 报告模版名称
12355
+ # 注意:此字段可能返回 null,表示取不到有效值。
12356
+ # @type ReportTemplateName: String
12303
12357
 
12304
- attr_accessor :Id, :ReportName, :ReportType, :ReportPeriod, :ReportPlan, :ReportStatus, :TimingStartTime, :CreateTime, :FinishedTime, :SubUin, :FailedMessage, :Enable, :ComplianceName, :ProgressPercent
12358
+ attr_accessor :Id, :ReportName, :ReportType, :ReportPeriod, :ReportPlan, :ReportStatus, :TimingStartTime, :CreateTime, :FinishedTime, :SubUin, :FailedMessage, :Enable, :ComplianceName, :ProgressPercent, :ReportTemplateName
12305
12359
 
12306
- def initialize(id=nil, reportname=nil, reporttype=nil, reportperiod=nil, reportplan=nil, reportstatus=nil, timingstarttime=nil, createtime=nil, finishedtime=nil, subuin=nil, failedmessage=nil, enable=nil, compliancename=nil, progresspercent=nil)
12360
+ def initialize(id=nil, reportname=nil, reporttype=nil, reportperiod=nil, reportplan=nil, reportstatus=nil, timingstarttime=nil, createtime=nil, finishedtime=nil, subuin=nil, failedmessage=nil, enable=nil, compliancename=nil, progresspercent=nil, reporttemplatename=nil)
12307
12361
  @Id = id
12308
12362
  @ReportName = reportname
12309
12363
  @ReportType = reporttype
@@ -12318,6 +12372,7 @@ module TencentCloud
12318
12372
  @Enable = enable
12319
12373
  @ComplianceName = compliancename
12320
12374
  @ProgressPercent = progresspercent
12375
+ @ReportTemplateName = reporttemplatename
12321
12376
  end
12322
12377
 
12323
12378
  def deserialize(params)
@@ -12335,6 +12390,7 @@ module TencentCloud
12335
12390
  @Enable = params['Enable']
12336
12391
  @ComplianceName = params['ComplianceName']
12337
12392
  @ProgressPercent = params['ProgressPercent']
12393
+ @ReportTemplateName = params['ReportTemplateName']
12338
12394
  end
12339
12395
  end
12340
12396
 
@@ -13202,15 +13258,18 @@ module TencentCloud
13202
13258
  # @param Password: 账户密码,为空则表示不更新。
13203
13259
  # UserName和Password必须同时填写或同时为空。
13204
13260
  # @type Password: String
13261
+ # @param AuthRange: 授权范围:all 授权全部 manual:手动指定
13262
+ # @type AuthRange: String
13205
13263
 
13206
- attr_accessor :DspaId, :ResourceId, :ResourceVPort, :UserName, :Password
13264
+ attr_accessor :DspaId, :ResourceId, :ResourceVPort, :UserName, :Password, :AuthRange
13207
13265
 
13208
- def initialize(dspaid=nil, resourceid=nil, resourcevport=nil, username=nil, password=nil)
13266
+ def initialize(dspaid=nil, resourceid=nil, resourcevport=nil, username=nil, password=nil, authrange=nil)
13209
13267
  @DspaId = dspaid
13210
13268
  @ResourceId = resourceid
13211
13269
  @ResourceVPort = resourcevport
13212
13270
  @UserName = username
13213
13271
  @Password = password
13272
+ @AuthRange = authrange
13214
13273
  end
13215
13274
 
13216
13275
  def deserialize(params)
@@ -13219,6 +13278,7 @@ module TencentCloud
13219
13278
  @ResourceVPort = params['ResourceVPort']
13220
13279
  @UserName = params['UserName']
13221
13280
  @Password = params['Password']
13281
+ @AuthRange = params['AuthRange']
13222
13282
  end
13223
13283
  end
13224
13284
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-dsgc
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.922
4
+ version: 3.0.923
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-12 00:00:00.000000000 Z
11
+ date: 2024-10-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common