tencentcloud-sdk-dlc 3.0.898 → 3.0.899
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20210125/models.rb +27 -11
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 65fe87fdce3f6fe99f60ff31bfae83163abcaf43
|
4
|
+
data.tar.gz: b3a6083d5489dd4ba77a3354f86a59be57142e8e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 48cbd957f29365a415a1c4cab238a65a395b14a97de1785e1ad1151080a30a33cb73ad60800984204cebfb2d97cc77309f1179cd2542b304c75245c69691d4db
|
7
|
+
data.tar.gz: b191215bf03586aeec181fe8a6e56427423e5ab8816be99031f045488c72e27bb3bce2c59ffc6a3f44512daf0ce790789d345099971131b4fbaa05e5e9e19c93
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.899
|
data/lib/v20210125/models.rb
CHANGED
@@ -527,16 +527,27 @@ module TencentCloud
|
|
527
527
|
|
528
528
|
# AssignMangedTableProperties返回参数结构体
|
529
529
|
class AssignMangedTablePropertiesResponse < TencentCloud::Common::AbstractModel
|
530
|
+
# @param Properties: 分配的原生表表属性
|
531
|
+
# @type Properties: Array
|
530
532
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
531
533
|
# @type RequestId: String
|
532
534
|
|
533
|
-
attr_accessor :RequestId
|
535
|
+
attr_accessor :Properties, :RequestId
|
534
536
|
|
535
|
-
def initialize(requestid=nil)
|
537
|
+
def initialize(properties=nil, requestid=nil)
|
538
|
+
@Properties = properties
|
536
539
|
@RequestId = requestid
|
537
540
|
end
|
538
541
|
|
539
542
|
def deserialize(params)
|
543
|
+
unless params['Properties'].nil?
|
544
|
+
@Properties = []
|
545
|
+
params['Properties'].each do |i|
|
546
|
+
property_tmp = Property.new
|
547
|
+
property_tmp.deserialize(i)
|
548
|
+
@Properties << property_tmp
|
549
|
+
end
|
550
|
+
end
|
540
551
|
@RequestId = params['RequestId']
|
541
552
|
end
|
542
553
|
end
|
@@ -1617,8 +1628,8 @@ module TencentCloud
|
|
1617
1628
|
|
1618
1629
|
attr_accessor :EngineType, :DataEngineName, :ClusterType, :Mode, :AutoResume, :MinClusters, :MaxClusters, :DefaultDataEngine, :CidrBlock, :Message, :Size, :PayMode, :TimeSpan, :TimeUnit, :AutoRenew, :Tags, :AutoSuspend, :CrontabResumeSuspend, :CrontabResumeSuspendStrategy, :EngineExecType, :MaxConcurrency, :TolerableQueueTime, :AutoSuspendTime, :ResourceType, :DataEngineConfigPairs, :ImageVersionName, :MainClusterName, :ElasticSwitch, :ElasticLimit, :SessionResourceTemplate, :AutoAuthorization, :EngineNetworkId, :EngineGeneration
|
1619
1630
|
extend Gem::Deprecate
|
1620
|
-
deprecate :DefaultDataEngine, :none, 2024,
|
1621
|
-
deprecate :DefaultDataEngine=, :none, 2024,
|
1631
|
+
deprecate :DefaultDataEngine, :none, 2024, 9
|
1632
|
+
deprecate :DefaultDataEngine=, :none, 2024, 9
|
1622
1633
|
|
1623
1634
|
def initialize(enginetype=nil, dataenginename=nil, clustertype=nil, mode=nil, autoresume=nil, minclusters=nil, maxclusters=nil, defaultdataengine=nil, cidrblock=nil, message=nil, size=nil, paymode=nil, timespan=nil, timeunit=nil, autorenew=nil, tags=nil, autosuspend=nil, crontabresumesuspend=nil, crontabresumesuspendstrategy=nil, engineexectype=nil, maxconcurrency=nil, tolerablequeuetime=nil, autosuspendtime=nil, resourcetype=nil, dataengineconfigpairs=nil, imageversionname=nil, mainclustername=nil, elasticswitch=nil, elasticlimit=nil, sessionresourcetemplate=nil, autoauthorization=nil, enginenetworkid=nil, enginegeneration=nil)
|
1624
1635
|
@EngineType = enginetype
|
@@ -7648,7 +7659,7 @@ module TencentCloud
|
|
7648
7659
|
class DescribeUserInfoRequest < TencentCloud::Common::AbstractModel
|
7649
7660
|
# @param UserId: 用户Id
|
7650
7661
|
# @type UserId: String
|
7651
|
-
# @param Type:
|
7662
|
+
# @param Type: 必传字段,查询的信息类型,Group:工作组 DataAuth:数据权限 EngineAuth:引擎权限 RowFilter:行级别权限
|
7652
7663
|
# @type Type: String
|
7653
7664
|
# @param Filters: 查询的过滤条件。
|
7654
7665
|
|
@@ -11843,10 +11854,10 @@ module TencentCloud
|
|
11843
11854
|
|
11844
11855
|
attr_accessor :DatabaseName, :TableName, :DatasourceConnectionName, :TableComment, :Type, :TableFormat, :UserAlias, :UserSubUin, :GovernPolicy, :DbGovernPolicyIsDisable, :SmartPolicy
|
11845
11856
|
extend Gem::Deprecate
|
11846
|
-
deprecate :GovernPolicy, :none, 2024,
|
11847
|
-
deprecate :GovernPolicy=, :none, 2024,
|
11848
|
-
deprecate :DbGovernPolicyIsDisable, :none, 2024,
|
11849
|
-
deprecate :DbGovernPolicyIsDisable=, :none, 2024,
|
11857
|
+
deprecate :GovernPolicy, :none, 2024, 9
|
11858
|
+
deprecate :GovernPolicy=, :none, 2024, 9
|
11859
|
+
deprecate :DbGovernPolicyIsDisable, :none, 2024, 9
|
11860
|
+
deprecate :DbGovernPolicyIsDisable=, :none, 2024, 9
|
11850
11861
|
|
11851
11862
|
def initialize(databasename=nil, tablename=nil, datasourceconnectionname=nil, tablecomment=nil, type=nil, tableformat=nil, useralias=nil, usersubuin=nil, governpolicy=nil, dbgovernpolicyisdisable=nil, smartpolicy=nil)
|
11852
11863
|
@DatabaseName = databasename
|
@@ -12857,10 +12868,13 @@ module TencentCloud
|
|
12857
12868
|
# @param RowFilterInfo: 行过滤集合
|
12858
12869
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
12859
12870
|
# @type RowFilterInfo: :class:`Tencentcloud::Dlc.v20210125.models.Policys`
|
12871
|
+
# @param AccountType: 账号类型
|
12872
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
12873
|
+
# @type AccountType: String
|
12860
12874
|
|
12861
|
-
attr_accessor :UserId, :Type, :UserType, :UserDescription, :DataPolicyInfo, :EnginePolicyInfo, :WorkGroupInfo, :UserAlias, :RowFilterInfo
|
12875
|
+
attr_accessor :UserId, :Type, :UserType, :UserDescription, :DataPolicyInfo, :EnginePolicyInfo, :WorkGroupInfo, :UserAlias, :RowFilterInfo, :AccountType
|
12862
12876
|
|
12863
|
-
def initialize(userid=nil, type=nil, usertype=nil, userdescription=nil, datapolicyinfo=nil, enginepolicyinfo=nil, workgroupinfo=nil, useralias=nil, rowfilterinfo=nil)
|
12877
|
+
def initialize(userid=nil, type=nil, usertype=nil, userdescription=nil, datapolicyinfo=nil, enginepolicyinfo=nil, workgroupinfo=nil, useralias=nil, rowfilterinfo=nil, accounttype=nil)
|
12864
12878
|
@UserId = userid
|
12865
12879
|
@Type = type
|
12866
12880
|
@UserType = usertype
|
@@ -12870,6 +12884,7 @@ module TencentCloud
|
|
12870
12884
|
@WorkGroupInfo = workgroupinfo
|
12871
12885
|
@UserAlias = useralias
|
12872
12886
|
@RowFilterInfo = rowfilterinfo
|
12887
|
+
@AccountType = accounttype
|
12873
12888
|
end
|
12874
12889
|
|
12875
12890
|
def deserialize(params)
|
@@ -12894,6 +12909,7 @@ module TencentCloud
|
|
12894
12909
|
@RowFilterInfo = Policys.new
|
12895
12910
|
@RowFilterInfo.deserialize(params['RowFilterInfo'])
|
12896
12911
|
end
|
12912
|
+
@AccountType = params['AccountType']
|
12897
12913
|
end
|
12898
12914
|
end
|
12899
12915
|
|