tunnels 0.1.0

Dev Tunnels SDK
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// 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"#;