你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

MSIVmTokenCredentials class

提供有关 Azure 中预配的虚拟机上的托管服务标识令牌凭据的信息。

Extends

构造函数

MSIVmTokenCredentials(MSIVmOptions)

属性

apiVersion
clientId
httpMethod
identityId
msiEndpoint
objectId

继承属性

resource

Azure 资源终结点。

  • 默认为 Azure 资源管理器环境:AzureCloud。 "https://management.azure.com/"
  • 对于 ServiceManagement (ASM) :“https://management.core.windows.net/"
  • 对于 Azure KeyVault:“https://vault.azure.net"
  • 对于Azure Batch:“https://batch.core.windows.net"
  • 对于 Azure Active Directory Graph:“https://graph.windows.net"

方法

getToken()

准备 POST 请求并将其发送到 Azure VM 上托管的服务终结点,该服务终结点使用访问令牌进行响应。

继承的方法

parseTokenResponse(string)

将 tokenResponse json 字符串解析为 对象,并将第一个级别的属性转换为 camelCase。 此方法尝试标准化 tokenResponse

signRequest(WebResource)

使用身份验证标头对请求进行签名。

构造函数详细信息

MSIVmTokenCredentials(MSIVmOptions)

new MSIVmTokenCredentials(options?: MSIVmOptions)

参数

options
MSIVmOptions

属性详细信息

apiVersion

apiVersion: string

属性值

string

clientId

clientId?: string

属性值

string

httpMethod

httpMethod: HttpMethods

属性值

identityId

identityId?: string

属性值

string

msiEndpoint

msiEndpoint: string

属性值

string

objectId

objectId?: string

属性值

string

继承属性详细信息

resource

Azure 资源终结点。

  • 默认为 Azure 资源管理器环境:AzureCloud。 "https://management.azure.com/"
  • 对于 ServiceManagement (ASM) :“https://management.core.windows.net/"
  • 对于 Azure KeyVault:“https://vault.azure.net"
  • 对于Azure Batch:“https://batch.core.windows.net"
  • 对于 Azure Active Directory Graph:“https://graph.windows.net"
resource: string

属性值

string

继承自MSITokenCredentials.resource

方法详细信息

getToken()

准备 POST 请求并将其发送到 Azure VM 上托管的服务终结点,该服务终结点使用访问令牌进行响应。

function getToken(): Promise<MSITokenResponse>

返回

Promise<MSITokenResponse>

tokenResponse (tokenType 和 accessToken 的承诺是) 的两个重要属性。

继承的方法详细信息

parseTokenResponse(string)

将 tokenResponse json 字符串解析为 对象,并将第一个级别的属性转换为 camelCase。 此方法尝试标准化 tokenResponse

function parseTokenResponse(body: string): TokenResponse

参数

body

string

json 字符串

返回

TokenResponse

tokenResponse (tokenType 和 accessToken 是) 的两个重要属性。

继承自MSITokenCredentials.parseTokenResponse

signRequest(WebResource)

使用身份验证标头对请求进行签名。

function signRequest(webResource: WebResource): Promise<WebResource>

参数

webResource
WebResource

要签名的 WebResource。

返回

Promise<WebResource>

承诺与已签名的 WebResource。

继承自MSITokenCredentials.signRequest