// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
// Generated from ../../../cs/src/Contracts/TunnelAuthenticationSchemes.cs
// Defines string constants for authentication schemes supported by tunnel service APIs.
// Authentication scheme for AAD (or Microsoft account) access tokens.
pub const TUNNEL_AUTHENTICATION_SCHEMES_AAD: &str = r#"aad"#;
// Authentication scheme for GitHub access tokens.
pub const TUNNEL_AUTHENTICATION_SCHEMES_GITHUB: &str = r#"github"#;
// Authentication scheme for tunnel access tokens.
pub const TUNNEL_AUTHENTICATION_SCHEMES_TUNNEL: &str = r#"tunnel"#;
// Authentication scheme for tunnelPlan access tokens.
pub const TUNNEL_AUTHENTICATION_SCHEMES_TUNNEL_PLAN: &str = r#"tunnelplan"#;