tencentcloud-sdk-cloudapp 3.0.1190 → 3.0.1203
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/v20220530/models.rb +64 -2
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 07b6495622cdcc2e1df067b15c345cc06c2c297d
|
|
4
|
+
data.tar.gz: fb627295c9d51422c7fb777d0788223b7953c34d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 84bf2574f06d9ad7741ffef2d031f4121db69736d7859a41203bb867075074488cfcb34d32d13867e5582e160ba4d5b73a994bb50dad9f5e2bc18de31a31177d
|
|
7
|
+
data.tar.gz: 399d88d00263c9f4c376d5ebc9fdaf743f5296d5dd650aa128f07e739e9ea45ea0b02c3cb4e890595b09003205f5a73ff1bb3f9c819b877a4b29661d2362ad0f
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.1203
|
data/lib/v20220530/models.rb
CHANGED
|
@@ -60,6 +60,26 @@ module TencentCloud
|
|
|
60
60
|
end
|
|
61
61
|
end
|
|
62
62
|
|
|
63
|
+
# 元数据展示信息
|
|
64
|
+
class DisplayMetadata < TencentCloud::Common::AbstractModel
|
|
65
|
+
# @param Name: <p>展示的名称</p>
|
|
66
|
+
# @type Name: String
|
|
67
|
+
# @param Value: <p>展示的值</p>
|
|
68
|
+
# @type Value: String
|
|
69
|
+
|
|
70
|
+
attr_accessor :Name, :Value
|
|
71
|
+
|
|
72
|
+
def initialize(name=nil, value=nil)
|
|
73
|
+
@Name = name
|
|
74
|
+
@Value = value
|
|
75
|
+
end
|
|
76
|
+
|
|
77
|
+
def deserialize(params)
|
|
78
|
+
@Name = params['Name']
|
|
79
|
+
@Value = params['Value']
|
|
80
|
+
end
|
|
81
|
+
end
|
|
82
|
+
|
|
63
83
|
# 描述键值对过滤器,用于条件过滤查询。例如过滤 ID、名称、状态等
|
|
64
84
|
|
|
65
85
|
# - 若存在多个 Filter 时,Filter间的关系为逻辑与(AND)关系。
|
|
@@ -123,10 +143,14 @@ module TencentCloud
|
|
|
123
143
|
# @type LicenseType: String
|
|
124
144
|
# @param LicenseLevel: <p>授权的层级:Master 主授权;Child 子授权/增强型授权</p>
|
|
125
145
|
# @type LicenseLevel: String
|
|
146
|
+
# @param LicenseData: <p>License 内容信息</p>
|
|
147
|
+
# @type LicenseData: :class:`Tencentcloud::Cloudapp.v20220530.models.LicenseData`
|
|
148
|
+
# @param IssueURL: <p>License 颁发地址</p>
|
|
149
|
+
# @type IssueURL: String
|
|
126
150
|
|
|
127
|
-
attr_accessor :LicenseId, :LicenseMode, :LicenseStatus, :ProviderId, :SoftwarePackageId, :SoftwarePackageVersion, :AuthorizedUserUin, :AuthorizedCloudappId, :AuthorizedCloudappRoleId, :AuthorizedSpecification, :BillingMode, :LifeSpan, :IssueDate, :ActivationDate, :ExpirationDate, :LifeSpanUnit, :LicenseType, :LicenseLevel
|
|
151
|
+
attr_accessor :LicenseId, :LicenseMode, :LicenseStatus, :ProviderId, :SoftwarePackageId, :SoftwarePackageVersion, :AuthorizedUserUin, :AuthorizedCloudappId, :AuthorizedCloudappRoleId, :AuthorizedSpecification, :BillingMode, :LifeSpan, :IssueDate, :ActivationDate, :ExpirationDate, :LifeSpanUnit, :LicenseType, :LicenseLevel, :LicenseData, :IssueURL
|
|
128
152
|
|
|
129
|
-
def initialize(licenseid=nil, licensemode=nil, licensestatus=nil, providerid=nil, softwarepackageid=nil, softwarepackageversion=nil, authorizeduseruin=nil, authorizedcloudappid=nil, authorizedcloudapproleid=nil, authorizedspecification=nil, billingmode=nil, lifespan=nil, issuedate=nil, activationdate=nil, expirationdate=nil, lifespanunit=nil, licensetype=nil, licenselevel=nil)
|
|
153
|
+
def initialize(licenseid=nil, licensemode=nil, licensestatus=nil, providerid=nil, softwarepackageid=nil, softwarepackageversion=nil, authorizeduseruin=nil, authorizedcloudappid=nil, authorizedcloudapproleid=nil, authorizedspecification=nil, billingmode=nil, lifespan=nil, issuedate=nil, activationdate=nil, expirationdate=nil, lifespanunit=nil, licensetype=nil, licenselevel=nil, licensedata=nil, issueurl=nil)
|
|
130
154
|
@LicenseId = licenseid
|
|
131
155
|
@LicenseMode = licensemode
|
|
132
156
|
@LicenseStatus = licensestatus
|
|
@@ -145,6 +169,8 @@ module TencentCloud
|
|
|
145
169
|
@LifeSpanUnit = lifespanunit
|
|
146
170
|
@LicenseType = licensetype
|
|
147
171
|
@LicenseLevel = licenselevel
|
|
172
|
+
@LicenseData = licensedata
|
|
173
|
+
@IssueURL = issueurl
|
|
148
174
|
end
|
|
149
175
|
|
|
150
176
|
def deserialize(params)
|
|
@@ -173,6 +199,42 @@ module TencentCloud
|
|
|
173
199
|
@LifeSpanUnit = params['LifeSpanUnit']
|
|
174
200
|
@LicenseType = params['LicenseType']
|
|
175
201
|
@LicenseLevel = params['LicenseLevel']
|
|
202
|
+
unless params['LicenseData'].nil?
|
|
203
|
+
@LicenseData = LicenseData.new
|
|
204
|
+
@LicenseData.deserialize(params['LicenseData'])
|
|
205
|
+
end
|
|
206
|
+
@IssueURL = params['IssueURL']
|
|
207
|
+
end
|
|
208
|
+
end
|
|
209
|
+
|
|
210
|
+
# License 内容信息
|
|
211
|
+
class LicenseData < TencentCloud::Common::AbstractModel
|
|
212
|
+
# @param Text: <p>License 文本内容。支持密钥、证书等文本形式,二进制的密钥需要伙伴进行 base64 转码</p>
|
|
213
|
+
# @type Text: String
|
|
214
|
+
# @param DeploymentOutput: <p>部署服务输出信息,基于部署签发 License 时需要该参数。</p>
|
|
215
|
+
# @type DeploymentOutput: String
|
|
216
|
+
# @param Metadata: <p>License 前端展示信息。key、value 形式,比如可传入,颁发机构:XXXX 有限公司</p>
|
|
217
|
+
# @type Metadata: Array
|
|
218
|
+
|
|
219
|
+
attr_accessor :Text, :DeploymentOutput, :Metadata
|
|
220
|
+
|
|
221
|
+
def initialize(text=nil, deploymentoutput=nil, metadata=nil)
|
|
222
|
+
@Text = text
|
|
223
|
+
@DeploymentOutput = deploymentoutput
|
|
224
|
+
@Metadata = metadata
|
|
225
|
+
end
|
|
226
|
+
|
|
227
|
+
def deserialize(params)
|
|
228
|
+
@Text = params['Text']
|
|
229
|
+
@DeploymentOutput = params['DeploymentOutput']
|
|
230
|
+
unless params['Metadata'].nil?
|
|
231
|
+
@Metadata = []
|
|
232
|
+
params['Metadata'].each do |i|
|
|
233
|
+
displaymetadata_tmp = DisplayMetadata.new
|
|
234
|
+
displaymetadata_tmp.deserialize(i)
|
|
235
|
+
@Metadata << displaymetadata_tmp
|
|
236
|
+
end
|
|
237
|
+
end
|
|
176
238
|
end
|
|
177
239
|
end
|
|
178
240
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tencentcloud-sdk-cloudapp
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.1203
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tencent Cloud
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2026-01-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|
|
@@ -33,9 +33,9 @@ executables: []
|
|
|
33
33
|
extensions: []
|
|
34
34
|
extra_rdoc_files: []
|
|
35
35
|
files:
|
|
36
|
+
- lib/tencentcloud-sdk-cloudapp.rb
|
|
36
37
|
- lib/v20220530/client.rb
|
|
37
38
|
- lib/v20220530/models.rb
|
|
38
|
-
- lib/tencentcloud-sdk-cloudapp.rb
|
|
39
39
|
- lib/VERSION
|
|
40
40
|
homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
|
|
41
41
|
licenses:
|