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 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108
|
# pylint: disable=too-many-lines
# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
# --------------------------------------------------------------------------
import datetime
from typing import Any, Dict, List, Optional, TYPE_CHECKING, Union
from .. import _serialization
if TYPE_CHECKING:
from .. import models as _models
class AgentProfile(_serialization.Model):
"""Agent profile for the Fleet hub.
:ivar subnet_id: The ID of the subnet which the Fleet hub node will join on startup. If this is
not specified, a vnet and subnet will be generated and used.
:vartype subnet_id: str
:ivar vm_size: The virtual machine size of the Fleet hub.
:vartype vm_size: str
"""
_attribute_map = {
"subnet_id": {"key": "subnetId", "type": "str"},
"vm_size": {"key": "vmSize", "type": "str"},
}
def __init__(self, *, subnet_id: Optional[str] = None, vm_size: Optional[str] = None, **kwargs: Any) -> None:
"""
:keyword subnet_id: The ID of the subnet which the Fleet hub node will join on startup. If this
is not specified, a vnet and subnet will be generated and used.
:paramtype subnet_id: str
:keyword vm_size: The virtual machine size of the Fleet hub.
:paramtype vm_size: str
"""
super().__init__(**kwargs)
self.subnet_id = subnet_id
self.vm_size = vm_size
class APIServerAccessProfile(_serialization.Model):
"""Access profile for the Fleet hub API server.
:ivar enable_private_cluster: Whether to create the Fleet hub as a private cluster or not.
:vartype enable_private_cluster: bool
:ivar enable_vnet_integration: Whether to enable apiserver vnet integration for the Fleet hub
or not.
:vartype enable_vnet_integration: bool
:ivar subnet_id: The subnet to be used when apiserver vnet integration is enabled. It is
required when creating a new Fleet with BYO vnet.
:vartype subnet_id: str
"""
_attribute_map = {
"enable_private_cluster": {"key": "enablePrivateCluster", "type": "bool"},
"enable_vnet_integration": {"key": "enableVnetIntegration", "type": "bool"},
"subnet_id": {"key": "subnetId", "type": "str"},
}
def __init__(
self,
*,
enable_private_cluster: Optional[bool] = None,
enable_vnet_integration: Optional[bool] = None,
subnet_id: Optional[str] = None,
**kwargs: Any
) -> None:
"""
:keyword enable_private_cluster: Whether to create the Fleet hub as a private cluster or not.
:paramtype enable_private_cluster: bool
:keyword enable_vnet_integration: Whether to enable apiserver vnet integration for the Fleet
hub or not.
:paramtype enable_vnet_integration: bool
:keyword subnet_id: The subnet to be used when apiserver vnet integration is enabled. It is
required when creating a new Fleet with BYO vnet.
:paramtype subnet_id: str
"""
super().__init__(**kwargs)
self.enable_private_cluster = enable_private_cluster
self.enable_vnet_integration = enable_vnet_integration
self.subnet_id = subnet_id
class AutoUpgradeNodeImageSelection(_serialization.Model):
"""The node image upgrade to be applied to the target clusters in auto upgrade.
All required parameters must be populated in order to send to server.
:ivar type: The node image upgrade type. Required. Known values are: "Latest" and "Consistent".
:vartype type: str or
~azure.mgmt.containerservicefleet.models.AutoUpgradeNodeImageSelectionType
"""
_validation = {
"type": {"required": True},
}
_attribute_map = {
"type": {"key": "type", "type": "str"},
}
def __init__(self, *, type: Union[str, "_models.AutoUpgradeNodeImageSelectionType"], **kwargs: Any) -> None:
"""
:keyword type: The node image upgrade type. Required. Known values are: "Latest" and
"Consistent".
:paramtype type: str or
~azure.mgmt.containerservicefleet.models.AutoUpgradeNodeImageSelectionType
"""
super().__init__(**kwargs)
self.type = type
class Resource(_serialization.Model):
"""Common fields that are returned in the response for all Azure Resource Manager resources.
Variables are only populated by the server, and will be ignored when sending a request.
:ivar id: Fully qualified resource ID for the resource. E.g.
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}". # pylint: disable=line-too-long
:vartype id: str
:ivar name: The name of the resource.
:vartype name: str
:ivar type: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or
"Microsoft.Storage/storageAccounts".
:vartype type: str
:ivar system_data: Azure Resource Manager metadata containing createdBy and modifiedBy
information.
:vartype system_data: ~azure.mgmt.containerservicefleet.models.SystemData
"""
_validation = {
"id": {"readonly": True},
"name": {"readonly": True},
"type": {"readonly": True},
"system_data": {"readonly": True},
}
_attribute_map = {
"id": {"key": "id", "type": "str"},
"name": {"key": "name", "type": "str"},
"type": {"key": "type", "type": "str"},
"system_data": {"key": "systemData", "type": "SystemData"},
}
def __init__(self, **kwargs: Any) -> None:
""" """
super().__init__(**kwargs)
self.id = None
self.name = None
self.type = None
self.system_data = None
class ProxyResource(Resource):
"""The resource model definition for a Azure Resource Manager proxy resource. It will not have
tags and a location.
Variables are only populated by the server, and will be ignored when sending a request.
:ivar id: Fully qualified resource ID for the resource. E.g.
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}". # pylint: disable=line-too-long
:vartype id: str
:ivar name: The name of the resource.
:vartype name: str
:ivar type: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or
"Microsoft.Storage/storageAccounts".
:vartype type: str
:ivar system_data: Azure Resource Manager metadata containing createdBy and modifiedBy
information.
:vartype system_data: ~azure.mgmt.containerservicefleet.models.SystemData
"""
class AutoUpgradeProfile(ProxyResource):
"""The AutoUpgradeProfile resource.
Variables are only populated by the server, and will be ignored when sending a request.
:ivar id: Fully qualified resource ID for the resource. E.g.
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}". # pylint: disable=line-too-long
:vartype id: str
:ivar name: The name of the resource.
:vartype name: str
:ivar type: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or
"Microsoft.Storage/storageAccounts".
:vartype type: str
:ivar system_data: Azure Resource Manager metadata containing createdBy and modifiedBy
information.
:vartype system_data: ~azure.mgmt.containerservicefleet.models.SystemData
:ivar e_tag: If eTag is provided in the response body, it may also be provided as a header per
the normal etag convention. Entity tags are used for comparing two or more entities from the
same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match
(section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
:vartype e_tag: str
:ivar provisioning_state: The provisioning state of the AutoUpgradeProfile resource. Known
values are: "Succeeded", "Failed", and "Canceled".
:vartype provisioning_state: str or
~azure.mgmt.containerservicefleet.models.AutoUpgradeProfileProvisioningState
:ivar update_strategy_id: The resource id of the UpdateStrategy resource to reference. If not
specified, the auto upgrade will run on all clusters which are members of the fleet.
:vartype update_strategy_id: str
:ivar channel: Configures how auto-upgrade will be run. Known values are: "Stable", "Rapid",
and "NodeImage".
:vartype channel: str or ~azure.mgmt.containerservicefleet.models.UpgradeChannel
:ivar node_image_selection: The node image upgrade to be applied to the target clusters in auto
upgrade.
:vartype node_image_selection:
~azure.mgmt.containerservicefleet.models.AutoUpgradeNodeImageSelection
:ivar disabled: If set to False: the auto upgrade has effect - target managed clusters will be
upgraded on schedule.
If set to True: the auto upgrade has no effect - no upgrade will be run on the target managed
clusters.
This is a boolean and not an enum because enabled/disabled are all available states of the
auto upgrade profile.
By default, this is set to False.
:vartype disabled: bool
:ivar auto_upgrade_profile_status: The status of the auto upgrade profile.
:vartype auto_upgrade_profile_status:
~azure.mgmt.containerservicefleet.models.AutoUpgradeProfileStatus
"""
_validation = {
"id": {"readonly": True},
"name": {"readonly": True},
"type": {"readonly": True},
"system_data": {"readonly": True},
"e_tag": {"readonly": True},
"provisioning_state": {"readonly": True},
}
_attribute_map = {
"id": {"key": "id", "type": "str"},
"name": {"key": "name", "type": "str"},
"type": {"key": "type", "type": "str"},
"system_data": {"key": "systemData", "type": "SystemData"},
"e_tag": {"key": "eTag", "type": "str"},
"provisioning_state": {"key": "properties.provisioningState", "type": "str"},
"update_strategy_id": {"key": "properties.updateStrategyId", "type": "str"},
"channel": {"key": "properties.channel", "type": "str"},
"node_image_selection": {"key": "properties.nodeImageSelection", "type": "AutoUpgradeNodeImageSelection"},
"disabled": {"key": "properties.disabled", "type": "bool"},
"auto_upgrade_profile_status": {
"key": "properties.autoUpgradeProfileStatus",
"type": "AutoUpgradeProfileStatus",
},
}
def __init__(
self,
*,
update_strategy_id: Optional[str] = None,
channel: Optional[Union[str, "_models.UpgradeChannel"]] = None,
node_image_selection: Optional["_models.AutoUpgradeNodeImageSelection"] = None,
disabled: Optional[bool] = None,
auto_upgrade_profile_status: Optional["_models.AutoUpgradeProfileStatus"] = None,
**kwargs: Any
) -> None:
"""
:keyword update_strategy_id: The resource id of the UpdateStrategy resource to reference. If
not specified, the auto upgrade will run on all clusters which are members of the fleet.
:paramtype update_strategy_id: str
:keyword channel: Configures how auto-upgrade will be run. Known values are: "Stable", "Rapid",
and "NodeImage".
:paramtype channel: str or ~azure.mgmt.containerservicefleet.models.UpgradeChannel
:keyword node_image_selection: The node image upgrade to be applied to the target clusters in
auto upgrade.
:paramtype node_image_selection:
~azure.mgmt.containerservicefleet.models.AutoUpgradeNodeImageSelection
:keyword disabled: If set to False: the auto upgrade has effect - target managed clusters will
be upgraded on schedule.
If set to True: the auto upgrade has no effect - no upgrade will be run on the target managed
clusters.
This is a boolean and not an enum because enabled/disabled are all available states of the
auto upgrade profile.
By default, this is set to False.
:paramtype disabled: bool
:keyword auto_upgrade_profile_status: The status of the auto upgrade profile.
:paramtype auto_upgrade_profile_status:
~azure.mgmt.containerservicefleet.models.AutoUpgradeProfileStatus
"""
super().__init__(**kwargs)
self.e_tag = None
self.provisioning_state = None
self.update_strategy_id = update_strategy_id
self.channel = channel
self.node_image_selection = node_image_selection
self.disabled = disabled
self.auto_upgrade_profile_status = auto_upgrade_profile_status
class AutoUpgradeProfileListResult(_serialization.Model):
"""The response of a AutoUpgradeProfile list operation.
All required parameters must be populated in order to send to server.
:ivar value: The AutoUpgradeProfile items on this page. Required.
:vartype value: list[~azure.mgmt.containerservicefleet.models.AutoUpgradeProfile]
:ivar next_link: The link to the next page of items.
:vartype next_link: str
"""
_validation = {
"value": {"required": True},
}
_attribute_map = {
"value": {"key": "value", "type": "[AutoUpgradeProfile]"},
"next_link": {"key": "nextLink", "type": "str"},
}
def __init__(
self, *, value: List["_models.AutoUpgradeProfile"], next_link: Optional[str] = None, **kwargs: Any
) -> None:
"""
:keyword value: The AutoUpgradeProfile items on this page. Required.
:paramtype value: list[~azure.mgmt.containerservicefleet.models.AutoUpgradeProfile]
:keyword next_link: The link to the next page of items.
:paramtype next_link: str
"""
super().__init__(**kwargs)
self.value = value
self.next_link = next_link
class AutoUpgradeProfileStatus(_serialization.Model):
"""AutoUpgradeProfileStatus is the status of an auto upgrade profile.
Variables are only populated by the server, and will be ignored when sending a request.
:ivar last_triggered_at: The UTC time of the last attempt to automatically create and start an
UpdateRun as triggered by the release of new versions.
:vartype last_triggered_at: ~datetime.datetime
:ivar last_trigger_status: The status of the last AutoUpgrade trigger. Known values are:
"Succeeded" and "Failed".
:vartype last_trigger_status: str or
~azure.mgmt.containerservicefleet.models.AutoUpgradeLastTriggerStatus
:ivar last_trigger_error: The error details of the last trigger.
:vartype last_trigger_error: ~azure.mgmt.containerservicefleet.models.ErrorDetail
:ivar last_trigger_upgrade_versions: The target Kubernetes version or node image versions of
the last trigger.
:vartype last_trigger_upgrade_versions: list[str]
"""
_validation = {
"last_triggered_at": {"readonly": True},
"last_trigger_status": {"readonly": True},
"last_trigger_error": {"readonly": True},
"last_trigger_upgrade_versions": {"readonly": True},
}
_attribute_map = {
"last_triggered_at": {"key": "lastTriggeredAt", "type": "iso-8601"},
"last_trigger_status": {"key": "lastTriggerStatus", "type": "str"},
"last_trigger_error": {"key": "lastTriggerError", "type": "ErrorDetail"},
"last_trigger_upgrade_versions": {"key": "lastTriggerUpgradeVersions", "type": "[str]"},
}
def __init__(self, **kwargs: Any) -> None:
""" """
super().__init__(**kwargs)
self.last_triggered_at = None
self.last_trigger_status = None
self.last_trigger_error = None
self.last_trigger_upgrade_versions = None
class ErrorAdditionalInfo(_serialization.Model):
"""The resource management error additional info.
Variables are only populated by the server, and will be ignored when sending a request.
:ivar type: The additional info type.
:vartype type: str
:ivar info: The additional info.
:vartype info: JSON
"""
_validation = {
"type": {"readonly": True},
"info": {"readonly": True},
}
_attribute_map = {
"type": {"key": "type", "type": "str"},
"info": {"key": "info", "type": "object"},
}
def __init__(self, **kwargs: Any) -> None:
""" """
super().__init__(**kwargs)
self.type = None
self.info = None
class ErrorDetail(_serialization.Model):
"""The error detail.
Variables are only populated by the server, and will be ignored when sending a request.
:ivar code: The error code.
:vartype code: str
:ivar message: The error message.
:vartype message: str
:ivar target: The error target.
:vartype target: str
:ivar details: The error details.
:vartype details: list[~azure.mgmt.containerservicefleet.models.ErrorDetail]
:ivar additional_info: The error additional info.
:vartype additional_info: list[~azure.mgmt.containerservicefleet.models.ErrorAdditionalInfo]
"""
_validation = {
"code": {"readonly": True},
"message": {"readonly": True},
"target": {"readonly": True},
"details": {"readonly": True},
"additional_info": {"readonly": True},
}
_attribute_map = {
"code": {"key": "code", "type": "str"},
"message": {"key": "message", "type": "str"},
"target": {"key": "target", "type": "str"},
"details": {"key": "details", "type": "[ErrorDetail]"},
"additional_info": {"key": "additionalInfo", "type": "[ErrorAdditionalInfo]"},
}
def __init__(self, **kwargs: Any) -> None:
""" """
super().__init__(**kwargs)
self.code = None
self.message = None
self.target = None
self.details = None
self.additional_info = None
class ErrorResponse(_serialization.Model):
"""Common error response for all Azure Resource Manager APIs to return error details for failed
operations. (This also follows the OData error response format.).
:ivar error: The error object.
:vartype error: ~azure.mgmt.containerservicefleet.models.ErrorDetail
"""
_attribute_map = {
"error": {"key": "error", "type": "ErrorDetail"},
}
def __init__(self, *, error: Optional["_models.ErrorDetail"] = None, **kwargs: Any) -> None:
"""
:keyword error: The error object.
:paramtype error: ~azure.mgmt.containerservicefleet.models.ErrorDetail
"""
super().__init__(**kwargs)
self.error = error
class TrackedResource(Resource):
"""The resource model definition for an Azure Resource Manager tracked top level resource which
has 'tags' and a 'location'.
Variables are only populated by the server, and will be ignored when sending a request.
All required parameters must be populated in order to send to server.
:ivar id: Fully qualified resource ID for the resource. E.g.
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}". # pylint: disable=line-too-long
:vartype id: str
:ivar name: The name of the resource.
:vartype name: str
:ivar type: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or
"Microsoft.Storage/storageAccounts".
:vartype type: str
:ivar system_data: Azure Resource Manager metadata containing createdBy and modifiedBy
information.
:vartype system_data: ~azure.mgmt.containerservicefleet.models.SystemData
:ivar tags: Resource tags.
:vartype tags: dict[str, str]
:ivar location: The geo-location where the resource lives. Required.
:vartype location: str
"""
_validation = {
"id": {"readonly": True},
"name": {"readonly": True},
"type": {"readonly": True},
"system_data": {"readonly": True},
"location": {"required": True},
}
_attribute_map = {
"id": {"key": "id", "type": "str"},
"name": {"key": "name", "type": "str"},
"type": {"key": "type", "type": "str"},
"system_data": {"key": "systemData", "type": "SystemData"},
"tags": {"key": "tags", "type": "{str}"},
"location": {"key": "location", "type": "str"},
}
def __init__(self, *, location: str, tags: Optional[Dict[str, str]] = None, **kwargs: Any) -> None:
"""
:keyword tags: Resource tags.
:paramtype tags: dict[str, str]
:keyword location: The geo-location where the resource lives. Required.
:paramtype location: str
"""
super().__init__(**kwargs)
self.tags = tags
self.location = location
class Fleet(TrackedResource):
"""The Fleet resource.
Variables are only populated by the server, and will be ignored when sending a request.
All required parameters must be populated in order to send to server.
:ivar id: Fully qualified resource ID for the resource. E.g.
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}". # pylint: disable=line-too-long
:vartype id: str
:ivar name: The name of the resource.
:vartype name: str
:ivar type: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or
"Microsoft.Storage/storageAccounts".
:vartype type: str
:ivar system_data: Azure Resource Manager metadata containing createdBy and modifiedBy
information.
:vartype system_data: ~azure.mgmt.containerservicefleet.models.SystemData
:ivar tags: Resource tags.
:vartype tags: dict[str, str]
:ivar location: The geo-location where the resource lives. Required.
:vartype location: str
:ivar e_tag: If eTag is provided in the response body, it may also be provided as a header per
the normal etag convention. Entity tags are used for comparing two or more entities from the
same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match
(section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
:vartype e_tag: str
:ivar identity: Managed identity.
:vartype identity: ~azure.mgmt.containerservicefleet.models.ManagedServiceIdentity
:ivar provisioning_state: The status of the last operation. Known values are: "Succeeded",
"Failed", "Canceled", "Creating", "Updating", and "Deleting".
:vartype provisioning_state: str or
~azure.mgmt.containerservicefleet.models.FleetProvisioningState
:ivar hub_profile: The FleetHubProfile configures the Fleet's hub.
:vartype hub_profile: ~azure.mgmt.containerservicefleet.models.FleetHubProfile
:ivar status: Status information for the fleet.
:vartype status: ~azure.mgmt.containerservicefleet.models.FleetStatus
"""
_validation = {
"id": {"readonly": True},
"name": {"readonly": True},
"type": {"readonly": True},
"system_data": {"readonly": True},
"location": {"required": True},
"e_tag": {"readonly": True},
"provisioning_state": {"readonly": True},
"status": {"readonly": True},
}
_attribute_map = {
"id": {"key": "id", "type": "str"},
"name": {"key": "name", "type": "str"},
"type": {"key": "type", "type": "str"},
"system_data": {"key": "systemData", "type": "SystemData"},
"tags": {"key": "tags", "type": "{str}"},
"location": {"key": "location", "type": "str"},
"e_tag": {"key": "eTag", "type": "str"},
"identity": {"key": "identity", "type": "ManagedServiceIdentity"},
"provisioning_state": {"key": "properties.provisioningState", "type": "str"},
"hub_profile": {"key": "properties.hubProfile", "type": "FleetHubProfile"},
"status": {"key": "properties.status", "type": "FleetStatus"},
}
def __init__(
self,
*,
location: str,
tags: Optional[Dict[str, str]] = None,
identity: Optional["_models.ManagedServiceIdentity"] = None,
hub_profile: Optional["_models.FleetHubProfile"] = None,
**kwargs: Any
) -> None:
"""
:keyword tags: Resource tags.
:paramtype tags: dict[str, str]
:keyword location: The geo-location where the resource lives. Required.
:paramtype location: str
:keyword identity: Managed identity.
:paramtype identity: ~azure.mgmt.containerservicefleet.models.ManagedServiceIdentity
:keyword hub_profile: The FleetHubProfile configures the Fleet's hub.
:paramtype hub_profile: ~azure.mgmt.containerservicefleet.models.FleetHubProfile
"""
super().__init__(tags=tags, location=location, **kwargs)
self.e_tag = None
self.identity = identity
self.provisioning_state = None
self.hub_profile = hub_profile
self.status = None
class FleetCredentialResult(_serialization.Model):
"""One credential result item.
Variables are only populated by the server, and will be ignored when sending a request.
:ivar name: The name of the credential.
:vartype name: str
:ivar value: Base64-encoded Kubernetes configuration file.
:vartype value: bytes
"""
_validation = {
"name": {"readonly": True},
"value": {"readonly": True},
}
_attribute_map = {
"name": {"key": "name", "type": "str"},
"value": {"key": "value", "type": "bytearray"},
}
def __init__(self, **kwargs: Any) -> None:
""" """
super().__init__(**kwargs)
self.name = None
self.value = None
class FleetCredentialResults(_serialization.Model):
"""The Credential results response.
Variables are only populated by the server, and will be ignored when sending a request.
:ivar kubeconfigs: Array of base64-encoded Kubernetes configuration files.
:vartype kubeconfigs: list[~azure.mgmt.containerservicefleet.models.FleetCredentialResult]
"""
_validation = {
"kubeconfigs": {"readonly": True},
}
_attribute_map = {
"kubeconfigs": {"key": "kubeconfigs", "type": "[FleetCredentialResult]"},
}
def __init__(self, **kwargs: Any) -> None:
""" """
super().__init__(**kwargs)
self.kubeconfigs = None
class FleetHubProfile(_serialization.Model):
"""The FleetHubProfile configures the fleet hub.
Variables are only populated by the server, and will be ignored when sending a request.
:ivar dns_prefix: DNS prefix used to create the FQDN for the Fleet hub.
:vartype dns_prefix: str
:ivar api_server_access_profile: The access profile for the Fleet hub API server.
:vartype api_server_access_profile:
~azure.mgmt.containerservicefleet.models.APIServerAccessProfile
:ivar agent_profile: The agent profile for the Fleet hub.
:vartype agent_profile: ~azure.mgmt.containerservicefleet.models.AgentProfile
:ivar fqdn: The FQDN of the Fleet hub.
:vartype fqdn: str
:ivar kubernetes_version: The Kubernetes version of the Fleet hub.
:vartype kubernetes_version: str
:ivar portal_fqdn: The Azure Portal FQDN of the Fleet hub.
:vartype portal_fqdn: str
"""
_validation = {
"dns_prefix": {
"max_length": 54,
"min_length": 1,
"pattern": r"^[a-zA-Z0-9]$|^[a-zA-Z0-9][a-zA-Z0-9-]{0,52}[a-zA-Z0-9]$",
},
"fqdn": {"readonly": True},
"kubernetes_version": {"readonly": True},
"portal_fqdn": {"readonly": True},
}
_attribute_map = {
"dns_prefix": {"key": "dnsPrefix", "type": "str"},
"api_server_access_profile": {"key": "apiServerAccessProfile", "type": "APIServerAccessProfile"},
"agent_profile": {"key": "agentProfile", "type": "AgentProfile"},
"fqdn": {"key": "fqdn", "type": "str"},
"kubernetes_version": {"key": "kubernetesVersion", "type": "str"},
"portal_fqdn": {"key": "portalFqdn", "type": "str"},
}
def __init__(
self,
*,
dns_prefix: Optional[str] = None,
api_server_access_profile: Optional["_models.APIServerAccessProfile"] = None,
agent_profile: Optional["_models.AgentProfile"] = None,
**kwargs: Any
) -> None:
"""
:keyword dns_prefix: DNS prefix used to create the FQDN for the Fleet hub.
:paramtype dns_prefix: str
:keyword api_server_access_profile: The access profile for the Fleet hub API server.
:paramtype api_server_access_profile:
~azure.mgmt.containerservicefleet.models.APIServerAccessProfile
:keyword agent_profile: The agent profile for the Fleet hub.
:paramtype agent_profile: ~azure.mgmt.containerservicefleet.models.AgentProfile
"""
super().__init__(**kwargs)
self.dns_prefix = dns_prefix
self.api_server_access_profile = api_server_access_profile
self.agent_profile = agent_profile
self.fqdn = None
self.kubernetes_version = None
self.portal_fqdn = None
class FleetListResult(_serialization.Model):
"""The response of a Fleet list operation.
All required parameters must be populated in order to send to server.
:ivar value: The Fleet items on this page. Required.
:vartype value: list[~azure.mgmt.containerservicefleet.models.Fleet]
:ivar next_link: The link to the next page of items.
:vartype next_link: str
"""
_validation = {
"value": {"required": True},
}
_attribute_map = {
"value": {"key": "value", "type": "[Fleet]"},
"next_link": {"key": "nextLink", "type": "str"},
}
def __init__(self, *, value: List["_models.Fleet"], next_link: Optional[str] = None, **kwargs: Any) -> None:
"""
:keyword value: The Fleet items on this page. Required.
:paramtype value: list[~azure.mgmt.containerservicefleet.models.Fleet]
:keyword next_link: The link to the next page of items.
:paramtype next_link: str
"""
super().__init__(**kwargs)
self.value = value
self.next_link = next_link
class FleetMember(ProxyResource):
"""A member of the Fleet. It contains a reference to an existing Kubernetes cluster on Azure.
Variables are only populated by the server, and will be ignored when sending a request.
:ivar id: Fully qualified resource ID for the resource. E.g.
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}". # pylint: disable=line-too-long
:vartype id: str
:ivar name: The name of the resource.
:vartype name: str
:ivar type: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or
"Microsoft.Storage/storageAccounts".
:vartype type: str
:ivar system_data: Azure Resource Manager metadata containing createdBy and modifiedBy
information.
:vartype system_data: ~azure.mgmt.containerservicefleet.models.SystemData
:ivar e_tag: If eTag is provided in the response body, it may also be provided as a header per
the normal etag convention. Entity tags are used for comparing two or more entities from the
same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match
(section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
:vartype e_tag: str
:ivar cluster_resource_id: The ARM resource id of the cluster that joins the Fleet. Must be a
valid Azure resource id. e.g.:
'/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{clusterName}'. # pylint: disable=line-too-long
:vartype cluster_resource_id: str
:ivar group: The group this member belongs to for multi-cluster update management.
:vartype group: str
:ivar provisioning_state: The status of the last operation. Known values are: "Succeeded",
"Failed", "Canceled", "Joining", "Leaving", and "Updating".
:vartype provisioning_state: str or
~azure.mgmt.containerservicefleet.models.FleetMemberProvisioningState
:ivar status: Status information of the last operation for fleet member.
:vartype status: ~azure.mgmt.containerservicefleet.models.FleetMemberStatus
"""
_validation = {
"id": {"readonly": True},
"name": {"readonly": True},
"type": {"readonly": True},
"system_data": {"readonly": True},
"e_tag": {"readonly": True},
"group": {"max_length": 50, "min_length": 1, "pattern": r"^[a-z0-9]([-a-z0-9]*[a-z0-9])?$"},
"provisioning_state": {"readonly": True},
"status": {"readonly": True},
}
_attribute_map = {
"id": {"key": "id", "type": "str"},
"name": {"key": "name", "type": "str"},
"type": {"key": "type", "type": "str"},
"system_data": {"key": "systemData", "type": "SystemData"},
"e_tag": {"key": "eTag", "type": "str"},
"cluster_resource_id": {"key": "properties.clusterResourceId", "type": "str"},
"group": {"key": "properties.group", "type": "str"},
"provisioning_state": {"key": "properties.provisioningState", "type": "str"},
"status": {"key": "properties.status", "type": "FleetMemberStatus"},
}
def __init__(
self, *, cluster_resource_id: Optional[str] = None, group: Optional[str] = None, **kwargs: Any
) -> None:
"""
:keyword cluster_resource_id: The ARM resource id of the cluster that joins the Fleet. Must be
a valid Azure resource id. e.g.:
'/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{clusterName}'. # pylint: disable=line-too-long
:paramtype cluster_resource_id: str
:keyword group: The group this member belongs to for multi-cluster update management.
:paramtype group: str
"""
super().__init__(**kwargs)
self.e_tag = None
self.cluster_resource_id = cluster_resource_id
self.group = group
self.provisioning_state = None
self.status = None
class FleetMemberListResult(_serialization.Model):
"""The response of a FleetMember list operation.
All required parameters must be populated in order to send to server.
:ivar value: The FleetMember items on this page. Required.
:vartype value: list[~azure.mgmt.containerservicefleet.models.FleetMember]
:ivar next_link: The link to the next page of items.
:vartype next_link: str
"""
_validation = {
"value": {"required": True},
}
_attribute_map = {
"value": {"key": "value", "type": "[FleetMember]"},
"next_link": {"key": "nextLink", "type": "str"},
}
def __init__(self, *, value: List["_models.FleetMember"], next_link: Optional[str] = None, **kwargs: Any) -> None:
"""
:keyword value: The FleetMember items on this page. Required.
:paramtype value: list[~azure.mgmt.containerservicefleet.models.FleetMember]
:keyword next_link: The link to the next page of items.
:paramtype next_link: str
"""
super().__init__(**kwargs)
self.value = value
self.next_link = next_link
class FleetMemberStatus(_serialization.Model):
"""Status information for the fleet member.
Variables are only populated by the server, and will be ignored when sending a request.
:ivar last_operation_id: The last operation ID for the fleet member.
:vartype last_operation_id: str
:ivar last_operation_error: The last operation error of the fleet member.
:vartype last_operation_error: ~azure.mgmt.containerservicefleet.models.ErrorDetail
"""
_validation = {
"last_operation_id": {"readonly": True},
"last_operation_error": {"readonly": True},
}
_attribute_map = {
"last_operation_id": {"key": "lastOperationId", "type": "str"},
"last_operation_error": {"key": "lastOperationError", "type": "ErrorDetail"},
}
def __init__(self, **kwargs: Any) -> None:
""" """
super().__init__(**kwargs)
self.last_operation_id = None
self.last_operation_error = None
class FleetMemberUpdate(_serialization.Model):
"""The type used for update operations of the FleetMember.
:ivar group: The group this member belongs to for multi-cluster update management.
:vartype group: str
"""
_validation = {
"group": {"max_length": 50, "min_length": 1, "pattern": r"^[a-z0-9]([-a-z0-9]*[a-z0-9])?$"},
}
_attribute_map = {
"group": {"key": "properties.group", "type": "str"},
}
def __init__(self, *, group: Optional[str] = None, **kwargs: Any) -> None:
"""
:keyword group: The group this member belongs to for multi-cluster update management.
:paramtype group: str
"""
super().__init__(**kwargs)
self.group = group
class FleetPatch(_serialization.Model):
"""Properties of a Fleet that can be patched.
:ivar tags: Resource tags.
:vartype tags: dict[str, str]
:ivar identity: Managed identity.
:vartype identity: ~azure.mgmt.containerservicefleet.models.ManagedServiceIdentity
"""
_attribute_map = {
"tags": {"key": "tags", "type": "{str}"},
"identity": {"key": "identity", "type": "ManagedServiceIdentity"},
}
def __init__(
self,
*,
tags: Optional[Dict[str, str]] = None,
identity: Optional["_models.ManagedServiceIdentity"] = None,
**kwargs: Any
) -> None:
"""
:keyword tags: Resource tags.
:paramtype tags: dict[str, str]
:keyword identity: Managed identity.
:paramtype identity: ~azure.mgmt.containerservicefleet.models.ManagedServiceIdentity
"""
super().__init__(**kwargs)
self.tags = tags
self.identity = identity
class FleetStatus(_serialization.Model):
"""Status information for the fleet.
Variables are only populated by the server, and will be ignored when sending a request.
:ivar last_operation_id: The last operation ID for the fleet.
:vartype last_operation_id: str
:ivar last_operation_error: The last operation error for the fleet.
:vartype last_operation_error: ~azure.mgmt.containerservicefleet.models.ErrorDetail
"""
_validation = {
"last_operation_id": {"readonly": True},
"last_operation_error": {"readonly": True},
}
_attribute_map = {
"last_operation_id": {"key": "lastOperationId", "type": "str"},
"last_operation_error": {"key": "lastOperationError", "type": "ErrorDetail"},
}
def __init__(self, **kwargs: Any) -> None:
""" """
super().__init__(**kwargs)
self.last_operation_id = None
self.last_operation_error = None
class FleetUpdateStrategy(ProxyResource):
"""Defines a multi-stage process to perform update operations across members of a Fleet.
Variables are only populated by the server, and will be ignored when sending a request.
:ivar id: Fully qualified resource ID for the resource. E.g.
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}". # pylint: disable=line-too-long
:vartype id: str
:ivar name: The name of the resource.
:vartype name: str
:ivar type: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or
"Microsoft.Storage/storageAccounts".
:vartype type: str
:ivar system_data: Azure Resource Manager metadata containing createdBy and modifiedBy
information.
:vartype system_data: ~azure.mgmt.containerservicefleet.models.SystemData
:ivar e_tag: If eTag is provided in the response body, it may also be provided as a header per
the normal etag convention. Entity tags are used for comparing two or more entities from the
same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match
(section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
:vartype e_tag: str
:ivar provisioning_state: The provisioning state of the UpdateStrategy resource. Known values
are: "Succeeded", "Failed", and "Canceled".
:vartype provisioning_state: str or
~azure.mgmt.containerservicefleet.models.FleetUpdateStrategyProvisioningState
:ivar strategy: Defines the update sequence of the clusters.
:vartype strategy: ~azure.mgmt.containerservicefleet.models.UpdateRunStrategy
"""
_validation = {
"id": {"readonly": True},
"name": {"readonly": True},
"type": {"readonly": True},
"system_data": {"readonly": True},
"e_tag": {"readonly": True},
"provisioning_state": {"readonly": True},
}
_attribute_map = {
"id": {"key": "id", "type": "str"},
"name": {"key": "name", "type": "str"},
"type": {"key": "type", "type": "str"},
"system_data": {"key": "systemData", "type": "SystemData"},
"e_tag": {"key": "eTag", "type": "str"},
"provisioning_state": {"key": "properties.provisioningState", "type": "str"},
"strategy": {"key": "properties.strategy", "type": "UpdateRunStrategy"},
}
def __init__(self, *, strategy: Optional["_models.UpdateRunStrategy"] = None, **kwargs: Any) -> None:
"""
:keyword strategy: Defines the update sequence of the clusters.
:paramtype strategy: ~azure.mgmt.containerservicefleet.models.UpdateRunStrategy
"""
super().__init__(**kwargs)
self.e_tag = None
self.provisioning_state = None
self.strategy = strategy
class FleetUpdateStrategyListResult(_serialization.Model):
"""The response of a FleetUpdateStrategy list operation.
All required parameters must be populated in order to send to server.
:ivar value: The FleetUpdateStrategy items on this page. Required.
:vartype value: list[~azure.mgmt.containerservicefleet.models.FleetUpdateStrategy]
:ivar next_link: The link to the next page of items.
:vartype next_link: str
"""
_validation = {
"value": {"required": True},
}
_attribute_map = {
"value": {"key": "value", "type": "[FleetUpdateStrategy]"},
"next_link": {"key": "nextLink", "type": "str"},
}
def __init__(
self, *, value: List["_models.FleetUpdateStrategy"], next_link: Optional[str] = None, **kwargs: Any
) -> None:
"""
:keyword value: The FleetUpdateStrategy items on this page. Required.
:paramtype value: list[~azure.mgmt.containerservicefleet.models.FleetUpdateStrategy]
:keyword next_link: The link to the next page of items.
:paramtype next_link: str
"""
super().__init__(**kwargs)
self.value = value
self.next_link = next_link
class GenerateResponse(_serialization.Model):
"""GenerateResponse is the response of a generate request.
Variables are only populated by the server, and will be ignored when sending a request.
All required parameters must be populated in order to send to server.
:ivar id: The ARM resource id of the generated UpdateRun. e.g.:
'/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/fleets/{fleetName}/updateRuns/{updateRunName}'. # pylint: disable=line-too-long
Required.
:vartype id: str
"""
_validation = {
"id": {"required": True, "readonly": True},
}
_attribute_map = {
"id": {"key": "id", "type": "str"},
}
def __init__(self, **kwargs: Any) -> None:
""" """
super().__init__(**kwargs)
self.id = None
class ManagedClusterUpdate(_serialization.Model):
"""The update to be applied to the ManagedClusters.
All required parameters must be populated in order to send to server.
:ivar upgrade: The upgrade to apply to the ManagedClusters. Required.
:vartype upgrade: ~azure.mgmt.containerservicefleet.models.ManagedClusterUpgradeSpec
:ivar node_image_selection: The node image upgrade to be applied to the target nodes in update
run.
:vartype node_image_selection: ~azure.mgmt.containerservicefleet.models.NodeImageSelection
"""
_validation = {
"upgrade": {"required": True},
}
_attribute_map = {
"upgrade": {"key": "upgrade", "type": "ManagedClusterUpgradeSpec"},
"node_image_selection": {"key": "nodeImageSelection", "type": "NodeImageSelection"},
}
def __init__(
self,
*,
upgrade: "_models.ManagedClusterUpgradeSpec",
node_image_selection: Optional["_models.NodeImageSelection"] = None,
**kwargs: Any
) -> None:
"""
:keyword upgrade: The upgrade to apply to the ManagedClusters. Required.
:paramtype upgrade: ~azure.mgmt.containerservicefleet.models.ManagedClusterUpgradeSpec
:keyword node_image_selection: The node image upgrade to be applied to the target nodes in
update run.
:paramtype node_image_selection: ~azure.mgmt.containerservicefleet.models.NodeImageSelection
"""
super().__init__(**kwargs)
self.upgrade = upgrade
self.node_image_selection = node_image_selection
class ManagedClusterUpgradeSpec(_serialization.Model):
"""The upgrade to apply to a ManagedCluster.
All required parameters must be populated in order to send to server.
:ivar type: ManagedClusterUpgradeType is the type of upgrade to be applied. Required. Known
values are: "Full", "NodeImageOnly", and "ControlPlaneOnly".
:vartype type: str or ~azure.mgmt.containerservicefleet.models.ManagedClusterUpgradeType
:ivar kubernetes_version: The Kubernetes version to upgrade the member clusters to.
:vartype kubernetes_version: str
"""
_validation = {
"type": {"required": True},
}
_attribute_map = {
"type": {"key": "type", "type": "str"},
"kubernetes_version": {"key": "kubernetesVersion", "type": "str"},
}
def __init__(
self,
*,
type: Union[str, "_models.ManagedClusterUpgradeType"],
kubernetes_version: Optional[str] = None,
**kwargs: Any
) -> None:
"""
:keyword type: ManagedClusterUpgradeType is the type of upgrade to be applied. Required. Known
values are: "Full", "NodeImageOnly", and "ControlPlaneOnly".
:paramtype type: str or ~azure.mgmt.containerservicefleet.models.ManagedClusterUpgradeType
:keyword kubernetes_version: The Kubernetes version to upgrade the member clusters to.
:paramtype kubernetes_version: str
"""
super().__init__(**kwargs)
self.type = type
self.kubernetes_version = kubernetes_version
class ManagedServiceIdentity(_serialization.Model):
"""Managed service identity (system assigned and/or user assigned identities).
Variables are only populated by the server, and will be ignored when sending a request.
All required parameters must be populated in order to send to server.
:ivar principal_id: The service principal ID of the system assigned identity. This property
will only be provided for a system assigned identity.
:vartype principal_id: str
:ivar tenant_id: The tenant ID of the system assigned identity. This property will only be
provided for a system assigned identity.
:vartype tenant_id: str
:ivar type: Type of managed service identity (where both SystemAssigned and UserAssigned types
are allowed). Required. Known values are: "None", "SystemAssigned", "UserAssigned", and
"SystemAssigned, UserAssigned".
:vartype type: str or ~azure.mgmt.containerservicefleet.models.ManagedServiceIdentityType
:ivar user_assigned_identities: The set of user assigned identities associated with the
resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form:
'/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. # pylint: disable=line-too-long
The dictionary values can be empty objects ({}) in requests.
:vartype user_assigned_identities: dict[str,
~azure.mgmt.containerservicefleet.models.UserAssignedIdentity]
"""
_validation = {
"principal_id": {"readonly": True},
"tenant_id": {"readonly": True},
"type": {"required": True},
}
_attribute_map = {
"principal_id": {"key": "principalId", "type": "str"},
"tenant_id": {"key": "tenantId", "type": "str"},
"type": {"key": "type", "type": "str"},
"user_assigned_identities": {"key": "userAssignedIdentities", "type": "{UserAssignedIdentity}"},
}
def __init__(
self,
*,
type: Union[str, "_models.ManagedServiceIdentityType"],
user_assigned_identities: Optional[Dict[str, "_models.UserAssignedIdentity"]] = None,
**kwargs: Any
) -> None:
"""
:keyword type: Type of managed service identity (where both SystemAssigned and UserAssigned
types are allowed). Required. Known values are: "None", "SystemAssigned", "UserAssigned", and
"SystemAssigned, UserAssigned".
:paramtype type: str or ~azure.mgmt.containerservicefleet.models.ManagedServiceIdentityType
:keyword user_assigned_identities: The set of user assigned identities associated with the
resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form:
'/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. # pylint: disable=line-too-long
The dictionary values can be empty objects ({}) in requests.
:paramtype user_assigned_identities: dict[str,
~azure.mgmt.containerservicefleet.models.UserAssignedIdentity]
"""
super().__init__(**kwargs)
self.principal_id = None
self.tenant_id = None
self.type = type
self.user_assigned_identities = user_assigned_identities
class MemberUpdateStatus(_serialization.Model):
"""The status of a member update operation.
Variables are only populated by the server, and will be ignored when sending a request.
:ivar status: The status of the MemberUpdate operation.
:vartype status: ~azure.mgmt.containerservicefleet.models.UpdateStatus
:ivar name: The name of the FleetMember.
:vartype name: str
:ivar cluster_resource_id: The Azure resource id of the target Kubernetes cluster.
:vartype cluster_resource_id: str
:ivar operation_id: The operation resource id of the latest attempt to perform the operation.
:vartype operation_id: str
:ivar message: The status message after processing the member update operation.
:vartype message: str
"""
_validation = {
"status": {"readonly": True},
"name": {"readonly": True},
"cluster_resource_id": {"readonly": True},
"operation_id": {"readonly": True},
"message": {"readonly": True},
}
_attribute_map = {
"status": {"key": "status", "type": "UpdateStatus"},
"name": {"key": "name", "type": "str"},
"cluster_resource_id": {"key": "clusterResourceId", "type": "str"},
"operation_id": {"key": "operationId", "type": "str"},
"message": {"key": "message", "type": "str"},
}
def __init__(self, **kwargs: Any) -> None:
""" """
super().__init__(**kwargs)
self.status = None
self.name = None
self.cluster_resource_id = None
self.operation_id = None
self.message = None
class NodeImageSelection(_serialization.Model):
"""The node image upgrade to be applied to the target nodes in update run.
All required parameters must be populated in order to send to server.
:ivar type: The node image upgrade type. Required. Known values are: "Latest", "Consistent",
and "Custom".
:vartype type: str or ~azure.mgmt.containerservicefleet.models.NodeImageSelectionType
:ivar custom_node_image_versions: Custom node image versions to upgrade the nodes to. This
field is required if node image selection type is Custom. Otherwise, it must be empty. For each
node image family (e.g., 'AKSUbuntu-1804gen2containerd'), this field can contain at most one
version (e.g., only one of 'AKSUbuntu-1804gen2containerd-2023.01.12' or
'AKSUbuntu-1804gen2containerd-2023.02.12', not both). If the nodes belong to a family without a
matching image version in this field, they are not upgraded.
:vartype custom_node_image_versions:
list[~azure.mgmt.containerservicefleet.models.NodeImageVersion]
"""
_validation = {
"type": {"required": True},
}
_attribute_map = {
"type": {"key": "type", "type": "str"},
"custom_node_image_versions": {"key": "customNodeImageVersions", "type": "[NodeImageVersion]"},
}
def __init__(
self,
*,
type: Union[str, "_models.NodeImageSelectionType"],
custom_node_image_versions: Optional[List["_models.NodeImageVersion"]] = None,
**kwargs: Any
) -> None:
"""
:keyword type: The node image upgrade type. Required. Known values are: "Latest", "Consistent",
and "Custom".
:paramtype type: str or ~azure.mgmt.containerservicefleet.models.NodeImageSelectionType
:keyword custom_node_image_versions: Custom node image versions to upgrade the nodes to. This
field is required if node image selection type is Custom. Otherwise, it must be empty. For each
node image family (e.g., 'AKSUbuntu-1804gen2containerd'), this field can contain at most one
version (e.g., only one of 'AKSUbuntu-1804gen2containerd-2023.01.12' or
'AKSUbuntu-1804gen2containerd-2023.02.12', not both). If the nodes belong to a family without a
matching image version in this field, they are not upgraded.
:paramtype custom_node_image_versions:
list[~azure.mgmt.containerservicefleet.models.NodeImageVersion]
"""
super().__init__(**kwargs)
self.type = type
self.custom_node_image_versions = custom_node_image_versions
class NodeImageSelectionStatus(_serialization.Model):
"""The node image upgrade specs for the update run.
Variables are only populated by the server, and will be ignored when sending a request.
:ivar selected_node_image_versions: The image versions to upgrade the nodes to.
:vartype selected_node_image_versions:
list[~azure.mgmt.containerservicefleet.models.NodeImageVersion]
"""
_validation = {
"selected_node_image_versions": {"readonly": True},
}
_attribute_map = {
"selected_node_image_versions": {"key": "selectedNodeImageVersions", "type": "[NodeImageVersion]"},
}
def __init__(self, **kwargs: Any) -> None:
""" """
super().__init__(**kwargs)
self.selected_node_image_versions = None
class NodeImageVersion(_serialization.Model):
"""The node upgrade image version.
Variables are only populated by the server, and will be ignored when sending a request.
:ivar version: The image version to upgrade the nodes to (e.g.,
'AKSUbuntu-1804gen2containerd-2022.12.13').
:vartype version: str
"""
_validation = {
"version": {"readonly": True},
}
_attribute_map = {
"version": {"key": "version", "type": "str"},
}
def __init__(self, **kwargs: Any) -> None:
""" """
super().__init__(**kwargs)
self.version = None
class Operation(_serialization.Model):
"""Details of a REST API operation, returned from the Resource Provider Operations API.
Variables are only populated by the server, and will be ignored when sending a request.
:ivar name: The name of the operation, as per Resource-Based Access Control (RBAC). Examples:
"Microsoft.Compute/virtualMachines/write", "Microsoft.Compute/virtualMachines/capture/action".
:vartype name: str
:ivar is_data_action: Whether the operation applies to data-plane. This is "true" for
data-plane operations and "false" for ARM/control-plane operations.
:vartype is_data_action: bool
:ivar display: Localized display information for this particular operation.
:vartype display: ~azure.mgmt.containerservicefleet.models.OperationDisplay
:ivar origin: The intended executor of the operation; as in Resource Based Access Control
(RBAC) and audit logs UX. Default value is "user,system". Known values are: "user", "system",
and "user,system".
:vartype origin: str or ~azure.mgmt.containerservicefleet.models.Origin
:ivar action_type: Enum. Indicates the action type. "Internal" refers to actions that are for
internal only APIs. "Internal"
:vartype action_type: str or ~azure.mgmt.containerservicefleet.models.ActionType
"""
_validation = {
"name": {"readonly": True},
"is_data_action": {"readonly": True},
"origin": {"readonly": True},
"action_type": {"readonly": True},
}
_attribute_map = {
"name": {"key": "name", "type": "str"},
"is_data_action": {"key": "isDataAction", "type": "bool"},
"display": {"key": "display", "type": "OperationDisplay"},
"origin": {"key": "origin", "type": "str"},
"action_type": {"key": "actionType", "type": "str"},
}
def __init__(self, *, display: Optional["_models.OperationDisplay"] = None, **kwargs: Any) -> None:
"""
:keyword display: Localized display information for this particular operation.
:paramtype display: ~azure.mgmt.containerservicefleet.models.OperationDisplay
"""
super().__init__(**kwargs)
self.name = None
self.is_data_action = None
self.display = display
self.origin = None
self.action_type = None
class OperationDisplay(_serialization.Model):
"""Localized display information for this particular operation.
Variables are only populated by the server, and will be ignored when sending a request.
:ivar provider: The localized friendly form of the resource provider name, e.g. "Microsoft
Monitoring Insights" or "Microsoft Compute".
:vartype provider: str
:ivar resource: The localized friendly name of the resource type related to this operation.
E.g. "Virtual Machines" or "Job Schedule Collections".
:vartype resource: str
:ivar operation: The concise, localized friendly name for the operation; suitable for
dropdowns. E.g. "Create or Update Virtual Machine", "Restart Virtual Machine".
:vartype operation: str
:ivar description: The short, localized friendly description of the operation; suitable for
tool tips and detailed views.
:vartype description: str
"""
_validation = {
"provider": {"readonly": True},
"resource": {"readonly": True},
"operation": {"readonly": True},
"description": {"readonly": True},
}
_attribute_map = {
"provider": {"key": "provider", "type": "str"},
"resource": {"key": "resource", "type": "str"},
"operation": {"key": "operation", "type": "str"},
"description": {"key": "description", "type": "str"},
}
def __init__(self, **kwargs: Any) -> None:
""" """
super().__init__(**kwargs)
self.provider = None
self.resource = None
self.operation = None
self.description = None
class OperationListResult(_serialization.Model):
"""A list of REST API operations supported by an Azure Resource Provider. It contains an URL link
to get the next set of results.
Variables are only populated by the server, and will be ignored when sending a request.
:ivar value: List of operations supported by the resource provider.
:vartype value: list[~azure.mgmt.containerservicefleet.models.Operation]
:ivar next_link: URL to get the next set of operation list results (if there are any).
:vartype next_link: str
"""
_validation = {
"value": {"readonly": True},
"next_link": {"readonly": True},
}
_attribute_map = {
"value": {"key": "value", "type": "[Operation]"},
"next_link": {"key": "nextLink", "type": "str"},
}
def __init__(self, **kwargs: Any) -> None:
""" """
super().__init__(**kwargs)
self.value = None
self.next_link = None
class SkipProperties(_serialization.Model):
"""The properties of a skip operation containing multiple skip requests.
All required parameters must be populated in order to send to server.
:ivar targets: The targets to skip. Required.
:vartype targets: list[~azure.mgmt.containerservicefleet.models.SkipTarget]
"""
_validation = {
"targets": {"required": True},
}
_attribute_map = {
"targets": {"key": "targets", "type": "[SkipTarget]"},
}
def __init__(self, *, targets: List["_models.SkipTarget"], **kwargs: Any) -> None:
"""
:keyword targets: The targets to skip. Required.
:paramtype targets: list[~azure.mgmt.containerservicefleet.models.SkipTarget]
"""
super().__init__(**kwargs)
self.targets = targets
class SkipTarget(_serialization.Model):
"""The definition of a single skip request.
All required parameters must be populated in order to send to server.
:ivar type: The skip target type. Required. Known values are: "Member", "Group", "Stage", and
"AfterStageWait".
:vartype type: str or ~azure.mgmt.containerservicefleet.models.TargetType
:ivar name: The skip target's name.
To skip a member/group/stage, use the member/group/stage's name;
Tp skip an after stage wait, use the parent stage's name. Required.
:vartype name: str
"""
_validation = {
"type": {"required": True},
"name": {"required": True},
}
_attribute_map = {
"type": {"key": "type", "type": "str"},
"name": {"key": "name", "type": "str"},
}
def __init__(self, *, type: Union[str, "_models.TargetType"], name: str, **kwargs: Any) -> None:
"""
:keyword type: The skip target type. Required. Known values are: "Member", "Group", "Stage",
and "AfterStageWait".
:paramtype type: str or ~azure.mgmt.containerservicefleet.models.TargetType
:keyword name: The skip target's name.
To skip a member/group/stage, use the member/group/stage's name;
Tp skip an after stage wait, use the parent stage's name. Required.
:paramtype name: str
"""
super().__init__(**kwargs)
self.type = type
self.name = name
class SystemData(_serialization.Model):
"""Metadata pertaining to creation and last modification of the resource.
:ivar created_by: The identity that created the resource.
:vartype created_by: str
:ivar created_by_type: The type of identity that created the resource. Known values are:
"User", "Application", "ManagedIdentity", and "Key".
:vartype created_by_type: str or ~azure.mgmt.containerservicefleet.models.CreatedByType
:ivar created_at: The timestamp of resource creation (UTC).
:vartype created_at: ~datetime.datetime
:ivar last_modified_by: The identity that last modified the resource.
:vartype last_modified_by: str
:ivar last_modified_by_type: The type of identity that last modified the resource. Known values
are: "User", "Application", "ManagedIdentity", and "Key".
:vartype last_modified_by_type: str or ~azure.mgmt.containerservicefleet.models.CreatedByType
:ivar last_modified_at: The timestamp of resource last modification (UTC).
:vartype last_modified_at: ~datetime.datetime
"""
_attribute_map = {
"created_by": {"key": "createdBy", "type": "str"},
"created_by_type": {"key": "createdByType", "type": "str"},
"created_at": {"key": "createdAt", "type": "iso-8601"},
"last_modified_by": {"key": "lastModifiedBy", "type": "str"},
"last_modified_by_type": {"key": "lastModifiedByType", "type": "str"},
"last_modified_at": {"key": "lastModifiedAt", "type": "iso-8601"},
}
def __init__(
self,
*,
created_by: Optional[str] = None,
created_by_type: Optional[Union[str, "_models.CreatedByType"]] = None,
created_at: Optional[datetime.datetime] = None,
last_modified_by: Optional[str] = None,
last_modified_by_type: Optional[Union[str, "_models.CreatedByType"]] = None,
last_modified_at: Optional[datetime.datetime] = None,
**kwargs: Any
) -> None:
"""
:keyword created_by: The identity that created the resource.
:paramtype created_by: str
:keyword created_by_type: The type of identity that created the resource. Known values are:
"User", "Application", "ManagedIdentity", and "Key".
:paramtype created_by_type: str or ~azure.mgmt.containerservicefleet.models.CreatedByType
:keyword created_at: The timestamp of resource creation (UTC).
:paramtype created_at: ~datetime.datetime
:keyword last_modified_by: The identity that last modified the resource.
:paramtype last_modified_by: str
:keyword last_modified_by_type: The type of identity that last modified the resource. Known
values are: "User", "Application", "ManagedIdentity", and "Key".
:paramtype last_modified_by_type: str or ~azure.mgmt.containerservicefleet.models.CreatedByType
:keyword last_modified_at: The timestamp of resource last modification (UTC).
:paramtype last_modified_at: ~datetime.datetime
"""
super().__init__(**kwargs)
self.created_by = created_by
self.created_by_type = created_by_type
self.created_at = created_at
self.last_modified_by = last_modified_by
self.last_modified_by_type = last_modified_by_type
self.last_modified_at = last_modified_at
class UpdateGroup(_serialization.Model):
"""A group to be updated.
All required parameters must be populated in order to send to server.
:ivar name: Name of the group.
It must match a group name of an existing fleet member. Required.
:vartype name: str
"""
_validation = {
"name": {"required": True, "max_length": 50, "min_length": 1, "pattern": r"^[a-z0-9]([-a-z0-9]*[a-z0-9])?$"},
}
_attribute_map = {
"name": {"key": "name", "type": "str"},
}
def __init__(self, *, name: str, **kwargs: Any) -> None:
"""
:keyword name: Name of the group.
It must match a group name of an existing fleet member. Required.
:paramtype name: str
"""
super().__init__(**kwargs)
self.name = name
class UpdateGroupStatus(_serialization.Model):
"""The status of a UpdateGroup.
Variables are only populated by the server, and will be ignored when sending a request.
:ivar status: The status of the UpdateGroup.
:vartype status: ~azure.mgmt.containerservicefleet.models.UpdateStatus
:ivar name: The name of the UpdateGroup.
:vartype name: str
:ivar members: The list of member this UpdateGroup updates.
:vartype members: list[~azure.mgmt.containerservicefleet.models.MemberUpdateStatus]
"""
_validation = {
"status": {"readonly": True},
"name": {"readonly": True},
"members": {"readonly": True},
}
_attribute_map = {
"status": {"key": "status", "type": "UpdateStatus"},
"name": {"key": "name", "type": "str"},
"members": {"key": "members", "type": "[MemberUpdateStatus]"},
}
def __init__(self, **kwargs: Any) -> None:
""" """
super().__init__(**kwargs)
self.status = None
self.name = None
self.members = None
class UpdateRun(ProxyResource):
"""A multi-stage process to perform update operations across members of a Fleet.
Variables are only populated by the server, and will be ignored when sending a request.
:ivar id: Fully qualified resource ID for the resource. E.g.
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}". # pylint: disable=line-too-long
:vartype id: str
:ivar name: The name of the resource.
:vartype name: str
:ivar type: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or
"Microsoft.Storage/storageAccounts".
:vartype type: str
:ivar system_data: Azure Resource Manager metadata containing createdBy and modifiedBy
information.
:vartype system_data: ~azure.mgmt.containerservicefleet.models.SystemData
:ivar e_tag: If eTag is provided in the response body, it may also be provided as a header per
the normal etag convention. Entity tags are used for comparing two or more entities from the
same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match
(section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
:vartype e_tag: str
:ivar provisioning_state: The provisioning state of the UpdateRun resource. Known values are:
"Succeeded", "Failed", and "Canceled".
:vartype provisioning_state: str or
~azure.mgmt.containerservicefleet.models.UpdateRunProvisioningState
:ivar update_strategy_id: The resource id of the FleetUpdateStrategy resource to reference.
When creating a new run, there are three ways to define a strategy for the run:
#. Define a new strategy in place: Set the "strategy" field.
#. Use an existing strategy: Set the "updateStrategyId" field. (since 2023-08-15-preview)
#. Use the default strategy to update all the members one by one: Leave both
"updateStrategyId" and "strategy" unset. (since 2023-08-15-preview)
Setting both "updateStrategyId" and "strategy" is invalid.
UpdateRuns created by "updateStrategyId" snapshot the referenced UpdateStrategy at the time of
creation and store it in the "strategy" field.
Subsequent changes to the referenced FleetUpdateStrategy resource do not propagate.
UpdateRunStrategy changes can be made directly on the "strategy" field before launching the
UpdateRun.
:vartype update_strategy_id: str
:ivar strategy: The strategy defines the order in which the clusters will be updated.
If not set, all members will be updated sequentially. The UpdateRun status will show a single
UpdateStage and a single UpdateGroup targeting all members.
The strategy of the UpdateRun can be modified until the run is started.
:vartype strategy: ~azure.mgmt.containerservicefleet.models.UpdateRunStrategy
:ivar managed_cluster_update: The update to be applied to all clusters in the UpdateRun. The
managedClusterUpdate can be modified until the run is started.
:vartype managed_cluster_update: ~azure.mgmt.containerservicefleet.models.ManagedClusterUpdate
:ivar status: The status of the UpdateRun.
:vartype status: ~azure.mgmt.containerservicefleet.models.UpdateRunStatus
:ivar auto_upgrade_profile_id: AutoUpgradeProfileId is the id of an auto upgrade profile
resource.
:vartype auto_upgrade_profile_id: str
"""
_validation = {
"id": {"readonly": True},
"name": {"readonly": True},
"type": {"readonly": True},
"system_data": {"readonly": True},
"e_tag": {"readonly": True},
"provisioning_state": {"readonly": True},
"status": {"readonly": True},
"auto_upgrade_profile_id": {"readonly": True},
}
_attribute_map = {
"id": {"key": "id", "type": "str"},
"name": {"key": "name", "type": "str"},
"type": {"key": "type", "type": "str"},
"system_data": {"key": "systemData", "type": "SystemData"},
"e_tag": {"key": "eTag", "type": "str"},
"provisioning_state": {"key": "properties.provisioningState", "type": "str"},
"update_strategy_id": {"key": "properties.updateStrategyId", "type": "str"},
"strategy": {"key": "properties.strategy", "type": "UpdateRunStrategy"},
"managed_cluster_update": {"key": "properties.managedClusterUpdate", "type": "ManagedClusterUpdate"},
"status": {"key": "properties.status", "type": "UpdateRunStatus"},
"auto_upgrade_profile_id": {"key": "properties.autoUpgradeProfileId", "type": "str"},
}
def __init__(
self,
*,
update_strategy_id: Optional[str] = None,
strategy: Optional["_models.UpdateRunStrategy"] = None,
managed_cluster_update: Optional["_models.ManagedClusterUpdate"] = None,
**kwargs: Any
) -> None:
"""
:keyword update_strategy_id: The resource id of the FleetUpdateStrategy resource to reference.
When creating a new run, there are three ways to define a strategy for the run:
#. Define a new strategy in place: Set the "strategy" field.
#. Use an existing strategy: Set the "updateStrategyId" field. (since 2023-08-15-preview)
#. Use the default strategy to update all the members one by one: Leave both
"updateStrategyId" and "strategy" unset. (since 2023-08-15-preview)
Setting both "updateStrategyId" and "strategy" is invalid.
UpdateRuns created by "updateStrategyId" snapshot the referenced UpdateStrategy at the time of
creation and store it in the "strategy" field.
Subsequent changes to the referenced FleetUpdateStrategy resource do not propagate.
UpdateRunStrategy changes can be made directly on the "strategy" field before launching the
UpdateRun.
:paramtype update_strategy_id: str
:keyword strategy: The strategy defines the order in which the clusters will be updated.
If not set, all members will be updated sequentially. The UpdateRun status will show a single
UpdateStage and a single UpdateGroup targeting all members.
The strategy of the UpdateRun can be modified until the run is started.
:paramtype strategy: ~azure.mgmt.containerservicefleet.models.UpdateRunStrategy
:keyword managed_cluster_update: The update to be applied to all clusters in the UpdateRun. The
managedClusterUpdate can be modified until the run is started.
:paramtype managed_cluster_update:
~azure.mgmt.containerservicefleet.models.ManagedClusterUpdate
"""
super().__init__(**kwargs)
self.e_tag = None
self.provisioning_state = None
self.update_strategy_id = update_strategy_id
self.strategy = strategy
self.managed_cluster_update = managed_cluster_update
self.status = None
self.auto_upgrade_profile_id = None
class UpdateRunListResult(_serialization.Model):
"""The response of a UpdateRun list operation.
All required parameters must be populated in order to send to server.
:ivar value: The UpdateRun items on this page. Required.
:vartype value: list[~azure.mgmt.containerservicefleet.models.UpdateRun]
:ivar next_link: The link to the next page of items.
:vartype next_link: str
"""
_validation = {
"value": {"required": True},
}
_attribute_map = {
"value": {"key": "value", "type": "[UpdateRun]"},
"next_link": {"key": "nextLink", "type": "str"},
}
def __init__(self, *, value: List["_models.UpdateRun"], next_link: Optional[str] = None, **kwargs: Any) -> None:
"""
:keyword value: The UpdateRun items on this page. Required.
:paramtype value: list[~azure.mgmt.containerservicefleet.models.UpdateRun]
:keyword next_link: The link to the next page of items.
:paramtype next_link: str
"""
super().__init__(**kwargs)
self.value = value
self.next_link = next_link
class UpdateRunStatus(_serialization.Model):
"""The status of a UpdateRun.
Variables are only populated by the server, and will be ignored when sending a request.
:ivar status: The status of the UpdateRun.
:vartype status: ~azure.mgmt.containerservicefleet.models.UpdateStatus
:ivar stages: The stages composing an update run. Stages are run sequentially withing an
UpdateRun.
:vartype stages: list[~azure.mgmt.containerservicefleet.models.UpdateStageStatus]
:ivar node_image_selection: The node image upgrade specs for the update run. It is only set in
update run when ``NodeImageSelection.type`` is ``Consistent``.
:vartype node_image_selection:
~azure.mgmt.containerservicefleet.models.NodeImageSelectionStatus
"""
_validation = {
"status": {"readonly": True},
"stages": {"readonly": True},
"node_image_selection": {"readonly": True},
}
_attribute_map = {
"status": {"key": "status", "type": "UpdateStatus"},
"stages": {"key": "stages", "type": "[UpdateStageStatus]"},
"node_image_selection": {"key": "nodeImageSelection", "type": "NodeImageSelectionStatus"},
}
def __init__(self, **kwargs: Any) -> None:
""" """
super().__init__(**kwargs)
self.status = None
self.stages = None
self.node_image_selection = None
class UpdateRunStrategy(_serialization.Model):
"""Defines the update sequence of the clusters via stages and groups.
Stages within a run are executed sequentially one after another.
Groups within a stage are executed in parallel.
Member clusters within a group are updated sequentially one after another.
A valid strategy contains no duplicate groups within or across stages.
All required parameters must be populated in order to send to server.
:ivar stages: The list of stages that compose this update run. Min size: 1. Required.
:vartype stages: list[~azure.mgmt.containerservicefleet.models.UpdateStage]
"""
_validation = {
"stages": {"required": True},
}
_attribute_map = {
"stages": {"key": "stages", "type": "[UpdateStage]"},
}
def __init__(self, *, stages: List["_models.UpdateStage"], **kwargs: Any) -> None:
"""
:keyword stages: The list of stages that compose this update run. Min size: 1. Required.
:paramtype stages: list[~azure.mgmt.containerservicefleet.models.UpdateStage]
"""
super().__init__(**kwargs)
self.stages = stages
class UpdateStage(_serialization.Model):
"""Defines a stage which contains the groups to update and the steps to take (e.g., wait for a
time period) before starting the next stage.
All required parameters must be populated in order to send to server.
:ivar name: The name of the stage. Must be unique within the UpdateRun. Required.
:vartype name: str
:ivar groups: Defines the groups to be executed in parallel in this stage. Duplicate groups are
not allowed. Min size: 1.
:vartype groups: list[~azure.mgmt.containerservicefleet.models.UpdateGroup]
:ivar after_stage_wait_in_seconds: The time in seconds to wait at the end of this stage before
starting the next one. Defaults to 0 seconds if unspecified.
:vartype after_stage_wait_in_seconds: int
"""
_validation = {
"name": {"required": True, "max_length": 50, "min_length": 1, "pattern": r"^[a-z0-9]([-a-z0-9]*[a-z0-9])?$"},
}
_attribute_map = {
"name": {"key": "name", "type": "str"},
"groups": {"key": "groups", "type": "[UpdateGroup]"},
"after_stage_wait_in_seconds": {"key": "afterStageWaitInSeconds", "type": "int"},
}
def __init__(
self,
*,
name: str,
groups: Optional[List["_models.UpdateGroup"]] = None,
after_stage_wait_in_seconds: Optional[int] = None,
**kwargs: Any
) -> None:
"""
:keyword name: The name of the stage. Must be unique within the UpdateRun. Required.
:paramtype name: str
:keyword groups: Defines the groups to be executed in parallel in this stage. Duplicate groups
are not allowed. Min size: 1.
:paramtype groups: list[~azure.mgmt.containerservicefleet.models.UpdateGroup]
:keyword after_stage_wait_in_seconds: The time in seconds to wait at the end of this stage
before starting the next one. Defaults to 0 seconds if unspecified.
:paramtype after_stage_wait_in_seconds: int
"""
super().__init__(**kwargs)
self.name = name
self.groups = groups
self.after_stage_wait_in_seconds = after_stage_wait_in_seconds
class UpdateStageStatus(_serialization.Model):
"""The status of a UpdateStage.
Variables are only populated by the server, and will be ignored when sending a request.
:ivar status: The status of the UpdateStage.
:vartype status: ~azure.mgmt.containerservicefleet.models.UpdateStatus
:ivar name: The name of the UpdateStage.
:vartype name: str
:ivar groups: The list of groups to be updated as part of this UpdateStage.
:vartype groups: list[~azure.mgmt.containerservicefleet.models.UpdateGroupStatus]
:ivar after_stage_wait_status: The status of the wait period configured on the UpdateStage.
:vartype after_stage_wait_status: ~azure.mgmt.containerservicefleet.models.WaitStatus
"""
_validation = {
"status": {"readonly": True},
"name": {"readonly": True},
"groups": {"readonly": True},
"after_stage_wait_status": {"readonly": True},
}
_attribute_map = {
"status": {"key": "status", "type": "UpdateStatus"},
"name": {"key": "name", "type": "str"},
"groups": {"key": "groups", "type": "[UpdateGroupStatus]"},
"after_stage_wait_status": {"key": "afterStageWaitStatus", "type": "WaitStatus"},
}
def __init__(self, **kwargs: Any) -> None:
""" """
super().__init__(**kwargs)
self.status = None
self.name = None
self.groups = None
self.after_stage_wait_status = None
class UpdateStatus(_serialization.Model):
"""The status for an operation or group of operations.
Variables are only populated by the server, and will be ignored when sending a request.
:ivar start_time: The time the operation or group was started.
:vartype start_time: ~datetime.datetime
:ivar completed_time: The time the operation or group was completed.
:vartype completed_time: ~datetime.datetime
:ivar state: The State of the operation or group. Known values are: "NotStarted", "Running",
"Stopping", "Stopped", "Skipped", "Failed", and "Completed".
:vartype state: str or ~azure.mgmt.containerservicefleet.models.UpdateState
:ivar error: The error details when a failure is encountered.
:vartype error: ~azure.mgmt.containerservicefleet.models.ErrorDetail
"""
_validation = {
"start_time": {"readonly": True},
"completed_time": {"readonly": True},
"state": {"readonly": True},
"error": {"readonly": True},
}
_attribute_map = {
"start_time": {"key": "startTime", "type": "iso-8601"},
"completed_time": {"key": "completedTime", "type": "iso-8601"},
"state": {"key": "state", "type": "str"},
"error": {"key": "error", "type": "ErrorDetail"},
}
def __init__(self, **kwargs: Any) -> None:
""" """
super().__init__(**kwargs)
self.start_time = None
self.completed_time = None
self.state = None
self.error = None
class UserAssignedIdentity(_serialization.Model):
"""User assigned identity properties.
Variables are only populated by the server, and will be ignored when sending a request.
:ivar principal_id: The principal ID of the assigned identity.
:vartype principal_id: str
:ivar client_id: The client ID of the assigned identity.
:vartype client_id: str
"""
_validation = {
"principal_id": {"readonly": True},
"client_id": {"readonly": True},
}
_attribute_map = {
"principal_id": {"key": "principalId", "type": "str"},
"client_id": {"key": "clientId", "type": "str"},
}
def __init__(self, **kwargs: Any) -> None:
""" """
super().__init__(**kwargs)
self.principal_id = None
self.client_id = None
class WaitStatus(_serialization.Model):
"""The status of the wait duration.
Variables are only populated by the server, and will be ignored when sending a request.
:ivar status: The status of the wait duration.
:vartype status: ~azure.mgmt.containerservicefleet.models.UpdateStatus
:ivar wait_duration_in_seconds: The wait duration configured in seconds.
:vartype wait_duration_in_seconds: int
"""
_validation = {
"status": {"readonly": True},
"wait_duration_in_seconds": {"readonly": True},
}
_attribute_map = {
"status": {"key": "status", "type": "UpdateStatus"},
"wait_duration_in_seconds": {"key": "waitDurationInSeconds", "type": "int"},
}
def __init__(self, **kwargs: Any) -> None:
""" """
super().__init__(**kwargs)
self.status = None
self.wait_duration_in_seconds = None
|