tencentcloud-sdk-trro 3.0.760 → 3.0.761
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/v20220325/models.rb +19 -6
- 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: 412f4f211e81298e8461e5a5b8544262a84c5162
|
4
|
+
data.tar.gz: 286c4edf5e4dc72705336d539d20740f6e89b8c2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5d144956841d45b0e254b6807b751cb3ba09d949b1322c4a6a562b0d3773adf27f2b2e7304d59b62233d2cca4086f261e843950f17629f116407c4f48b587103
|
7
|
+
data.tar.gz: 1bcde1c5c858621ddd9dc07e580277239dd0b464b8910b3f67075948639208f9e862da274aa9b5691d2aa7ea796a1f973fad514e9452b957e123bb1a952b40e2
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.761
|
data/lib/v20220325/models.rb
CHANGED
@@ -902,10 +902,13 @@ module TencentCloud
|
|
902
902
|
# @param LicenseIds: 已经绑定licenseId列表
|
903
903
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
904
904
|
# @type LicenseIds: Array
|
905
|
+
# @param MonthlyRemainTime: 每月license的限定时长
|
906
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
907
|
+
# @type MonthlyRemainTime: Integer
|
905
908
|
|
906
|
-
attr_accessor :DeviceId, :DeviceName, :LicenseCount, :RemainDay, :ExpireTime, :Duration, :LicenseIds
|
909
|
+
attr_accessor :DeviceId, :DeviceName, :LicenseCount, :RemainDay, :ExpireTime, :Duration, :LicenseIds, :MonthlyRemainTime
|
907
910
|
|
908
|
-
def initialize(deviceid=nil, devicename=nil, licensecount=nil, remainday=nil, expiretime=nil, duration=nil, licenseids=nil)
|
911
|
+
def initialize(deviceid=nil, devicename=nil, licensecount=nil, remainday=nil, expiretime=nil, duration=nil, licenseids=nil, monthlyremaintime=nil)
|
909
912
|
@DeviceId = deviceid
|
910
913
|
@DeviceName = devicename
|
911
914
|
@LicenseCount = licensecount
|
@@ -913,6 +916,7 @@ module TencentCloud
|
|
913
916
|
@ExpireTime = expiretime
|
914
917
|
@Duration = duration
|
915
918
|
@LicenseIds = licenseids
|
919
|
+
@MonthlyRemainTime = monthlyremaintime
|
916
920
|
end
|
917
921
|
|
918
922
|
def deserialize(params)
|
@@ -923,6 +927,7 @@ module TencentCloud
|
|
923
927
|
@ExpireTime = params['ExpireTime']
|
924
928
|
@Duration = params['Duration']
|
925
929
|
@LicenseIds = params['LicenseIds']
|
930
|
+
@MonthlyRemainTime = params['MonthlyRemainTime']
|
926
931
|
end
|
927
932
|
end
|
928
933
|
|
@@ -1086,16 +1091,19 @@ module TencentCloud
|
|
1086
1091
|
# @type UnBound: Integer
|
1087
1092
|
# @param Expire: 过期授权
|
1088
1093
|
# @type Expire: Integer
|
1094
|
+
# @param MonthlyExpire: 当月用量超时授权个数
|
1095
|
+
# @type MonthlyExpire: Integer
|
1089
1096
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
1090
1097
|
# @type RequestId: String
|
1091
1098
|
|
1092
|
-
attr_accessor :Valid, :Bound, :UnBound, :Expire, :RequestId
|
1099
|
+
attr_accessor :Valid, :Bound, :UnBound, :Expire, :MonthlyExpire, :RequestId
|
1093
1100
|
|
1094
|
-
def initialize(valid=nil, bound=nil, unbound=nil, expire=nil, requestid=nil)
|
1101
|
+
def initialize(valid=nil, bound=nil, unbound=nil, expire=nil, monthlyexpire=nil, requestid=nil)
|
1095
1102
|
@Valid = valid
|
1096
1103
|
@Bound = bound
|
1097
1104
|
@UnBound = unbound
|
1098
1105
|
@Expire = expire
|
1106
|
+
@MonthlyExpire = monthlyexpire
|
1099
1107
|
@RequestId = requestid
|
1100
1108
|
end
|
1101
1109
|
|
@@ -1104,6 +1112,7 @@ module TencentCloud
|
|
1104
1112
|
@Bound = params['Bound']
|
1105
1113
|
@UnBound = params['UnBound']
|
1106
1114
|
@Expire = params['Expire']
|
1115
|
+
@MonthlyExpire = params['MonthlyExpire']
|
1107
1116
|
@RequestId = params['RequestId']
|
1108
1117
|
end
|
1109
1118
|
end
|
@@ -1118,14 +1127,17 @@ module TencentCloud
|
|
1118
1127
|
# @type ProjectId: String
|
1119
1128
|
# @param DeviceId: DeviceId
|
1120
1129
|
# @type DeviceId: String
|
1130
|
+
# @param Status: license状态:0:未绑定;1:已绑定;2:已停服;3:已退费
|
1131
|
+
# @type Status: Integer
|
1121
1132
|
|
1122
|
-
attr_accessor :PageNum, :PageSize, :ProjectId, :DeviceId
|
1133
|
+
attr_accessor :PageNum, :PageSize, :ProjectId, :DeviceId, :Status
|
1123
1134
|
|
1124
|
-
def initialize(pagenum=nil, pagesize=nil, projectid=nil, deviceid=nil)
|
1135
|
+
def initialize(pagenum=nil, pagesize=nil, projectid=nil, deviceid=nil, status=nil)
|
1125
1136
|
@PageNum = pagenum
|
1126
1137
|
@PageSize = pagesize
|
1127
1138
|
@ProjectId = projectid
|
1128
1139
|
@DeviceId = deviceid
|
1140
|
+
@Status = status
|
1129
1141
|
end
|
1130
1142
|
|
1131
1143
|
def deserialize(params)
|
@@ -1133,6 +1145,7 @@ module TencentCloud
|
|
1133
1145
|
@PageSize = params['PageSize']
|
1134
1146
|
@ProjectId = params['ProjectId']
|
1135
1147
|
@DeviceId = params['DeviceId']
|
1148
|
+
@Status = params['Status']
|
1136
1149
|
end
|
1137
1150
|
end
|
1138
1151
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-trro
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.761
|
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-01-
|
11
|
+
date: 2024-01-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|