tencentcloud-sdk-tse 3.0.970 → 3.0.971
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/v20201207/models.rb +28 -8
- 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: 70b37e020f8385fc0c148d9d475a832b1d355250
|
4
|
+
data.tar.gz: 47bf1c717e2611f7845effa3e24b1330a6b12114
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0cfb8169fc75c5bf5b81798704941dee9aab2b6e8cab9e12025a366f5a79ea9e7dfc41ae6d4d04075b7a9cd5c3500041836b64649249554e22bd0cc4be1f3b06
|
7
|
+
data.tar.gz: be73dd27a0f3f156c5f534c68aa93b36507a8779826c0bfa14b5b530f1fe4a0a8c1365400e47517f246a0778d409a59351f3dc5c1795a891652bb4b410878aff
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.971
|
data/lib/v20201207/models.rb
CHANGED
@@ -5931,16 +5931,19 @@ module TencentCloud
|
|
5931
5931
|
# @type InstanceId: String
|
5932
5932
|
# @param Name: 根据命名空间名称过滤。
|
5933
5933
|
# @type Name: String
|
5934
|
+
# @param SyncToGlobalRegistry: 是否开启同步到全局注册中心
|
5935
|
+
# @type SyncToGlobalRegistry: String
|
5934
5936
|
# @param Offset: 偏移量,默认为0。
|
5935
5937
|
# @type Offset: Integer
|
5936
5938
|
# @param Limit: 返回数量,默认为20,最大值为100。
|
5937
5939
|
# @type Limit: Integer
|
5938
5940
|
|
5939
|
-
attr_accessor :InstanceId, :Name, :Offset, :Limit
|
5941
|
+
attr_accessor :InstanceId, :Name, :SyncToGlobalRegistry, :Offset, :Limit
|
5940
5942
|
|
5941
|
-
def initialize(instanceid=nil, name=nil, offset=nil, limit=nil)
|
5943
|
+
def initialize(instanceid=nil, name=nil, synctoglobalregistry=nil, offset=nil, limit=nil)
|
5942
5944
|
@InstanceId = instanceid
|
5943
5945
|
@Name = name
|
5946
|
+
@SyncToGlobalRegistry = synctoglobalregistry
|
5944
5947
|
@Offset = offset
|
5945
5948
|
@Limit = limit
|
5946
5949
|
end
|
@@ -5948,6 +5951,7 @@ module TencentCloud
|
|
5948
5951
|
def deserialize(params)
|
5949
5952
|
@InstanceId = params['InstanceId']
|
5950
5953
|
@Name = params['Name']
|
5954
|
+
@SyncToGlobalRegistry = params['SyncToGlobalRegistry']
|
5951
5955
|
@Offset = params['Offset']
|
5952
5956
|
@Limit = params['Limit']
|
5953
5957
|
end
|
@@ -6141,10 +6145,12 @@ module TencentCloud
|
|
6141
6145
|
# @type Host: String
|
6142
6146
|
# @param OnlyExistHealthyInstance: 是否只查询存在健康实例的服务
|
6143
6147
|
# @type OnlyExistHealthyInstance: Boolean
|
6148
|
+
# @param SyncToGlobalRegistry: 是否开启同步到全局注册中心
|
6149
|
+
# @type SyncToGlobalRegistry: String
|
6144
6150
|
|
6145
|
-
attr_accessor :Name, :Namespace, :Metadatas, :Offset, :Limit, :InstanceId, :Department, :Business, :Host, :OnlyExistHealthyInstance
|
6151
|
+
attr_accessor :Name, :Namespace, :Metadatas, :Offset, :Limit, :InstanceId, :Department, :Business, :Host, :OnlyExistHealthyInstance, :SyncToGlobalRegistry
|
6146
6152
|
|
6147
|
-
def initialize(name=nil, namespace=nil, metadatas=nil, offset=nil, limit=nil, instanceid=nil, department=nil, business=nil, host=nil, onlyexisthealthyinstance=nil)
|
6153
|
+
def initialize(name=nil, namespace=nil, metadatas=nil, offset=nil, limit=nil, instanceid=nil, department=nil, business=nil, host=nil, onlyexisthealthyinstance=nil, synctoglobalregistry=nil)
|
6148
6154
|
@Name = name
|
6149
6155
|
@Namespace = namespace
|
6150
6156
|
@Metadatas = metadatas
|
@@ -6155,6 +6161,7 @@ module TencentCloud
|
|
6155
6161
|
@Business = business
|
6156
6162
|
@Host = host
|
6157
6163
|
@OnlyExistHealthyInstance = onlyexisthealthyinstance
|
6164
|
+
@SyncToGlobalRegistry = synctoglobalregistry
|
6158
6165
|
end
|
6159
6166
|
|
6160
6167
|
def deserialize(params)
|
@@ -6175,6 +6182,7 @@ module TencentCloud
|
|
6175
6182
|
@Business = params['Business']
|
6176
6183
|
@Host = params['Host']
|
6177
6184
|
@OnlyExistHealthyInstance = params['OnlyExistHealthyInstance']
|
6185
|
+
@SyncToGlobalRegistry = params['SyncToGlobalRegistry']
|
6178
6186
|
end
|
6179
6187
|
end
|
6180
6188
|
|
@@ -7910,10 +7918,13 @@ module TencentCloud
|
|
7910
7918
|
# @param RemoveGroupIds: 移除可以操作此命名空间的用户组ID列表
|
7911
7919
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
7912
7920
|
# @type RemoveGroupIds: Array
|
7921
|
+
# @param ServiceExportTo: 该命名空间下的服务对哪些命名空间可见
|
7922
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
7923
|
+
# @type ServiceExportTo: Array
|
7913
7924
|
|
7914
|
-
attr_accessor :Name, :Comment, :CreateTime, :ModifyTime, :TotalServiceCount, :TotalHealthInstanceCount, :TotalInstanceCount, :Id, :Editable, :UserIds, :GroupIds, :RemoveUserIds, :RemoveGroupIds
|
7925
|
+
attr_accessor :Name, :Comment, :CreateTime, :ModifyTime, :TotalServiceCount, :TotalHealthInstanceCount, :TotalInstanceCount, :Id, :Editable, :UserIds, :GroupIds, :RemoveUserIds, :RemoveGroupIds, :ServiceExportTo
|
7915
7926
|
|
7916
|
-
def initialize(name=nil, comment=nil, createtime=nil, modifytime=nil, totalservicecount=nil, totalhealthinstancecount=nil, totalinstancecount=nil, id=nil, editable=nil, userids=nil, groupids=nil, removeuserids=nil, removegroupids=nil)
|
7927
|
+
def initialize(name=nil, comment=nil, createtime=nil, modifytime=nil, totalservicecount=nil, totalhealthinstancecount=nil, totalinstancecount=nil, id=nil, editable=nil, userids=nil, groupids=nil, removeuserids=nil, removegroupids=nil, serviceexportto=nil)
|
7917
7928
|
@Name = name
|
7918
7929
|
@Comment = comment
|
7919
7930
|
@CreateTime = createtime
|
@@ -7927,6 +7938,7 @@ module TencentCloud
|
|
7927
7938
|
@GroupIds = groupids
|
7928
7939
|
@RemoveUserIds = removeuserids
|
7929
7940
|
@RemoveGroupIds = removegroupids
|
7941
|
+
@ServiceExportTo = serviceexportto
|
7930
7942
|
end
|
7931
7943
|
|
7932
7944
|
def deserialize(params)
|
@@ -7943,6 +7955,7 @@ module TencentCloud
|
|
7943
7955
|
@GroupIds = params['GroupIds']
|
7944
7956
|
@RemoveUserIds = params['RemoveUserIds']
|
7945
7957
|
@RemoveGroupIds = params['RemoveGroupIds']
|
7958
|
+
@ServiceExportTo = params['ServiceExportTo']
|
7946
7959
|
end
|
7947
7960
|
end
|
7948
7961
|
|
@@ -7960,16 +7973,22 @@ module TencentCloud
|
|
7960
7973
|
# @type RemoveUserIds: Array
|
7961
7974
|
# @param RemoveGroupIds: 移除可以操作此命名空间的用户组ID列表
|
7962
7975
|
# @type RemoveGroupIds: Array
|
7976
|
+
# @param ServiceExportTo: 该命名空间下的服务对哪些命名空间下可见,
|
7977
|
+
# 1、为空或者不填写,表示仅当前命名空间可见
|
7978
|
+
# 2、列表内容仅一个元素,且为字符 *,表示所有命名空间可见(包括新增)
|
7979
|
+
# 3、列表内容为部份命名空间名称,则只对这些命名空间下可见
|
7980
|
+
# @type ServiceExportTo: Array
|
7963
7981
|
|
7964
|
-
attr_accessor :Name, :Comment, :UserIds, :GroupIds, :RemoveUserIds, :RemoveGroupIds
|
7982
|
+
attr_accessor :Name, :Comment, :UserIds, :GroupIds, :RemoveUserIds, :RemoveGroupIds, :ServiceExportTo
|
7965
7983
|
|
7966
|
-
def initialize(name=nil, comment=nil, userids=nil, groupids=nil, removeuserids=nil, removegroupids=nil)
|
7984
|
+
def initialize(name=nil, comment=nil, userids=nil, groupids=nil, removeuserids=nil, removegroupids=nil, serviceexportto=nil)
|
7967
7985
|
@Name = name
|
7968
7986
|
@Comment = comment
|
7969
7987
|
@UserIds = userids
|
7970
7988
|
@GroupIds = groupids
|
7971
7989
|
@RemoveUserIds = removeuserids
|
7972
7990
|
@RemoveGroupIds = removegroupids
|
7991
|
+
@ServiceExportTo = serviceexportto
|
7973
7992
|
end
|
7974
7993
|
|
7975
7994
|
def deserialize(params)
|
@@ -7979,6 +7998,7 @@ module TencentCloud
|
|
7979
7998
|
@GroupIds = params['GroupIds']
|
7980
7999
|
@RemoveUserIds = params['RemoveUserIds']
|
7981
8000
|
@RemoveGroupIds = params['RemoveGroupIds']
|
8001
|
+
@ServiceExportTo = params['ServiceExportTo']
|
7982
8002
|
end
|
7983
8003
|
end
|
7984
8004
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-tse
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.971
|
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-12-
|
11
|
+
date: 2024-12-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|