1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
// Generated from ../../../cs/src/Contracts/TunnelListByRegion.cs
package tunnels
// Tunnel list by region.
type TunnelListByRegion struct {
// Azure region name.
RegionName string `json:"regionName,omitempty"`
// Cluster id in the region.
ClusterID string `json:"clusterId,omitempty"`
// List of tunnels.
Value []TunnelV2 `json:"value,omitempty"`
// Error detail if getting list of tunnels in the region failed.
Error *ErrorDetail `json:"error,omitempty"`
}
|