22 lines
607 B
TypeScript
22 lines
607 B
TypeScript
/**
|
|
* Defines string constants for authentication schemes supported by tunnel service APIs.
|
|
*/
|
|
export declare enum TunnelAuthenticationSchemes {
|
|
/**
|
|
* Authentication scheme for AAD (or Microsoft account) access tokens.
|
|
*/
|
|
Aad = "aad",
|
|
/**
|
|
* Authentication scheme for GitHub access tokens.
|
|
*/
|
|
GitHub = "github",
|
|
/**
|
|
* Authentication scheme for tunnel access tokens.
|
|
*/
|
|
Tunnel = "tunnel",
|
|
/**
|
|
* Authentication scheme for tunnelPlan access tokens.
|
|
*/
|
|
TunnelPlan = "tunnelplan"
|
|
}
|
|
//# sourceMappingURL=tunnelAuthenticationSchemes.d.ts.map
|