tencentcloud-sdk-tdmq 3.0.600 → 3.0.601
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.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20200217/models.rb +12 -4
- 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: 69f29029f0af8f696509f1fc52d64c845fee4527
|
|
4
|
+
data.tar.gz: aa61255f75f59c8db69c7f57e629cb148132f294
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 364c993d7569c47bb0593cb2641ad6248fbbee13561b083d69cf8134fd56e1316a3f499c635caab73947b8dec012094d9da93d8b1ee6da7bc539b472fe7e8ac5
|
|
7
|
+
data.tar.gz: 09156749a25b45351200b3779530f6b0a941d16a65861e9060c0cb4b98ea37884d1d403f1bafd03859565de252e53b16830ea1b9cee733adb86201125d6aa8e2
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.601
|
data/lib/v20200217/models.rb
CHANGED
|
@@ -7071,19 +7071,23 @@ module TencentCloud
|
|
|
7071
7071
|
# @type ClusterName: String
|
|
7072
7072
|
# @param Remark: 说明信息,不超过128个字符
|
|
7073
7073
|
# @type Remark: String
|
|
7074
|
+
# @param PublicAccessEnabled: 是否开启HTTP公网访问
|
|
7075
|
+
# @type PublicAccessEnabled: Boolean
|
|
7074
7076
|
|
|
7075
|
-
attr_accessor :ClusterId, :ClusterName, :Remark
|
|
7077
|
+
attr_accessor :ClusterId, :ClusterName, :Remark, :PublicAccessEnabled
|
|
7076
7078
|
|
|
7077
|
-
def initialize(clusterid=nil, clustername=nil, remark=nil)
|
|
7079
|
+
def initialize(clusterid=nil, clustername=nil, remark=nil, publicaccessenabled=nil)
|
|
7078
7080
|
@ClusterId = clusterid
|
|
7079
7081
|
@ClusterName = clustername
|
|
7080
7082
|
@Remark = remark
|
|
7083
|
+
@PublicAccessEnabled = publicaccessenabled
|
|
7081
7084
|
end
|
|
7082
7085
|
|
|
7083
7086
|
def deserialize(params)
|
|
7084
7087
|
@ClusterId = params['ClusterId']
|
|
7085
7088
|
@ClusterName = params['ClusterName']
|
|
7086
7089
|
@Remark = params['Remark']
|
|
7090
|
+
@PublicAccessEnabled = params['PublicAccessEnabled']
|
|
7087
7091
|
end
|
|
7088
7092
|
end
|
|
7089
7093
|
|
|
@@ -7224,15 +7228,18 @@ module TencentCloud
|
|
|
7224
7228
|
# @type RetentionTime: Integer
|
|
7225
7229
|
# @param Remark: 说明,最大128个字符
|
|
7226
7230
|
# @type Remark: String
|
|
7231
|
+
# @param PublicAccessEnabled: 是否开启公网访问
|
|
7232
|
+
# @type PublicAccessEnabled: Boolean
|
|
7227
7233
|
|
|
7228
|
-
attr_accessor :ClusterId, :NamespaceId, :Ttl, :RetentionTime, :Remark
|
|
7234
|
+
attr_accessor :ClusterId, :NamespaceId, :Ttl, :RetentionTime, :Remark, :PublicAccessEnabled
|
|
7229
7235
|
|
|
7230
|
-
def initialize(clusterid=nil, namespaceid=nil, ttl=nil, retentiontime=nil, remark=nil)
|
|
7236
|
+
def initialize(clusterid=nil, namespaceid=nil, ttl=nil, retentiontime=nil, remark=nil, publicaccessenabled=nil)
|
|
7231
7237
|
@ClusterId = clusterid
|
|
7232
7238
|
@NamespaceId = namespaceid
|
|
7233
7239
|
@Ttl = ttl
|
|
7234
7240
|
@RetentionTime = retentiontime
|
|
7235
7241
|
@Remark = remark
|
|
7242
|
+
@PublicAccessEnabled = publicaccessenabled
|
|
7236
7243
|
end
|
|
7237
7244
|
|
|
7238
7245
|
def deserialize(params)
|
|
@@ -7241,6 +7248,7 @@ module TencentCloud
|
|
|
7241
7248
|
@Ttl = params['Ttl']
|
|
7242
7249
|
@RetentionTime = params['RetentionTime']
|
|
7243
7250
|
@Remark = params['Remark']
|
|
7251
|
+
@PublicAccessEnabled = params['PublicAccessEnabled']
|
|
7244
7252
|
end
|
|
7245
7253
|
end
|
|
7246
7254
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tencentcloud-sdk-tdmq
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.601
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tencent Cloud
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-06-
|
|
11
|
+
date: 2023-06-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|