1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
// Generated from ../../../cs/src/Contracts/Tunnel.cs
use chrono::{DateTime, Utc};
use crate::contracts::TunnelAccessControl;
use crate::contracts::TunnelEndpoint;
use crate::contracts::TunnelOptions;
use crate::contracts::TunnelPort;
use crate::contracts::TunnelStatus;
use serde::{Deserialize, Serialize};
use std::collections::HashMap;
// Data contract for tunnel objects managed through the tunnel service REST API.
#[derive(Clone, Debug, Deserialize, Serialize, Default)]
#[serde(rename_all(serialize = "camelCase", deserialize = "camelCase"))]
pub struct Tunnel {
// Gets or sets the ID of the cluster the tunnel was created in.
pub cluster_id: Option<String>,
// Gets or sets the generated ID of the tunnel, unique within the cluster.
pub tunnel_id: Option<String>,
// Gets or sets the optional short name (alias) of the tunnel.
//
// The name must be globally unique within the parent domain, and must be a valid
// subdomain.
pub name: Option<String>,
// Gets or sets the description of the tunnel.
pub description: Option<String>,
// Gets or sets the labels of the tunnel.
#[serde(skip_serializing_if = "Vec::is_empty", default)]
pub labels: Vec<String>,
// Gets or sets the optional parent domain of the tunnel, if it is not using the
// default parent domain.
pub domain: Option<String>,
// Gets or sets a dictionary mapping from scopes to tunnel access tokens.
pub access_tokens: Option<HashMap<String, String>>,
// Gets or sets access control settings for the tunnel.
//
// See `TunnelAccessControl` documentation for details about the access control model.
pub access_control: Option<TunnelAccessControl>,
// Gets or sets default options for the tunnel.
pub options: Option<TunnelOptions>,
// Gets or sets current connection status of the tunnel.
pub status: Option<TunnelStatus>,
// Gets or sets an array of endpoints where hosts are currently accepting client
// connections to the tunnel.
#[serde(skip_serializing_if = "Vec::is_empty", default)]
pub endpoints: Vec<TunnelEndpoint>,
// Gets or sets a list of ports in the tunnel.
//
// This optional property enables getting info about all ports in a tunnel at the same
// time as getting tunnel info, or creating one or more ports at the same time as
// creating a tunnel. It is omitted when listing (multiple) tunnels, or when updating
// tunnel properties. (For the latter, use APIs to create/update/delete individual
// ports instead.)
#[serde(skip_serializing_if = "Vec::is_empty", default)]
pub ports: Vec<TunnelPort>,
// Gets or sets the time in UTC of tunnel creation.
pub created: Option<DateTime<Utc>>,
// Gets or the time the tunnel will be deleted if it is not used or updated.
pub expiration: Option<DateTime<Utc>>,
// Gets or the custom amount of time the tunnel will be valid if it is not used or
// updated in seconds.
pub custom_expiration: Option<u32>,
}