tencentcloud-sdk-dasb 3.0.931 → 3.0.933
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/v20191018/models.rb +75 -14
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 158ddc242eae8c232828369d077f3efdc415894d
|
4
|
+
data.tar.gz: 131b773bd3f91b344c86973bb6db8f1d8e65e192
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7ccd3e6cb1892bd3442b9f46de0046a5e8fdffb992d6ac9005be231619ac081f8f772e02c924de561d877286f7d03666dde6c678b6650368af8fb616b344a312
|
7
|
+
data.tar.gz: e16e55d5ba19013413781fdbc17aa22bc70d9af04e14dca224573b6bc17780c35a333340b104c7b9ecab9eedbe3506f707378b4c10dd5bc24a886401251788c8
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.933
|
data/lib/v20191018/models.rb
CHANGED
@@ -681,19 +681,24 @@ module TencentCloud
|
|
681
681
|
# @type Name: String
|
682
682
|
# @param CmdList: 命令列表,命令之间用换行符("\n")分隔
|
683
683
|
# @type CmdList: String
|
684
|
+
# @param Type: 命令模板类型 1-内置 2-自定义
|
685
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
686
|
+
# @type Type: Integer
|
684
687
|
|
685
|
-
attr_accessor :Id, :Name, :CmdList
|
688
|
+
attr_accessor :Id, :Name, :CmdList, :Type
|
686
689
|
|
687
|
-
def initialize(id=nil, name=nil, cmdlist=nil)
|
690
|
+
def initialize(id=nil, name=nil, cmdlist=nil, type=nil)
|
688
691
|
@Id = id
|
689
692
|
@Name = name
|
690
693
|
@CmdList = cmdlist
|
694
|
+
@Type = type
|
691
695
|
end
|
692
696
|
|
693
697
|
def deserialize(params)
|
694
698
|
@Id = params['Id']
|
695
699
|
@Name = params['Name']
|
696
700
|
@CmdList = params['CmdList']
|
701
|
+
@Type = params['Type']
|
697
702
|
end
|
698
703
|
end
|
699
704
|
|
@@ -1872,10 +1877,12 @@ module TencentCloud
|
|
1872
1877
|
# @type Status: Integer
|
1873
1878
|
# @param DepartmentId: 部门ID,用于过滤属于某个部门的访问权限
|
1874
1879
|
# @type DepartmentId: String
|
1880
|
+
# @param Filters: 过滤数组
|
1881
|
+
# @type Filters: Array
|
1875
1882
|
|
1876
|
-
attr_accessor :IdSet, :Name, :Offset, :Limit, :Exact, :AuthorizedUserIdSet, :AuthorizedDeviceIdSet, :Status, :DepartmentId
|
1883
|
+
attr_accessor :IdSet, :Name, :Offset, :Limit, :Exact, :AuthorizedUserIdSet, :AuthorizedDeviceIdSet, :Status, :DepartmentId, :Filters
|
1877
1884
|
|
1878
|
-
def initialize(idset=nil, name=nil, offset=nil, limit=nil, exact=nil, authorizeduseridset=nil, authorizeddeviceidset=nil, status=nil, departmentid=nil)
|
1885
|
+
def initialize(idset=nil, name=nil, offset=nil, limit=nil, exact=nil, authorizeduseridset=nil, authorizeddeviceidset=nil, status=nil, departmentid=nil, filters=nil)
|
1879
1886
|
@IdSet = idset
|
1880
1887
|
@Name = name
|
1881
1888
|
@Offset = offset
|
@@ -1885,6 +1892,7 @@ module TencentCloud
|
|
1885
1892
|
@AuthorizedDeviceIdSet = authorizeddeviceidset
|
1886
1893
|
@Status = status
|
1887
1894
|
@DepartmentId = departmentid
|
1895
|
+
@Filters = filters
|
1888
1896
|
end
|
1889
1897
|
|
1890
1898
|
def deserialize(params)
|
@@ -1897,6 +1905,14 @@ module TencentCloud
|
|
1897
1905
|
@AuthorizedDeviceIdSet = params['AuthorizedDeviceIdSet']
|
1898
1906
|
@Status = params['Status']
|
1899
1907
|
@DepartmentId = params['DepartmentId']
|
1908
|
+
unless params['Filters'].nil?
|
1909
|
+
@Filters = []
|
1910
|
+
params['Filters'].each do |i|
|
1911
|
+
filter_tmp = Filter.new
|
1912
|
+
filter_tmp.deserialize(i)
|
1913
|
+
@Filters << filter_tmp
|
1914
|
+
end
|
1915
|
+
end
|
1900
1916
|
end
|
1901
1917
|
end
|
1902
1918
|
|
@@ -2115,16 +2131,19 @@ module TencentCloud
|
|
2115
2131
|
# @type IdSet: Array
|
2116
2132
|
# @param Name: 命令模板名,模糊查询,最大长度64字符
|
2117
2133
|
# @type Name: String
|
2134
|
+
# @param Type: 命令模板类型 1-内置模板 2-自定义模板
|
2135
|
+
# @type Type: Integer
|
2118
2136
|
# @param Offset: 分页偏移位置,默认值为0
|
2119
2137
|
# @type Offset: Integer
|
2120
2138
|
# @param Limit: 每页条目数量,默认20
|
2121
2139
|
# @type Limit: Integer
|
2122
2140
|
|
2123
|
-
attr_accessor :IdSet, :Name, :Offset, :Limit
|
2141
|
+
attr_accessor :IdSet, :Name, :Type, :Offset, :Limit
|
2124
2142
|
|
2125
|
-
def initialize(idset=nil, name=nil, offset=nil, limit=nil)
|
2143
|
+
def initialize(idset=nil, name=nil, type=nil, offset=nil, limit=nil)
|
2126
2144
|
@IdSet = idset
|
2127
2145
|
@Name = name
|
2146
|
+
@Type = type
|
2128
2147
|
@Offset = offset
|
2129
2148
|
@Limit = limit
|
2130
2149
|
end
|
@@ -2132,6 +2151,7 @@ module TencentCloud
|
|
2132
2151
|
def deserialize(params)
|
2133
2152
|
@IdSet = params['IdSet']
|
2134
2153
|
@Name = params['Name']
|
2154
|
+
@Type = params['Type']
|
2135
2155
|
@Offset = params['Offset']
|
2136
2156
|
@Limit = params['Limit']
|
2137
2157
|
end
|
@@ -3081,10 +3101,16 @@ module TencentCloud
|
|
3081
3101
|
# @param DomainName: 网络域名称
|
3082
3102
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
3083
3103
|
# @type DomainName: String
|
3104
|
+
# @param EnableSSL: 是否启用SSL,仅支持Redis资产。0:禁用 1:启用
|
3105
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3106
|
+
# @type EnableSSL: Integer
|
3107
|
+
# @param SSLCertName: 已上传的SSL证书名称
|
3108
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3109
|
+
# @type SSLCertName: String
|
3084
3110
|
|
3085
|
-
attr_accessor :Id, :InstanceId, :Name, :PublicIp, :PrivateIp, :ApCode, :OsName, :Kind, :Port, :GroupSet, :AccountCount, :VpcId, :SubnetId, :Resource, :Department, :IpPortSet, :DomainId, :DomainName
|
3111
|
+
attr_accessor :Id, :InstanceId, :Name, :PublicIp, :PrivateIp, :ApCode, :OsName, :Kind, :Port, :GroupSet, :AccountCount, :VpcId, :SubnetId, :Resource, :Department, :IpPortSet, :DomainId, :DomainName, :EnableSSL, :SSLCertName
|
3086
3112
|
|
3087
|
-
def initialize(id=nil, instanceid=nil, name=nil, publicip=nil, privateip=nil, apcode=nil, osname=nil, kind=nil, port=nil, groupset=nil, accountcount=nil, vpcid=nil, subnetid=nil, resource=nil, department=nil, ipportset=nil, domainid=nil, domainname=nil)
|
3113
|
+
def initialize(id=nil, instanceid=nil, name=nil, publicip=nil, privateip=nil, apcode=nil, osname=nil, kind=nil, port=nil, groupset=nil, accountcount=nil, vpcid=nil, subnetid=nil, resource=nil, department=nil, ipportset=nil, domainid=nil, domainname=nil, enablessl=nil, sslcertname=nil)
|
3088
3114
|
@Id = id
|
3089
3115
|
@InstanceId = instanceid
|
3090
3116
|
@Name = name
|
@@ -3103,6 +3129,8 @@ module TencentCloud
|
|
3103
3129
|
@IpPortSet = ipportset
|
3104
3130
|
@DomainId = domainid
|
3105
3131
|
@DomainName = domainname
|
3132
|
+
@EnableSSL = enablessl
|
3133
|
+
@SSLCertName = sslcertname
|
3106
3134
|
end
|
3107
3135
|
|
3108
3136
|
def deserialize(params)
|
@@ -3137,6 +3165,8 @@ module TencentCloud
|
|
3137
3165
|
@IpPortSet = params['IpPortSet']
|
3138
3166
|
@DomainId = params['DomainId']
|
3139
3167
|
@DomainName = params['DomainName']
|
3168
|
+
@EnableSSL = params['EnableSSL']
|
3169
|
+
@SSLCertName = params['SSLCertName']
|
3140
3170
|
end
|
3141
3171
|
end
|
3142
3172
|
|
@@ -3241,16 +3271,25 @@ module TencentCloud
|
|
3241
3271
|
# @type DepartmentId: String
|
3242
3272
|
# @param IpPortSet: 资产多节点:字段ip和端口
|
3243
3273
|
# @type IpPortSet: Array
|
3274
|
+
# @param EnableSSL: 是否启用SSL,1:启用 0:禁用,仅支持Redis资产
|
3275
|
+
# @type EnableSSL: Integer
|
3276
|
+
# @param SSLCert: SSL证书,EnableSSL时必填
|
3277
|
+
# @type SSLCert: String
|
3278
|
+
# @param SSLCertName: SSL证书名称,EnableSSL时必填
|
3279
|
+
# @type SSLCertName: String
|
3244
3280
|
|
3245
|
-
attr_accessor :OsName, :Ip, :Port, :Name, :DepartmentId, :IpPortSet
|
3281
|
+
attr_accessor :OsName, :Ip, :Port, :Name, :DepartmentId, :IpPortSet, :EnableSSL, :SSLCert, :SSLCertName
|
3246
3282
|
|
3247
|
-
def initialize(osname=nil, ip=nil, port=nil, name=nil, departmentid=nil, ipportset=nil)
|
3283
|
+
def initialize(osname=nil, ip=nil, port=nil, name=nil, departmentid=nil, ipportset=nil, enablessl=nil, sslcert=nil, sslcertname=nil)
|
3248
3284
|
@OsName = osname
|
3249
3285
|
@Ip = ip
|
3250
3286
|
@Port = port
|
3251
3287
|
@Name = name
|
3252
3288
|
@DepartmentId = departmentid
|
3253
3289
|
@IpPortSet = ipportset
|
3290
|
+
@EnableSSL = enablessl
|
3291
|
+
@SSLCert = sslcert
|
3292
|
+
@SSLCertName = sslcertname
|
3254
3293
|
end
|
3255
3294
|
|
3256
3295
|
def deserialize(params)
|
@@ -3260,6 +3299,9 @@ module TencentCloud
|
|
3260
3299
|
@Name = params['Name']
|
3261
3300
|
@DepartmentId = params['DepartmentId']
|
3262
3301
|
@IpPortSet = params['IpPortSet']
|
3302
|
+
@EnableSSL = params['EnableSSL']
|
3303
|
+
@SSLCert = params['SSLCert']
|
3304
|
+
@SSLCertName = params['SSLCertName']
|
3263
3305
|
end
|
3264
3306
|
end
|
3265
3307
|
|
@@ -3667,14 +3709,17 @@ module TencentCloud
|
|
3667
3709
|
# @param Encoding: CmdList字段前端是否base64传值。
|
3668
3710
|
# 0:否,1:是
|
3669
3711
|
# @type Encoding: Integer
|
3712
|
+
# @param Type: 命令模板类型 1-内置模板 2-自定义模板
|
3713
|
+
# @type Type: Integer
|
3670
3714
|
|
3671
|
-
attr_accessor :Name, :CmdList, :Id, :Encoding
|
3715
|
+
attr_accessor :Name, :CmdList, :Id, :Encoding, :Type
|
3672
3716
|
|
3673
|
-
def initialize(name=nil, cmdlist=nil, id=nil, encoding=nil)
|
3717
|
+
def initialize(name=nil, cmdlist=nil, id=nil, encoding=nil, type=nil)
|
3674
3718
|
@Name = name
|
3675
3719
|
@CmdList = cmdlist
|
3676
3720
|
@Id = id
|
3677
3721
|
@Encoding = encoding
|
3722
|
+
@Type = type
|
3678
3723
|
end
|
3679
3724
|
|
3680
3725
|
def deserialize(params)
|
@@ -3682,6 +3727,7 @@ module TencentCloud
|
|
3682
3727
|
@CmdList = params['CmdList']
|
3683
3728
|
@Id = params['Id']
|
3684
3729
|
@Encoding = params['Encoding']
|
3730
|
+
@Type = params['Type']
|
3685
3731
|
end
|
3686
3732
|
end
|
3687
3733
|
|
@@ -4232,10 +4278,19 @@ module TencentCloud
|
|
4232
4278
|
# @param Trial: 0 非试用版,1 试用版
|
4233
4279
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
4234
4280
|
# @type Trial: Integer
|
4281
|
+
# @param CdcClusterId: cdc集群id
|
4282
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
4283
|
+
# @type CdcClusterId: String
|
4284
|
+
# @param LogDelivery: 日志投递规格信息
|
4285
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
4286
|
+
# @type LogDelivery: String
|
4287
|
+
# @param DeployModel: 部署模式
|
4288
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
4289
|
+
# @type DeployModel: Integer
|
4235
4290
|
|
4236
|
-
attr_accessor :ResourceId, :ApCode, :SvArgs, :VpcId, :Nodes, :RenewFlag, :ExpireTime, :Status, :ResourceName, :Pid, :CreateTime, :ProductCode, :SubProductCode, :Zone, :Expired, :Deployed, :VpcName, :VpcCidrBlock, :SubnetId, :SubnetName, :CidrBlock, :PublicIpSet, :PrivateIpSet, :ModuleSet, :UsedNodes, :ExtendPoints, :PackageBandwidth, :PackageNode, :LogDeliveryArgs, :ClbSet, :DomainCount, :UsedDomainCount, :Trial
|
4291
|
+
attr_accessor :ResourceId, :ApCode, :SvArgs, :VpcId, :Nodes, :RenewFlag, :ExpireTime, :Status, :ResourceName, :Pid, :CreateTime, :ProductCode, :SubProductCode, :Zone, :Expired, :Deployed, :VpcName, :VpcCidrBlock, :SubnetId, :SubnetName, :CidrBlock, :PublicIpSet, :PrivateIpSet, :ModuleSet, :UsedNodes, :ExtendPoints, :PackageBandwidth, :PackageNode, :LogDeliveryArgs, :ClbSet, :DomainCount, :UsedDomainCount, :Trial, :CdcClusterId, :LogDelivery, :DeployModel
|
4237
4292
|
|
4238
|
-
def initialize(resourceid=nil, apcode=nil, svargs=nil, vpcid=nil, nodes=nil, renewflag=nil, expiretime=nil, status=nil, resourcename=nil, pid=nil, createtime=nil, productcode=nil, subproductcode=nil, zone=nil, expired=nil, deployed=nil, vpcname=nil, vpccidrblock=nil, subnetid=nil, subnetname=nil, cidrblock=nil, publicipset=nil, privateipset=nil, moduleset=nil, usednodes=nil, extendpoints=nil, packagebandwidth=nil, packagenode=nil, logdeliveryargs=nil, clbset=nil, domaincount=nil, useddomaincount=nil, trial=nil)
|
4293
|
+
def initialize(resourceid=nil, apcode=nil, svargs=nil, vpcid=nil, nodes=nil, renewflag=nil, expiretime=nil, status=nil, resourcename=nil, pid=nil, createtime=nil, productcode=nil, subproductcode=nil, zone=nil, expired=nil, deployed=nil, vpcname=nil, vpccidrblock=nil, subnetid=nil, subnetname=nil, cidrblock=nil, publicipset=nil, privateipset=nil, moduleset=nil, usednodes=nil, extendpoints=nil, packagebandwidth=nil, packagenode=nil, logdeliveryargs=nil, clbset=nil, domaincount=nil, useddomaincount=nil, trial=nil, cdcclusterid=nil, logdelivery=nil, deploymodel=nil)
|
4239
4294
|
@ResourceId = resourceid
|
4240
4295
|
@ApCode = apcode
|
4241
4296
|
@SvArgs = svargs
|
@@ -4269,6 +4324,9 @@ module TencentCloud
|
|
4269
4324
|
@DomainCount = domaincount
|
4270
4325
|
@UsedDomainCount = useddomaincount
|
4271
4326
|
@Trial = trial
|
4327
|
+
@CdcClusterId = cdcclusterid
|
4328
|
+
@LogDelivery = logdelivery
|
4329
|
+
@DeployModel = deploymodel
|
4272
4330
|
end
|
4273
4331
|
|
4274
4332
|
def deserialize(params)
|
@@ -4312,6 +4370,9 @@ module TencentCloud
|
|
4312
4370
|
@DomainCount = params['DomainCount']
|
4313
4371
|
@UsedDomainCount = params['UsedDomainCount']
|
4314
4372
|
@Trial = params['Trial']
|
4373
|
+
@CdcClusterId = params['CdcClusterId']
|
4374
|
+
@LogDelivery = params['LogDelivery']
|
4375
|
+
@DeployModel = params['DeployModel']
|
4315
4376
|
end
|
4316
4377
|
end
|
4317
4378
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-dasb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.933
|
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-
|
11
|
+
date: 2024-10-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|