tencentcloud-sdk-bh 3.0.1208 → 3.0.1214
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/v20230418/models.rb +12 -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: 86cf17662527ebff45b4e1c952058d471d7501f7
|
|
4
|
+
data.tar.gz: 6dfd11570ee737f18276ce3d5da0a5c9f7531f23
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 840728c14784e33f3c055e456d9abc5e21ab7485e7298b7d7e14d82ee1783b2f843234820515121674b2a74c97ec9abc1c0b65053f9317b554b21625ebebe7d2
|
|
7
|
+
data.tar.gz: 4a4c662f4a428e16ef546e015cefbc6b25ae3647916e6be877af0192f4fe3653a111f530fec343d2c9ccafae730f8a65ad4ee6bfab3c6cc720ddf897f6c7f3bf
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.1214
|
data/lib/v20230418/models.rb
CHANGED
|
@@ -74,10 +74,10 @@ module TencentCloud
|
|
|
74
74
|
|
|
75
75
|
attr_accessor :Account, :LoginAccount, :LoginPassword, :DeviceId, :InstanceId, :Password, :PrivateKey, :PrivateKeyPassword, :Exe, :Drivers, :Width, :Height, :IntranetAccess, :AutoManageAccessCredential
|
|
76
76
|
extend Gem::Deprecate
|
|
77
|
-
deprecate :LoginAccount, :none, 2026,
|
|
78
|
-
deprecate :LoginAccount=, :none, 2026,
|
|
79
|
-
deprecate :LoginPassword, :none, 2026,
|
|
80
|
-
deprecate :LoginPassword=, :none, 2026,
|
|
77
|
+
deprecate :LoginAccount, :none, 2026, 2
|
|
78
|
+
deprecate :LoginAccount=, :none, 2026, 2
|
|
79
|
+
deprecate :LoginPassword, :none, 2026, 2
|
|
80
|
+
deprecate :LoginPassword=, :none, 2026, 2
|
|
81
81
|
|
|
82
82
|
def initialize(account=nil, loginaccount=nil, loginpassword=nil, deviceid=nil, instanceid=nil, password=nil, privatekey=nil, privatekeypassword=nil, exe=nil, drivers=nil, width=nil, height=nil, intranetaccess=nil, automanageaccesscredential=nil)
|
|
83
83
|
@Account = account
|
|
@@ -5968,8 +5968,8 @@ module TencentCloud
|
|
|
5968
5968
|
|
|
5969
5969
|
attr_accessor :ResourceId, :Status, :ResourceEdition, :ResourceNode, :AutoRenewFlag, :PackageBandwidth, :PackageNode, :LogDelivery
|
|
5970
5970
|
extend Gem::Deprecate
|
|
5971
|
-
deprecate :Status, :none, 2026,
|
|
5972
|
-
deprecate :Status=, :none, 2026,
|
|
5971
|
+
deprecate :Status, :none, 2026, 2
|
|
5972
|
+
deprecate :Status=, :none, 2026, 2
|
|
5973
5973
|
|
|
5974
5974
|
def initialize(resourceid=nil, status=nil, resourceedition=nil, resourcenode=nil, autorenewflag=nil, packagebandwidth=nil, packagenode=nil, logdelivery=nil)
|
|
5975
5975
|
@ResourceId = resourceid
|
|
@@ -6826,16 +6826,20 @@ module TencentCloud
|
|
|
6826
6826
|
|
|
6827
6827
|
# RunOperationTask返回参数结构体
|
|
6828
6828
|
class RunOperationTaskResponse < TencentCloud::Common::AbstractModel
|
|
6829
|
+
# @param SubTaskId: 子任务Id
|
|
6830
|
+
# @type SubTaskId: String
|
|
6829
6831
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
6830
6832
|
# @type RequestId: String
|
|
6831
6833
|
|
|
6832
|
-
attr_accessor :RequestId
|
|
6834
|
+
attr_accessor :SubTaskId, :RequestId
|
|
6833
6835
|
|
|
6834
|
-
def initialize(requestid=nil)
|
|
6836
|
+
def initialize(subtaskid=nil, requestid=nil)
|
|
6837
|
+
@SubTaskId = subtaskid
|
|
6835
6838
|
@RequestId = requestid
|
|
6836
6839
|
end
|
|
6837
6840
|
|
|
6838
6841
|
def deserialize(params)
|
|
6842
|
+
@SubTaskId = params['SubTaskId']
|
|
6839
6843
|
@RequestId = params['RequestId']
|
|
6840
6844
|
end
|
|
6841
6845
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tencentcloud-sdk-bh
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.1214
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tencent Cloud
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-
|
|
11
|
+
date: 2026-02-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|