code
stringlengths 15
9.96M
| docstring
stringlengths 1
10.1k
| func_name
stringlengths 1
124
| language
stringclasses 1
value | repo
stringlengths 7
63
| path
stringlengths 6
186
| url
stringlengths 50
236
| license
stringclasses 4
values |
---|---|---|---|---|---|---|---|
function __construct()
{
} | @param string $RequestId 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。 | __construct | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/ArchiveKeyResponse.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/ArchiveKeyResponse.php | Apache-2.0 |
public function deserialize($param)
{
if ($param === null) {
return;
}
if (array_key_exists("RequestId",$param) and $param["RequestId"] !== null) {
$this->RequestId = $param["RequestId"];
}
} | For internal only. DO NOT USE IT. | deserialize | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/ArchiveKeyResponse.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/ArchiveKeyResponse.php | Apache-2.0 |
function __construct()
{
} | @param boolean $ServiceEnabled KMS服务是否开通, true 表示已开通
@param integer $InvalidType 服务不可用类型: 0-未购买,1-正常, 2-欠费停服, 3-资源释放
@param integer $UserLevel 0-普通版,1-旗舰版
@param integer $ProExpireTime 旗舰版到期时间(Epoch Unix Timestamp)。
@param integer $ProRenewFlag 旗舰版是否自动续费:0-不自动续费,1-自动续费
@param string $ProResourceId 旗舰版购买记录的唯一性标识。如果为开通旗舰版,则返回值为空
@param boolean $ExclusiveVSMEnabled 是否开通 KMS 托管版
@param boolean $ExclusiveHSMEnabled 是否开通 KMS 独享版
@param string $SubscriptionInfo KMS 订阅信息。
@param integer $CmkUserCount 返回KMS用户密钥使用数量
@param integer $CmkLimit 返回KMS用户密钥规格数量
@param array $ExclusiveHSMList 返回独享集群组
@param string $RequestId 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。 | __construct | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/GetServiceStatusResponse.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/GetServiceStatusResponse.php | Apache-2.0 |
function __construct()
{
} | @param array $KeyIds 白盒密钥的全局唯一标识符列表。注意:要确保所有提供的KeyId是格式有效的,没有重复,个数不超过50个,并且都是有效存在的。 | __construct | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/DisableWhiteBoxKeysRequest.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/DisableWhiteBoxKeysRequest.php | Apache-2.0 |
public function deserialize($param)
{
if ($param === null) {
return;
}
if (array_key_exists("KeyIds",$param) and $param["KeyIds"] !== null) {
$this->KeyIds = $param["KeyIds"];
}
} | For internal only. DO NOT USE IT. | deserialize | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/DisableWhiteBoxKeysRequest.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/DisableWhiteBoxKeysRequest.php | Apache-2.0 |
function __construct()
{
} | @param string $Alias 作为密钥更容易辨识,更容易被人看懂的别名, 不可为空,1-60个字母数字 - _ 的组合,首字符必须为字母或者数字。以 kms- 作为前缀的用于云产品使用,Alias 不可重复。
@param string $Description CMK 的描述,最大1024字节
@param string $KeyUsage 指定key的用途,默认为 "ENCRYPT_DECRYPT" 表示创建对称加解密密钥,其它支持用途 “ASYMMETRIC_DECRYPT_RSA_2048” 表示创建用于加解密的RSA2048非对称密钥,“ASYMMETRIC_DECRYPT_SM2” 表示创建用于加解密的SM2非对称密钥,“ASYMMETRIC_SIGN_VERIFY_SM2” 表示创建用于签名验签的SM2非对称密钥,“ASYMMETRIC_SIGN_VERIFY_ECC” 表示创建用于签名验签的ECC非对称密钥,“ASYMMETRIC_SIGN_VERIFY_RSA_2048” 表示创建用于签名验签的RSA_2048非对称密钥,“ASYMMETRIC_SIGN_VERIFY_ECDSA384”表示创建用于签名验签的 ECDSA384 非对称秘钥。完整的秘钥用途与算法支持列表可通过 ListAlgorithms 接口获取。
@param integer $Type 指定key类型,默认为1,1表示默认类型,由KMS创建CMK密钥,2 表示EXTERNAL 类型,该类型需要用户导入密钥材料,参考 GetParametersForImport 和 ImportKeyMaterial 接口
@param array $Tags 标签列表
@param string $HsmClusterId KMS 高级版对应的 HSM 集群 ID(仅对 KMS 独占版/托管版服务实例有效)。 | __construct | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/CreateKeyRequest.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/CreateKeyRequest.php | Apache-2.0 |
function __construct()
{
} | @param array $KeyIds 查询CMK的ID列表,批量查询一次最多支持100个KeyId | __construct | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/DescribeKeysRequest.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/DescribeKeysRequest.php | Apache-2.0 |
public function deserialize($param)
{
if ($param === null) {
return;
}
if (array_key_exists("KeyIds",$param) and $param["KeyIds"] !== null) {
$this->KeyIds = $param["KeyIds"];
}
} | For internal only. DO NOT USE IT. | deserialize | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/DescribeKeysRequest.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/DescribeKeysRequest.php | Apache-2.0 |
function __construct()
{
} | @param string $KeyId CMK全局唯一标识符
@param string $KeySpec 指定生成Datakey的加密算法以及Datakey大小,AES_128或者AES_256。KeySpec 和 NumberOfBytes 必须指定一个
@param integer $NumberOfBytes 生成的DataKey的长度,同时指定NumberOfBytes和KeySpec时,以NumberOfBytes为准。最小值为1, 最大值为1024。KeySpec 和 NumberOfBytes 必须指定一个
@param string $EncryptionContext key/value对的json字符串,如果使用该字段,则返回的DataKey在解密时需要填入相同的字符串
@param string $EncryptionPublicKey PEM 格式公钥字符串,支持 RSA2048 和 SM2 公钥,用于对返回数据中的 Plaintext 值进行加密。若为空,则不对 Plaintext 值加密。
@param string $EncryptionAlgorithm 非对称加密算法,配合 EncryptionPublicKey 对返回数据进行加密。目前支持:SM2(以 C1C3C2 格式返回密文),SM2_C1C3C2_ASN1 (以 C1C3C2 ASN1 格式返回密文),RSAES_PKCS1_V1_5,RSAES_OAEP_SHA_1,RSAES_OAEP_SHA_256。若为空,则默认为 SM2。 | __construct | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/GenerateDataKeyRequest.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/GenerateDataKeyRequest.php | Apache-2.0 |
public function deserialize($param)
{
if ($param === null) {
return;
}
if (array_key_exists("KeyId",$param) and $param["KeyId"] !== null) {
$this->KeyId = $param["KeyId"];
}
if (array_key_exists("KeySpec",$param) and $param["KeySpec"] !== null) {
$this->KeySpec = $param["KeySpec"];
}
if (array_key_exists("NumberOfBytes",$param) and $param["NumberOfBytes"] !== null) {
$this->NumberOfBytes = $param["NumberOfBytes"];
}
if (array_key_exists("EncryptionContext",$param) and $param["EncryptionContext"] !== null) {
$this->EncryptionContext = $param["EncryptionContext"];
}
if (array_key_exists("EncryptionPublicKey",$param) and $param["EncryptionPublicKey"] !== null) {
$this->EncryptionPublicKey = $param["EncryptionPublicKey"];
}
if (array_key_exists("EncryptionAlgorithm",$param) and $param["EncryptionAlgorithm"] !== null) {
$this->EncryptionAlgorithm = $param["EncryptionAlgorithm"];
}
} | For internal only. DO NOT USE IT. | deserialize | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/GenerateDataKeyRequest.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/GenerateDataKeyRequest.php | Apache-2.0 |
function __construct()
{
} | @param string $KeyId CMK唯一标识符
@param integer $RotateDays 密钥轮转周期,单位天,允许范围 7 ~ 365,默认值 365。 | __construct | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/EnableKeyRotationRequest.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/EnableKeyRotationRequest.php | Apache-2.0 |
public function deserialize($param)
{
if ($param === null) {
return;
}
if (array_key_exists("KeyId",$param) and $param["KeyId"] !== null) {
$this->KeyId = $param["KeyId"];
}
if (array_key_exists("RotateDays",$param) and $param["RotateDays"] !== null) {
$this->RotateDays = $param["RotateDays"];
}
} | For internal only. DO NOT USE IT. | deserialize | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/EnableKeyRotationRequest.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/EnableKeyRotationRequest.php | Apache-2.0 |
function __construct()
{
} | @param string $RequestId 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。 | __construct | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/EnableKeysResponse.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/EnableKeysResponse.php | Apache-2.0 |
public function deserialize($param)
{
if ($param === null) {
return;
}
if (array_key_exists("RequestId",$param) and $param["RequestId"] !== null) {
$this->RequestId = $param["RequestId"];
}
} | For internal only. DO NOT USE IT. | deserialize | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/EnableKeysResponse.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/EnableKeysResponse.php | Apache-2.0 |
function __construct()
{
} | @param string $CiphertextBlob 加密后的密文,base64编码。注意:本字段中打包了密文和密钥的相关信息,不是对明文的直接加密结果,只有将该字段作为PostQuantumCryptoDecrypt接口的输入参数,才可以解密出原文。
@param string $KeyId 加密使用的CMK的全局唯一标识
@param string $RequestId 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。 | __construct | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/PostQuantumCryptoEncryptResponse.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/PostQuantumCryptoEncryptResponse.php | Apache-2.0 |
public function deserialize($param)
{
if ($param === null) {
return;
}
if (array_key_exists("CiphertextBlob",$param) and $param["CiphertextBlob"] !== null) {
$this->CiphertextBlob = $param["CiphertextBlob"];
}
if (array_key_exists("KeyId",$param) and $param["KeyId"] !== null) {
$this->KeyId = $param["KeyId"];
}
if (array_key_exists("RequestId",$param) and $param["RequestId"] !== null) {
$this->RequestId = $param["RequestId"];
}
} | For internal only. DO NOT USE IT. | deserialize | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/PostQuantumCryptoEncryptResponse.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/PostQuantumCryptoEncryptResponse.php | Apache-2.0 |
function __construct()
{
} | @param integer $TotalCount CMK的总数量
@param array $KeyMetadatas 返回的属性信息列表。
@param string $RequestId 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。 | __construct | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/ListKeyDetailResponse.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/ListKeyDetailResponse.php | Apache-2.0 |
function __construct()
{
} | @param string $Signature 签名,Base64编码
@param string $RequestId 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。 | __construct | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/SignByAsymmetricKeyResponse.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/SignByAsymmetricKeyResponse.php | Apache-2.0 |
public function deserialize($param)
{
if ($param === null) {
return;
}
if (array_key_exists("Signature",$param) and $param["Signature"] !== null) {
$this->Signature = $param["Signature"];
}
if (array_key_exists("RequestId",$param) and $param["RequestId"] !== null) {
$this->RequestId = $param["RequestId"];
}
} | For internal only. DO NOT USE IT. | deserialize | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/SignByAsymmetricKeyResponse.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/SignByAsymmetricKeyResponse.php | Apache-2.0 |
function __construct()
{
} | @param string $TagKey 标签键
@param array $TagValue 标签值 | __construct | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/TagFilter.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/TagFilter.php | Apache-2.0 |
public function deserialize($param)
{
if ($param === null) {
return;
}
if (array_key_exists("TagKey",$param) and $param["TagKey"] !== null) {
$this->TagKey = $param["TagKey"];
}
if (array_key_exists("TagValue",$param) and $param["TagValue"] !== null) {
$this->TagValue = $param["TagValue"];
}
} | For internal only. DO NOT USE IT. | deserialize | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/TagFilter.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/TagFilter.php | Apache-2.0 |
function __construct()
{
} | @param string $RequestId 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。 | __construct | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/EnableWhiteBoxKeyResponse.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/EnableWhiteBoxKeyResponse.php | Apache-2.0 |
public function deserialize($param)
{
if ($param === null) {
return;
}
if (array_key_exists("RequestId",$param) and $param["RequestId"] !== null) {
$this->RequestId = $param["RequestId"];
}
} | For internal only. DO NOT USE IT. | deserialize | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/EnableWhiteBoxKeyResponse.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/EnableWhiteBoxKeyResponse.php | Apache-2.0 |
public function deserialize($param)
{
if ($param === null) {
return;
}
if (array_key_exists("KeyId",$param) and $param["KeyId"] !== null) {
$this->KeyId = $param["KeyId"];
}
if (array_key_exists("PlainText",$param) and $param["PlainText"] !== null) {
$this->PlainText = $param["PlainText"];
}
if (array_key_exists("RequestId",$param) and $param["RequestId"] !== null) {
$this->RequestId = $param["RequestId"];
}
} | For internal only. DO NOT USE IT. | deserialize | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/PostQuantumCryptoDecryptResponse.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/PostQuantumCryptoDecryptResponse.php | Apache-2.0 |
function __construct()
{
} | @param WhiteboxKeyInfo $KeyInfo 白盒密钥信息
@param string $RequestId 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。 | __construct | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/DescribeWhiteBoxKeyResponse.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/DescribeWhiteBoxKeyResponse.php | Apache-2.0 |
public function deserialize($param)
{
if ($param === null) {
return;
}
if (array_key_exists("KeyInfo",$param) and $param["KeyInfo"] !== null) {
$this->KeyInfo = new WhiteboxKeyInfo();
$this->KeyInfo->deserialize($param["KeyInfo"]);
}
if (array_key_exists("RequestId",$param) and $param["RequestId"] !== null) {
$this->RequestId = $param["RequestId"];
}
} | For internal only. DO NOT USE IT. | deserialize | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/DescribeWhiteBoxKeyResponse.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/DescribeWhiteBoxKeyResponse.php | Apache-2.0 |
function __construct()
{
} | @param string $Alias 新的别名,1-60个字符或数字的组合
@param string $KeyId CMK的全局唯一标识符 | __construct | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/UpdateAliasRequest.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/UpdateAliasRequest.php | Apache-2.0 |
public function deserialize($param)
{
if ($param === null) {
return;
}
if (array_key_exists("Alias",$param) and $param["Alias"] !== null) {
$this->Alias = $param["Alias"];
}
if (array_key_exists("KeyId",$param) and $param["KeyId"] !== null) {
$this->KeyId = $param["KeyId"];
}
} | For internal only. DO NOT USE IT. | deserialize | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/UpdateAliasRequest.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/UpdateAliasRequest.php | Apache-2.0 |
function __construct()
{
} | @param string $Alias 作为密钥更容易辨识,更容易被人看懂的别名, 不可为空,1-60个字母数字 - _ 的组合,首字符必须为字母或者数字。Alias不可重复。
@param string $Algorithm 创建密钥所有的算法类型,支持的取值:AES_256,SM4
@param string $Description 密钥的描述,最大1024字节
@param array $Tags 标签列表 | __construct | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/CreateWhiteBoxKeyRequest.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/CreateWhiteBoxKeyRequest.php | Apache-2.0 |
function __construct()
{
} | @param string $KeyId CMK的唯一标识
@param string $Plaintext 解密后的明文,base64编码
@param string $RequestId 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。 | __construct | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/AsymmetricSm2DecryptResponse.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/AsymmetricSm2DecryptResponse.php | Apache-2.0 |
public function deserialize($param)
{
if ($param === null) {
return;
}
if (array_key_exists("KeyId",$param) and $param["KeyId"] !== null) {
$this->KeyId = $param["KeyId"];
}
if (array_key_exists("Plaintext",$param) and $param["Plaintext"] !== null) {
$this->Plaintext = $param["Plaintext"];
}
if (array_key_exists("RequestId",$param) and $param["RequestId"] !== null) {
$this->RequestId = $param["RequestId"];
}
} | For internal only. DO NOT USE IT. | deserialize | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/AsymmetricSm2DecryptResponse.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/AsymmetricSm2DecryptResponse.php | Apache-2.0 |
function __construct()
{
} | @param string $RequestId 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。 | __construct | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/BindCloudResourceResponse.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/BindCloudResourceResponse.php | Apache-2.0 |
public function deserialize($param)
{
if ($param === null) {
return;
}
if (array_key_exists("RequestId",$param) and $param["RequestId"] !== null) {
$this->RequestId = $param["RequestId"];
}
} | For internal only. DO NOT USE IT. | deserialize | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/BindCloudResourceResponse.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/BindCloudResourceResponse.php | Apache-2.0 |
function __construct()
{
} | @param string $HsmClusterId 独享集群Id
@param string $HsmClusterName 独享集群名称 | __construct | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/ExclusiveHSM.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/ExclusiveHSM.php | Apache-2.0 |
public function deserialize($param)
{
if ($param === null) {
return;
}
if (array_key_exists("HsmClusterId",$param) and $param["HsmClusterId"] !== null) {
$this->HsmClusterId = $param["HsmClusterId"];
}
if (array_key_exists("HsmClusterName",$param) and $param["HsmClusterName"] !== null) {
$this->HsmClusterName = $param["HsmClusterName"];
}
} | For internal only. DO NOT USE IT. | deserialize | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/ExclusiveHSM.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/ExclusiveHSM.php | Apache-2.0 |
function __construct()
{
} | @param string $KeyId 调用CreateKey生成的CMK全局唯一标识符
@param string $PlainText 被加密的明文数据,该字段必须使用base64编码,原文最大长度支持4K | __construct | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/PostQuantumCryptoEncryptRequest.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/PostQuantumCryptoEncryptRequest.php | Apache-2.0 |
public function deserialize($param)
{
if ($param === null) {
return;
}
if (array_key_exists("KeyId",$param) and $param["KeyId"] !== null) {
$this->KeyId = $param["KeyId"];
}
if (array_key_exists("PlainText",$param) and $param["PlainText"] !== null) {
$this->PlainText = $param["PlainText"];
}
} | For internal only. DO NOT USE IT. | deserialize | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/PostQuantumCryptoEncryptRequest.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/PostQuantumCryptoEncryptRequest.php | Apache-2.0 |
function __construct()
{
} | @param string $KeyId 指定需要删除密钥材料的EXTERNAL CMK。 | __construct | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/DeleteImportedKeyMaterialRequest.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/DeleteImportedKeyMaterialRequest.php | Apache-2.0 |
public function deserialize($param)
{
if ($param === null) {
return;
}
if (array_key_exists("KeyId",$param) and $param["KeyId"] !== null) {
$this->KeyId = $param["KeyId"];
}
} | For internal only. DO NOT USE IT. | deserialize | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/DeleteImportedKeyMaterialRequest.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/DeleteImportedKeyMaterialRequest.php | Apache-2.0 |
function __construct()
{
} | @param string $Identity 指纹信息,由设备指纹采集工具采集获得,格式满足正则表达式:^[0-9a-f]{8}[\-][0-9a-f]{14}[\-][0-9a-f]{14}[\-][0-9a-f]{14}[\-][0-9a-f]{16}$
@param string $Description 描述信息,如:IP,设备名称等,最大1024字节 | __construct | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/DeviceFingerprint.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/DeviceFingerprint.php | Apache-2.0 |
public function deserialize($param)
{
if ($param === null) {
return;
}
if (array_key_exists("Identity",$param) and $param["Identity"] !== null) {
$this->Identity = $param["Identity"];
}
if (array_key_exists("Description",$param) and $param["Description"] !== null) {
$this->Description = $param["Description"];
}
} | For internal only. DO NOT USE IT. | deserialize | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/DeviceFingerprint.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/DeviceFingerprint.php | Apache-2.0 |
function __construct()
{
} | @param string $KeyId CMK唯一标识符 | __construct | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/DisableKeyRequest.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/DisableKeyRequest.php | Apache-2.0 |
public function deserialize($param)
{
if ($param === null) {
return;
}
if (array_key_exists("KeyId",$param) and $param["KeyId"] !== null) {
$this->KeyId = $param["KeyId"];
}
} | For internal only. DO NOT USE IT. | deserialize | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/DisableKeyRequest.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/DisableKeyRequest.php | Apache-2.0 |
function __construct()
{
} | @param array $DeviceFingerprints 设备指纹列表
@param string $RequestId 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。 | __construct | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/DescribeWhiteBoxDeviceFingerprintsResponse.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/DescribeWhiteBoxDeviceFingerprintsResponse.php | Apache-2.0 |
function __construct()
{
} | @param string $InitializationVector 初始化向量,加密算法会使用到, base64编码。如果由调用方在入参中传入,则原样返回。如果调用方没有传入,则后端服务随机生成,并返回
@param string $CipherText 加密后的密文,base64编码
@param string $RequestId 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。 | __construct | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/EncryptByWhiteBoxResponse.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/EncryptByWhiteBoxResponse.php | Apache-2.0 |
public function deserialize($param)
{
if ($param === null) {
return;
}
if (array_key_exists("InitializationVector",$param) and $param["InitializationVector"] !== null) {
$this->InitializationVector = $param["InitializationVector"];
}
if (array_key_exists("CipherText",$param) and $param["CipherText"] !== null) {
$this->CipherText = $param["CipherText"];
}
if (array_key_exists("RequestId",$param) and $param["RequestId"] !== null) {
$this->RequestId = $param["RequestId"];
}
} | For internal only. DO NOT USE IT. | deserialize | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/EncryptByWhiteBoxResponse.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/EncryptByWhiteBoxResponse.php | Apache-2.0 |
public function deserialize($param)
{
if ($param === null) {
return;
}
} | For internal only. DO NOT USE IT. | deserialize | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/DescribeWhiteBoxServiceStatusRequest.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/DescribeWhiteBoxServiceStatusRequest.php | Apache-2.0 |
function __construct()
{
} | @param string $CiphertextBlob 需要重新加密的密文
@param string $DestinationKeyId 重新加密使用的CMK,如果为空,则使用密文原有的CMK重新加密(若密钥没有轮换则密文不会刷新)
@param string $SourceEncryptionContext CiphertextBlob 密文加密时使用的key/value对的json字符串。如果加密时未使用,则为空
@param string $DestinationEncryptionContext 重新加密使用的key/value对的json字符串,如果使用该字段,则返回的新密文在解密时需要填入相同的字符串 | __construct | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/ReEncryptRequest.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/ReEncryptRequest.php | Apache-2.0 |
public function deserialize($param)
{
if ($param === null) {
return;
}
if (array_key_exists("CiphertextBlob",$param) and $param["CiphertextBlob"] !== null) {
$this->CiphertextBlob = $param["CiphertextBlob"];
}
if (array_key_exists("DestinationKeyId",$param) and $param["DestinationKeyId"] !== null) {
$this->DestinationKeyId = $param["DestinationKeyId"];
}
if (array_key_exists("SourceEncryptionContext",$param) and $param["SourceEncryptionContext"] !== null) {
$this->SourceEncryptionContext = $param["SourceEncryptionContext"];
}
if (array_key_exists("DestinationEncryptionContext",$param) and $param["DestinationEncryptionContext"] !== null) {
$this->DestinationEncryptionContext = $param["DestinationEncryptionContext"];
}
} | For internal only. DO NOT USE IT. | deserialize | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/ReEncryptRequest.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/ReEncryptRequest.php | Apache-2.0 |
function __construct()
{
} | @param string $DecryptKey 白盒解密密钥,base64编码
@param string $RequestId 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。 | __construct | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/DescribeWhiteBoxDecryptKeyResponse.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/DescribeWhiteBoxDecryptKeyResponse.php | Apache-2.0 |
public function deserialize($param)
{
if ($param === null) {
return;
}
if (array_key_exists("DecryptKey",$param) and $param["DecryptKey"] !== null) {
$this->DecryptKey = $param["DecryptKey"];
}
if (array_key_exists("RequestId",$param) and $param["RequestId"] !== null) {
$this->RequestId = $param["RequestId"];
}
} | For internal only. DO NOT USE IT. | deserialize | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/DescribeWhiteBoxDecryptKeyResponse.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/DescribeWhiteBoxDecryptKeyResponse.php | Apache-2.0 |
function __construct()
{
} | @param string $KeyId CMK的唯一标识。 | __construct | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/GetPublicKeyRequest.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/GetPublicKeyRequest.php | Apache-2.0 |
public function deserialize($param)
{
if ($param === null) {
return;
}
if (array_key_exists("KeyId",$param) and $param["KeyId"] !== null) {
$this->KeyId = $param["KeyId"];
}
} | For internal only. DO NOT USE IT. | deserialize | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/GetPublicKeyRequest.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/GetPublicKeyRequest.php | Apache-2.0 |
function __construct()
{
} | @param string $KeyId 白盒密钥的全局唯一标识符 | __construct | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/DescribeWhiteBoxDecryptKeyRequest.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/DescribeWhiteBoxDecryptKeyRequest.php | Apache-2.0 |
public function deserialize($param)
{
if ($param === null) {
return;
}
if (array_key_exists("KeyId",$param) and $param["KeyId"] !== null) {
$this->KeyId = $param["KeyId"];
}
} | For internal only. DO NOT USE IT. | deserialize | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/DescribeWhiteBoxDecryptKeyRequest.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/DescribeWhiteBoxDecryptKeyRequest.php | Apache-2.0 |
function __construct()
{
} | @param string $KeyId 白盒密钥ID | __construct | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/DescribeWhiteBoxDeviceFingerprintsRequest.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/DescribeWhiteBoxDeviceFingerprintsRequest.php | Apache-2.0 |
public function deserialize($param)
{
if ($param === null) {
return;
}
if (array_key_exists("KeyId",$param) and $param["KeyId"] !== null) {
$this->KeyId = $param["KeyId"];
}
} | For internal only. DO NOT USE IT. | deserialize | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/DescribeWhiteBoxDeviceFingerprintsRequest.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/DescribeWhiteBoxDeviceFingerprintsRequest.php | Apache-2.0 |
function __construct()
{
} | @param integer $NumberOfBytes 生成的随机数的长度。最小值为1, 最大值为1024。 | __construct | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/GenerateRandomRequest.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/GenerateRandomRequest.php | Apache-2.0 |
public function deserialize($param)
{
if ($param === null) {
return;
}
if (array_key_exists("NumberOfBytes",$param) and $param["NumberOfBytes"] !== null) {
$this->NumberOfBytes = $param["NumberOfBytes"];
}
} | For internal only. DO NOT USE IT. | deserialize | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/GenerateRandomRequest.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/GenerateRandomRequest.php | Apache-2.0 |
function __construct()
{
} | @param string $KeyId CMK的全局唯一标识
@param string $Alias 作为密钥更容易辨识,更容易被人看懂的别名
@param integer $CreateTime 密钥创建时间
@param string $Description CMK的描述
@param string $KeyState CMK的状态, 取值为:Enabled | Disabled | PendingDelete | PendingImport | Archived
@param string $KeyUsage CMK用途,取值为: ENCRYPT_DECRYPT | ASYMMETRIC_DECRYPT_RSA_2048 | ASYMMETRIC_DECRYPT_SM2 | ASYMMETRIC_SIGN_VERIFY_SM2 | ASYMMETRIC_SIGN_VERIFY_RSA_2048 | ASYMMETRIC_SIGN_VERIFY_ECC
@param integer $Type CMK类型,2 表示符合FIPS标准,4表示符合国密标准
@param integer $CreatorUin 创建者
@param boolean $KeyRotationEnabled 是否开启了密钥轮换功能
@param string $Owner CMK的创建者,用户创建的为 user,授权各云产品自动创建的为对应的产品名
@param integer $NextRotateTime 在密钥轮换开启状态下,下次轮换的时间
@param integer $DeletionDate 计划删除的时间
@param string $Origin CMK 密钥材料类型,由KMS创建的为: TENCENT_KMS, 由用户导入的类型为:EXTERNAL
@param integer $ValidTo 在Origin为 EXTERNAL 时有效,表示密钥材料的有效日期, 0 表示不过期
@param string $ResourceId 资源ID,格式:creatorUin/$creatorUin/$keyId
@param string $HsmClusterId HSM 集群 ID(仅对 KMS 独占版/托管版服务实例有效)
@param integer $RotateDays 密钥轮转周期(天)
@param integer $LastRotateTime 上次乱转时间(Unix timestamp) | __construct | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/KeyMetadata.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/KeyMetadata.php | Apache-2.0 |
public function deserialize($param)
{
if ($param === null) {
return;
}
if (array_key_exists("KeyId",$param) and $param["KeyId"] !== null) {
$this->KeyId = $param["KeyId"];
}
if (array_key_exists("Alias",$param) and $param["Alias"] !== null) {
$this->Alias = $param["Alias"];
}
if (array_key_exists("CreateTime",$param) and $param["CreateTime"] !== null) {
$this->CreateTime = $param["CreateTime"];
}
if (array_key_exists("Description",$param) and $param["Description"] !== null) {
$this->Description = $param["Description"];
}
if (array_key_exists("KeyState",$param) and $param["KeyState"] !== null) {
$this->KeyState = $param["KeyState"];
}
if (array_key_exists("KeyUsage",$param) and $param["KeyUsage"] !== null) {
$this->KeyUsage = $param["KeyUsage"];
}
if (array_key_exists("Type",$param) and $param["Type"] !== null) {
$this->Type = $param["Type"];
}
if (array_key_exists("CreatorUin",$param) and $param["CreatorUin"] !== null) {
$this->CreatorUin = $param["CreatorUin"];
}
if (array_key_exists("KeyRotationEnabled",$param) and $param["KeyRotationEnabled"] !== null) {
$this->KeyRotationEnabled = $param["KeyRotationEnabled"];
}
if (array_key_exists("Owner",$param) and $param["Owner"] !== null) {
$this->Owner = $param["Owner"];
}
if (array_key_exists("NextRotateTime",$param) and $param["NextRotateTime"] !== null) {
$this->NextRotateTime = $param["NextRotateTime"];
}
if (array_key_exists("DeletionDate",$param) and $param["DeletionDate"] !== null) {
$this->DeletionDate = $param["DeletionDate"];
}
if (array_key_exists("Origin",$param) and $param["Origin"] !== null) {
$this->Origin = $param["Origin"];
}
if (array_key_exists("ValidTo",$param) and $param["ValidTo"] !== null) {
$this->ValidTo = $param["ValidTo"];
}
if (array_key_exists("ResourceId",$param) and $param["ResourceId"] !== null) {
$this->ResourceId = $param["ResourceId"];
}
if (array_key_exists("HsmClusterId",$param) and $param["HsmClusterId"] !== null) {
$this->HsmClusterId = $param["HsmClusterId"];
}
if (array_key_exists("RotateDays",$param) and $param["RotateDays"] !== null) {
$this->RotateDays = $param["RotateDays"];
}
if (array_key_exists("LastRotateTime",$param) and $param["LastRotateTime"] !== null) {
$this->LastRotateTime = $param["LastRotateTime"];
}
} | For internal only. DO NOT USE IT. | deserialize | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/KeyMetadata.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/KeyMetadata.php | Apache-2.0 |
function __construct()
{
} | @param boolean $KeyRotationEnabled 密钥轮换是否开启
@param string $RequestId 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。 | __construct | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/GetKeyRotationStatusResponse.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/GetKeyRotationStatusResponse.php | Apache-2.0 |
public function deserialize($param)
{
if ($param === null) {
return;
}
if (array_key_exists("KeyRotationEnabled",$param) and $param["KeyRotationEnabled"] !== null) {
$this->KeyRotationEnabled = $param["KeyRotationEnabled"];
}
if (array_key_exists("RequestId",$param) and $param["RequestId"] !== null) {
$this->RequestId = $param["RequestId"];
}
} | For internal only. DO NOT USE IT. | deserialize | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/GetKeyRotationStatusResponse.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/GetKeyRotationStatusResponse.php | Apache-2.0 |
function __construct()
{
} | @param string $RequestId 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。 | __construct | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/OverwriteWhiteBoxDeviceFingerprintsResponse.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/OverwriteWhiteBoxDeviceFingerprintsResponse.php | Apache-2.0 |
public function deserialize($param)
{
if ($param === null) {
return;
}
if (array_key_exists("RequestId",$param) and $param["RequestId"] !== null) {
$this->RequestId = $param["RequestId"];
}
} | For internal only. DO NOT USE IT. | deserialize | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/OverwriteWhiteBoxDeviceFingerprintsResponse.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/OverwriteWhiteBoxDeviceFingerprintsResponse.php | Apache-2.0 |
function __construct()
{
} | @param string $CiphertextBlob 重新加密后的密文
@param string $KeyId 重新加密使用的CMK
@param string $SourceKeyId 重新加密前密文使用的CMK
@param boolean $ReEncrypted true表示密文已经重新加密。同一个CMK进行重加密,在密钥没有发生轮换的情况下不会进行实际重新加密操作,返回原密文
@param string $RequestId 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。 | __construct | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/ReEncryptResponse.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/ReEncryptResponse.php | Apache-2.0 |
public function deserialize($param)
{
if ($param === null) {
return;
}
if (array_key_exists("CiphertextBlob",$param) and $param["CiphertextBlob"] !== null) {
$this->CiphertextBlob = $param["CiphertextBlob"];
}
if (array_key_exists("KeyId",$param) and $param["KeyId"] !== null) {
$this->KeyId = $param["KeyId"];
}
if (array_key_exists("SourceKeyId",$param) and $param["SourceKeyId"] !== null) {
$this->SourceKeyId = $param["SourceKeyId"];
}
if (array_key_exists("ReEncrypted",$param) and $param["ReEncrypted"] !== null) {
$this->ReEncrypted = $param["ReEncrypted"];
}
if (array_key_exists("RequestId",$param) and $param["RequestId"] !== null) {
$this->RequestId = $param["RequestId"];
}
} | For internal only. DO NOT USE IT. | deserialize | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/ReEncryptResponse.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/ReEncryptResponse.php | Apache-2.0 |
function __construct()
{
} | @param string $CiphertextBlob 待解密的密文数据
@param string $EncryptionContext key/value对的json字符串,如果Encrypt指定了该参数,则在调用Decrypt API时需要提供同样的参数,最大支持1024字符
@param string $EncryptionPublicKey PEM 格式公钥字符串,支持 RSA2048 和 SM2 公钥,用于对返回数据中的 Plaintext 值进行加密。若为空,则不对 Plaintext 值加密。
@param string $EncryptionAlgorithm 非对称加密算法,配合 EncryptionPublicKey 对返回数据进行加密。目前支持:SM2(以 C1C3C2 格式返回密文),SM2_C1C3C2_ASN1 (以 C1C3C2 ASN1 格式返回密文),RSAES_PKCS1_V1_5,RSAES_OAEP_SHA_1,RSAES_OAEP_SHA_256。若为空,则默认为 SM2。 | __construct | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/DecryptRequest.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/DecryptRequest.php | Apache-2.0 |
public function deserialize($param)
{
if ($param === null) {
return;
}
if (array_key_exists("CiphertextBlob",$param) and $param["CiphertextBlob"] !== null) {
$this->CiphertextBlob = $param["CiphertextBlob"];
}
if (array_key_exists("EncryptionContext",$param) and $param["EncryptionContext"] !== null) {
$this->EncryptionContext = $param["EncryptionContext"];
}
if (array_key_exists("EncryptionPublicKey",$param) and $param["EncryptionPublicKey"] !== null) {
$this->EncryptionPublicKey = $param["EncryptionPublicKey"];
}
if (array_key_exists("EncryptionAlgorithm",$param) and $param["EncryptionAlgorithm"] !== null) {
$this->EncryptionAlgorithm = $param["EncryptionAlgorithm"];
}
} | For internal only. DO NOT USE IT. | deserialize | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/DecryptRequest.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/DecryptRequest.php | Apache-2.0 |
function __construct()
{
} | @param integer $KeyStatus 过滤条件:密钥的状态,0:disabled,1:enabled
@param integer $Offset 含义跟 SQL 查询的 Offset 一致,表示本次获取从按一定顺序排列数组的第 Offset 个元素开始,缺省为0
@param integer $Limit 含义跟 SQL 查询的 Limit 一致,表示本次最多获取 Limit 个元素。缺省值为0, 表示不分页
@param array $TagFilters 标签过滤条件 | __construct | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/DescribeWhiteBoxKeyDetailsRequest.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/DescribeWhiteBoxKeyDetailsRequest.php | Apache-2.0 |
function __construct()
{
} | @param integer $Offset 含义跟 SQL 查询的 Offset 一致,表示本次获取从按一定顺序排列数组的第 Offset 个元素开始,缺省为0
@param integer $Limit 含义跟 SQL 查询的 Limit 一致,表示本次获最多获取 Limit 个元素。缺省值为10,最大值为200
@param integer $Role 根据创建者角色筛选,默认 0 表示用户自己创建的cmk, 1 表示授权其它云产品自动创建的cmk
@param string $HsmClusterId KMS 高级版对应的 HSM 集群 ID(仅对 KMS 独占版/托管版服务实例有效)。 | __construct | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/ListKeysRequest.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/ListKeysRequest.php | Apache-2.0 |
public function deserialize($param)
{
if ($param === null) {
return;
}
if (array_key_exists("Offset",$param) and $param["Offset"] !== null) {
$this->Offset = $param["Offset"];
}
if (array_key_exists("Limit",$param) and $param["Limit"] !== null) {
$this->Limit = $param["Limit"];
}
if (array_key_exists("Role",$param) and $param["Role"] !== null) {
$this->Role = $param["Role"];
}
if (array_key_exists("HsmClusterId",$param) and $param["HsmClusterId"] !== null) {
$this->HsmClusterId = $param["HsmClusterId"];
}
} | For internal only. DO NOT USE IT. | deserialize | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/ListKeysRequest.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/ListKeysRequest.php | Apache-2.0 |
function __construct()
{
} | @param string $RequestId 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。 | __construct | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/DeleteImportedKeyMaterialResponse.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/DeleteImportedKeyMaterialResponse.php | Apache-2.0 |
public function deserialize($param)
{
if ($param === null) {
return;
}
if (array_key_exists("RequestId",$param) and $param["RequestId"] !== null) {
$this->RequestId = $param["RequestId"];
}
} | For internal only. DO NOT USE IT. | deserialize | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/DeleteImportedKeyMaterialResponse.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/DeleteImportedKeyMaterialResponse.php | Apache-2.0 |
function __construct()
{
} | @param string $KeyId cmk的ID
@param string $ProductId 云产品的唯一性标识符
@param string $ResourceId 资源/实例ID,由调用方根据自己的云产品特征来定义,以字符串形式做存储。 | __construct | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/BindCloudResourceRequest.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/BindCloudResourceRequest.php | Apache-2.0 |
public function deserialize($param)
{
if ($param === null) {
return;
}
if (array_key_exists("KeyId",$param) and $param["KeyId"] !== null) {
$this->KeyId = $param["KeyId"];
}
if (array_key_exists("ProductId",$param) and $param["ProductId"] !== null) {
$this->ProductId = $param["ProductId"];
}
if (array_key_exists("ResourceId",$param) and $param["ResourceId"] !== null) {
$this->ResourceId = $param["ResourceId"];
}
} | For internal only. DO NOT USE IT. | deserialize | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/BindCloudResourceRequest.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/BindCloudResourceRequest.php | Apache-2.0 |
function __construct()
{
} | @param string $KeyId CMK的唯一标识,用于指定目标导入密钥材料的CMK。
@param string $ImportToken 导入密钥材料需要的token,用于作为 ImportKeyMaterial 的参数。
@param string $PublicKey 用于加密密钥材料的RSA公钥,base64编码。使用PublicKey base64解码后的公钥将导入密钥进行加密后作为 ImportKeyMaterial 的参数。
@param integer $ParametersValidTo 该导出token和公钥的有效期,超过该时间后无法导入,需要重新调用GetParametersForImport获取。
@param string $RequestId 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。 | __construct | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/GetParametersForImportResponse.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/GetParametersForImportResponse.php | Apache-2.0 |
public function deserialize($param)
{
if ($param === null) {
return;
}
if (array_key_exists("KeyId",$param) and $param["KeyId"] !== null) {
$this->KeyId = $param["KeyId"];
}
if (array_key_exists("ImportToken",$param) and $param["ImportToken"] !== null) {
$this->ImportToken = $param["ImportToken"];
}
if (array_key_exists("PublicKey",$param) and $param["PublicKey"] !== null) {
$this->PublicKey = $param["PublicKey"];
}
if (array_key_exists("ParametersValidTo",$param) and $param["ParametersValidTo"] !== null) {
$this->ParametersValidTo = $param["ParametersValidTo"];
}
if (array_key_exists("RequestId",$param) and $param["RequestId"] !== null) {
$this->RequestId = $param["RequestId"];
}
} | For internal only. DO NOT USE IT. | deserialize | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/GetParametersForImportResponse.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/GetParametersForImportResponse.php | Apache-2.0 |
function __construct()
{
} | @param boolean $SignatureValid 签名是否有效。true:签名有效,false:签名无效。
@param string $RequestId 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。 | __construct | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/PostQuantumCryptoVerifyResponse.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/PostQuantumCryptoVerifyResponse.php | Apache-2.0 |
public function deserialize($param)
{
if ($param === null) {
return;
}
if (array_key_exists("SignatureValid",$param) and $param["SignatureValid"] !== null) {
$this->SignatureValid = $param["SignatureValid"];
}
if (array_key_exists("RequestId",$param) and $param["RequestId"] !== null) {
$this->RequestId = $param["RequestId"];
}
} | For internal only. DO NOT USE IT. | deserialize | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/PostQuantumCryptoVerifyResponse.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/PostQuantumCryptoVerifyResponse.php | Apache-2.0 |
function __construct()
{
} | @param string $CiphertextBlob 待解密的密文数据
@param string $EncryptionPublicKey PEM 格式公钥字符串,支持 RSA2048 和 SM2 公钥,用于对返回数据中的 Plaintext 值进行加密。若为空,则不对 Plaintext 值加密。
@param string $EncryptionAlgorithm 非对称加密算法,配合 EncryptionPublicKey 对返回数据进行加密。目前支持:SM2(以 C1C3C2 格式返回密文),SM2_C1C3C2_ASN1 (以 C1C3C2 ASN1 格式返回密文),RSAES_PKCS1_V1_5,RSAES_OAEP_SHA_1,RSAES_OAEP_SHA_256。若为空,则默认为 SM2。 | __construct | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/PostQuantumCryptoDecryptRequest.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/PostQuantumCryptoDecryptRequest.php | Apache-2.0 |
public function deserialize($param)
{
if ($param === null) {
return;
}
if (array_key_exists("CiphertextBlob",$param) and $param["CiphertextBlob"] !== null) {
$this->CiphertextBlob = $param["CiphertextBlob"];
}
if (array_key_exists("EncryptionPublicKey",$param) and $param["EncryptionPublicKey"] !== null) {
$this->EncryptionPublicKey = $param["EncryptionPublicKey"];
}
if (array_key_exists("EncryptionAlgorithm",$param) and $param["EncryptionAlgorithm"] !== null) {
$this->EncryptionAlgorithm = $param["EncryptionAlgorithm"];
}
} | For internal only. DO NOT USE IT. | deserialize | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Kms/V20190118/Models/PostQuantumCryptoDecryptRequest.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Kms/V20190118/Models/PostQuantumCryptoDecryptRequest.php | Apache-2.0 |
function __construct($credential, $region, $profile=null)
{
parent::__construct($this->endpoint, $this->version, $credential, $region, $profile);
} | @param Credential $credential
@param string $region
@param ClientProfile|null $profile
@throws TencentCloudSDKException | __construct | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Lke/V20231130/LkeClient.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/LkeClient.php | Apache-2.0 |
function __construct()
{
} | @param array $List 列表
@param string $RequestId 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。 | __construct | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Lke/V20231130/Models/ListQACateResponse.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/ListQACateResponse.php | Apache-2.0 |
public function deserialize($param)
{
if ($param === null) {
return;
}
if (array_key_exists("Name",$param) and $param["Name"] !== null) {
$this->Name = $param["Name"];
}
if (array_key_exists("Avatar",$param) and $param["Avatar"] !== null) {
$this->Avatar = $param["Avatar"];
}
if (array_key_exists("Desc",$param) and $param["Desc"] !== null) {
$this->Desc = $param["Desc"];
}
} | For internal only. DO NOT USE IT. | deserialize | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Lke/V20231130/Models/BaseConfig.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/BaseConfig.php | Apache-2.0 |
function __construct()
{
} | @param string $BotBizId 应用ID
@param array $ReplyBizIds 勾选导出ID列表
@param string $LoginUin 登录用户主账号(集成商模式必填)
@param string $LoginSubAccountUin 登录用户子账号(集成商模式必填)
@param Filters $Filters 检索过滤器 | __construct | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Lke/V20231130/Models/ExportUnsatisfiedReplyRequest.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/ExportUnsatisfiedReplyRequest.php | Apache-2.0 |
public function deserialize($param)
{
if ($param === null) {
return;
}
if (array_key_exists("BotBizId",$param) and $param["BotBizId"] !== null) {
$this->BotBizId = $param["BotBizId"];
}
if (array_key_exists("ReplyBizIds",$param) and $param["ReplyBizIds"] !== null) {
$this->ReplyBizIds = $param["ReplyBizIds"];
}
if (array_key_exists("LoginUin",$param) and $param["LoginUin"] !== null) {
$this->LoginUin = $param["LoginUin"];
}
if (array_key_exists("LoginSubAccountUin",$param) and $param["LoginSubAccountUin"] !== null) {
$this->LoginSubAccountUin = $param["LoginSubAccountUin"];
}
if (array_key_exists("Filters",$param) and $param["Filters"] !== null) {
$this->Filters = new Filters();
$this->Filters->deserialize($param["Filters"]);
}
} | For internal only. DO NOT USE IT. | deserialize | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Lke/V20231130/Models/ExportUnsatisfiedReplyRequest.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/ExportUnsatisfiedReplyRequest.php | Apache-2.0 |
function __construct()
{
} | @param string $BotBizId 应用ID
@param string $AttributeBizId 标签ID
@param string $AttrName 标签名称
@param string $AttrKey 标签标识 (已作废)
@param string $LoginUin 登录用户主账号(集成商模式必填)
@param string $LoginSubAccountUin 登录用户子账号(集成商模式必填)
@param array $DeleteLabelBizIds 删除的标签值
@param array $Labels 新增或编辑的标签 | __construct | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Lke/V20231130/Models/ModifyAttributeLabelRequest.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/ModifyAttributeLabelRequest.php | Apache-2.0 |
function __construct()
{
} | @param string $AppBizId 应用ID
@param string $AppType 应用类型;knowledge_qa-知识问答管理;summary-知识摘要;classifys-知识标签提取 | __construct | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Lke/V20231130/Models/DeleteAppRequest.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/DeleteAppRequest.php | Apache-2.0 |
public function deserialize($param)
{
if ($param === null) {
return;
}
if (array_key_exists("AppBizId",$param) and $param["AppBizId"] !== null) {
$this->AppBizId = $param["AppBizId"];
}
if (array_key_exists("AppType",$param) and $param["AppType"] !== null) {
$this->AppType = $param["AppType"];
}
} | For internal only. DO NOT USE IT. | deserialize | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Lke/V20231130/Models/DeleteAppRequest.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/DeleteAppRequest.php | Apache-2.0 |
function __construct()
{
} | @param integer $X 横坐标
@param integer $Y 纵坐标 | __construct | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Lke/V20231130/Models/Coord.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/Coord.php | Apache-2.0 |
public function deserialize($param)
{
if ($param === null) {
return;
}
if (array_key_exists("X",$param) and $param["X"] !== null) {
$this->X = $param["X"];
}
if (array_key_exists("Y",$param) and $param["Y"] !== null) {
$this->Y = $param["Y"];
}
} | For internal only. DO NOT USE IT. | deserialize | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Lke/V20231130/Models/Coord.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/Coord.php | Apache-2.0 |
function __construct()
{
} | @param string $Query 查询内容,必填
@param array $Docs 文档列表,必填,最多20个
@param string $Model 模型名称, 非必填,默认: lke-reranker-base
@param array $DataList 需要计算关联性的2段内容
@param boolean $Online 是否在线, 后台异步任务使用离线, 实时任务使用在线, 默认值: false | __construct | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Lke/V20231130/Models/RunReRankRequest.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/RunReRankRequest.php | Apache-2.0 |
function __construct()
{
} | @param string $LoginUin 登录用户主账号(集成商模式必填)
@param string $LoginSubAccountUin 登录用户子账号(集成商模式必填)
@param array $UinAccount uin列表
@param string $SubBizType 子业务类型
@param string $ModelName 模型标识
@param string $StartTime 开始时间戳, 单位为秒
@param string $EndTime 结束时间戳, 单位为秒
@param array $AppBizIds 应用id列表 | __construct | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Lke/V20231130/Models/DescribeSearchStatsGraphRequest.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/DescribeSearchStatsGraphRequest.php | Apache-2.0 |
public function deserialize($param)
{
if ($param === null) {
return;
}
if (array_key_exists("LoginUin",$param) and $param["LoginUin"] !== null) {
$this->LoginUin = $param["LoginUin"];
}
if (array_key_exists("LoginSubAccountUin",$param) and $param["LoginSubAccountUin"] !== null) {
$this->LoginSubAccountUin = $param["LoginSubAccountUin"];
}
if (array_key_exists("UinAccount",$param) and $param["UinAccount"] !== null) {
$this->UinAccount = $param["UinAccount"];
}
if (array_key_exists("SubBizType",$param) and $param["SubBizType"] !== null) {
$this->SubBizType = $param["SubBizType"];
}
if (array_key_exists("ModelName",$param) and $param["ModelName"] !== null) {
$this->ModelName = $param["ModelName"];
}
if (array_key_exists("StartTime",$param) and $param["StartTime"] !== null) {
$this->StartTime = $param["StartTime"];
}
if (array_key_exists("EndTime",$param) and $param["EndTime"] !== null) {
$this->EndTime = $param["EndTime"];
}
if (array_key_exists("AppBizIds",$param) and $param["AppBizIds"] !== null) {
$this->AppBizIds = $param["AppBizIds"];
}
} | For internal only. DO NOT USE IT. | deserialize | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Lke/V20231130/Models/DescribeSearchStatsGraphRequest.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/DescribeSearchStatsGraphRequest.php | Apache-2.0 |
function __construct()
{
} | @param string $Content 内容
@param string $BotAppKey 应用appKey | __construct | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Lke/V20231130/Models/IsTransferIntentRequest.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/IsTransferIntentRequest.php | Apache-2.0 |
public function deserialize($param)
{
if ($param === null) {
return;
}
if (array_key_exists("Content",$param) and $param["Content"] !== null) {
$this->Content = $param["Content"];
}
if (array_key_exists("BotAppKey",$param) and $param["BotAppKey"] !== null) {
$this->BotAppKey = $param["BotAppKey"];
}
} | For internal only. DO NOT USE IT. | deserialize | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Lke/V20231130/Models/IsTransferIntentRequest.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/IsTransferIntentRequest.php | Apache-2.0 |
function __construct()
{
} | @param string $BotBizId 应用ID
@param string $LabelName 属性名称
@param string $AttributeBizId 属性ID
@param string $LoginUin 登录用户主账号(集成商模式必填)
@param string $LoginSubAccountUin 登录用户子账号(集成商模式必填)
@param string $LastLabelBizId 滚动加载,最后一个属性标签ID | __construct | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Lke/V20231130/Models/CheckAttributeLabelExistRequest.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/CheckAttributeLabelExistRequest.php | Apache-2.0 |
public function deserialize($param)
{
if ($param === null) {
return;
}
if (array_key_exists("BotBizId",$param) and $param["BotBizId"] !== null) {
$this->BotBizId = $param["BotBizId"];
}
if (array_key_exists("LabelName",$param) and $param["LabelName"] !== null) {
$this->LabelName = $param["LabelName"];
}
if (array_key_exists("AttributeBizId",$param) and $param["AttributeBizId"] !== null) {
$this->AttributeBizId = $param["AttributeBizId"];
}
if (array_key_exists("LoginUin",$param) and $param["LoginUin"] !== null) {
$this->LoginUin = $param["LoginUin"];
}
if (array_key_exists("LoginSubAccountUin",$param) and $param["LoginSubAccountUin"] !== null) {
$this->LoginSubAccountUin = $param["LoginSubAccountUin"];
}
if (array_key_exists("LastLabelBizId",$param) and $param["LastLabelBizId"] !== null) {
$this->LastLabelBizId = $param["LastLabelBizId"];
}
} | For internal only. DO NOT USE IT. | deserialize | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Lke/V20231130/Models/CheckAttributeLabelExistRequest.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/CheckAttributeLabelExistRequest.php | Apache-2.0 |
public function deserialize($param)
{
if ($param === null) {
return;
}
if (array_key_exists("X",$param) and $param["X"] !== null) {
$this->X = $param["X"];
}
if (array_key_exists("Y",$param) and $param["Y"] !== null) {
$this->Y = $param["Y"];
}
} | For internal only. DO NOT USE IT. | deserialize | php | TencentCloud/tencentcloud-sdk-php | src/TencentCloud/Lke/V20231130/Models/Stat.php | https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/Stat.php | Apache-2.0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.