tencentcloud-sdk-nodejs-cloudapp 4.1.159 → 4.1.172
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.
package/package.json
CHANGED
|
@@ -64,6 +64,19 @@ export interface DescribeLicenseResponse {
|
|
|
64
64
|
* VerifyLicense请求参数结构体
|
|
65
65
|
*/
|
|
66
66
|
export type VerifyLicenseRequest = null;
|
|
67
|
+
/**
|
|
68
|
+
* 元数据展示信息
|
|
69
|
+
*/
|
|
70
|
+
export interface DisplayMetadata {
|
|
71
|
+
/**
|
|
72
|
+
* <p>展示的名称</p>
|
|
73
|
+
*/
|
|
74
|
+
Name?: string;
|
|
75
|
+
/**
|
|
76
|
+
* <p>展示的值</p>
|
|
77
|
+
*/
|
|
78
|
+
Value?: string;
|
|
79
|
+
}
|
|
67
80
|
/**
|
|
68
81
|
* 表示应用实例的软件授权,包含颁发信息、激活信息等内容。
|
|
69
82
|
*/
|
|
@@ -142,6 +155,14 @@ export interface License {
|
|
|
142
155
|
* <p>授权的层级:Master 主授权;Child 子授权/增强型授权</p>
|
|
143
156
|
*/
|
|
144
157
|
LicenseLevel?: string;
|
|
158
|
+
/**
|
|
159
|
+
* <p>License 内容信息</p>
|
|
160
|
+
*/
|
|
161
|
+
LicenseData?: LicenseData;
|
|
162
|
+
/**
|
|
163
|
+
* <p>License 颁发地址</p>
|
|
164
|
+
*/
|
|
165
|
+
IssueURL?: string;
|
|
145
166
|
}
|
|
146
167
|
/**
|
|
147
168
|
* 描述键值对过滤器,用于条件过滤查询。例如过滤 ID、名称、状态等
|
|
@@ -159,6 +180,23 @@ export interface Filter {
|
|
|
159
180
|
*/
|
|
160
181
|
Values: Array<string>;
|
|
161
182
|
}
|
|
183
|
+
/**
|
|
184
|
+
* License 内容信息
|
|
185
|
+
*/
|
|
186
|
+
export interface LicenseData {
|
|
187
|
+
/**
|
|
188
|
+
* <p>License 文本内容。支持密钥、证书等文本形式,二进制的密钥需要伙伴进行 base64 转码</p>
|
|
189
|
+
*/
|
|
190
|
+
Text: string;
|
|
191
|
+
/**
|
|
192
|
+
* <p>部署服务输出信息,基于部署签发 License 时需要该参数。</p>
|
|
193
|
+
*/
|
|
194
|
+
DeploymentOutput?: string;
|
|
195
|
+
/**
|
|
196
|
+
* <p>License 前端展示信息。key、value 形式,比如可传入,颁发机构:XXXX 有限公司</p>
|
|
197
|
+
*/
|
|
198
|
+
Metadata?: Array<DisplayMetadata>;
|
|
199
|
+
}
|
|
162
200
|
/**
|
|
163
201
|
* VerifyLicense返回参数结构体
|
|
164
202
|
*/
|