1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
// Generated from ../../../cs/src/Contracts/TunnelAuthenticationSchemes.cs
package tunnels
// Defines string constants for authentication schemes supported by tunnel service APIs.
type TunnelAuthenticationSchemes []TunnelAuthenticationScheme
type TunnelAuthenticationScheme string
const (
// Authentication scheme for AAD (or Microsoft account) access tokens.
TunnelAuthenticationSchemeAad TunnelAuthenticationScheme = "aad"
// Authentication scheme for GitHub access tokens.
TunnelAuthenticationSchemeGitHub TunnelAuthenticationScheme = "github"
// Authentication scheme for tunnel access tokens.
TunnelAuthenticationSchemeTunnel TunnelAuthenticationScheme = "tunnel"
// Authentication scheme for tunnelPlan access tokens.
TunnelAuthenticationSchemeTunnelPlan TunnelAuthenticationScheme = "tunnelplan"
)
|