tencentcloud-sdk-dc 3.0.982 → 3.0.984
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/v20180410/models.rb +12 -5
- 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: 83b65836eacc04c426a0affbc9a729830e6cc81a
|
4
|
+
data.tar.gz: 47bccc910a2723a99285c3d4c077161426c8eb5d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ac5f825a930e125e9aebe45daf7b3935cbfa9403981c1494f4fdbb75945661525655881a96262c0f444b0b9aa5e77854c00ae2f28a72a18e8cbfa4570aed1338
|
7
|
+
data.tar.gz: 43571e3ba7445113c2fe5c4da7af98ac7c5d5484a83a78b035f6d6be1f48c4027d48001207369174c3744f1be0dc02589f2dd170c2fc6e0733cc04c644a98aef
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.984
|
data/lib/v20180410/models.rb
CHANGED
@@ -259,7 +259,6 @@ module TencentCloud
|
|
259
259
|
# @param ApplyTime: 敏捷上云申请的时间
|
260
260
|
# @type ApplyTime: String
|
261
261
|
# @param ReadyTime: 敏捷上云建设完成的时间
|
262
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
263
262
|
# @type ReadyTime: String
|
264
263
|
# @param ExpireTime: 敏捷上云过期时间
|
265
264
|
# @type ExpireTime: String
|
@@ -281,10 +280,12 @@ module TencentCloud
|
|
281
280
|
# @type CloudAttachServiceGatewaysSupport: Boolean
|
282
281
|
# @param BUpdateBandwidth: 敏捷上云服务是否处于升降配中
|
283
282
|
# @type BUpdateBandwidth: Boolean
|
283
|
+
# @param ArRegion: 接入地域
|
284
|
+
# @type ArRegion: String
|
284
285
|
|
285
|
-
attr_accessor :InstanceId, :Name, :IapId, :IdcAddress, :IdcType, :Bandwidth, :Telephone, :Status, :ApplyTime, :ReadyTime, :ExpireTime, :Remarks, :RegionStatus, :AppId, :Uin, :CustomerAuthName, :DirectConnectId, :CloudAttachServiceGatewaysSupport, :BUpdateBandwidth
|
286
|
+
attr_accessor :InstanceId, :Name, :IapId, :IdcAddress, :IdcType, :Bandwidth, :Telephone, :Status, :ApplyTime, :ReadyTime, :ExpireTime, :Remarks, :RegionStatus, :AppId, :Uin, :CustomerAuthName, :DirectConnectId, :CloudAttachServiceGatewaysSupport, :BUpdateBandwidth, :ArRegion
|
286
287
|
|
287
|
-
def initialize(instanceid=nil, name=nil, iapid=nil, idcaddress=nil, idctype=nil, bandwidth=nil, telephone=nil, status=nil, applytime=nil, readytime=nil, expiretime=nil, remarks=nil, regionstatus=nil, appid=nil, uin=nil, customerauthname=nil, directconnectid=nil, cloudattachservicegatewayssupport=nil, bupdatebandwidth=nil)
|
288
|
+
def initialize(instanceid=nil, name=nil, iapid=nil, idcaddress=nil, idctype=nil, bandwidth=nil, telephone=nil, status=nil, applytime=nil, readytime=nil, expiretime=nil, remarks=nil, regionstatus=nil, appid=nil, uin=nil, customerauthname=nil, directconnectid=nil, cloudattachservicegatewayssupport=nil, bupdatebandwidth=nil, arregion=nil)
|
288
289
|
@InstanceId = instanceid
|
289
290
|
@Name = name
|
290
291
|
@IapId = iapid
|
@@ -304,6 +305,7 @@ module TencentCloud
|
|
304
305
|
@DirectConnectId = directconnectid
|
305
306
|
@CloudAttachServiceGatewaysSupport = cloudattachservicegatewayssupport
|
306
307
|
@BUpdateBandwidth = bupdatebandwidth
|
308
|
+
@ArRegion = arregion
|
307
309
|
end
|
308
310
|
|
309
311
|
def deserialize(params)
|
@@ -326,6 +328,7 @@ module TencentCloud
|
|
326
328
|
@DirectConnectId = params['DirectConnectId']
|
327
329
|
@CloudAttachServiceGatewaysSupport = params['CloudAttachServiceGatewaysSupport']
|
328
330
|
@BUpdateBandwidth = params['BUpdateBandwidth']
|
331
|
+
@ArRegion = params['ArRegion']
|
329
332
|
end
|
330
333
|
end
|
331
334
|
|
@@ -363,16 +366,19 @@ module TencentCloud
|
|
363
366
|
# @type Telephone: String
|
364
367
|
# @param Remarks: 备注信息
|
365
368
|
# @type Remarks: String
|
369
|
+
# @param ArRegion: 接入地域
|
370
|
+
# @type ArRegion: String
|
366
371
|
|
367
|
-
attr_accessor :Name, :IdcAddress, :IdcType, :Bandwidth, :Telephone, :Remarks
|
372
|
+
attr_accessor :Name, :IdcAddress, :IdcType, :Bandwidth, :Telephone, :Remarks, :ArRegion
|
368
373
|
|
369
|
-
def initialize(name=nil, idcaddress=nil, idctype=nil, bandwidth=nil, telephone=nil, remarks=nil)
|
374
|
+
def initialize(name=nil, idcaddress=nil, idctype=nil, bandwidth=nil, telephone=nil, remarks=nil, arregion=nil)
|
370
375
|
@Name = name
|
371
376
|
@IdcAddress = idcaddress
|
372
377
|
@IdcType = idctype
|
373
378
|
@Bandwidth = bandwidth
|
374
379
|
@Telephone = telephone
|
375
380
|
@Remarks = remarks
|
381
|
+
@ArRegion = arregion
|
376
382
|
end
|
377
383
|
|
378
384
|
def deserialize(params)
|
@@ -382,6 +388,7 @@ module TencentCloud
|
|
382
388
|
@Bandwidth = params['Bandwidth']
|
383
389
|
@Telephone = params['Telephone']
|
384
390
|
@Remarks = params['Remarks']
|
391
|
+
@ArRegion = params['ArRegion']
|
385
392
|
end
|
386
393
|
end
|
387
394
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-dc
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.984
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-01-
|
11
|
+
date: 2025-01-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|