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 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855
|
package network
// Copyright (c) Microsoft and contributors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
//
// See the License for the specific language governing permissions and
// limitations under the License.
//
// Code generated by Microsoft (R) AutoRest Code Generator 0.14.0.0
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
import (
"github.com/Azure/go-autorest/autorest"
"github.com/Azure/go-autorest/autorest/to"
"net/http"
)
// ApplicationGatewayCookieBasedAffinity enumerates the values for application
// gateway cookie based affinity.
type ApplicationGatewayCookieBasedAffinity string
const (
// Disabled specifies the disabled state for application gateway cookie
// based affinity.
Disabled ApplicationGatewayCookieBasedAffinity = "Disabled"
// Enabled specifies the enabled state for application gateway cookie
// based affinity.
Enabled ApplicationGatewayCookieBasedAffinity = "Enabled"
)
// ApplicationGatewayOperationalState enumerates the values for application
// gateway operational state.
type ApplicationGatewayOperationalState string
const (
// Running specifies the running state for application gateway operational
// state.
Running ApplicationGatewayOperationalState = "Running"
// Starting specifies the starting state for application gateway
// operational state.
Starting ApplicationGatewayOperationalState = "Starting"
// Stopped specifies the stopped state for application gateway operational
// state.
Stopped ApplicationGatewayOperationalState = "Stopped"
// Stopping specifies the stopping state for application gateway
// operational state.
Stopping ApplicationGatewayOperationalState = "Stopping"
)
// ApplicationGatewayProtocol enumerates the values for application gateway
// protocol.
type ApplicationGatewayProtocol string
const (
// HTTP specifies the http state for application gateway protocol.
HTTP ApplicationGatewayProtocol = "Http"
// HTTPS specifies the https state for application gateway protocol.
HTTPS ApplicationGatewayProtocol = "Https"
)
// ApplicationGatewayRequestRoutingRuleType enumerates the values for
// application gateway request routing rule type.
type ApplicationGatewayRequestRoutingRuleType string
const (
// Basic specifies the basic state for application gateway request routing
// rule type.
Basic ApplicationGatewayRequestRoutingRuleType = "Basic"
// PathBasedRouting specifies the path based routing state for application
// gateway request routing rule type.
PathBasedRouting ApplicationGatewayRequestRoutingRuleType = "PathBasedRouting"
)
// ApplicationGatewaySkuName enumerates the values for application gateway sku
// name.
type ApplicationGatewaySkuName string
const (
// StandardLarge specifies the standard large state for application
// gateway sku name.
StandardLarge ApplicationGatewaySkuName = "Standard_Large"
// StandardMedium specifies the standard medium state for application
// gateway sku name.
StandardMedium ApplicationGatewaySkuName = "Standard_Medium"
// StandardSmall specifies the standard small state for application
// gateway sku name.
StandardSmall ApplicationGatewaySkuName = "Standard_Small"
)
// ApplicationGatewayTier enumerates the values for application gateway tier.
type ApplicationGatewayTier string
const (
// Standard specifies the standard state for application gateway tier.
Standard ApplicationGatewayTier = "Standard"
)
// AuthorizationUseStatus enumerates the values for authorization use status.
type AuthorizationUseStatus string
const (
// Available specifies the available state for authorization use status.
Available AuthorizationUseStatus = "Available"
// InUse specifies the in use state for authorization use status.
InUse AuthorizationUseStatus = "InUse"
)
// ExpressRouteCircuitPeeringAdvertisedPublicPrefixState enumerates the values
// for express route circuit peering advertised public prefix state.
type ExpressRouteCircuitPeeringAdvertisedPublicPrefixState string
const (
// Configured specifies the configured state for express route circuit
// peering advertised public prefix state.
Configured ExpressRouteCircuitPeeringAdvertisedPublicPrefixState = "Configured"
// Configuring specifies the configuring state for express route circuit
// peering advertised public prefix state.
Configuring ExpressRouteCircuitPeeringAdvertisedPublicPrefixState = "Configuring"
// NotConfigured specifies the not configured state for express route
// circuit peering advertised public prefix state.
NotConfigured ExpressRouteCircuitPeeringAdvertisedPublicPrefixState = "NotConfigured"
// ValidationNeeded specifies the validation needed state for express
// route circuit peering advertised public prefix state.
ValidationNeeded ExpressRouteCircuitPeeringAdvertisedPublicPrefixState = "ValidationNeeded"
)
// ExpressRouteCircuitPeeringState enumerates the values for express route
// circuit peering state.
type ExpressRouteCircuitPeeringState string
const (
// ExpressRouteCircuitPeeringStateDisabled specifies the express route
// circuit peering state disabled state for express route circuit peering
// state.
ExpressRouteCircuitPeeringStateDisabled ExpressRouteCircuitPeeringState = "Disabled"
// ExpressRouteCircuitPeeringStateEnabled specifies the express route
// circuit peering state enabled state for express route circuit peering
// state.
ExpressRouteCircuitPeeringStateEnabled ExpressRouteCircuitPeeringState = "Enabled"
)
// ExpressRouteCircuitPeeringType enumerates the values for express route
// circuit peering type.
type ExpressRouteCircuitPeeringType string
const (
// AzurePrivatePeering specifies the azure private peering state for
// express route circuit peering type.
AzurePrivatePeering ExpressRouteCircuitPeeringType = "AzurePrivatePeering"
// AzurePublicPeering specifies the azure public peering state for express
// route circuit peering type.
AzurePublicPeering ExpressRouteCircuitPeeringType = "AzurePublicPeering"
// MicrosoftPeering specifies the microsoft peering state for express
// route circuit peering type.
MicrosoftPeering ExpressRouteCircuitPeeringType = "MicrosoftPeering"
)
// ExpressRouteCircuitSkuFamily enumerates the values for express route
// circuit sku family.
type ExpressRouteCircuitSkuFamily string
const (
// MeteredData specifies the metered data state for express route circuit
// sku family.
MeteredData ExpressRouteCircuitSkuFamily = "MeteredData"
// UnlimitedData specifies the unlimited data state for express route
// circuit sku family.
UnlimitedData ExpressRouteCircuitSkuFamily = "UnlimitedData"
)
// ExpressRouteCircuitSkuTier enumerates the values for express route circuit
// sku tier.
type ExpressRouteCircuitSkuTier string
const (
// ExpressRouteCircuitSkuTierPremium specifies the express route circuit
// sku tier premium state for express route circuit sku tier.
ExpressRouteCircuitSkuTierPremium ExpressRouteCircuitSkuTier = "Premium"
// ExpressRouteCircuitSkuTierStandard specifies the express route circuit
// sku tier standard state for express route circuit sku tier.
ExpressRouteCircuitSkuTierStandard ExpressRouteCircuitSkuTier = "Standard"
)
// IPAllocationMethod enumerates the values for ip allocation method.
type IPAllocationMethod string
const (
// Dynamic specifies the dynamic state for ip allocation method.
Dynamic IPAllocationMethod = "Dynamic"
// Static specifies the static state for ip allocation method.
Static IPAllocationMethod = "Static"
)
// LoadDistribution enumerates the values for load distribution.
type LoadDistribution string
const (
// Default specifies the default state for load distribution.
Default LoadDistribution = "Default"
// SourceIP specifies the source ip state for load distribution.
SourceIP LoadDistribution = "SourceIP"
// SourceIPProtocol specifies the source ip protocol state for load
// distribution.
SourceIPProtocol LoadDistribution = "SourceIPProtocol"
)
// OperationStatus enumerates the values for operation status.
type OperationStatus string
const (
// Failed specifies the failed state for operation status.
Failed OperationStatus = "Failed"
// InProgress specifies the in progress state for operation status.
InProgress OperationStatus = "InProgress"
// Succeeded specifies the succeeded state for operation status.
Succeeded OperationStatus = "Succeeded"
)
// ProbeProtocol enumerates the values for probe protocol.
type ProbeProtocol string
const (
// ProbeProtocolHTTP specifies the probe protocol http state for probe
// protocol.
ProbeProtocolHTTP ProbeProtocol = "Http"
// ProbeProtocolTCP specifies the probe protocol tcp state for probe
// protocol.
ProbeProtocolTCP ProbeProtocol = "Tcp"
)
// ProcessorArchitecture enumerates the values for processor architecture.
type ProcessorArchitecture string
const (
// Amd64 specifies the amd 64 state for processor architecture.
Amd64 ProcessorArchitecture = "Amd64"
// X86 specifies the x86 state for processor architecture.
X86 ProcessorArchitecture = "X86"
)
// RouteNextHopType enumerates the values for route next hop type.
type RouteNextHopType string
const (
// RouteNextHopTypeInternet specifies the route next hop type internet
// state for route next hop type.
RouteNextHopTypeInternet RouteNextHopType = "Internet"
// RouteNextHopTypeNone specifies the route next hop type none state for
// route next hop type.
RouteNextHopTypeNone RouteNextHopType = "None"
// RouteNextHopTypeVirtualAppliance specifies the route next hop type
// virtual appliance state for route next hop type.
RouteNextHopTypeVirtualAppliance RouteNextHopType = "VirtualAppliance"
// RouteNextHopTypeVirtualNetworkGateway specifies the route next hop type
// virtual network gateway state for route next hop type.
RouteNextHopTypeVirtualNetworkGateway RouteNextHopType = "VirtualNetworkGateway"
// RouteNextHopTypeVnetLocal specifies the route next hop type vnet local
// state for route next hop type.
RouteNextHopTypeVnetLocal RouteNextHopType = "VnetLocal"
)
// SecurityRuleAccess enumerates the values for security rule access.
type SecurityRuleAccess string
const (
// Allow specifies the allow state for security rule access.
Allow SecurityRuleAccess = "Allow"
// Deny specifies the deny state for security rule access.
Deny SecurityRuleAccess = "Deny"
)
// SecurityRuleDirection enumerates the values for security rule direction.
type SecurityRuleDirection string
const (
// Inbound specifies the inbound state for security rule direction.
Inbound SecurityRuleDirection = "Inbound"
// Outbound specifies the outbound state for security rule direction.
Outbound SecurityRuleDirection = "Outbound"
)
// SecurityRuleProtocol enumerates the values for security rule protocol.
type SecurityRuleProtocol string
const (
// Asterisk specifies the asterisk state for security rule protocol.
Asterisk SecurityRuleProtocol = "*"
// TCP specifies the tcp state for security rule protocol.
TCP SecurityRuleProtocol = "Tcp"
// UDP specifies the udp state for security rule protocol.
UDP SecurityRuleProtocol = "Udp"
)
// ServiceProviderProvisioningState enumerates the values for service provider
// provisioning state.
type ServiceProviderProvisioningState string
const (
// Deprovisioning specifies the deprovisioning state for service provider
// provisioning state.
Deprovisioning ServiceProviderProvisioningState = "Deprovisioning"
// NotProvisioned specifies the not provisioned state for service provider
// provisioning state.
NotProvisioned ServiceProviderProvisioningState = "NotProvisioned"
// Provisioned specifies the provisioned state for service provider
// provisioning state.
Provisioned ServiceProviderProvisioningState = "Provisioned"
// Provisioning specifies the provisioning state for service provider
// provisioning state.
Provisioning ServiceProviderProvisioningState = "Provisioning"
)
// TransportProtocol enumerates the values for transport protocol.
type TransportProtocol string
const (
// TransportProtocolTCP specifies the transport protocol tcp state for
// transport protocol.
TransportProtocolTCP TransportProtocol = "Tcp"
// TransportProtocolUDP specifies the transport protocol udp state for
// transport protocol.
TransportProtocolUDP TransportProtocol = "Udp"
)
// UsageUnit enumerates the values for usage unit.
type UsageUnit string
const (
// Count specifies the count state for usage unit.
Count UsageUnit = "Count"
)
// VirtualNetworkGatewayConnectionStatus enumerates the values for virtual
// network gateway connection status.
type VirtualNetworkGatewayConnectionStatus string
const (
// Connected specifies the connected state for virtual network gateway
// connection status.
Connected VirtualNetworkGatewayConnectionStatus = "Connected"
// Connecting specifies the connecting state for virtual network gateway
// connection status.
Connecting VirtualNetworkGatewayConnectionStatus = "Connecting"
// NotConnected specifies the not connected state for virtual network
// gateway connection status.
NotConnected VirtualNetworkGatewayConnectionStatus = "NotConnected"
// Unknown specifies the unknown state for virtual network gateway
// connection status.
Unknown VirtualNetworkGatewayConnectionStatus = "Unknown"
)
// VirtualNetworkGatewayConnectionType enumerates the values for virtual
// network gateway connection type.
type VirtualNetworkGatewayConnectionType string
const (
// ExpressRoute specifies the express route state for virtual network
// gateway connection type.
ExpressRoute VirtualNetworkGatewayConnectionType = "ExpressRoute"
// IPsec specifies the i psec state for virtual network gateway connection
// type.
IPsec VirtualNetworkGatewayConnectionType = "IPsec"
// Vnet2Vnet specifies the vnet 2 vnet state for virtual network gateway
// connection type.
Vnet2Vnet VirtualNetworkGatewayConnectionType = "Vnet2Vnet"
// VPNClient specifies the vpn client state for virtual network gateway
// connection type.
VPNClient VirtualNetworkGatewayConnectionType = "VPNClient"
)
// VirtualNetworkGatewaySkuName enumerates the values for virtual network
// gateway sku name.
type VirtualNetworkGatewaySkuName string
const (
// VirtualNetworkGatewaySkuNameBasic specifies the virtual network gateway
// sku name basic state for virtual network gateway sku name.
VirtualNetworkGatewaySkuNameBasic VirtualNetworkGatewaySkuName = "Basic"
// VirtualNetworkGatewaySkuNameHighPerformance specifies the virtual
// network gateway sku name high performance state for virtual network
// gateway sku name.
VirtualNetworkGatewaySkuNameHighPerformance VirtualNetworkGatewaySkuName = "HighPerformance"
// VirtualNetworkGatewaySkuNameStandard specifies the virtual network
// gateway sku name standard state for virtual network gateway sku name.
VirtualNetworkGatewaySkuNameStandard VirtualNetworkGatewaySkuName = "Standard"
)
// VirtualNetworkGatewaySkuTier enumerates the values for virtual network
// gateway sku tier.
type VirtualNetworkGatewaySkuTier string
const (
// VirtualNetworkGatewaySkuTierBasic specifies the virtual network gateway
// sku tier basic state for virtual network gateway sku tier.
VirtualNetworkGatewaySkuTierBasic VirtualNetworkGatewaySkuTier = "Basic"
// VirtualNetworkGatewaySkuTierHighPerformance specifies the virtual
// network gateway sku tier high performance state for virtual network
// gateway sku tier.
VirtualNetworkGatewaySkuTierHighPerformance VirtualNetworkGatewaySkuTier = "HighPerformance"
// VirtualNetworkGatewaySkuTierStandard specifies the virtual network
// gateway sku tier standard state for virtual network gateway sku tier.
VirtualNetworkGatewaySkuTierStandard VirtualNetworkGatewaySkuTier = "Standard"
)
// VirtualNetworkGatewayType enumerates the values for virtual network gateway
// type.
type VirtualNetworkGatewayType string
const (
// VirtualNetworkGatewayTypeExpressRoute specifies the virtual network
// gateway type express route state for virtual network gateway type.
VirtualNetworkGatewayTypeExpressRoute VirtualNetworkGatewayType = "ExpressRoute"
// VirtualNetworkGatewayTypeVpn specifies the virtual network gateway type
// vpn state for virtual network gateway type.
VirtualNetworkGatewayTypeVpn VirtualNetworkGatewayType = "Vpn"
)
// VpnType enumerates the values for vpn type.
type VpnType string
const (
// PolicyBased specifies the policy based state for vpn type.
PolicyBased VpnType = "PolicyBased"
// RouteBased specifies the route based state for vpn type.
RouteBased VpnType = "RouteBased"
)
// AddressSpace is addressSpace contains an array of IP address ranges that
// can be used by subnets
type AddressSpace struct {
AddressPrefixes *[]string `json:"addressPrefixes,omitempty"`
}
// ApplicationGateway is applicationGateways resource
type ApplicationGateway struct {
autorest.Response `json:"-"`
ID *string `json:"id,omitempty"`
Name *string `json:"name,omitempty"`
Type *string `json:"type,omitempty"`
Location *string `json:"location,omitempty"`
Tags *map[string]*string `json:"tags,omitempty"`
Properties *ApplicationGatewayPropertiesFormat `json:"properties,omitempty"`
Etag *string `json:"etag,omitempty"`
}
// ApplicationGatewayBackendAddress is backend Address of application gateway
type ApplicationGatewayBackendAddress struct {
Fqdn *string `json:"fqdn,omitempty"`
IPAddress *string `json:"ipAddress,omitempty"`
}
// ApplicationGatewayBackendAddressPool is backend Address Pool of application
// gateway
type ApplicationGatewayBackendAddressPool struct {
ID *string `json:"id,omitempty"`
Properties *ApplicationGatewayBackendAddressPoolPropertiesFormat `json:"properties,omitempty"`
Name *string `json:"name,omitempty"`
Etag *string `json:"etag,omitempty"`
}
// ApplicationGatewayBackendAddressPoolPropertiesFormat is properties of
// Backend Address Pool of application gateway
type ApplicationGatewayBackendAddressPoolPropertiesFormat struct {
BackendIPConfigurations *[]SubResource `json:"backendIPConfigurations,omitempty"`
BackendAddresses *[]ApplicationGatewayBackendAddress `json:"backendAddresses,omitempty"`
ProvisioningState *string `json:"provisioningState,omitempty"`
}
// ApplicationGatewayBackendHTTPSettings is backend address pool settings of
// application gateway
type ApplicationGatewayBackendHTTPSettings struct {
ID *string `json:"id,omitempty"`
Properties *ApplicationGatewayBackendHTTPSettingsPropertiesFormat `json:"properties,omitempty"`
Name *string `json:"name,omitempty"`
Etag *string `json:"etag,omitempty"`
}
// ApplicationGatewayBackendHTTPSettingsPropertiesFormat is properties of
// Backend address pool settings of application gateway
type ApplicationGatewayBackendHTTPSettingsPropertiesFormat struct {
Port *int32 `json:"port,omitempty"`
Protocol ApplicationGatewayProtocol `json:"protocol,omitempty"`
CookieBasedAffinity ApplicationGatewayCookieBasedAffinity `json:"cookieBasedAffinity,omitempty"`
RequestTimeout *int32 `json:"requestTimeout,omitempty"`
Probe *SubResource `json:"probe,omitempty"`
ProvisioningState *string `json:"provisioningState,omitempty"`
}
// ApplicationGatewayFrontendIPConfiguration is frontend IP configuration of
// application gateway
type ApplicationGatewayFrontendIPConfiguration struct {
ID *string `json:"id,omitempty"`
Properties *ApplicationGatewayFrontendIPConfigurationPropertiesFormat `json:"properties,omitempty"`
Name *string `json:"name,omitempty"`
Etag *string `json:"etag,omitempty"`
}
// ApplicationGatewayFrontendIPConfigurationPropertiesFormat is properties of
// Frontend IP configuration of application gateway
type ApplicationGatewayFrontendIPConfigurationPropertiesFormat struct {
PrivateIPAddress *string `json:"privateIPAddress,omitempty"`
PrivateIPAllocationMethod IPAllocationMethod `json:"privateIPAllocationMethod,omitempty"`
Subnet *SubResource `json:"subnet,omitempty"`
PublicIPAddress *SubResource `json:"publicIPAddress,omitempty"`
ProvisioningState *string `json:"provisioningState,omitempty"`
}
// ApplicationGatewayFrontendPort is frontend Port of application gateway
type ApplicationGatewayFrontendPort struct {
ID *string `json:"id,omitempty"`
Properties *ApplicationGatewayFrontendPortPropertiesFormat `json:"properties,omitempty"`
Name *string `json:"name,omitempty"`
Etag *string `json:"etag,omitempty"`
}
// ApplicationGatewayFrontendPortPropertiesFormat is properties of Frontend
// Port of application gateway
type ApplicationGatewayFrontendPortPropertiesFormat struct {
Port *int32 `json:"port,omitempty"`
ProvisioningState *string `json:"provisioningState,omitempty"`
}
// ApplicationGatewayHTTPListener is http listener of application gateway
type ApplicationGatewayHTTPListener struct {
ID *string `json:"id,omitempty"`
Properties *ApplicationGatewayHTTPListenerPropertiesFormat `json:"properties,omitempty"`
Name *string `json:"name,omitempty"`
Etag *string `json:"etag,omitempty"`
}
// ApplicationGatewayHTTPListenerPropertiesFormat is properties of Http
// listener of application gateway
type ApplicationGatewayHTTPListenerPropertiesFormat struct {
FrontendIPConfiguration *SubResource `json:"frontendIPConfiguration,omitempty"`
FrontendPort *SubResource `json:"frontendPort,omitempty"`
Protocol ApplicationGatewayProtocol `json:"protocol,omitempty"`
HostName *string `json:"hostName,omitempty"`
SslCertificate *SubResource `json:"sslCertificate,omitempty"`
RequireServerNameIndication *string `json:"requireServerNameIndication,omitempty"`
ProvisioningState *string `json:"provisioningState,omitempty"`
}
// ApplicationGatewayIPConfiguration is iP configuration of application gateway
type ApplicationGatewayIPConfiguration struct {
ID *string `json:"id,omitempty"`
Properties *ApplicationGatewayIPConfigurationPropertiesFormat `json:"properties,omitempty"`
Name *string `json:"name,omitempty"`
Etag *string `json:"etag,omitempty"`
}
// ApplicationGatewayIPConfigurationPropertiesFormat is properties of IP
// configuration of application gateway
type ApplicationGatewayIPConfigurationPropertiesFormat struct {
Subnet *SubResource `json:"subnet,omitempty"`
ProvisioningState *string `json:"provisioningState,omitempty"`
}
// ApplicationGatewayListResult is response for ListLoadBalancers Api service
// call
type ApplicationGatewayListResult struct {
autorest.Response `json:"-"`
Value *[]ApplicationGateway `json:"value,omitempty"`
NextLink *string `json:"nextLink,omitempty"`
}
// ApplicationGatewayListResultPreparer prepares a request to retrieve the next set of results. It returns
// nil if no more results exist.
func (client ApplicationGatewayListResult) ApplicationGatewayListResultPreparer() (*http.Request, error) {
if client.NextLink == nil || len(to.String(client.NextLink)) <= 0 {
return nil, nil
}
return autorest.Prepare(&http.Request{},
autorest.AsJSON(),
autorest.AsGet(),
autorest.WithBaseURL(to.String(client.NextLink)))
}
// ApplicationGatewayPathRule is path rule of URL path map of application
// gateway
type ApplicationGatewayPathRule struct {
ID *string `json:"id,omitempty"`
Properties *ApplicationGatewayPathRulePropertiesFormat `json:"properties,omitempty"`
Name *string `json:"name,omitempty"`
Etag *string `json:"etag,omitempty"`
}
// ApplicationGatewayPathRulePropertiesFormat is properties of probe of
// application gateway
type ApplicationGatewayPathRulePropertiesFormat struct {
Paths *[]string `json:"paths,omitempty"`
BackendAddressPool *SubResource `json:"backendAddressPool,omitempty"`
BackendHTTPSettings *SubResource `json:"backendHttpSettings,omitempty"`
ProvisioningState *string `json:"provisioningState,omitempty"`
}
// ApplicationGatewayProbe is probe of application gateway
type ApplicationGatewayProbe struct {
ID *string `json:"id,omitempty"`
Properties *ApplicationGatewayProbePropertiesFormat `json:"properties,omitempty"`
Name *string `json:"name,omitempty"`
Etag *string `json:"etag,omitempty"`
}
// ApplicationGatewayProbePropertiesFormat is properties of probe of
// application gateway
type ApplicationGatewayProbePropertiesFormat struct {
Protocol ApplicationGatewayProtocol `json:"protocol,omitempty"`
Host *string `json:"host,omitempty"`
Path *string `json:"path,omitempty"`
Interval *int32 `json:"interval,omitempty"`
Timeout *int32 `json:"timeout,omitempty"`
UnhealthyThreshold *int32 `json:"unhealthyThreshold,omitempty"`
ProvisioningState *string `json:"provisioningState,omitempty"`
}
// ApplicationGatewayPropertiesFormat is properties of Application Gateway
type ApplicationGatewayPropertiesFormat struct {
Sku *ApplicationGatewaySku `json:"sku,omitempty"`
OperationalState ApplicationGatewayOperationalState `json:"operationalState,omitempty"`
GatewayIPConfigurations *[]ApplicationGatewayIPConfiguration `json:"gatewayIPConfigurations,omitempty"`
SslCertificates *[]ApplicationGatewaySslCertificate `json:"sslCertificates,omitempty"`
FrontendIPConfigurations *[]ApplicationGatewayFrontendIPConfiguration `json:"frontendIPConfigurations,omitempty"`
FrontendPorts *[]ApplicationGatewayFrontendPort `json:"frontendPorts,omitempty"`
Probes *[]ApplicationGatewayProbe `json:"probes,omitempty"`
BackendAddressPools *[]ApplicationGatewayBackendAddressPool `json:"backendAddressPools,omitempty"`
BackendHTTPSettingsCollection *[]ApplicationGatewayBackendHTTPSettings `json:"backendHttpSettingsCollection,omitempty"`
HTTPListeners *[]ApplicationGatewayHTTPListener `json:"httpListeners,omitempty"`
URLPathMaps *[]ApplicationGatewayURLPathMap `json:"urlPathMaps,omitempty"`
RequestRoutingRules *[]ApplicationGatewayRequestRoutingRule `json:"requestRoutingRules,omitempty"`
ResourceGUID *string `json:"resourceGuid,omitempty"`
ProvisioningState *string `json:"provisioningState,omitempty"`
}
// ApplicationGatewayRequestRoutingRule is request routing rule of application
// gateway
type ApplicationGatewayRequestRoutingRule struct {
ID *string `json:"id,omitempty"`
Properties *ApplicationGatewayRequestRoutingRulePropertiesFormat `json:"properties,omitempty"`
Name *string `json:"name,omitempty"`
Etag *string `json:"etag,omitempty"`
}
// ApplicationGatewayRequestRoutingRulePropertiesFormat is properties of
// Request routing rule of application gateway
type ApplicationGatewayRequestRoutingRulePropertiesFormat struct {
RuleType ApplicationGatewayRequestRoutingRuleType `json:"ruleType,omitempty"`
BackendAddressPool *SubResource `json:"backendAddressPool,omitempty"`
BackendHTTPSettings *SubResource `json:"backendHttpSettings,omitempty"`
HTTPListener *SubResource `json:"httpListener,omitempty"`
URLPathMap *SubResource `json:"urlPathMap,omitempty"`
ProvisioningState *string `json:"provisioningState,omitempty"`
}
// ApplicationGatewaySku is sKU of application gateway
type ApplicationGatewaySku struct {
Name ApplicationGatewaySkuName `json:"name,omitempty"`
Tier ApplicationGatewayTier `json:"tier,omitempty"`
Capacity *int32 `json:"capacity,omitempty"`
}
// ApplicationGatewaySslCertificate is sSL certificates of application gateway
type ApplicationGatewaySslCertificate struct {
ID *string `json:"id,omitempty"`
Properties *ApplicationGatewaySslCertificatePropertiesFormat `json:"properties,omitempty"`
Name *string `json:"name,omitempty"`
Etag *string `json:"etag,omitempty"`
}
// ApplicationGatewaySslCertificatePropertiesFormat is properties of SSL
// certificates of application gateway
type ApplicationGatewaySslCertificatePropertiesFormat struct {
Data *string `json:"data,omitempty"`
Password *string `json:"password,omitempty"`
PublicCertData *string `json:"publicCertData,omitempty"`
ProvisioningState *string `json:"provisioningState,omitempty"`
}
// ApplicationGatewayURLPathMap is urlPathMap of application gateway
type ApplicationGatewayURLPathMap struct {
ID *string `json:"id,omitempty"`
Properties *ApplicationGatewayURLPathMapPropertiesFormat `json:"properties,omitempty"`
Name *string `json:"name,omitempty"`
Etag *string `json:"etag,omitempty"`
}
// ApplicationGatewayURLPathMapPropertiesFormat is properties of probe of
// application gateway
type ApplicationGatewayURLPathMapPropertiesFormat struct {
DefaultBackendAddressPool *SubResource `json:"defaultBackendAddressPool,omitempty"`
DefaultBackendHTTPSettings *SubResource `json:"defaultBackendHttpSettings,omitempty"`
PathRules *[]ApplicationGatewayPathRule `json:"pathRules,omitempty"`
ProvisioningState *string `json:"provisioningState,omitempty"`
}
// AuthorizationListResult is response for ListAuthorizations Api service
// callRetrieves all authorizations that belongs to an ExpressRouteCircuit
type AuthorizationListResult struct {
autorest.Response `json:"-"`
Value *[]ExpressRouteCircuitAuthorization `json:"value,omitempty"`
NextLink *string `json:"nextLink,omitempty"`
}
// AuthorizationListResultPreparer prepares a request to retrieve the next set of results. It returns
// nil if no more results exist.
func (client AuthorizationListResult) AuthorizationListResultPreparer() (*http.Request, error) {
if client.NextLink == nil || len(to.String(client.NextLink)) <= 0 {
return nil, nil
}
return autorest.Prepare(&http.Request{},
autorest.AsJSON(),
autorest.AsGet(),
autorest.WithBaseURL(to.String(client.NextLink)))
}
// AuthorizationPropertiesFormat is
type AuthorizationPropertiesFormat struct {
AuthorizationKey *string `json:"authorizationKey,omitempty"`
AuthorizationUseStatus AuthorizationUseStatus `json:"authorizationUseStatus,omitempty"`
ProvisioningState *string `json:"provisioningState,omitempty"`
}
// AzureAsyncOperationResult is the response body contains the status of the
// specified asynchronous operation, indicating whether it has succeeded, is
// inprogress, or has failed. Note that this status is distinct from the HTTP
// status code returned for the Get Operation Status operation itself. If the
// asynchronous operation succeeded, the response body includes the HTTP
// status code for the successful request. If the asynchronous operation
// failed, the response body includes the HTTP status code for the failed
// request and error information regarding the failure.
type AzureAsyncOperationResult struct {
Status OperationStatus `json:"status,omitempty"`
Error *Error `json:"error,omitempty"`
}
// BackendAddressPool is pool of backend IP addresseses
type BackendAddressPool struct {
ID *string `json:"id,omitempty"`
Properties *BackendAddressPoolPropertiesFormat `json:"properties,omitempty"`
Name *string `json:"name,omitempty"`
Etag *string `json:"etag,omitempty"`
}
// BackendAddressPoolPropertiesFormat is properties of BackendAddressPool
type BackendAddressPoolPropertiesFormat struct {
BackendIPConfigurations *[]InterfaceIPConfiguration `json:"backendIPConfigurations,omitempty"`
LoadBalancingRules *[]SubResource `json:"loadBalancingRules,omitempty"`
OutboundNatRule *SubResource `json:"outboundNatRule,omitempty"`
ProvisioningState *string `json:"provisioningState,omitempty"`
}
// ConnectionResetSharedKey is
type ConnectionResetSharedKey struct {
autorest.Response `json:"-"`
KeyLength *int64 `json:"keyLength,omitempty"`
}
// ConnectionSharedKey is response for GetConnectionSharedKey Api servive call
type ConnectionSharedKey struct {
autorest.Response `json:"-"`
Value *string `json:"value,omitempty"`
}
// ConnectionSharedKeyResult is response for CheckConnectionSharedKey Api
// servive call
type ConnectionSharedKeyResult struct {
autorest.Response `json:"-"`
Value *string `json:"value,omitempty"`
}
// DhcpOptions is dHCPOptions contains an array of DNS servers available to
// VMs deployed in the virtual networkStandard DHCP option for a subnet
// overrides VNET DHCP options.
type DhcpOptions struct {
DNSServers *[]string `json:"dnsServers,omitempty"`
}
// DNSNameAvailabilityResult is response for CheckDnsNameAvailability Api
// servive call
type DNSNameAvailabilityResult struct {
autorest.Response `json:"-"`
Available *bool `json:"available,omitempty"`
}
// Error is
type Error struct {
Code *string `json:"code,omitempty"`
Message *string `json:"message,omitempty"`
Target *string `json:"target,omitempty"`
Details *[]ErrorDetails `json:"details,omitempty"`
InnerError *string `json:"innerError,omitempty"`
}
// ErrorDetails is
type ErrorDetails struct {
Code *string `json:"code,omitempty"`
Target *string `json:"target,omitempty"`
Message *string `json:"message,omitempty"`
}
// ExpressRouteCircuit is expressRouteCircuit resource
type ExpressRouteCircuit struct {
autorest.Response `json:"-"`
ID *string `json:"id,omitempty"`
Name *string `json:"name,omitempty"`
Type *string `json:"type,omitempty"`
Location *string `json:"location,omitempty"`
Tags *map[string]*string `json:"tags,omitempty"`
Sku *ExpressRouteCircuitSku `json:"sku,omitempty"`
Properties *ExpressRouteCircuitPropertiesFormat `json:"properties,omitempty"`
Etag *string `json:"etag,omitempty"`
}
// ExpressRouteCircuitArpTable is the arp table associated with the
// ExpressRouteCircuit
type ExpressRouteCircuitArpTable struct {
IPAddress *string `json:"ipAddress,omitempty"`
MacAddress *string `json:"macAddress,omitempty"`
}
// ExpressRouteCircuitAuthorization is authorization in a ExpressRouteCircuit
// resource
type ExpressRouteCircuitAuthorization struct {
autorest.Response `json:"-"`
ID *string `json:"id,omitempty"`
Properties *AuthorizationPropertiesFormat `json:"properties,omitempty"`
Name *string `json:"name,omitempty"`
Etag *string `json:"etag,omitempty"`
}
// ExpressRouteCircuitListResult is response for ListExpressRouteCircuit Api
// service call
type ExpressRouteCircuitListResult struct {
autorest.Response `json:"-"`
Value *[]ExpressRouteCircuit `json:"value,omitempty"`
NextLink *string `json:"nextLink,omitempty"`
}
// ExpressRouteCircuitListResultPreparer prepares a request to retrieve the next set of results. It returns
// nil if no more results exist.
func (client ExpressRouteCircuitListResult) ExpressRouteCircuitListResultPreparer() (*http.Request, error) {
if client.NextLink == nil || len(to.String(client.NextLink)) <= 0 {
return nil, nil
}
return autorest.Prepare(&http.Request{},
autorest.AsJSON(),
autorest.AsGet(),
autorest.WithBaseURL(to.String(client.NextLink)))
}
// ExpressRouteCircuitPeering is peering in a ExpressRouteCircuit resource
type ExpressRouteCircuitPeering struct {
autorest.Response `json:"-"`
ID *string `json:"id,omitempty"`
Properties *ExpressRouteCircuitPeeringPropertiesFormat `json:"properties,omitempty"`
Name *string `json:"name,omitempty"`
Etag *string `json:"etag,omitempty"`
}
// ExpressRouteCircuitPeeringConfig is specfies the peering config
type ExpressRouteCircuitPeeringConfig struct {
AdvertisedPublicPrefixes *[]string `json:"advertisedPublicPrefixes,omitempty"`
AdvertisedPublicPrefixesState ExpressRouteCircuitPeeringAdvertisedPublicPrefixState `json:"advertisedPublicPrefixesState,omitempty"`
CustomerASN *int32 `json:"customerASN,omitempty"`
RoutingRegistryName *string `json:"routingRegistryName,omitempty"`
}
// ExpressRouteCircuitPeeringListResult is response for ListPeering Api
// service callRetrieves all Peerings that belongs to an ExpressRouteCircuit
type ExpressRouteCircuitPeeringListResult struct {
autorest.Response `json:"-"`
Value *[]ExpressRouteCircuitPeering `json:"value,omitempty"`
NextLink *string `json:"nextLink,omitempty"`
}
// ExpressRouteCircuitPeeringListResultPreparer prepares a request to retrieve the next set of results. It returns
// nil if no more results exist.
func (client ExpressRouteCircuitPeeringListResult) ExpressRouteCircuitPeeringListResultPreparer() (*http.Request, error) {
if client.NextLink == nil || len(to.String(client.NextLink)) <= 0 {
return nil, nil
}
return autorest.Prepare(&http.Request{},
autorest.AsJSON(),
autorest.AsGet(),
autorest.WithBaseURL(to.String(client.NextLink)))
}
// ExpressRouteCircuitPeeringPropertiesFormat is
type ExpressRouteCircuitPeeringPropertiesFormat struct {
PeeringType ExpressRouteCircuitPeeringType `json:"peeringType,omitempty"`
State ExpressRouteCircuitPeeringState `json:"state,omitempty"`
AzureASN *int32 `json:"azureASN,omitempty"`
PeerASN *int32 `json:"peerASN,omitempty"`
PrimaryPeerAddressPrefix *string `json:"primaryPeerAddressPrefix,omitempty"`
SecondaryPeerAddressPrefix *string `json:"secondaryPeerAddressPrefix,omitempty"`
PrimaryAzurePort *string `json:"primaryAzurePort,omitempty"`
SecondaryAzurePort *string `json:"secondaryAzurePort,omitempty"`
SharedKey *string `json:"sharedKey,omitempty"`
VlanID *int32 `json:"vlanId,omitempty"`
MicrosoftPeeringConfig *ExpressRouteCircuitPeeringConfig `json:"microsoftPeeringConfig,omitempty"`
Stats *ExpressRouteCircuitStats `json:"stats,omitempty"`
ProvisioningState *string `json:"provisioningState,omitempty"`
}
// ExpressRouteCircuitPropertiesFormat is properties of ExpressRouteCircuit
type ExpressRouteCircuitPropertiesFormat struct {
CircuitProvisioningState *string `json:"circuitProvisioningState,omitempty"`
ServiceProviderProvisioningState ServiceProviderProvisioningState `json:"serviceProviderProvisioningState,omitempty"`
Authorizations *[]ExpressRouteCircuitAuthorization `json:"authorizations,omitempty"`
Peerings *[]ExpressRouteCircuitPeering `json:"peerings,omitempty"`
ServiceKey *string `json:"serviceKey,omitempty"`
ServiceProviderNotes *string `json:"serviceProviderNotes,omitempty"`
ServiceProviderProperties *ExpressRouteCircuitServiceProviderProperties `json:"serviceProviderProperties,omitempty"`
ProvisioningState *string `json:"provisioningState,omitempty"`
}
// ExpressRouteCircuitRoutesTable is the routes table associated with the
// ExpressRouteCircuit
type ExpressRouteCircuitRoutesTable struct {
AddressPrefix *string `json:"addressPrefix,omitempty"`
NextHopType RouteNextHopType `json:"nextHopType,omitempty"`
NextHopIP *string `json:"nextHopIP,omitempty"`
AsPath *string `json:"asPath,omitempty"`
}
// ExpressRouteCircuitsArpTableListResult is response for ListArpTable
// associated with the Express Route Circuits Api
type ExpressRouteCircuitsArpTableListResult struct {
autorest.Response `json:"-"`
Value *[]ExpressRouteCircuitArpTable `json:"value,omitempty"`
NextLink *string `json:"nextLink,omitempty"`
}
// ExpressRouteCircuitsArpTableListResultPreparer prepares a request to retrieve the next set of results. It returns
// nil if no more results exist.
func (client ExpressRouteCircuitsArpTableListResult) ExpressRouteCircuitsArpTableListResultPreparer() (*http.Request, error) {
if client.NextLink == nil || len(to.String(client.NextLink)) <= 0 {
return nil, nil
}
return autorest.Prepare(&http.Request{},
autorest.AsJSON(),
autorest.AsGet(),
autorest.WithBaseURL(to.String(client.NextLink)))
}
// ExpressRouteCircuitServiceProviderProperties is contains
// ServiceProviderProperties in an ExpressRouteCircuit
type ExpressRouteCircuitServiceProviderProperties struct {
ServiceProviderName *string `json:"serviceProviderName,omitempty"`
PeeringLocation *string `json:"peeringLocation,omitempty"`
BandwidthInMbps *int32 `json:"bandwidthInMbps,omitempty"`
}
// ExpressRouteCircuitSku is contains sku in an ExpressRouteCircuit
type ExpressRouteCircuitSku struct {
Name *string `json:"name,omitempty"`
Tier ExpressRouteCircuitSkuTier `json:"tier,omitempty"`
Family ExpressRouteCircuitSkuFamily `json:"family,omitempty"`
}
// ExpressRouteCircuitsRoutesTableListResult is response for ListRoutesTable
// associated with the Express Route Circuits Api
type ExpressRouteCircuitsRoutesTableListResult struct {
autorest.Response `json:"-"`
Value *[]ExpressRouteCircuitRoutesTable `json:"value,omitempty"`
NextLink *string `json:"nextLink,omitempty"`
}
// ExpressRouteCircuitsRoutesTableListResultPreparer prepares a request to retrieve the next set of results. It returns
// nil if no more results exist.
func (client ExpressRouteCircuitsRoutesTableListResult) ExpressRouteCircuitsRoutesTableListResultPreparer() (*http.Request, error) {
if client.NextLink == nil || len(to.String(client.NextLink)) <= 0 {
return nil, nil
}
return autorest.Prepare(&http.Request{},
autorest.AsJSON(),
autorest.AsGet(),
autorest.WithBaseURL(to.String(client.NextLink)))
}
// ExpressRouteCircuitsStatsListResult is response for ListStats from Express
// Route Circuits Api service call
type ExpressRouteCircuitsStatsListResult struct {
autorest.Response `json:"-"`
Value *[]ExpressRouteCircuitStats `json:"value,omitempty"`
NextLink *string `json:"nextLink,omitempty"`
}
// ExpressRouteCircuitsStatsListResultPreparer prepares a request to retrieve the next set of results. It returns
// nil if no more results exist.
func (client ExpressRouteCircuitsStatsListResult) ExpressRouteCircuitsStatsListResultPreparer() (*http.Request, error) {
if client.NextLink == nil || len(to.String(client.NextLink)) <= 0 {
return nil, nil
}
return autorest.Prepare(&http.Request{},
autorest.AsJSON(),
autorest.AsGet(),
autorest.WithBaseURL(to.String(client.NextLink)))
}
// ExpressRouteCircuitStats is contains Stats associated with the peering
type ExpressRouteCircuitStats struct {
BytesIn *int32 `json:"bytesIn,omitempty"`
BytesOut *int32 `json:"bytesOut,omitempty"`
}
// ExpressRouteServiceProvider is expressRouteResourceProvider object
type ExpressRouteServiceProvider struct {
ID *string `json:"id,omitempty"`
Name *string `json:"name,omitempty"`
Type *string `json:"type,omitempty"`
Location *string `json:"location,omitempty"`
Tags *map[string]*string `json:"tags,omitempty"`
Properties *ExpressRouteServiceProviderPropertiesFormat `json:"properties,omitempty"`
}
// ExpressRouteServiceProviderBandwidthsOffered is contains Bandwidths offered
// in ExpressRouteServiceProviders
type ExpressRouteServiceProviderBandwidthsOffered struct {
OfferName *string `json:"offerName,omitempty"`
ValueInMbps *int32 `json:"valueInMbps,omitempty"`
}
// ExpressRouteServiceProviderListResult is response for
// ListExpressRouteServiceProvider Api service call
type ExpressRouteServiceProviderListResult struct {
autorest.Response `json:"-"`
Value *[]ExpressRouteServiceProvider `json:"value,omitempty"`
NextLink *string `json:"nextLink,omitempty"`
}
// ExpressRouteServiceProviderListResultPreparer prepares a request to retrieve the next set of results. It returns
// nil if no more results exist.
func (client ExpressRouteServiceProviderListResult) ExpressRouteServiceProviderListResultPreparer() (*http.Request, error) {
if client.NextLink == nil || len(to.String(client.NextLink)) <= 0 {
return nil, nil
}
return autorest.Prepare(&http.Request{},
autorest.AsJSON(),
autorest.AsGet(),
autorest.WithBaseURL(to.String(client.NextLink)))
}
// ExpressRouteServiceProviderPropertiesFormat is properties of
// ExpressRouteServiceProvider
type ExpressRouteServiceProviderPropertiesFormat struct {
PeeringLocations *[]string `json:"peeringLocations,omitempty"`
BandwidthsOffered *[]ExpressRouteServiceProviderBandwidthsOffered `json:"bandwidthsOffered,omitempty"`
ProvisioningState *string `json:"provisioningState,omitempty"`
}
// FrontendIPConfiguration is frontend IP address of the load balancer
type FrontendIPConfiguration struct {
ID *string `json:"id,omitempty"`
Properties *FrontendIPConfigurationPropertiesFormat `json:"properties,omitempty"`
Name *string `json:"name,omitempty"`
Etag *string `json:"etag,omitempty"`
}
// FrontendIPConfigurationPropertiesFormat is properties of Frontend IP
// Configuration of the load balancer
type FrontendIPConfigurationPropertiesFormat struct {
InboundNatRules *[]SubResource `json:"inboundNatRules,omitempty"`
InboundNatPools *[]SubResource `json:"inboundNatPools,omitempty"`
OutboundNatRules *[]SubResource `json:"outboundNatRules,omitempty"`
LoadBalancingRules *[]SubResource `json:"loadBalancingRules,omitempty"`
PrivateIPAddress *string `json:"privateIPAddress,omitempty"`
PrivateIPAllocationMethod IPAllocationMethod `json:"privateIPAllocationMethod,omitempty"`
Subnet *Subnet `json:"subnet,omitempty"`
PublicIPAddress *PublicIPAddress `json:"publicIPAddress,omitempty"`
ProvisioningState *string `json:"provisioningState,omitempty"`
}
// InboundNatPool is inbound NAT pool of the loadbalancer
type InboundNatPool struct {
ID *string `json:"id,omitempty"`
Properties *InboundNatPoolPropertiesFormat `json:"properties,omitempty"`
Name *string `json:"name,omitempty"`
Etag *string `json:"etag,omitempty"`
}
// InboundNatPoolPropertiesFormat is properties of Inbound NAT pool
type InboundNatPoolPropertiesFormat struct {
FrontendIPConfiguration *SubResource `json:"frontendIPConfiguration,omitempty"`
Protocol TransportProtocol `json:"protocol,omitempty"`
FrontendPortRangeStart *int32 `json:"frontendPortRangeStart,omitempty"`
FrontendPortRangeEnd *int32 `json:"frontendPortRangeEnd,omitempty"`
BackendPort *int32 `json:"backendPort,omitempty"`
ProvisioningState *string `json:"provisioningState,omitempty"`
}
// InboundNatRule is inbound NAT rule of the loadbalancer
type InboundNatRule struct {
ID *string `json:"id,omitempty"`
Properties *InboundNatRulePropertiesFormat `json:"properties,omitempty"`
Name *string `json:"name,omitempty"`
Etag *string `json:"etag,omitempty"`
}
// InboundNatRulePropertiesFormat is properties of Inbound NAT rule
type InboundNatRulePropertiesFormat struct {
FrontendIPConfiguration *SubResource `json:"frontendIPConfiguration,omitempty"`
BackendIPConfiguration *InterfaceIPConfiguration `json:"backendIPConfiguration,omitempty"`
Protocol TransportProtocol `json:"protocol,omitempty"`
FrontendPort *int32 `json:"frontendPort,omitempty"`
BackendPort *int32 `json:"backendPort,omitempty"`
IdleTimeoutInMinutes *int32 `json:"idleTimeoutInMinutes,omitempty"`
EnableFloatingIP *bool `json:"enableFloatingIP,omitempty"`
ProvisioningState *string `json:"provisioningState,omitempty"`
}
// Interface is a NetworkInterface in a resource group
type Interface struct {
autorest.Response `json:"-"`
ID *string `json:"id,omitempty"`
Name *string `json:"name,omitempty"`
Type *string `json:"type,omitempty"`
Location *string `json:"location,omitempty"`
Tags *map[string]*string `json:"tags,omitempty"`
Properties *InterfacePropertiesFormat `json:"properties,omitempty"`
Etag *string `json:"etag,omitempty"`
}
// InterfaceDNSSettings is dns Settings of a network interface
type InterfaceDNSSettings struct {
DNSServers *[]string `json:"dnsServers,omitempty"`
AppliedDNSServers *[]string `json:"appliedDnsServers,omitempty"`
InternalDNSNameLabel *string `json:"internalDnsNameLabel,omitempty"`
InternalFqdn *string `json:"internalFqdn,omitempty"`
}
// InterfaceIPConfiguration is iPConfiguration in a NetworkInterface
type InterfaceIPConfiguration struct {
ID *string `json:"id,omitempty"`
Properties *InterfaceIPConfigurationPropertiesFormat `json:"properties,omitempty"`
Name *string `json:"name,omitempty"`
Etag *string `json:"etag,omitempty"`
}
// InterfaceIPConfigurationPropertiesFormat is properties of IPConfiguration
type InterfaceIPConfigurationPropertiesFormat struct {
LoadBalancerBackendAddressPools *[]BackendAddressPool `json:"loadBalancerBackendAddressPools,omitempty"`
LoadBalancerInboundNatRules *[]InboundNatRule `json:"loadBalancerInboundNatRules,omitempty"`
PrivateIPAddress *string `json:"privateIPAddress,omitempty"`
PrivateIPAllocationMethod IPAllocationMethod `json:"privateIPAllocationMethod,omitempty"`
Subnet *Subnet `json:"subnet,omitempty"`
PublicIPAddress *PublicIPAddress `json:"publicIPAddress,omitempty"`
ProvisioningState *string `json:"provisioningState,omitempty"`
}
// InterfaceListResult is response for ListNetworkInterface Api service call
type InterfaceListResult struct {
autorest.Response `json:"-"`
Value *[]Interface `json:"value,omitempty"`
NextLink *string `json:"nextLink,omitempty"`
}
// InterfaceListResultPreparer prepares a request to retrieve the next set of results. It returns
// nil if no more results exist.
func (client InterfaceListResult) InterfaceListResultPreparer() (*http.Request, error) {
if client.NextLink == nil || len(to.String(client.NextLink)) <= 0 {
return nil, nil
}
return autorest.Prepare(&http.Request{},
autorest.AsJSON(),
autorest.AsGet(),
autorest.WithBaseURL(to.String(client.NextLink)))
}
// InterfacePropertiesFormat is networkInterface properties.
type InterfacePropertiesFormat struct {
VirtualMachine *SubResource `json:"virtualMachine,omitempty"`
NetworkSecurityGroup *SecurityGroup `json:"networkSecurityGroup,omitempty"`
IPConfigurations *[]InterfaceIPConfiguration `json:"ipConfigurations,omitempty"`
DNSSettings *InterfaceDNSSettings `json:"dnsSettings,omitempty"`
MacAddress *string `json:"macAddress,omitempty"`
Primary *bool `json:"primary,omitempty"`
EnableIPForwarding *bool `json:"enableIPForwarding,omitempty"`
ResourceGUID *string `json:"resourceGuid,omitempty"`
ProvisioningState *string `json:"provisioningState,omitempty"`
}
// IPConfiguration is iPConfiguration
type IPConfiguration struct {
ID *string `json:"id,omitempty"`
Properties *IPConfigurationPropertiesFormat `json:"properties,omitempty"`
Name *string `json:"name,omitempty"`
Etag *string `json:"etag,omitempty"`
}
// IPConfigurationPropertiesFormat is properties of IPConfiguration
type IPConfigurationPropertiesFormat struct {
PrivateIPAddress *string `json:"privateIPAddress,omitempty"`
PrivateIPAllocationMethod IPAllocationMethod `json:"privateIPAllocationMethod,omitempty"`
Subnet *Subnet `json:"subnet,omitempty"`
PublicIPAddress *PublicIPAddress `json:"publicIPAddress,omitempty"`
ProvisioningState *string `json:"provisioningState,omitempty"`
}
// LoadBalancer is loadBalancer resource
type LoadBalancer struct {
autorest.Response `json:"-"`
ID *string `json:"id,omitempty"`
Name *string `json:"name,omitempty"`
Type *string `json:"type,omitempty"`
Location *string `json:"location,omitempty"`
Tags *map[string]*string `json:"tags,omitempty"`
Properties *LoadBalancerPropertiesFormat `json:"properties,omitempty"`
Etag *string `json:"etag,omitempty"`
}
// LoadBalancerListResult is response for ListLoadBalancers Api service call
type LoadBalancerListResult struct {
autorest.Response `json:"-"`
Value *[]LoadBalancer `json:"value,omitempty"`
NextLink *string `json:"nextLink,omitempty"`
}
// LoadBalancerListResultPreparer prepares a request to retrieve the next set of results. It returns
// nil if no more results exist.
func (client LoadBalancerListResult) LoadBalancerListResultPreparer() (*http.Request, error) {
if client.NextLink == nil || len(to.String(client.NextLink)) <= 0 {
return nil, nil
}
return autorest.Prepare(&http.Request{},
autorest.AsJSON(),
autorest.AsGet(),
autorest.WithBaseURL(to.String(client.NextLink)))
}
// LoadBalancerPropertiesFormat is properties of Load Balancer
type LoadBalancerPropertiesFormat struct {
FrontendIPConfigurations *[]FrontendIPConfiguration `json:"frontendIPConfigurations,omitempty"`
BackendAddressPools *[]BackendAddressPool `json:"backendAddressPools,omitempty"`
LoadBalancingRules *[]LoadBalancingRule `json:"loadBalancingRules,omitempty"`
Probes *[]Probe `json:"probes,omitempty"`
InboundNatRules *[]InboundNatRule `json:"inboundNatRules,omitempty"`
InboundNatPools *[]InboundNatPool `json:"inboundNatPools,omitempty"`
OutboundNatRules *[]OutboundNatRule `json:"outboundNatRules,omitempty"`
ResourceGUID *string `json:"resourceGuid,omitempty"`
ProvisioningState *string `json:"provisioningState,omitempty"`
}
// LoadBalancingRule is rules of the load balancer
type LoadBalancingRule struct {
ID *string `json:"id,omitempty"`
Properties *LoadBalancingRulePropertiesFormat `json:"properties,omitempty"`
Name *string `json:"name,omitempty"`
Etag *string `json:"etag,omitempty"`
}
// LoadBalancingRulePropertiesFormat is properties of the load balancer
type LoadBalancingRulePropertiesFormat struct {
FrontendIPConfiguration *SubResource `json:"frontendIPConfiguration,omitempty"`
BackendAddressPool *SubResource `json:"backendAddressPool,omitempty"`
Probe *SubResource `json:"probe,omitempty"`
Protocol TransportProtocol `json:"protocol,omitempty"`
LoadDistribution LoadDistribution `json:"loadDistribution,omitempty"`
FrontendPort *int32 `json:"frontendPort,omitempty"`
BackendPort *int32 `json:"backendPort,omitempty"`
IdleTimeoutInMinutes *int32 `json:"idleTimeoutInMinutes,omitempty"`
EnableFloatingIP *bool `json:"enableFloatingIP,omitempty"`
ProvisioningState *string `json:"provisioningState,omitempty"`
}
// LocalNetworkGateway is a common class for general resource information
type LocalNetworkGateway struct {
autorest.Response `json:"-"`
ID *string `json:"id,omitempty"`
Name *string `json:"name,omitempty"`
Type *string `json:"type,omitempty"`
Location *string `json:"location,omitempty"`
Tags *map[string]*string `json:"tags,omitempty"`
Properties *LocalNetworkGatewayPropertiesFormat `json:"properties,omitempty"`
Etag *string `json:"etag,omitempty"`
}
// LocalNetworkGatewayListResult is response for ListLocalNetworkGateways Api
// service call
type LocalNetworkGatewayListResult struct {
autorest.Response `json:"-"`
Value *[]LocalNetworkGateway `json:"value,omitempty"`
NextLink *string `json:"nextLink,omitempty"`
}
// LocalNetworkGatewayListResultPreparer prepares a request to retrieve the next set of results. It returns
// nil if no more results exist.
func (client LocalNetworkGatewayListResult) LocalNetworkGatewayListResultPreparer() (*http.Request, error) {
if client.NextLink == nil || len(to.String(client.NextLink)) <= 0 {
return nil, nil
}
return autorest.Prepare(&http.Request{},
autorest.AsJSON(),
autorest.AsGet(),
autorest.WithBaseURL(to.String(client.NextLink)))
}
// LocalNetworkGatewayPropertiesFormat is localNetworkGateway properties
type LocalNetworkGatewayPropertiesFormat struct {
LocalNetworkAddressSpace *AddressSpace `json:"localNetworkAddressSpace,omitempty"`
GatewayIPAddress *string `json:"gatewayIpAddress,omitempty"`
ResourceGUID *string `json:"resourceGuid,omitempty"`
ProvisioningState *string `json:"provisioningState,omitempty"`
}
// OutboundNatRule is outbound NAT pool of the loadbalancer
type OutboundNatRule struct {
ID *string `json:"id,omitempty"`
Properties *OutboundNatRulePropertiesFormat `json:"properties,omitempty"`
Name *string `json:"name,omitempty"`
Etag *string `json:"etag,omitempty"`
}
// OutboundNatRulePropertiesFormat is outbound NAT pool of the loadbalancer
type OutboundNatRulePropertiesFormat struct {
AllocatedOutboundPorts *int32 `json:"allocatedOutboundPorts,omitempty"`
FrontendIPConfigurations *[]SubResource `json:"frontendIPConfigurations,omitempty"`
BackendAddressPool *SubResource `json:"backendAddressPool,omitempty"`
ProvisioningState *string `json:"provisioningState,omitempty"`
}
// Probe is load balancer Probe
type Probe struct {
ID *string `json:"id,omitempty"`
Properties *ProbePropertiesFormat `json:"properties,omitempty"`
Name *string `json:"name,omitempty"`
Etag *string `json:"etag,omitempty"`
}
// ProbePropertiesFormat is
type ProbePropertiesFormat struct {
LoadBalancingRules *[]SubResource `json:"loadBalancingRules,omitempty"`
Protocol ProbeProtocol `json:"protocol,omitempty"`
Port *int32 `json:"port,omitempty"`
IntervalInSeconds *int32 `json:"intervalInSeconds,omitempty"`
NumberOfProbes *int32 `json:"numberOfProbes,omitempty"`
RequestPath *string `json:"requestPath,omitempty"`
ProvisioningState *string `json:"provisioningState,omitempty"`
}
// PublicIPAddress is publicIPAddress resource
type PublicIPAddress struct {
autorest.Response `json:"-"`
ID *string `json:"id,omitempty"`
Name *string `json:"name,omitempty"`
Type *string `json:"type,omitempty"`
Location *string `json:"location,omitempty"`
Tags *map[string]*string `json:"tags,omitempty"`
Properties *PublicIPAddressPropertiesFormat `json:"properties,omitempty"`
Etag *string `json:"etag,omitempty"`
}
// PublicIPAddressDNSSettings is contains FQDN of the DNS record associated
// with the public IP address
type PublicIPAddressDNSSettings struct {
DomainNameLabel *string `json:"domainNameLabel,omitempty"`
Fqdn *string `json:"fqdn,omitempty"`
ReverseFqdn *string `json:"reverseFqdn,omitempty"`
}
// PublicIPAddressListResult is response for ListPublicIpAddresses Api service
// call
type PublicIPAddressListResult struct {
autorest.Response `json:"-"`
Value *[]PublicIPAddress `json:"value,omitempty"`
NextLink *string `json:"nextLink,omitempty"`
}
// PublicIPAddressListResultPreparer prepares a request to retrieve the next set of results. It returns
// nil if no more results exist.
func (client PublicIPAddressListResult) PublicIPAddressListResultPreparer() (*http.Request, error) {
if client.NextLink == nil || len(to.String(client.NextLink)) <= 0 {
return nil, nil
}
return autorest.Prepare(&http.Request{},
autorest.AsJSON(),
autorest.AsGet(),
autorest.WithBaseURL(to.String(client.NextLink)))
}
// PublicIPAddressPropertiesFormat is publicIpAddress properties
type PublicIPAddressPropertiesFormat struct {
PublicIPAllocationMethod IPAllocationMethod `json:"publicIPAllocationMethod,omitempty"`
IPConfiguration *IPConfiguration `json:"ipConfiguration,omitempty"`
DNSSettings *PublicIPAddressDNSSettings `json:"dnsSettings,omitempty"`
IPAddress *string `json:"ipAddress,omitempty"`
IdleTimeoutInMinutes *int32 `json:"idleTimeoutInMinutes,omitempty"`
ResourceGUID *string `json:"resourceGuid,omitempty"`
ProvisioningState *string `json:"provisioningState,omitempty"`
}
// Resource is
type Resource struct {
ID *string `json:"id,omitempty"`
Name *string `json:"name,omitempty"`
Type *string `json:"type,omitempty"`
Location *string `json:"location,omitempty"`
Tags *map[string]*string `json:"tags,omitempty"`
}
// Route is route resource
type Route struct {
autorest.Response `json:"-"`
ID *string `json:"id,omitempty"`
Properties *RoutePropertiesFormat `json:"properties,omitempty"`
Name *string `json:"name,omitempty"`
Etag *string `json:"etag,omitempty"`
}
// RouteListResult is response for ListRoute Api servive call
type RouteListResult struct {
autorest.Response `json:"-"`
Value *[]Route `json:"value,omitempty"`
NextLink *string `json:"nextLink,omitempty"`
}
// RouteListResultPreparer prepares a request to retrieve the next set of results. It returns
// nil if no more results exist.
func (client RouteListResult) RouteListResultPreparer() (*http.Request, error) {
if client.NextLink == nil || len(to.String(client.NextLink)) <= 0 {
return nil, nil
}
return autorest.Prepare(&http.Request{},
autorest.AsJSON(),
autorest.AsGet(),
autorest.WithBaseURL(to.String(client.NextLink)))
}
// RoutePropertiesFormat is route resource
type RoutePropertiesFormat struct {
AddressPrefix *string `json:"addressPrefix,omitempty"`
NextHopType RouteNextHopType `json:"nextHopType,omitempty"`
NextHopIPAddress *string `json:"nextHopIpAddress,omitempty"`
ProvisioningState *string `json:"provisioningState,omitempty"`
}
// RouteTable is routeTable resource
type RouteTable struct {
autorest.Response `json:"-"`
ID *string `json:"id,omitempty"`
Name *string `json:"name,omitempty"`
Type *string `json:"type,omitempty"`
Location *string `json:"location,omitempty"`
Tags *map[string]*string `json:"tags,omitempty"`
Properties *RouteTablePropertiesFormat `json:"properties,omitempty"`
Etag *string `json:"etag,omitempty"`
}
// RouteTableListResult is response for ListRouteTable Api servive call
type RouteTableListResult struct {
autorest.Response `json:"-"`
Value *[]RouteTable `json:"value,omitempty"`
NextLink *string `json:"nextLink,omitempty"`
}
// RouteTableListResultPreparer prepares a request to retrieve the next set of results. It returns
// nil if no more results exist.
func (client RouteTableListResult) RouteTableListResultPreparer() (*http.Request, error) {
if client.NextLink == nil || len(to.String(client.NextLink)) <= 0 {
return nil, nil
}
return autorest.Prepare(&http.Request{},
autorest.AsJSON(),
autorest.AsGet(),
autorest.WithBaseURL(to.String(client.NextLink)))
}
// RouteTablePropertiesFormat is route Table resource
type RouteTablePropertiesFormat struct {
Routes *[]Route `json:"routes,omitempty"`
Subnets *[]Subnet `json:"subnets,omitempty"`
ProvisioningState *string `json:"provisioningState,omitempty"`
}
// SecurityGroup is networkSecurityGroup resource
type SecurityGroup struct {
autorest.Response `json:"-"`
ID *string `json:"id,omitempty"`
Name *string `json:"name,omitempty"`
Type *string `json:"type,omitempty"`
Location *string `json:"location,omitempty"`
Tags *map[string]*string `json:"tags,omitempty"`
Properties *SecurityGroupPropertiesFormat `json:"properties,omitempty"`
Etag *string `json:"etag,omitempty"`
}
// SecurityGroupListResult is response for ListNetworkSecurityGroups Api
// servive call
type SecurityGroupListResult struct {
autorest.Response `json:"-"`
Value *[]SecurityGroup `json:"value,omitempty"`
NextLink *string `json:"nextLink,omitempty"`
}
// SecurityGroupListResultPreparer prepares a request to retrieve the next set of results. It returns
// nil if no more results exist.
func (client SecurityGroupListResult) SecurityGroupListResultPreparer() (*http.Request, error) {
if client.NextLink == nil || len(to.String(client.NextLink)) <= 0 {
return nil, nil
}
return autorest.Prepare(&http.Request{},
autorest.AsJSON(),
autorest.AsGet(),
autorest.WithBaseURL(to.String(client.NextLink)))
}
// SecurityGroupPropertiesFormat is network Security Group resource
type SecurityGroupPropertiesFormat struct {
SecurityRules *[]SecurityRule `json:"securityRules,omitempty"`
DefaultSecurityRules *[]SecurityRule `json:"defaultSecurityRules,omitempty"`
NetworkInterfaces *[]Interface `json:"networkInterfaces,omitempty"`
Subnets *[]Subnet `json:"subnets,omitempty"`
ResourceGUID *string `json:"resourceGuid,omitempty"`
ProvisioningState *string `json:"provisioningState,omitempty"`
}
// SecurityRule is network security rule
type SecurityRule struct {
autorest.Response `json:"-"`
ID *string `json:"id,omitempty"`
Properties *SecurityRulePropertiesFormat `json:"properties,omitempty"`
Name *string `json:"name,omitempty"`
Etag *string `json:"etag,omitempty"`
}
// SecurityRuleListResult is response for ListSecurityRule Api service
// callRetrieves all security rules that belongs to a network security group
type SecurityRuleListResult struct {
autorest.Response `json:"-"`
Value *[]SecurityRule `json:"value,omitempty"`
NextLink *string `json:"nextLink,omitempty"`
}
// SecurityRuleListResultPreparer prepares a request to retrieve the next set of results. It returns
// nil if no more results exist.
func (client SecurityRuleListResult) SecurityRuleListResultPreparer() (*http.Request, error) {
if client.NextLink == nil || len(to.String(client.NextLink)) <= 0 {
return nil, nil
}
return autorest.Prepare(&http.Request{},
autorest.AsJSON(),
autorest.AsGet(),
autorest.WithBaseURL(to.String(client.NextLink)))
}
// SecurityRulePropertiesFormat is
type SecurityRulePropertiesFormat struct {
Description *string `json:"description,omitempty"`
Protocol SecurityRuleProtocol `json:"protocol,omitempty"`
SourcePortRange *string `json:"sourcePortRange,omitempty"`
DestinationPortRange *string `json:"destinationPortRange,omitempty"`
SourceAddressPrefix *string `json:"sourceAddressPrefix,omitempty"`
DestinationAddressPrefix *string `json:"destinationAddressPrefix,omitempty"`
Access SecurityRuleAccess `json:"access,omitempty"`
Priority *int32 `json:"priority,omitempty"`
Direction SecurityRuleDirection `json:"direction,omitempty"`
ProvisioningState *string `json:"provisioningState,omitempty"`
}
// String is
type String struct {
autorest.Response `json:"-"`
Value *string `json:"value,omitempty"`
}
// Subnet is subnet in a VirtualNework resource
type Subnet struct {
autorest.Response `json:"-"`
ID *string `json:"id,omitempty"`
Properties *SubnetPropertiesFormat `json:"properties,omitempty"`
Name *string `json:"name,omitempty"`
Etag *string `json:"etag,omitempty"`
}
// SubnetListResult is response for ListSubnets Api service callRetrieves all
// subnet that belongs to a virtual network
type SubnetListResult struct {
autorest.Response `json:"-"`
Value *[]Subnet `json:"value,omitempty"`
NextLink *string `json:"nextLink,omitempty"`
}
// SubnetListResultPreparer prepares a request to retrieve the next set of results. It returns
// nil if no more results exist.
func (client SubnetListResult) SubnetListResultPreparer() (*http.Request, error) {
if client.NextLink == nil || len(to.String(client.NextLink)) <= 0 {
return nil, nil
}
return autorest.Prepare(&http.Request{},
autorest.AsJSON(),
autorest.AsGet(),
autorest.WithBaseURL(to.String(client.NextLink)))
}
// SubnetPropertiesFormat is
type SubnetPropertiesFormat struct {
AddressPrefix *string `json:"addressPrefix,omitempty"`
NetworkSecurityGroup *SecurityGroup `json:"networkSecurityGroup,omitempty"`
RouteTable *RouteTable `json:"routeTable,omitempty"`
IPConfigurations *[]IPConfiguration `json:"ipConfigurations,omitempty"`
ProvisioningState *string `json:"provisioningState,omitempty"`
}
// SubResource is
type SubResource struct {
ID *string `json:"id,omitempty"`
}
// Usage is describes Network Resource Usage.
type Usage struct {
Unit UsageUnit `json:"unit,omitempty"`
CurrentValue *int64 `json:"currentValue,omitempty"`
Limit *int64 `json:"limit,omitempty"`
Name *UsageName `json:"name,omitempty"`
}
// UsageName is the Usage Names.
type UsageName struct {
Value *string `json:"value,omitempty"`
LocalizedValue *string `json:"localizedValue,omitempty"`
}
// UsagesListResult is the List Usages operation response.
type UsagesListResult struct {
autorest.Response `json:"-"`
Value *[]Usage `json:"value,omitempty"`
NextLink *string `json:",omitempty"`
}
// UsagesListResultPreparer prepares a request to retrieve the next set of results. It returns
// nil if no more results exist.
func (client UsagesListResult) UsagesListResultPreparer() (*http.Request, error) {
if client.NextLink == nil || len(to.String(client.NextLink)) <= 0 {
return nil, nil
}
return autorest.Prepare(&http.Request{},
autorest.AsJSON(),
autorest.AsGet(),
autorest.WithBaseURL(to.String(client.NextLink)))
}
// VirtualNetwork is virtual Network resource
type VirtualNetwork struct {
autorest.Response `json:"-"`
ID *string `json:"id,omitempty"`
Name *string `json:"name,omitempty"`
Type *string `json:"type,omitempty"`
Location *string `json:"location,omitempty"`
Tags *map[string]*string `json:"tags,omitempty"`
Properties *VirtualNetworkPropertiesFormat `json:"properties,omitempty"`
Etag *string `json:"etag,omitempty"`
}
// VirtualNetworkGateway is a common class for general resource information
type VirtualNetworkGateway struct {
autorest.Response `json:"-"`
ID *string `json:"id,omitempty"`
Name *string `json:"name,omitempty"`
Type *string `json:"type,omitempty"`
Location *string `json:"location,omitempty"`
Tags *map[string]*string `json:"tags,omitempty"`
Properties *VirtualNetworkGatewayPropertiesFormat `json:"properties,omitempty"`
Etag *string `json:"etag,omitempty"`
}
// VirtualNetworkGatewayConnection is a common class for general resource
// information
type VirtualNetworkGatewayConnection struct {
autorest.Response `json:"-"`
ID *string `json:"id,omitempty"`
Name *string `json:"name,omitempty"`
Type *string `json:"type,omitempty"`
Location *string `json:"location,omitempty"`
Tags *map[string]*string `json:"tags,omitempty"`
Properties *VirtualNetworkGatewayConnectionPropertiesFormat `json:"properties,omitempty"`
Etag *string `json:"etag,omitempty"`
}
// VirtualNetworkGatewayConnectionListResult is response for
// ListVirtualNetworkGatewayConnections Api service call
type VirtualNetworkGatewayConnectionListResult struct {
autorest.Response `json:"-"`
Value *[]VirtualNetworkGatewayConnection `json:"value,omitempty"`
NextLink *string `json:"nextLink,omitempty"`
}
// VirtualNetworkGatewayConnectionListResultPreparer prepares a request to retrieve the next set of results. It returns
// nil if no more results exist.
func (client VirtualNetworkGatewayConnectionListResult) VirtualNetworkGatewayConnectionListResultPreparer() (*http.Request, error) {
if client.NextLink == nil || len(to.String(client.NextLink)) <= 0 {
return nil, nil
}
return autorest.Prepare(&http.Request{},
autorest.AsJSON(),
autorest.AsGet(),
autorest.WithBaseURL(to.String(client.NextLink)))
}
// VirtualNetworkGatewayConnectionPropertiesFormat is
// virtualNeworkGatewayConnection properties
type VirtualNetworkGatewayConnectionPropertiesFormat struct {
AuthorizationKey *string `json:"authorizationKey,omitempty"`
VirtualNetworkGateway1 *VirtualNetworkGateway `json:"virtualNetworkGateway1,omitempty"`
VirtualNetworkGateway2 *VirtualNetworkGateway `json:"virtualNetworkGateway2,omitempty"`
LocalNetworkGateway2 *LocalNetworkGateway `json:"localNetworkGateway2,omitempty"`
ConnectionType VirtualNetworkGatewayConnectionType `json:"connectionType,omitempty"`
RoutingWeight *int32 `json:"routingWeight,omitempty"`
SharedKey *string `json:"sharedKey,omitempty"`
ConnectionStatus VirtualNetworkGatewayConnectionStatus `json:"connectionStatus,omitempty"`
EgressBytesTransferred *int64 `json:"egressBytesTransferred,omitempty"`
IngressBytesTransferred *int64 `json:"ingressBytesTransferred,omitempty"`
Peer *SubResource `json:"peer,omitempty"`
ResourceGUID *string `json:"resourceGuid,omitempty"`
ProvisioningState *string `json:"provisioningState,omitempty"`
}
// VirtualNetworkGatewayIPConfiguration is ipConfiguration for Virtual network
// gateway
type VirtualNetworkGatewayIPConfiguration struct {
ID *string `json:"id,omitempty"`
Properties *VirtualNetworkGatewayIPConfigurationPropertiesFormat `json:"properties,omitempty"`
Name *string `json:"name,omitempty"`
Etag *string `json:"etag,omitempty"`
}
// VirtualNetworkGatewayIPConfigurationPropertiesFormat is properties of
// VirtualNetworkGatewayIPConfiguration
type VirtualNetworkGatewayIPConfigurationPropertiesFormat struct {
PrivateIPAddress *string `json:"privateIPAddress,omitempty"`
PrivateIPAllocationMethod IPAllocationMethod `json:"privateIPAllocationMethod,omitempty"`
Subnet *SubResource `json:"subnet,omitempty"`
PublicIPAddress *SubResource `json:"publicIPAddress,omitempty"`
ProvisioningState *string `json:"provisioningState,omitempty"`
}
// VirtualNetworkGatewayListResult is response for ListVirtualNetworkGateways
// Api service call
type VirtualNetworkGatewayListResult struct {
autorest.Response `json:"-"`
Value *[]VirtualNetworkGateway `json:"value,omitempty"`
NextLink *string `json:"nextLink,omitempty"`
}
// VirtualNetworkGatewayListResultPreparer prepares a request to retrieve the next set of results. It returns
// nil if no more results exist.
func (client VirtualNetworkGatewayListResult) VirtualNetworkGatewayListResultPreparer() (*http.Request, error) {
if client.NextLink == nil || len(to.String(client.NextLink)) <= 0 {
return nil, nil
}
return autorest.Prepare(&http.Request{},
autorest.AsJSON(),
autorest.AsGet(),
autorest.WithBaseURL(to.String(client.NextLink)))
}
// VirtualNetworkGatewayPropertiesFormat is virtualNeworkGateay properties
type VirtualNetworkGatewayPropertiesFormat struct {
IPConfigurations *[]VirtualNetworkGatewayIPConfiguration `json:"ipConfigurations,omitempty"`
GatewayType VirtualNetworkGatewayType `json:"gatewayType,omitempty"`
VpnType VpnType `json:"vpnType,omitempty"`
EnableBgp *bool `json:"enableBgp,omitempty"`
GatewayDefaultSite *SubResource `json:"gatewayDefaultSite,omitempty"`
Sku *VirtualNetworkGatewaySku `json:"sku,omitempty"`
VpnClientConfiguration *VpnClientConfiguration `json:"vpnClientConfiguration,omitempty"`
ResourceGUID *string `json:"resourceGuid,omitempty"`
ProvisioningState *string `json:"provisioningState,omitempty"`
}
// VirtualNetworkGatewaySku is virtualNetworkGatewaySku details
type VirtualNetworkGatewaySku struct {
Name VirtualNetworkGatewaySkuName `json:"name,omitempty"`
Tier VirtualNetworkGatewaySkuTier `json:"tier,omitempty"`
Capacity *int32 `json:"capacity,omitempty"`
}
// VirtualNetworkListResult is response for ListVirtualNetworks Api servive
// call
type VirtualNetworkListResult struct {
autorest.Response `json:"-"`
Value *[]VirtualNetwork `json:"value,omitempty"`
NextLink *string `json:"nextLink,omitempty"`
}
// VirtualNetworkListResultPreparer prepares a request to retrieve the next set of results. It returns
// nil if no more results exist.
func (client VirtualNetworkListResult) VirtualNetworkListResultPreparer() (*http.Request, error) {
if client.NextLink == nil || len(to.String(client.NextLink)) <= 0 {
return nil, nil
}
return autorest.Prepare(&http.Request{},
autorest.AsJSON(),
autorest.AsGet(),
autorest.WithBaseURL(to.String(client.NextLink)))
}
// VirtualNetworkPropertiesFormat is
type VirtualNetworkPropertiesFormat struct {
AddressSpace *AddressSpace `json:"addressSpace,omitempty"`
DhcpOptions *DhcpOptions `json:"dhcpOptions,omitempty"`
Subnets *[]Subnet `json:"subnets,omitempty"`
ResourceGUID *string `json:"resourceGuid,omitempty"`
ProvisioningState *string `json:"provisioningState,omitempty"`
}
// VpnClientConfiguration is vpnClientConfiguration for P2S client
type VpnClientConfiguration struct {
VpnClientAddressPool *AddressSpace `json:"vpnClientAddressPool,omitempty"`
VpnClientRootCertificates *[]VpnClientRootCertificate `json:"vpnClientRootCertificates,omitempty"`
VpnClientRevokedCertificates *[]VpnClientRevokedCertificate `json:"vpnClientRevokedCertificates,omitempty"`
}
// VpnClientParameters is vpnClientParameters
type VpnClientParameters struct {
ProcessorArchitecture ProcessorArchitecture `json:"ProcessorArchitecture,omitempty"`
}
// VpnClientRevokedCertificate is vPN client revoked certificate of virtual
// network gateway
type VpnClientRevokedCertificate struct {
ID *string `json:"id,omitempty"`
Properties *VpnClientRevokedCertificatePropertiesFormat `json:"properties,omitempty"`
Name *string `json:"name,omitempty"`
Etag *string `json:"etag,omitempty"`
}
// VpnClientRevokedCertificatePropertiesFormat is properties of the revoked
// VPN client certificate of virtual network gateway
type VpnClientRevokedCertificatePropertiesFormat struct {
Thumbprint *string `json:"thumbprint,omitempty"`
ProvisioningState *string `json:"provisioningState,omitempty"`
}
// VpnClientRootCertificate is vPN client root certificate of virtual network
// gateway
type VpnClientRootCertificate struct {
ID *string `json:"id,omitempty"`
Properties *VpnClientRootCertificatePropertiesFormat `json:"properties,omitempty"`
Name *string `json:"name,omitempty"`
Etag *string `json:"etag,omitempty"`
}
// VpnClientRootCertificatePropertiesFormat is properties of SSL certificates
// of application gateway
type VpnClientRootCertificatePropertiesFormat struct {
PublicCertData *string `json:"publicCertData,omitempty"`
ProvisioningState *string `json:"provisioningState,omitempty"`
}
|