72 lines
2.6 KiB
C#
72 lines
2.6 KiB
C#
|
|
/*
|
|||
|
|
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
|
|||
|
|
*
|
|||
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|||
|
|
* you may not use this file except in compliance with the License.
|
|||
|
|
* You may obtain a copy of the License at
|
|||
|
|
*
|
|||
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|||
|
|
*
|
|||
|
|
* Unless required by applicable law or agreed to in writing,
|
|||
|
|
* software distributed under the License is distributed on an
|
|||
|
|
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|||
|
|
* KIND, either express or implied. See the License for the
|
|||
|
|
* specific language governing permissions and limitations
|
|||
|
|
* under the License.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
namespace TencentCloud.Kms.V20190118.Models
|
|||
|
|
{
|
|||
|
|
using Newtonsoft.Json;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using TencentCloud.Common;
|
|||
|
|
|
|||
|
|
public class GetParametersForImportResponse : AbstractModel
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// CMK的唯一标识,用于指定目标导入密钥材料的CMK。
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("KeyId")]
|
|||
|
|
public string KeyId{ get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 导入密钥材料需要的token,用于作为 ImportKeyMaterial 的参数。
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("ImportToken")]
|
|||
|
|
public string ImportToken{ get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 用于加密密钥材料的RSA公钥,base64编码。使用PublicKey base64解码后的公钥将导入密钥进行加密后作为 ImportKeyMaterial 的参数。
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("PublicKey")]
|
|||
|
|
public string PublicKey{ get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 该导出token和公钥的有效期,超过该时间后无法导入,需要重新调用GetParametersForImport获取。
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("ParametersValidTo")]
|
|||
|
|
public ulong? ParametersValidTo{ get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("RequestId")]
|
|||
|
|
public string RequestId{ get; set; }
|
|||
|
|
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// For internal usage only. DO NOT USE IT.
|
|||
|
|
/// </summary>
|
|||
|
|
internal override void ToMap(Dictionary<string, string> map, string prefix)
|
|||
|
|
{
|
|||
|
|
this.SetParamSimple(map, prefix + "KeyId", this.KeyId);
|
|||
|
|
this.SetParamSimple(map, prefix + "ImportToken", this.ImportToken);
|
|||
|
|
this.SetParamSimple(map, prefix + "PublicKey", this.PublicKey);
|
|||
|
|
this.SetParamSimple(map, prefix + "ParametersValidTo", this.ParametersValidTo);
|
|||
|
|
this.SetParamSimple(map, prefix + "RequestId", this.RequestId);
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|