tencentcloud-sdk-tse 3.0.970 → 3.0.972
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 +39 -10
- 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: 9b9c28271072376477f7b75681a461754144799b
|
4
|
+
data.tar.gz: 8d8d5dd2475f17d297897cb58b8aa1c7bb494432
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6097f3b033eea4efdbda763aecb7224e08fef3395bba6026641417e0560eb51d96a0504b1eb0418a6197b49054be2dd47ce7022d263efd7192cb8e7597b0e534
|
7
|
+
data.tar.gz: cb59c76aaf8c5f4c95bcf271aeebdbc5d780c81c22e0c6046d88259d8950589583eccaf1f602dd9aa32d4caf8bb43fa9485280f40a520770cf0b8aa0c01e76db
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.972
|
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,16 @@ module TencentCloud
|
|
7910
7918
|
# @param RemoveGroupIds: 移除可以操作此命名空间的用户组ID列表
|
7911
7919
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
7912
7920
|
# @type RemoveGroupIds: Array
|
7921
|
+
# @param ServiceExportTo: 该命名空间下的服务对哪些命名空间可见
|
7922
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
7923
|
+
# @type ServiceExportTo: Array
|
7924
|
+
# @param SyncToGlobalRegistry: 是否开启同步到全局注册中心
|
7925
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
7926
|
+
# @type SyncToGlobalRegistry: Boolean
|
7913
7927
|
|
7914
|
-
attr_accessor :Name, :Comment, :CreateTime, :ModifyTime, :TotalServiceCount, :TotalHealthInstanceCount, :TotalInstanceCount, :Id, :Editable, :UserIds, :GroupIds, :RemoveUserIds, :RemoveGroupIds
|
7928
|
+
attr_accessor :Name, :Comment, :CreateTime, :ModifyTime, :TotalServiceCount, :TotalHealthInstanceCount, :TotalInstanceCount, :Id, :Editable, :UserIds, :GroupIds, :RemoveUserIds, :RemoveGroupIds, :ServiceExportTo, :SyncToGlobalRegistry
|
7915
7929
|
|
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)
|
7930
|
+
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, synctoglobalregistry=nil)
|
7917
7931
|
@Name = name
|
7918
7932
|
@Comment = comment
|
7919
7933
|
@CreateTime = createtime
|
@@ -7927,6 +7941,8 @@ module TencentCloud
|
|
7927
7941
|
@GroupIds = groupids
|
7928
7942
|
@RemoveUserIds = removeuserids
|
7929
7943
|
@RemoveGroupIds = removegroupids
|
7944
|
+
@ServiceExportTo = serviceexportto
|
7945
|
+
@SyncToGlobalRegistry = synctoglobalregistry
|
7930
7946
|
end
|
7931
7947
|
|
7932
7948
|
def deserialize(params)
|
@@ -7943,6 +7959,8 @@ module TencentCloud
|
|
7943
7959
|
@GroupIds = params['GroupIds']
|
7944
7960
|
@RemoveUserIds = params['RemoveUserIds']
|
7945
7961
|
@RemoveGroupIds = params['RemoveGroupIds']
|
7962
|
+
@ServiceExportTo = params['ServiceExportTo']
|
7963
|
+
@SyncToGlobalRegistry = params['SyncToGlobalRegistry']
|
7946
7964
|
end
|
7947
7965
|
end
|
7948
7966
|
|
@@ -7960,16 +7978,22 @@ module TencentCloud
|
|
7960
7978
|
# @type RemoveUserIds: Array
|
7961
7979
|
# @param RemoveGroupIds: 移除可以操作此命名空间的用户组ID列表
|
7962
7980
|
# @type RemoveGroupIds: Array
|
7981
|
+
# @param ServiceExportTo: 该命名空间下的服务对哪些命名空间下可见,
|
7982
|
+
# 1、为空或者不填写,表示仅当前命名空间可见
|
7983
|
+
# 2、列表内容仅一个元素,且为字符 *,表示所有命名空间可见(包括新增)
|
7984
|
+
# 3、列表内容为部份命名空间名称,则只对这些命名空间下可见
|
7985
|
+
# @type ServiceExportTo: Array
|
7963
7986
|
|
7964
|
-
attr_accessor :Name, :Comment, :UserIds, :GroupIds, :RemoveUserIds, :RemoveGroupIds
|
7987
|
+
attr_accessor :Name, :Comment, :UserIds, :GroupIds, :RemoveUserIds, :RemoveGroupIds, :ServiceExportTo
|
7965
7988
|
|
7966
|
-
def initialize(name=nil, comment=nil, userids=nil, groupids=nil, removeuserids=nil, removegroupids=nil)
|
7989
|
+
def initialize(name=nil, comment=nil, userids=nil, groupids=nil, removeuserids=nil, removegroupids=nil, serviceexportto=nil)
|
7967
7990
|
@Name = name
|
7968
7991
|
@Comment = comment
|
7969
7992
|
@UserIds = userids
|
7970
7993
|
@GroupIds = groupids
|
7971
7994
|
@RemoveUserIds = removeuserids
|
7972
7995
|
@RemoveGroupIds = removegroupids
|
7996
|
+
@ServiceExportTo = serviceexportto
|
7973
7997
|
end
|
7974
7998
|
|
7975
7999
|
def deserialize(params)
|
@@ -7979,6 +8003,7 @@ module TencentCloud
|
|
7979
8003
|
@GroupIds = params['GroupIds']
|
7980
8004
|
@RemoveUserIds = params['RemoveUserIds']
|
7981
8005
|
@RemoveGroupIds = params['RemoveGroupIds']
|
8006
|
+
@ServiceExportTo = params['ServiceExportTo']
|
7982
8007
|
end
|
7983
8008
|
end
|
7984
8009
|
|
@@ -8036,10 +8061,12 @@ module TencentCloud
|
|
8036
8061
|
# @param Revision: 该服务信息摘要签名
|
8037
8062
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
8038
8063
|
# @type Revision: String
|
8064
|
+
# @param SyncToGlobalRegistry: 是否开启同步到全局注册中心
|
8065
|
+
# @type SyncToGlobalRegistry: Boolean
|
8039
8066
|
|
8040
|
-
attr_accessor :Name, :Namespace, :Metadatas, :Comment, :CreateTime, :ModifyTime, :Department, :Business, :HealthyInstanceCount, :TotalInstanceCount, :Id, :Editable, :UserIds, :GroupIds, :RemoveUserIds, :RemoveGroupIds, :ExportTo, :Revision
|
8067
|
+
attr_accessor :Name, :Namespace, :Metadatas, :Comment, :CreateTime, :ModifyTime, :Department, :Business, :HealthyInstanceCount, :TotalInstanceCount, :Id, :Editable, :UserIds, :GroupIds, :RemoveUserIds, :RemoveGroupIds, :ExportTo, :Revision, :SyncToGlobalRegistry
|
8041
8068
|
|
8042
|
-
def initialize(name=nil, namespace=nil, metadatas=nil, comment=nil, createtime=nil, modifytime=nil, department=nil, business=nil, healthyinstancecount=nil, totalinstancecount=nil, id=nil, editable=nil, userids=nil, groupids=nil, removeuserids=nil, removegroupids=nil, exportto=nil, revision=nil)
|
8069
|
+
def initialize(name=nil, namespace=nil, metadatas=nil, comment=nil, createtime=nil, modifytime=nil, department=nil, business=nil, healthyinstancecount=nil, totalinstancecount=nil, id=nil, editable=nil, userids=nil, groupids=nil, removeuserids=nil, removegroupids=nil, exportto=nil, revision=nil, synctoglobalregistry=nil)
|
8043
8070
|
@Name = name
|
8044
8071
|
@Namespace = namespace
|
8045
8072
|
@Metadatas = metadatas
|
@@ -8058,6 +8085,7 @@ module TencentCloud
|
|
8058
8085
|
@RemoveGroupIds = removegroupids
|
8059
8086
|
@ExportTo = exportto
|
8060
8087
|
@Revision = revision
|
8088
|
+
@SyncToGlobalRegistry = synctoglobalregistry
|
8061
8089
|
end
|
8062
8090
|
|
8063
8091
|
def deserialize(params)
|
@@ -8086,6 +8114,7 @@ module TencentCloud
|
|
8086
8114
|
@RemoveGroupIds = params['RemoveGroupIds']
|
8087
8115
|
@ExportTo = params['ExportTo']
|
8088
8116
|
@Revision = params['Revision']
|
8117
|
+
@SyncToGlobalRegistry = params['SyncToGlobalRegistry']
|
8089
8118
|
end
|
8090
8119
|
end
|
8091
8120
|
|
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.972
|
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-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|