你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
KeyCredential 类
- java.
lang. Object - com.
azure. core. credential. KeyCredential
- com.
public class KeyCredential
表示使用密钥进行身份验证的凭据。
构造函数摘要
构造函数 | 说明 |
---|---|
KeyCredential(String key) |
创建一个凭据,该凭据使用给定密钥授权请求。 |
方法摘要
修饰符和类型 | 方法和描述 |
---|---|
String |
getKey()
检索与此凭据关联的密钥。 |
Key |
update(String key)
轮换与此凭据关联的密钥。 |
方法继承自 java.lang.Object
构造函数详细信息
KeyCredential
public KeyCredential(String key)
创建一个凭据,该凭据使用给定密钥授权请求。
Parameters:
key
- 用于授权请求的密钥。
方法详细信息
getKey
public String getKey()
检索与此凭据关联的密钥。
Returns:
用于授权请求的密钥。
update
public KeyCredential update(String key)
轮换与此凭据关联的密钥。
Parameters:
key
- 要与此凭据关联的新密钥。
Returns:
已更新的
KeyCredential
对象。