PureStorage.Pure1.psm1
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 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 |
function Get-PureOneCertificate { <# .SYNOPSIS Returns the Windows Certificate or RSA Private Key used for Pure1 Authentication. .DESCRIPTION Returns the default Pure1 certificate or key. Or returns the specified certificate object if a non-default one is used. .INPUTS Certificate store (optional), certificate thumbrint (optional) .OUTPUTS Returns the certificate object or private key path .EXAMPLE PS C:\ Get-PureOneCertificate Returns the default Pure1 certificate in the default certificiate store cert:\currentuser\my or the Default Private Key path if using Linux or MacOS .EXAMPLE PS C:\ Get-PureOneCertificate -certificateStore cert:\localmachine\my Windows only: Returns the default Pure1 certificate in the certificiate store cert:\localmachine\my .EXAMPLE PS C:\ Get-PureOneCertificate -CertificateThumbprint 3ED3EB9BF753849820CFF43B2444100D334B60DD Windows only: Returns the Pure1 certificate with the specified thumbprint in the default certificiate store cert:\currentuser\my .EXAMPLE PS C:\ Get-PureOneCertificate -certificateStore cert:\localmachine\my -CertificateThumbprint 3ED3EB9BF753849820CFF43B2444100D334B60DD Windows only: Returns the Pure1 certificate with the specified thumbprint in the specified certificiate store .NOTES Version: 1.0 Author: Cody Hosterman https://codyhosterman.com Creation Date: 11/11/2020 Purpose/Change: Initial Release *******Disclaimer:****************************************************** This scripts are offered "as is" with no warranty. While this scripts is tested and working in my environment, it is recommended that you test this script in a test lab before using in a production environment. Everyone can use the scripts/commands provided here without any written permission but I will not be liable for any damage or loss to the system. ************************************************************************ #> [CmdletBinding()] Param( [Parameter(Position=0)] [String]$CertificateStore, [Parameter(Position=1)] [String]$CertificateThumbprint, [Parameter(Position=2,ParameterSetName='Export')] [Switch]$Export, [Parameter(Position=3,ParameterSetName='Export')] [SecureString]$CertificatePassword, [Parameter(Position=4,ParameterSetName='Export')] [String]$ExportDirectory ) if (($IsLinux -eq $true) -or ($IsMacOS -eq $true)) { if ($Export -eq $true) { throw "Export is only valid for Windows." } } if ($IsWindows -eq $false) { if (![string]::IsNullOrEmpty($CertificateStore)) { throw "The use of the CertificateStore parameter is only valid for Windows." } if (![string]::IsNullOrEmpty($CertificateThumbprint)) { throw "The use of the CertificateThumbprint parameter is only valid for Windows." } $PrivateKeyFilePath = (Get-Location).Path + "/PureOnePrivate.pem" $checkPath = Test-Path $PrivateKeyFilePath if ($checkPath -eq $true) { return $PrivateKeyFilePath } else { throw "Key not found at the default location of $($PrivateKeyFilePath). Please create a new one with New-PureOneCertificate. If a custom path is used, there is no need for this cmdlet. Instead specify the custom path for subsequent cmds." } } else { if ([string]::IsNullOrEmpty($CertificateStore)) { $CertificateStore = "cert:\currentuser\my" } if ([string]::IsNullOrEmpty($CertificateThumbprint)) { $cert = Get-ChildItem -Path $CertificateStore |where-object {$_.FriendlyName -eq "Default Pure1 REST API Certificate"} if ($cert.Count -gt 1) { throw "More than one default certificate was found in the specified certificate store (a certificate that has the friendly name of `"Default Pure1 REST API Certificate`")." } if ($null -eq $cert) { throw "No default certificate found in the specified certificate store (a certificate that has the friendly name of `"Default Pure1 REST API Certificate`")." } } else { $cert = Get-ChildItem -Path ($CertificateStore + "\" + $CertificateThumbprint) -ErrorAction Stop } } if ($Export -eq $true) { if ($null -eq $CertificatePassword) { do { $CertificatePassword = Read-Host "Please enter a certificate export password" -AsSecureString }while ($CertificatePassword.length -eq 0) } if ([string]::IsNullOrEmpty($ExportDirectory)) { $keyPath = (Get-Location).Path } else { if ((Test-Path -Path $ExportDirectory) -eq $false) { throw "Entered path $($ExportDirectory) is not valid. Please enter a valid directory. For example, C:\Users\Janice\Certs" } else { $keyPath = $ExportDirectory } } $DecryptedCertificatePassword = ConvertFrom-SecureString $CertificatePassword -AsPlainText $cert |Foreach-Object { [system.IO.file]::WriteAllBytes("$($keyPath)\PureOneCert.pfx",($_.Export('PFX', $DecryptedCertificatePassword)) ) } $foundKey = test-path "$($keyPath)\PureOneCert.pfx" if ($foundKey -eq $true) { return "$($keyPath)\PureOneCert.pfx" } else { throw "The certificate could not be exported to $($keyPath)\PureOneCert.pfx. Ensure directory is accessible." } } else { return $cert } } function Set-PureOneDefaultCertificate { <# .SYNOPSIS Set a Windows Certificate to the default certificate used for Pure1 Authentication. .DESCRIPTION The default certificate is designated by using the friendly name of Default Pure1 REST API Certificate .INPUTS Certificate, or certificate store and certificate thumbprint .OUTPUTS Returns the certificate object .EXAMPLE PS C:\ Set-PureOneDefaultCertificate -certificateStore cert:\localmachine\my -CertificateThumbprint 3ED3EB9BF753849820CFF43B2444100D334B60DD Set the specified certificate to the default. .EXAMPLE PS C:\ $cert = Get-ChildItem -Path cert:\localmachine\my\3ED3EB9BF753849820CFF43B2444100D334B60DD PS C:\ $cert | Set-PureOneDefaultCertificate Set the specified certificate to the default. .EXAMPLE PS C:\ $cert = Get-ChildItem -Path cert:\localmachine\my\3ED3EB9BF753849820CFF43B2444100D334B60DD PS C:\ $cert | Set-PureOneDefaultCertificate -Confirm:$false Set the specified certificate to the default without prompt .NOTES Version: 1.0 Author: Cody Hosterman https://codyhosterman.com Creation Date: 11/11/2020 Purpose/Change: Initial Release *******Disclaimer:****************************************************** This scripts are offered "as is" with no warranty. While this scripts is tested and working in my environment, it is recommended that you test this script in a test lab before using in a production environment. Everyone can use the scripts/commands provided here without any written permission but I will not be liable for any damage or loss to the system. ************************************************************************ #> [CmdletBinding(SupportsShouldProcess=$true,ConfirmImpact='High')] Param( [Parameter(Position=0,ValueFromPipeline=$True,mandatory=$True,ParameterSetName='Certificate')] [System.Security.Cryptography.X509Certificates.X509Certificate]$Certificate, [Parameter(Position=0,ParameterSetName='Thumbprint')] [String]$CertificateStore, [Parameter(Position=1,mandatory=$True,ParameterSetName='Thumbprint')] [String]$CertificateThumbprint ) Begin { $checkForOneCert = $false if (($IsLinux -eq $true) -or ($IsMacOS -eq $true)) { throw "This cmdlet is only valid/relevant for Windows-based installations of PowerShell." } } Process { if ($checkForOneCert -eq $false) { $checkForOneCert = $True } else { throw "Please only pass in one certificate at a time. More than one found in the pipelined input for parameter Certificate." } } End { if ([string]::IsNullOrEmpty($CertificateStore)) { $CertificateStore = "cert:\currentuser\my" } if ([string]::IsNullOrEmpty($Certificate)) { $Certificate = Get-ChildItem -Path ($CertificateStore + "\" + $CertificateThumbprint) -ErrorAction Stop } $certs = Get-ChildItem -Path $Certificate.PSParentPath foreach ($eachCert in $certs) { if ($Certificate.Thumbprint -eq $eachCert.Thumbprint) { continue } if ($eachCert.FriendlyName -eq "Default Pure1 REST API Certificate") { $foundCert = $eachCert break } } if ($null -ne $foundCert) { $confirmText = "A default certificate is already found with the thumbprint of $($foundCert.Thumbprint). Remove this certificate as default and set $($Certificate.Thumbprint) as the default?" if ($PSCmdlet.ShouldProcess("","$($confirmText)`n`r","Setting $($Certificate.Thumbprint) as the default. `n`r")) { (Get-ChildItem -Path $foundCert.PSPath).FriendlyName = $null |Out-Null ((Get-ChildItem -Path $Certificate.PSPath).FriendlyName = "Default Pure1 REST API Certificate") |Out-Null return $Certificate } } else { ((Get-ChildItem -Path $Certificate.PSPath).FriendlyName = "Default Pure1 REST API Certificate") |Out-Null return $Certificate } } } function New-PureOneCertificate { <# .SYNOPSIS Creates a new certificate for use in authentication with Pure1. .DESCRIPTION Creates a properly formatted RSA 256 certificate .INPUTS Certificate store (optional) .OUTPUTS Returns the certificate .EXAMPLE PS C:\ New-PureOneCertificate Creates a properly formatted self-signed certificate for Pure1 authentication. Defaults to certificate store of cert:\currentuser\my .EXAMPLE PS C:\ New-PureOneCertificate -NonDefault Creates a properly formatted self-signed certificate for Pure1 authentication. Defaults to certificate store of cert:\currentuser\my. The nonDefault switch makes the created certificate not the default one. .EXAMPLE PS C:\ New-PureOneCertificate -certificateStore cert:\localmachine\my Creates a properly formatted self-signed certificate for Pure1 authentication. Uses the specifed certificate store. Non-default stores usually require running as administrator. Windows only. .EXAMPLE PS /home/pureuser> $password = Read-Host -AsSecureString PS /home/pureuser> New-PureOneCertificate -RsaPassword $password Creates a properly formatted private and public key pair for Pure1 authentication. Uses the working directory. Linux or MacOS only. .EXAMPLE PS /home/pureuser> $password = Read-Host -AsSecureString PS /home/pureuser> New-PureOneCertificate -RsaPassword $password -PrivateKeyFileDirectory "/home/pureuser" Creates a properly formatted private and public key pair for Pure1 authentication and stores it in specified directory. Linux or MacOS only. .NOTES Version: 1.1 Author: Cody Hosterman https://codyhosterman.com Creation Date: 08/29/2020 Purpose/Change: Core support *******Disclaimer:****************************************************** This scripts are offered "as is" with no warranty. While this scripts is tested and working in my environment, it is recommended that you test this script in a test lab before using in a production environment. Everyone can use the scripts/commands provided here without any written permission but I will not be liable for any damage or loss to the system. ************************************************************************ #> [CmdletBinding(DefaultParameterSetName='Certificate')] Param( [Parameter(Position=0,ParameterSetName='Certificate')] [String]$CertificateStore = "cert:\currentuser\my", [Parameter(Position=1,ParameterSetName='RSAPair',mandatory=$True)] [SecureString]$RsaPassword, [Parameter(Position=2)] [Switch]$Overwrite, [Parameter(Position=3,ParameterSetName='RSAPair')] [String]$PrivateKeyFileDirectory, [Parameter(Position=3,ParameterSetName='Certificate')] [Switch]$NonDefault ) if ($IsWindows -eq $false) { if ([string]::IsNullOrEmpty($PrivateKeyFileDirectory)) { $keyPath = (Get-Location).Path } else { if ((Test-Path -Path $PrivateKeyFileDirectory) -eq $false) { throw "Entered path $($PrivateKeyFileDirectory) is not valid. Please enter a valid directory. For example, /home/user" } else { $keyPath = $PrivateKeyFileDirectory } } $checkPath = Test-Path "$($keyPath)/PureOnePrivate.pem" if (($checkPath -eq $true) -and ($Overwrite -eq $false)) { throw "A pre-existing Pure1 Private Key exists at $($keyPath)/PureOnePrivate.pem. Overwriting this key will require a new application ID to be generated for the new key in Pure1. Either re-run with the -overwrite switch, or specify a different directory in the -keypath parameter, or skip this cmdlet and pass in the path of your custom key location to New-PureOneConnection." } if ($RsaPassword.Length -eq 0) { $RsaPassword = Read-Host -Prompt "Please enter a password to be used for the private key" -AsSecureString } $DecryptedRsaPassword = ConvertFrom-SecureString $RsaPassword -AsPlainText if (($DecryptedRsaPassword.length -lt 4) -or ($DecryptedRsaPassword.length -gt 1022)) { throw "The entered private key password must be more than 4 characters and less than 1023 characters." } openssl genrsa -aes256 -passout pass:$DecryptedRsaPassword -out $keypath/PureOnePrivate.pem 2048 2>/dev/null openssl rsa -in $keypath/PureOnePrivate.pem -outform PEM -pubout -out $keypath/PureOnePublic.pem -passin pass:$DecryptedRsaPassword 2>/dev/null $keyPaths = [ordered]@{ PrivateKey = "$($keyPath)/PureOnePrivate.pem" PublicKey = "$($keyPath)/PureOnePublic.pem" } return $keyPaths } if (($null -eq $isWindows) -or ($isWindows -eq $true)) { if (([System.Environment]::OSVersion.Version).Major -eq 6) { #For Windows 2012 support--less specific but the default certificate still works. $CertObj = New-SelfSignedCertificate -certstorelocation $certificateStore -DnsName PureOneCert } else { $policies = [System.Security.Cryptography.CngExportPolicies]::AllowPlaintextExport,[System.Security.Cryptography.CngExportPolicies]::AllowExport $CertObj = New-SelfSignedCertificate -certstorelocation $certificateStore -HashAlgorithm "SHA256" -KeyLength 2048 -KeyAlgorithm RSA -KeyUsage DigitalSignature -KeyExportPolicy $policies -Subject "PureOneCert" -ErrorAction Stop } $cert = Get-ChildItem -Path $CertObj.PSPath if ($NonDefault -eq $false) { $certs = Get-ChildItem -Path $cert.PSParentPath foreach ($eachCert in $certs) { if ($cert.Thumbprint -eq $eachCert.Thumbprint) { continue } if ($eachCert.FriendlyName -eq "Default Pure1 REST API Certificate") { $foundCert = $eachCert break } } if (($null -ne $foundCert) -and ($Overwrite -ne $true)) { $cert = Set-PureOneDefaultCertificate -Certificate $cert -Confirm:$true } else { $cert = Set-PureOneDefaultCertificate -Certificate $cert -Confirm:$false } } return $cert } } function Get-PureOnePublicKey { <# .SYNOPSIS Retrives and formats a PEM based Public Key from a Windows-based certificate .DESCRIPTION Pulls out the public key and formats it in INT 64 PEM encoding for use in Pure1 .INPUTS Certificate .OUTPUTS Returns the PEM based public key .EXAMPLE PS C:\ $cert = New-PureOneCertificate PS C:\ $cert | Get-PureOnePublicKey Returns the PEM formatted Public Key of the certificate passed in via piping so that it can be entered in Pure1. .EXAMPLE PS C:\ $cert = New-PureOneCertificate PS C:\ Get-PureOnePublicKey -certificate $cert Returns the PEM formatted Public Key of the certificate passed in so that it can be entered in Pure1. .EXAMPLE PS /home/pureuser> $password = Read-Host -AsSecureString PS /home/pureuser> $keys = New-PureOneCertificate -RsaPassword $password PS /home/pureuser> Get-PureOnePublicKey -PrivateKeyFileLocation $keys.PrivateKey -RsaPassword $password Returns the PEM formatted Public Key of the default Pure1 private key file passed in so that it can be entered in Pure1. .EXAMPLE PS /home/pureuser> $password = Read-Host -AsSecureString PS /home/pureuser> Get-PureOnePublicKey -PrivateKeyFileLocation /home/pureuser/PureOnePrivateKey.pem -RsaPassword $password Returns the PEM formatted Public Key of a private key file passed in so that it can be entered in Pure1. .NOTES Version: 1.1 Author: Cody Hosterman https://codyhosterman.com Creation Date: 08/29/2020 Purpose/Change: Core support *******Disclaimer:****************************************************** This scripts are offered "as is" with no warranty. While this scripts is tested and working in my environment, it is recommended that you test this script in a test lab before using in a production environment. Everyone can use the scripts/commands provided here without any written permission but I will not be liable for any damage or loss to the system. ************************************************************************ #> [CmdletBinding()] Param( [Parameter(Position=0,ValueFromPipeline=$True,mandatory=$True,ParameterSetName='Certificate')] [System.Security.Cryptography.X509Certificates.X509Certificate]$Certificate, [Parameter(Position=1,ParameterSetName='RSAPair',mandatory=$True)] [String]$PrivateKeyFileLocation, [Parameter(Position=2,ParameterSetName='RSAPair',mandatory=$True)] [securestring]$RsaPassword ) Begin { $publicKeys = @() } Process { if ($null -eq $certificate) { $checkPath = Test-Path $PrivateKeyFileLocation if ($checkPath -eq $false) { throw "File not found at $($PrivateKeyFileLocation). Check path and try again." } $DecryptedRsaPassword = ConvertFrom-SecureString $RsaPassword -AsPlainText openssl rsa -in $($PrivateKeyFileLocation) -outform PEM -pubout -out ./PureOnePublicTemp.pem -passin pass:$DecryptedRsaPassword 2>/dev/null $checkPath = Test-Path ./PureOnePublicTemp.pem if ($checkPath -eq $false) { throw "Public key could not be generated. Confirm password and/or permission access to private key" } $publicKey = Get-Content ./PureOnePublicTemp.pem Remove-Item -Path ./PureOnePublicTemp.pem $publicKeys += $publicKey } else { $certRaw = ([System.Convert]::ToBase64String($certificate.PublicKey.EncodedKeyValue.RawData)).tostring() $publicKeys += ("-----BEGIN PUBLIC KEY-----`n" + "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8A" + $certRaw + "`n-----END PUBLIC KEY-----") } } End { return $publicKeys } } function New-PureOneJwt { <# .SYNOPSIS Takes in a Pure1 Application ID and certificate to create a JSON Web Token. .DESCRIPTION Takes in a Pure1 Application ID and certificate to create a JSON Web Token that is valid for by default 30 days, but is extended if a custom expiration is passed in. Can also take in a private key in lieu of the full cert. Will reject if the private key is not properly formatted. .INPUTS Pure1 Application ID, an expiration, and a certificate or a private key. .OUTPUTS Returns the JSON Web Token as a string. .EXAMPLE PS C:\ $cert = New-PureOneCertificate PS C:\ New-PureOneJwt -certificate $cert -pureAppID pure1:apikey:v4u3ZXXXXXXXXC6o Returns a JSON Web Token that can be used to create a Pure1 REST session. A JWT generated with no specificed expiration is valid for 30 days. .EXAMPLE PS C:\ $cert = New-PureOneCertificate PS C:\ New-PureOneJwt -certificate $cert -pureAppID pure1:apikey:v4u3ZXXXXXXXXC6o -expiration ((get-date).addDays(2)) Returns a JSON Web Token that can be used to create a Pure1 REST session. An expiration is set for two days from now, so this JWT will be valid to create new REST sessions for 48 hours. .EXAMPLE PS /home/pureuser> $password = Read-Host -AsSecureString PS /home/pureuser> New-PureOneJwt -PrivateKeyFileLocation /home/pureuser/PureOnePrivate.pem -RsaPassword $password -PureAppID pure1:apikey:TACAwKsXL7kLa96q Creates a JSON web token for external use for the specified private key and the associated Pure1 API key. .EXAMPLE PS /home/pureuser> $password = Read-Host -AsSecureString PS /home/pureuser> New-PureOneJwt -PrivateKeyFileLocation /home/pureuser/PureOnePrivate.pem -RsaPassword $password -PureAppID pure1:apikey:TACAwKsXL7kLa96q Creates a JSON web token for external use for the specified private key and the associated Pure1 API key. An expiration is set for two days from now, so this JWT will be valid to create new REST sessions for 48 hours. .NOTES Version: 1.1 Author: Cody Hosterman https://codyhosterman.com Creation Date: 08/29/2020 Purpose/Change: Core support *******Disclaimer:****************************************************** This scripts are offered "as is" with no warranty. While this scripts is tested and working in my environment, it is recommended that you test this script in a test lab before using in a production environment. Everyone can use the scripts/commands provided here without any written permission but I will not be liable for any damage or loss to the system. ************************************************************************ #> [CmdletBinding(DefaultParameterSetName='WindowsCert')] Param( [Parameter(Position=0,mandatory=$True,ValueFromPipeline=$True,ParameterSetName='WindowsCert')] [System.Security.Cryptography.X509Certificates.X509Certificate]$Certificate, [Parameter(Position=1,mandatory=$True)] [string]$PureAppID, [Parameter(Position=2,mandatory=$True,ParameterSetName='WindowsKey')] [System.Security.Cryptography.RSA]$PrivateKey, [Parameter(Position=3,ValueFromPipeline=$True)] [System.DateTime]$Expiration, [Parameter(Position=4,ParameterSetName='Unix',mandatory=$True)] [string]$PrivateKeyFileLocation, [Parameter(Position=5,ParameterSetName='Unix',mandatory=$True)] [securestring]$RsaPassword ) Begin { $checkForOneCert = $false } Process { if ($checkForOneCert -eq $false) { $checkForOneCert = $True } else { throw "Please only pass in one certificate at a time. More than one found in the pipelined input for parameter Certificate." } } End { if (($null -eq $isWindows) -or ($isWindows -eq $true)) { if (($null -eq $privateKey) -and ($null -eq $certificate)) { throw "You must pass in a x509 certificate or a RSA Private Key" } #checking for certificate accuracy if ($null -ne $certificate) { if ($certificate.HasPrivateKey -ne $true) { throw "There is no private key associated with this certificate. Please regenerate certificate with a private key." } if ($null -ne $certificate.PrivateKey) { $privateKey = $certificate.PrivateKey } else { try { $privateKey = [System.Security.Cryptography.X509Certificates.RSACertificateExtensions]::GetRSAPrivateKey($certificate) } catch { throw "Could not obtain the private key from the certificate. Please re-run this cmdlet from a PowerShell session started with administrative rights or ensure you have Read Only or higher rights to the certificate." } } } #checking for correct private key type. Must be SHA-256, 2048 bit. if ($null -ne $privateKey) { if ($privateKey.KeySize -ne 2048) { throw "The key must be 2048 bit. It is currently $($privateKey.KeySize)" } if ($privateKey.SignatureAlgorithm -ne "RSA") { throw "This key is not an RSA-based key." } } } $pureHeader = '{"alg":"RS256","typ":"JWT"}' $curTime = (Get-Date).ToUniversalTime() $curTime = [Math]::Floor([decimal](Get-Date($curTime) -UFormat "%s")) if ($null -eq $expiration) { $expTime = $curTime + 2592000 } else { $expTime = $expiration.ToUniversalTime() $expTime = [Math]::Floor([decimal](Get-Date($expTime) -UFormat "%s")) } $payloadJson = '{"iss":"' + $pureAppID + '","iat":' + $curTime + ',"exp":' + $expTime + '}' $encodedHeader = [Convert]::ToBase64String([System.Text.Encoding]::UTF8.GetBytes($pureHeader)) -replace '\+','-' -replace '/','_' -replace '=' $encodedPayload = [Convert]::ToBase64String([System.Text.Encoding]::UTF8.GetBytes($payloadJson)) -replace '\+','-' -replace '/','_' -replace '=' $toSign = $encodedHeader + '.' + $encodedPayload if ($IsWindows -eq $false) { if ($RsaPassword.Length -eq 0) { $RsaPassword = Read-Host -Prompt "Please enter a password to be used for the private key" -AsSecureString } $DecryptedRsaPassword = ConvertFrom-SecureString $RsaPassword -AsPlainText set-content -value $tosign -Path ./PureOneHeader.txt -NoNewline Start-Process -FilePath ./openssl -ArgumentList "dgst -binary -sha256 -sign $($PrivateKeyFileLocation) -passin pass:$($DecryptedRsaPassword) -out ./PureOneSignedHeader.txt ./PureOneHeader.txt" $signature = openssl base64 -in ./PureOneSignedHeader.txt if ($null -eq $signature) { #sometimes this needs retried, honestly not sure why. $signature = openssl base64 -in ./PureOneSignedHeader.txt } $signature = $signature -replace '\+','-' -replace '/','_' -replace '=' Remove-Item -Path ./PureOneSignedHeader.txt Remove-Item -Path ./PureOneHeader.txt } else { $toSignEncoded = [System.Text.Encoding]::UTF8.GetBytes($toSign) $signature = [Convert]::ToBase64String($privateKey.SignData($toSignEncoded,[Security.Cryptography.HashAlgorithmName]::SHA256,[Security.Cryptography.RSASignaturePadding]::Pkcs1)) -replace '\+','-' -replace '/','_' -replace '=' } $jwt = $toSign + '.' + $signature return $jwt.Replace(" ", "") } } function New-PureOneConnection { <# .SYNOPSIS Takes in a Pure1 Application ID and certificate to create a 10 hour access token. .DESCRIPTION Takes in a Pure1 Application ID and certificate to create a 10 hour access token. Can also take in a private key in lieu of the full cert. Will reject if the private key is not properly formatted. .INPUTS Pure1 Application ID, a certificate or a private key. .OUTPUTS Does not return anything--it stores the Pure1 REST access token in a global variable called $Global:PureOneConnections. Valid for 10 hours. .EXAMPLE PS C:\ $cert = New-PureOneCertificate PS C:\ $cert | New-PureOneConnection -pureAppID pure1:apikey:PZogg67LcjImYTiI Create a Pure1 REST connection using a passed in certificate and the specified Pure1 App ID .EXAMPLE PS C:\ $cert = New-PureOneCertificate PS C:\ $privateKey = [System.Security.Cryptography.X509Certificates.RSACertificateExtensions]::GetRSAPrivateKey($cert) PS C:\ $privateKey | New-PureOneConnection -pureAppID pure1:apikey:PZogg67LcjImYTiI Create a Pure1 REST connection using a passed in private key and the specified Pure1 App ID .EXAMPLE PS /home/pureuser> $password = Read-Host -AsSecureString PS /home/pureuser> New-PureOneConnection -PrivateKeyFileLocation /home/pureuser/PureOnePrivate.pem -RsaPassword $password -PureAppID pure1:apikey:TACAwKsXL7kLa96q Creates a Pure1 REST connection for use with additional Pure1 cmdlets. .NOTES Version: 1.3 Author: Cody Hosterman https://codyhosterman.com Creation Date: 12/04/2020 Purpose/Change: Fix for PowerShell 5.x *******Disclaimer:****************************************************** This scripts are offered "as is" with no warranty. While this scripts is tested and working in my environment, it is recommended that you test this script in a test lab before using in a production environment. Everyone can use the scripts/commands provided here without any written permission but I will not be liable for any damage or loss to the system. ************************************************************************ #> [CmdletBinding(DefaultParameterSetName='AppID')] Param( [Parameter(Position=0,ValueFromPipeline=$True,ParameterSetName='Certificate')] [System.Security.Cryptography.X509Certificates.X509Certificate]$Certificate, [Parameter(Position=1,mandatory=$True,ParameterSetName='AppID')] [Parameter(Position=1,mandatory=$True,ParameterSetName='PrivateKey')] [Parameter(Position=1,mandatory=$True,ParameterSetName='Certificate')] [Parameter(Position=1,mandatory=$True,ParameterSetName='Unix')] [string]$PureAppID, [Parameter(Position=2,ValueFromPipeline=$True,mandatory=$True,ParameterSetName='PrivateKey')] [System.Security.Cryptography.RSA]$PrivateKey, [Parameter(Position=3,ParameterSetName='AppID')] [Parameter(Position=3,ParameterSetName='PrivateKey')] [Parameter(Position=3,ParameterSetName='Certificate')] [Parameter(Position=3,ParameterSetName='Unix')] [switch]$ReturnOrg, [Parameter(Position=4,ParameterSetName='Unix')] [string]$PrivateKeyFileLocation, [Parameter(Position=5,mandatory=$True,ParameterSetName='Unix')] [securestring]$RsaPassword, [Parameter(Position=6,ParameterSetName='JWT')] [string]$Jwt )Begin { $checkForOneCert = $false } Process { if ([string]::IsNullOrEmpty($Jwt)) { if ($checkForOneCert -eq $false) { $checkForOneCert = $True } else { throw "Please only pass in one certificate/key at a time. More than one found in the pipelined input for parameter Certificate/private key." } } } End { if ([string]::IsNullOrEmpty($Jwt)) { if (($isWindows -eq $false) -and ([string]::IsNullOrEmpty($RsaPassword))) { $RsaPassword = Read-Host "Please enter in the password for your private key" -AsSecureString } if (($isWindows -eq $true) -or ($null -eq $isWindows)) { if (($null -eq $certificate) -and ($null -eq $PrivateKey)) { $Certificate = Get-PureOneCertificate -ErrorAction SilentlyContinue if ($null -eq $certificate) { throw "Please pass in a certificate or RSA private key." } } if ($null -eq $certificate) { $jwt = New-PureOneJwt -privateKey $privateKey -pureAppID $pureAppID -expiration ((Get-Date).AddSeconds(60)) -ErrorAction Stop } else { $jwt = New-PureOneJwt -certificate $certificate -pureAppID $pureAppID -expiration ((Get-Date).AddSeconds(60)) -ErrorAction Stop } } else { if (($isWindows -eq $false) -and ([string]::IsNullOrEmpty($PrivateKeyFileLocation))) { $PrivateKeyFileLocation = Get-PureOneCertificate -ErrorAction SilentlyContinue if ([string]::IsNullOrEmpty($PrivateKeyFileLocation)) { throw "No default private key found. Please pass in a private key file location or create a new one with New-PureOneCertificate." } } } try { $jwt = New-PureOneJwt -PrivateKeyFileLocation $PrivateKeyFileLocation -RsaPassword $RsaPassword -pureAppID $pureAppID -expiration ((Get-Date).AddSeconds(60)) -ErrorAction Stop } catch { #throw ($_.errordetails.message |ConvertFrom-Json).error_description } } $apiendpoint = "https://api.pure1.purestorage.com/oauth2/1.0/token" $AuthAction = @{ grant_type = "urn:ietf:params:oauth:grant-type:token-exchange" subject_token = $jwt subject_token_type = "urn:ietf:params:oauth:token-type:jwt" } try { $pureOnetoken = Invoke-RestMethod -Method Post -Uri $apiendpoint -ContentType "application/x-www-form-urlencoded" -Body $AuthAction -ErrorAction Stop } catch { throw ($_.errordetails.message |ConvertFrom-Json).error_description } write-debug $pureOnetoken $orgInfo = Resolve-JWTtoken -token $pureOnetoken $jwtInfo = Resolve-JWTtoken -token $jwt $date = get-date "1/1/1970" $date = $date.AddSeconds($orgInfo.exp).ToLocalTime() if (($null -eq $isWindows) -or ($isWindows -eq $true)) { $newOrg = New-Object -TypeName WindowsPureOneOrganization -ArgumentList $orgInfo.org,$pureOnetoken.access_token,$jwtInfo.iss,$orgInfo.max_role,$date,$certificate -ErrorAction Stop } else { $newOrg = New-Object -TypeName UnixPureOneOrganization -ArgumentList $orgInfo.org,$pureOnetoken.access_token,$jwtInfo.iss,$orgInfo.max_role,$date,$RsaPassword,$PrivateKeyFileLocation -ErrorAction Stop } if ($Global:PureOneConnections.Count -eq 0) { $Global:PureOneConnections += $newOrg $Global:PureOneConnections[0].SetDefault($true) } else { foreach ($connection in $Global:PureOneConnections) { if ($connection.PureOneOrgID -eq $newOrg.PureOneOrgID) { if ($connection.updateLock -eq $false) { throw "The Pure1 Organization with ID $($connection.PureOneOrgID) is already connected." } else { $pureOneUpdate = $True break } } } if ($pureOneUpdate -ne $true) { $Global:PureOneConnections += $newOrg } } if ($returnOrg -eq $true) { return $newOrg } } } function New-PureOneOperation { <# .SYNOPSIS Allows you to run a Pure1 REST operation that has not yet been built into this module. .DESCRIPTION Runs a REST operation to Pure1 .INPUTS A filter/query, an resource, a REST body, and optionally an access token. .OUTPUTS Returns Pure1 REST response. .EXAMPLE PS C:\ $cert = New-PureOneCertificate PS C:\ $cert | New-PureOneConnection -pureAppID pure1:apikey:PZogg67LcjImYTiI PS C:\ New-PureOneOperation -resourceType volumes -restOperationType GET Create a Pure1 REST connection and requests all volumes .EXAMPLE PS C:\ $cert = New-PureOneCertificate PS C:\ $cert | New-PureOneConnection -pureAppID pure1:apikey:PZogg67LcjImYTiI PS C:\ New-PureOneOperation -resourceType arrays -restOperationType GET Create a Pure1 REST connection and requests all arrays .NOTES Version: 1.2 Author: Cody Hosterman https://codyhosterman.com Creation Date: 09/02/2020 Purpose/Change: Core support *******Disclaimer:****************************************************** This scripts are offered "as is" with no warranty. While this scripts is tested and working in my environment, it is recommended that you test this script in a test lab before using in a production environment. Everyone can use the scripts/commands provided here without any written permission but I will not be liable for any damage or loss to the system. ************************************************************************ #> [CmdletBinding()] Param( [Parameter(Position=0,mandatory=$True)] [string]$ResourceType, [Parameter(Position=1)] [string]$QueryFilter, [Parameter(Position=2)] [string]$JsonBody, [Parameter(Position=3,mandatory=$True)] [ValidateSet('POST','GET','DELETE','PUT')] [string]$RestOperationType, [Parameter(Position=4)] [string]$PureOneToken ) $pureOneHeader = Set-PureOneHeader -pureOneToken $pureOneToken -ErrorAction Stop Write-Debug $pureOneHeader.authorization $apiendpoint = "https://api.pure1.purestorage.com/api/$($global:pureOneRestVersion)/" + $resourceType + $queryFilter Write-Debug $apiendpoint $ErrorActionPreference = "Stop" if ($jsonBody -ne "") { $pureResponse = Invoke-RestMethod -Method $restOperationType -Uri $apiendpoint -ContentType "application/json" -Headers $pureOneHeader -Body $jsonBody -ErrorAction Stop $pureObjects = $pureResponse.items } else { $pureResponse = Invoke-RestMethod -Method $restOperationType -Uri $apiendpoint -ContentType "application/json" -Headers $pureOneHeader -ErrorAction Stop Write-Debug $pureResponse $pureObjects = $pureResponse.items while ($null -ne $pureResponse.continuation_token) { $continuationToken = $pureResponse.continuation_token if (($queryFilter -eq "") -and ($oneRound -ne $true)) { $apiendpoint = $apiendpoint + "?" } try { Write-Debug ($apiendpoint + "&continuation_token=`'$($continuationToken)`'") $pureResponse = Invoke-RestMethod -Method $restOperationType -Uri ($apiendpoint + "&continuation_token=`'$($continuationToken)`'") -ContentType "application/json" -Headers $pureOneHeader -ErrorAction Stop $oneRound = $True write-debug $pureResponse $pureObjects += $pureResponse.items } catch { write-debug $_ if ($_.Exception -like "*The remote server returned an error: (504) Gateway Timeout.*") { Write-Warning -Message "The remote server returned an error: (504) Gateway Timeout. Pausing briefly and re-trying." start-sleep 5 } elseif ((convertfrom-json -inputobject $_.ErrorDetails.Message).Message -eq "API org rate limit exceeded") { Write-Warning -Message "Pure1 API rate limit exceeded. Sleeping briefly to reset counter." start-sleep 5 } continue } } } $ErrorActionPreference = "Continue" return $pureObjects } function Get-PureOneSupportContract { <# .SYNOPSIS Returns all support contracts listed in your Pure1 account. .DESCRIPTION Returns all support contracts listed in your Pure1 account. Allows for some filters. .INPUTS None required. Optional inputs are array name and Pure1 access token. .OUTPUTS Returns the support contract information in Pure1. .EXAMPLE PS C:\ Get-PureOneSupportContract Returns all support contracts from all arrays in all connected Pure1 organizations .EXAMPLE PS C:\ Get-PureOneSupportContract -arrayId ef9d6965-7e16-4d46-9425-d2fea48a8fe5 Returns the support contract from the specified array ID .EXAMPLE PS C:\ Get-PureOneSupportContract -arrayName sn1-m20r2-c05-36 Returns the support contract from the specified array .NOTES Version: 1.0 Author: Cody Hosterman https://codyhosterman.com Creation Date: 09/23/2020 Purpose/Change: First release *******Disclaimer:****************************************************** This scripts are offered "as is" with no warranty. While this scripts is tested and working in my environment, it is recommended that you test this script in a test lab before using in a production environment. Everyone can use the scripts/commands provided here without any written permission but I will not be liable for any damage or loss to the system. ************************************************************************ #> [CmdletBinding(DefaultParameterSetName='OrgProduct')] Param( [Parameter(Position=0,ParameterSetName='Name',mandatory=$True)] [string]$ArrayName, [Parameter(Position=1,ParameterSetName='ID',mandatory=$True)] [string]$ArrayId, [Parameter(Position=2)] [string]$PureOneToken, [Parameter(Position=3)] [PureOneOrganization[]]$PureOneOrganization ) $restQuery = "?filter=" if ($arrayName -ne "") { $restQuery = $restQuery + "resource.name=`'$($arrayName)`'" } if ($arrayId -ne "") { $restQuery = $restQuery + "resource.id=`'$($arrayId)`'" } if ($restQuery -eq "?filter=") { $restQuery = $null } $tokens = @() if ([string]::IsNullOrWhiteSpace($pureOneToken)) { $tokens += Get-PureOneToken -pureOneOrganization $pureOneOrganization } else{ $tokens += $pureOneToken } $pureContracts = @() foreach ($token in $tokens) { $pureContracts += New-PureOneOperation -resourceType arrays/support-contracts -queryFilter $restQuery -pureOneToken $token -restOperationType GET -ErrorAction SilentlyContinue } foreach ($pureContract in $pureContracts) { $epochTime = New-Object -Type DateTime -ArgumentList 1970, 1, 1, 0, 0, 0, 0 $pureContract.start_date = $epochTime.AddmilliSeconds($pureContract.start_date) $epochTime = New-Object -Type DateTime -ArgumentList 1970, 1, 1, 0, 0, 0, 0 $pureContract.end_date = $epochTime.AddmilliSeconds($pureContract.end_date) } $contracts = $pureContracts |Select-Object @{N="ID";E={$_.Resource.ID}}, @{N="Name";E={$_.Resource.Name}},@{N="Resource_Type";E={$_.Resource.resource_type}},@{N="FQDN";E={$_.Resource.fqdn}},start_date,end_date return $contracts } function Get-PureOneAlert { <# .SYNOPSIS Returns all Pure Storage alerts listed in your Pure1 account. .DESCRIPTION Returns all Pure Storage alerts listed in your Pure1 account. Allows for some filters. .INPUTS None required. Optional inputs are array type, array name, and Pure1 access token. .OUTPUTS Returns the alert information in Pure1. .EXAMPLE PS C:\ Get-PureOneAlert Returns all open alerts from all arrays in all connected Pure1 organizations .EXAMPLE PS C:\ Get-PureOneAlert -closed Returns all closed alerts from all arrays in all connected Pure1 organizations .EXAMPLE PS C:\ Get-PureOneAlert -Severity Warning Returns all alerts of severity level "warning" from all arrays in all connected Pure1 organizations .EXAMPLE PS C:\ Get-PureOneAlert -arrayId ef9d6965-7e16-4d46-9425-d2fea48a8fe5 Returns alerts from the specified array ID .EXAMPLE PS C:\ Get-PureOneAlert -arrayName sn1-m20r2-c05-36 Returns alerts from the specified array .NOTES Version: 1.1 Author: Cody Hosterman https://codyhosterman.com Creation Date: 08/29/2020 Purpose/Change: Core support *******Disclaimer:****************************************************** This scripts are offered "as is" with no warranty. While this scripts is tested and working in my environment, it is recommended that you test this script in a test lab before using in a production environment. Everyone can use the scripts/commands provided here without any written permission but I will not be liable for any damage or loss to the system. ************************************************************************ #> [CmdletBinding(DefaultParameterSetName='OrgProduct')] Param( [Parameter(Position=0,ParameterSetName='Name',mandatory=$True)] [string]$ArrayName, [Parameter(Position=1,ParameterSetName='ID',mandatory=$True)] [string]$ArrayId, [Parameter(Position=2)] [switch]$Closed, [Parameter(Position=3)] [ValidateSet('hidden','warning','critical','info')] [string]$Severity, [Parameter(Position=4)] [string]$PureOneToken, [Parameter(Position=5)] [PureOneOrganization[]]$PureOneOrganization ) $restQuery = "?filter=" if ($arrayName -ne "") { $restQuery = $restQuery + "arrays.name=`'$($arrayName)`'" } if ($arrayId -ne "") { $restQuery = $restQuery + "arrays.id=`'$($arrayId)`'" } if ($Severity -ne "") { if ($restQuery -ne "?filter=") { $restQuery = $restQuery + " and severity=`'$($Severity)`'" } else { $restQuery = $restQuery + "severity=`'$($Severity)`'" } } if ($Closed -eq $true) { $desiredStatus = "closed" } else { $desiredStatus = "open" } if ($restQuery -ne "?filter=") { $restQuery = $restQuery + " and state=`'$($desiredStatus)`'" } else { $restQuery = $restQuery + "state=`'$($desiredStatus)`'" } $tokens = @() if ([string]::IsNullOrWhiteSpace($pureOneToken)) { $tokens += Get-PureOneToken -pureOneOrganization $pureOneOrganization } else{ $tokens += $pureOneToken } $pureArrays = @() foreach ($token in $tokens) { $pureArrays += New-PureOneOperation -resourceType alerts -queryFilter $restQuery -pureOneToken $token -restOperationType GET -ErrorAction SilentlyContinue } return $pureArrays } function Get-PureOneArray { <# .SYNOPSIS Returns all Pure Storage arrays listed in your Pure1 account. .DESCRIPTION Returns all Pure Storage arrays listed in your Pure1 account. Allows for some filters. .INPUTS None required. Optional inputs are array type, array name, and Pure1 access token. .OUTPUTS Returns the Pure Storage array information in Pure1. .EXAMPLE PS C:\ Get-PureOneArray Returns all arrays in all connected Pure1 organizations .EXAMPLE PS C:\ Get-PureOneArray -arrayProduct FlashBlade Returns all FlashBlades in all connected Pure1 organizations .EXAMPLE PS C:\ Get-PureOneArray -arrayId ef9d6965-7e16-4d46-9425-d2fea48a8fe5 Returns array with specified ID .EXAMPLE PS C:\ Get-PureOneArray -arrayName sn1-m20r2-c05-36 Returns array with specified name .NOTES Version: 1.1 Author: Cody Hosterman https://codyhosterman.com Creation Date: 08/29/2020 Purpose/Change: Core support *******Disclaimer:****************************************************** This scripts are offered "as is" with no warranty. While this scripts is tested and working in my environment, it is recommended that you test this script in a test lab before using in a production environment. Everyone can use the scripts/commands provided here without any written permission but I will not be liable for any damage or loss to the system. ************************************************************************ #> [CmdletBinding(DefaultParameterSetName='OrgProduct')] Param( [Parameter(Position=0,ParameterSetName='Name',mandatory=$True)] [string]$ArrayName, [Parameter(Position=1,ParameterSetName='Product',mandatory=$True)] [ValidateSet('Purity//FA','Purity//FB','FlashArray','FlashBlade')] [string]$ArrayProduct, [Parameter(Position=2,ParameterSetName='ID',mandatory=$True)] [string]$ArrayId, [Parameter(Position=3)] [string]$PureOneToken, [Parameter(Position=4)] [PureOneOrganization[]]$PureOneOrganization ) if ($arrayProduct -ne "") { switch ($arrayProduct) { "FlashArray" {$arrayProduct = 'Purity//FA'; break} "FlashBlade" {$arrayProduct = 'Purity//FB'; break} } } if ($arrayName -ne "") { $restQuery = "?names=`'$($arrayName)`'" } if ($arrayProduct -ne "") { $restQuery = "?filter=os=`'$($arrayProduct)`'" } if ($arrayId -ne "") { $restQuery = "?ids=`'$($arrayId)`'" } $tokens = @() if ([string]::IsNullOrWhiteSpace($pureOneToken)) { $tokens += Get-PureOneToken -pureOneOrganization $pureOneOrganization } else{ $tokens += $pureOneToken } $pureArrays = @() foreach ($token in $tokens) { $pureArrays += New-PureOneOperation -resourceType arrays -queryFilter $restQuery -pureOneToken $token -restOperationType GET -ErrorAction SilentlyContinue } if (($pureArrays | Measure-Object).Count -eq 0) { throw "No matching arrays were found on entered Pure1 organization(s)." } return $pureArrays } function Get-PureOneArrayTag { <# .SYNOPSIS Gets a tag for a given array or arrays in Pure1 .DESCRIPTION Gets a tag for a given array or arrays in Pure1 .INPUTS Array name(s) or ID(s) and optionally a tag key name and/or an access token. .OUTPUTS Returns the Pure Storage array(s) key/value tag information in Pure1. .EXAMPLE PS C:\ Get-PureOneArrayTag Returns all tags .EXAMPLE PS C:\ Get-PureOneArrayTag -tagKey owner Returns all tags with the key of "owner" .EXAMPLE PS C:\ Get-PureOneArrayTag -arrayNames flasharray-m50-2 Returns all matching tags on array with specified name .EXAMPLE PS C:\ Get-PureOneArrayTag -tagKey owner -arrayIds aad42743-611e-45ac-8b93-a869c4728a1d Returns matching tags with key of "owner" on array with specified ID .EXAMPLE PS C:\ Get-PureOneArrayTag -tagKey owner -arrayIds aad42743-611e-45ac-8b93-a869c4728a1d,e8998e19-aa08-45db-8bd0-4ea9171277a3 Returns matching tags with key of "owner" on the arrays with specified IDs .NOTES Version: 1.1 Author: Cody Hosterman https://codyhosterman.com Creation Date: 08/29/2020 Purpose/Change: Core support *******Disclaimer:****************************************************** This scripts are offered "as is" with no warranty. While this scripts is tested and working in my environment, it is recommended that you test this script in a test lab before using in a production environment. Everyone can use the scripts/commands provided here without any written permission but I will not be liable for any damage or loss to the system. ************************************************************************ #> [CmdletBinding(DefaultParameterSetName='TagKey')] Param( [Parameter(Position=0,ParameterSetName='ArrayNames')] [string[]]$ArrayNames, [Parameter(Position=1,ParameterSetName='ArrayIDs')] [string[]]$ArrayIds, [Parameter(Position=2,ParameterSetName='ArrayIDs')] [Parameter(Position=2,ParameterSetName='ArrayNames')] [Parameter(Position=2,ParameterSetName='TagKey')] [string]$TagKey, [Parameter(Position=3)] [string]$PureOneToken, [Parameter(Position=4)] [PureOneOrganization[]]$PureOneOrganization ) if ($arrayNames.count -gt 0) { $objectQuery = "resource_names=" for ($i=0;$i -lt $arrayNames.count; $i++) { if ($i-eq 0) { $objectQuery = $objectQuery + "`'$($arrayNames[$i])`'" } else { $objectQuery = $objectQuery + ",`'$($arrayNames[$i])`'" } } } if ($arrayIds.Count -gt 0) { $objectQuery = "resource_ids=" for ($i=0;$i -lt $arrayIds.count; $i++) { if ($i-eq 0) { $objectQuery = $objectQuery + "`'$($arrayIds[$i])`'" } else { $objectQuery = $objectQuery + ",`'$($arrayIds[$i])`'" } } } if ($tagKey -ne "") { $keyQuery = "?keys=`'$($tagKey)`'" if (($arrayNames.count -gt 0) -or ($arrayIds.count -gt 0)) { $keyQuery = $keyQuery + "&" } } else { $keyQuery = "?" } $tokens = @() if ([string]::IsNullOrWhiteSpace($pureOneToken)) { $tokens += Get-PureOneToken -pureOneOrganization $pureOneOrganization } else{ $tokens += $pureOneToken } $pureArrayTags = @() foreach ($token in $tokens) { $pureArrayTags += New-PureOneOperation -resourceType "arrays/tags" -queryFilter "$($keyQuery)$($objectQuery)" -pureOneToken $token -restOperationType GET -ErrorAction SilentlyContinue } return $pureArrayTags } function Set-PureOneArrayTag { <# .SYNOPSIS Sets/updates a tag for a given array or arrays in Pure1 .DESCRIPTION Sets/updates a tag for a given array or arrays in Pure1 .INPUTS Array name(s) or ID(s) and a tag key name/value and/or optionally an access token. .OUTPUTS Returns the Pure Storage array(s) key/value tag information in Pure1. .EXAMPLE PS C:\ Set-PureOneArrayTag -tagKey owner -tagValue cody -arrayNames flasharray-m50-2 Creates/updates tag on array with specified name .EXAMPLE PS C:\ Set-PureOneArrayTag -tagKey owner -tagValue cody -arrayNames flasharray-m50-2,flasharray-m50-1 Creates/updates tag on specified arrays .EXAMPLE PS C:\ Set-PureOneArrayTag -tagKey owner -arrayIds aad42743-611e-45ac-8b93-a869c4728a1d Creates/updates tag on array with specified ID .EXAMPLE PS C:\ Set-PureOneArrayTag -tagKey owner -arrayIds aad42743-611e-45ac-8b93-a869c4728a1d,e8998e19-aa08-45db-8bd0-4ea9171277a3 Creates/updates tag on the arrays with specified IDs .NOTES Version: 1.1 Author: Cody Hosterman https://codyhosterman.com Creation Date: 08/29/2020 Purpose/Change: Core support *******Disclaimer:****************************************************** This scripts are offered "as is" with no warranty. While this scripts is tested and working in my environment, it is recommended that you test this script in a test lab before using in a production environment. Everyone can use the scripts/commands provided here without any written permission but I will not be liable for any damage or loss to the system. ************************************************************************ #> [CmdletBinding(DefaultParameterSetName='ArrayNames')] Param( [Parameter(Position=0,mandatory=$True,ParameterSetName='ArrayNames')] [string[]]$ArrayNames, [Parameter(Position=1,mandatory=$True,ParameterSetName='ArrayIDs')] [string[]]$ArrayIds, [Parameter(Position=2,mandatory=$True,ParameterSetName='ArrayIDs')] [Parameter(Position=2,mandatory=$True,ParameterSetName='ArrayNames')] [string]$TagKey, [Parameter(Position=3,mandatory=$True,ParameterSetName='ArrayIDs')] [Parameter(Position=3,mandatory=$True,ParameterSetName='ArrayNames')] [string]$TagValue, [Parameter(Position=4)] [string]$PureOneToken, [Parameter(Position=4)] [PureOneOrganization[]]$PureOneOrganization ) if ($arrayNames.count -gt 0) { $objectQuery = "?resource_names=" for ($i=0;$i -lt $arrayNames.count; $i++) { if ($i-eq 0) { $objectQuery = $objectQuery + "`'$($arrayNames[$i])`'" } else { $objectQuery = $objectQuery + ",`'$($arrayNames[$i])`'" } } } if ($arrayIds.Count -gt 0) { $objectQuery = "?resource_ids=" for ($i=0;$i -lt $arrayIds.count; $i++) { if ($i-eq 0) { $objectQuery = $objectQuery + "`'$($arrayIds[$i])`'" } else { $objectQuery = $objectQuery + ",`'$($arrayIds[$i])`'" } } } $newTag = @{ key = ${tagKey} value = ${tagValue} } $newTagJson = $newTag |ConvertTo-Json $newTagJson = "[" + $newTagJson + "]" $tokens = @() if ([string]::IsNullOrWhiteSpace($pureOneToken)) { $tokens += Get-PureOneToken -pureOneOrganization $pureOneOrganization } else{ $tokens += $pureOneToken } $pureArrayTags = @() foreach ($token in $tokens) { $pureArrayTags += New-PureOneOperation -resourceType "arrays/tags/batch" -queryFilter $objectQuery -pureOneToken $token -restOperationType PUT -jsonBody $newTagJson -ErrorAction SilentlyContinue } if (($pureArrayTags | Measure-Object).Count -eq 0) { throw "Tag not created. No matching arrays were found on entered Pure1 organization(s)." } return $pureArrayTags } function Remove-PureOneArrayTag { <# .SYNOPSIS Removes one or more tags for a given array or arrays in Pure1 .DESCRIPTION Removes one or more tags for a given array or arrays in Pure1 .INPUTS Array name(s) or ID(s) and one or more tag key names and/or optionally an access token. If you do not enter a key name, all tags for the input arrays will be removed. .OUTPUTS Returns nothing. .EXAMPLE PS C:\ Remove-PureOneArrayTag -tagKey owner -arrayNames flasharray-m50-2 Removes all matching tags on array with specified name .EXAMPLE PS C:\ Remove-PureOneArrayTag -tagKey owner -arrayIds aad42743-611e-45ac-8b93-a869c4728a1d Removes matching tags with key of "owner" on array with specified ID .EXAMPLE PS C:\ Remove-PureOneArrayTag -tagKey owner -arrayIds aad42743-611e-45ac-8b93-a869c4728a1d,e8998e19-aa08-45db-8bd0-4ea9171277a3 Removes matching tags with key of "owner" on the arrays with specified IDs .NOTES Version: 1.1 Author: Cody Hosterman https://codyhosterman.com Creation Date: 08/29/2020 Purpose/Change: Core support *******Disclaimer:****************************************************** This scripts are offered "as is" with no warranty. While this scripts is tested and working in my environment, it is recommended that you test this script in a test lab before using in a production environment. Everyone can use the scripts/commands provided here without any written permission but I will not be liable for any damage or loss to the system. ************************************************************************ #> [CmdletBinding(DefaultParameterSetName='ArrayNames')] Param( [Parameter(Position=0,mandatory=$True,ParameterSetName='ArrayNames')] [string[]]$ArrayNames, [Parameter(Position=1,mandatory=$True,ParameterSetName='ArrayIDs')] [string[]]$ArrayIds, [Parameter(Position=2,mandatory=$True,ParameterSetName='ArrayIDs')] [Parameter(Position=2,mandatory=$True,ParameterSetName='ArrayNames')] [string[]]$TagKeys, [Parameter(Position=3)] [string]$PureOneToken, [Parameter(Position=4)] [PureOneOrganization[]]$PureOneOrganization ) if ($arrayNames.count -gt 0) { $objectQuery = "?resource_names=" for ($i=0;$i -lt $arrayNames.count; $i++) { if ($i-eq 0) { $objectQuery = $objectQuery + "`'$($arrayNames[$i])`'" } else { $objectQuery = $objectQuery + ",`'$($arrayNames[$i])`'" } } } if ($arrayIds.Count -gt 0) { $objectQuery = "?resource_ids=" for ($i=0;$i -lt $arrayIds.count; $i++) { if ($i-eq 0) { $objectQuery = $objectQuery + "`'$($arrayIds[$i])`'" } else { $objectQuery = $objectQuery + ",`'$($arrayIds[$i])`'" } } } if ($tagKeys.Count -gt 0) { $objectQuery = $objectQuery + "&keys=" for ($i=0;$i -lt $tagKeys.count; $i++) { if ($i -eq 0) { $objectQuery = $objectQuery + "`'$($tagKeys[$i])`'" } else { $objectQuery = $objectQuery + ",`'$($tagKeys[$i])`'" } } } $tokens = @() if ([string]::IsNullOrWhiteSpace($pureOneToken)) { $tokens += Get-PureOneToken -pureOneOrganization $pureOneOrganization } else{ $tokens += $pureOneToken } $pureArrayTags = @() foreach ($token in $tokens) { $pureArrayTags += New-PureOneOperation -resourceType "arrays/tags" -queryFilter $objectQuery -pureOneToken $token -restOperationType DELETE -ErrorAction SilentlyContinue } if (($pureArrayTags | Measure-Object).Count -eq 0) { throw "No matching arrays were found on entered Pure1 organization(s)." } return $pureArrayTags } function Get-PureOneArrayNetworking { <# .SYNOPSIS Returns the networking information for a given array in Pure1 .DESCRIPTION Returns the the networking information for a given array in Pure1 .INPUTS Array name or ID and optionally access token. .OUTPUTS Returns the Pure Storage array network information in all connected Pure1 organizations .EXAMPLE PS C:\ Get-PureOneArrayNetworking -arrayName sn1-m20-c08-17 Returns the networking information for all network interfaces .EXAMPLE PS C:\ Get-PureOneArrayNetworking -arrayName sn1-m20-c08-17 -virtualIP Returns the networking information for virtual IP interfaces .EXAMPLE PS C:\ Get-PureOneArrayNetworking -arrayName sn1-m20-c08-17 -service iscsi Returns the networking information for iscsi interfaces .NOTES Version: 1.1 Author: Cody Hosterman https://codyhosterman.com Creation Date: 08/29/2020 Purpose/Change: Core support *******Disclaimer:****************************************************** This scripts are offered "as is" with no warranty. While this scripts is tested and working in my environment, it is recommended that you test this script in a test lab before using in a production environment. Everyone can use the scripts/commands provided here without any written permission but I will not be liable for any damage or loss to the system. ************************************************************************ #> [CmdletBinding(DefaultParameterSetName='ArrayName')] Param( [Parameter(Position=0,mandatory=$True,ParameterSetName='ArrayName')] [string]$ArrayName, [Parameter(Position=1,mandatory=$True,ParameterSetName='ArrayID')] [string]$ArrayId, [Parameter(Position=2,ParameterSetName='ArrayID')] [Parameter(Position=2,ParameterSetName='ArrayName')] [Switch]$VirtualIP, [Parameter(Position=3,ParameterSetName='ArrayID')] [Parameter(Position=3,ParameterSetName='ArrayName')] [string]$Service, [Parameter(Position=4)] [string]$PureOneToken, [Parameter(Position=4)] [PureOneOrganization[]]$PureOneOrganization ) if (($virtualIP -eq $true) -and (($service -ne "management") -and ($service -ne "") )) { throw "Virtual IPs are only management-based services, so you cannot request virtual IPs with $($service) as the service" } $objectQuery = "?" if ($virtualIP -eq $true) { $objectQuery = $objectQuery + "names=`'vir1`',`'vir0`'&" } if ($arrayName -ne "") { #URL encoding the square brackets as some network do not pass them properly $objectQuery = $objectQuery + "filter=" + ([System.Web.HttpUtility]::Urlencode("arrays[any].name")) + "=`'$($arrayName)`'" } if ($arrayId -ne "") { $objectQuery = $objectQuery + "filter=" + ([System.Web.HttpUtility]::Urlencode("arrays[any].name")) + "=`'$($arrayId)`'" } if ($service -ne "") { $objectQuery = $objectQuery + ([System.Web.HttpUtility]::Urlencode(" and services[any]")) + "=`'$($service)`'" } $tokens = @() if ([string]::IsNullOrWhiteSpace($pureOneToken)) { $tokens += Get-PureOneToken -pureOneOrganization $pureOneOrganization } else{ $tokens += $pureOneToken } $pureArrayNetwork = @() foreach ($token in $tokens) { $pureArrayNetwork += New-PureOneOperation -resourceType "network-interfaces" -queryFilter $objectQuery -pureOneToken $token -restOperationType GET -ErrorAction SilentlyContinue } if (($pureArrayNetwork | Measure-Object).Count -eq 0) { throw "No networking information found. The specificied service: [$($service)] might not exist on this array or it might be misspelled" } return $pureArrayNetwork } function Get-PureOneMetricDetail { <# .SYNOPSIS Returns the available metrics in Pure1 .DESCRIPTION Returns the available metrics in Pure1 and their specifics .INPUTS Resource type or metric name and/or access token. .OUTPUTS Returns the Pure Storage metric details .EXAMPLE PS C:\ Get-PureOneMetricDetail Returns the details for all available metrics .EXAMPLE PS C:\ Get-PureOneMetricDetail -resourceType volumes Returns the details for all available volume-based metrics .EXAMPLE PS C:\ Get-PureOneMetricDetail -metricName pod_write_qos_rate_limit_time_us Returns the details for the metric named pod_write_qos_rate_limit_time_us .NOTES Version: 1.1 Author: Cody Hosterman https://codyhosterman.com Creation Date: 08/29/2020 Purpose/Change: Core support *******Disclaimer:****************************************************** This scripts are offered "as is" with no warranty. While this scripts is tested and working in my environment, it is recommended that you test this script in a test lab before using in a production environment. Everyone can use the scripts/commands provided here without any written permission but I will not be liable for any damage or loss to the system. ************************************************************************ #> [CmdletBinding(DefaultParameterSetName='ResourceType')] Param( [Parameter(Position=0,ParameterSetName='MetricName')] [string]$MetricName, [Parameter(Position=1,ParameterSetName='ResourceType')] [string]$ResourceType, [Parameter(Position=2)] [string]$PureOneToken, [Parameter(Position=4)] [PureOneOrganization]$PureOneOrganization ) $objectQuery = "?" if ($resourceType -ne "") { $objectQuery = $objectQuery + "resource_types=`'$($resourceType)`'&" } if ($metricName -ne "") { $objectQuery = $objectQuery +"names=`'$($metricName)`'" } $tokens = @() if ([string]::IsNullOrWhiteSpace($pureOneToken)) { $tokens += Get-PureOneToken -pureOneOrganization $pureOneOrganization } else{ $tokens += $pureOneToken } $pureOneMetrics = @() $pureOneMetrics += New-PureOneOperation -resourceType "metrics" -queryFilter $objectQuery -pureOneToken $tokens[0] -restOperationType GET -ErrorAction SilentlyContinue return $pureOneMetrics } function Get-PureOneMetric { <# .SYNOPSIS Returns the metrics for a given array in Pure1 .DESCRIPTION Returns the metrics for a given array in Pure1, either an average or a maximum of a given time period. Default behavior is to return the average. .INPUTS Required: resource name or ID and metric name. Optional: timeframe, granularity, and aggregation type (if none entered defaults will be used based on metric entered). Also optionally an access token. .OUTPUTS Returns the Pure Storage array information in Pure1. .EXAMPLE PS C:\ Get-PureOneMetric -metricName array_read_iops -objectName sn1-x70-c05-33 Returns all data points available for the specified metric on the target object (in this case read IOPs for the array) .EXAMPLE PS C:\ Get-PureOneMetric -metricName array_read_iops -objectName sn1-x70-c05-33 -maximum Returns all maximum data points (no average taken, the highest value instead is used) available for the specified metric on the target object (in this case read IOPs for the array) .EXAMPLE PS C:\ Get-PureOneMetric -metricName array_read_iops -objectName sn1-x70-c05-33 -startTime (get-date).AddDays(-10) Returns all data points for the last 10 days for the specified metric on the target object (in this case read IOPs for the array) .EXAMPLE PS C:\ Get-PureOneMetric -metricName array_read_iops -objectName sn1-x70-c05-33 -startTime (get-date).AddDays(-7) -endTime (get-date).AddDays(-6) Returns all data points for the the one day a week prior for the specified metric on the target object (in this case read IOPs for the array) .EXAMPLE PS C:\ Get-PureOneMetric -metricName array_read_iops -objectName sn1-x70-c05-33 -startTime (get-date).AddDays(-7) -endTime (get-date).AddDays(-6) -granularity 3600000 -maximum Returns the highest valued data point per hour (every 3,600,000 milliseconds) for the the one day a week prior for the specified metric on the target object (in this case read IOPs for the array) .NOTES Version: 1.1 Author: Cody Hosterman https://codyhosterman.com Creation Date: 08/29/2020 Purpose/Change: Core support *******Disclaimer:****************************************************** This scripts are offered "as is" with no warranty. While this scripts is tested and working in my environment, it is recommended that you test this script in a test lab before using in a production environment. Everyone can use the scripts/commands provided here without any written permission but I will not be liable for any damage or loss to the system. ************************************************************************ #> [CmdletBinding(DefaultParameterSetName='ObjectNameAvg')] Param( [Parameter(Position=0,mandatory=$True,ParameterSetName='ObjectNameAvg')] [Parameter(Position=0,mandatory=$True,ParameterSetName='ObjectNameMax')] [string]$ObjectName, [Parameter(Position=1,mandatory=$True,ParameterSetName='ObjectIDAvg')] [Parameter(Position=1,mandatory=$True,ParameterSetName='ObjectIDMax')] [string]$ObjectId, [Parameter(Position=2,ParameterSetName='ObjectIDAvg')] [Parameter(Position=2,ParameterSetName='ObjectNameAvg')] [switch]$Average, [Parameter(Position=3,ParameterSetName='ObjectIDMax')] [Parameter(Position=3,ParameterSetName='ObjectNameMax')] [switch]$Maximum, [Parameter(Position=4,mandatory=$True)] [string]$MetricName, [Parameter(Position=5)] [System.DateTime]$StartTime, [Parameter(Position=6)] [System.DateTime]$EndTime, [Parameter(Position=7)] [Int64]$Granularity, [Parameter(Position=8)] [string]$PureOneToken, [Parameter(Position=4)] [PureOneOrganization[]]$PureOneOrganization ) if (($average -eq $false) -and ($maximum -eq $false)) { #defaulting to average if neither option is entered $average = $true } #get metric rules $metricDetails = Get-PureOneMetricDetail -metricName $metricName #set granularity if not set if ($granularity -eq 0) { $granularity = $metricDetails.availabilities.resolution } #set end time to start time minus retention for that stat (if not entered) and convert to epoch time if ($null -eq $endTime) { $endTime = Get-Date $endTime = $endTime.ToUniversalTime() } else { $endTime = $endTime.ToUniversalTime() } [datetime]$epoch = '1970-01-01 00:00:00' $endEpoch = (New-TimeSpan -Start $epoch -End $endTime).TotalMilliSeconds $endEpoch = [math]::Round($endEpoch) #set start time to current time (if not entered) and convert to epoch time if ($null -eq $startTime) { $startTime = $epoch.AddMilliseconds($metricDetails._as_of - $metricDetails.availabilities.retention) } else { $startTime = $startTime.ToUniversalTime() } $startEpoch = (New-TimeSpan -Start $epoch -End $startTime).TotalMilliSeconds $startEpoch = [math]::Round($startEpoch) #building query if ($average -eq $true) { $objectQuery = "?aggregation='avg'&end_time=$($endEpoch)&names=`'$($metricName)`'&resolution=$($granularity)&start_time=$($startEpoch)&" } else { $objectQuery = "?aggregation='max'&end_time=$($endEpoch)&names=`'$($metricName)`'&resolution=$($granularity)&start_time=$($startEpoch)&" } if ($objectName -ne "") { $objectQuery = $objectQuery + "resource_names=`'$($objectName)`'" } else { $objectQuery = $objectQuery + "ids=`'$($objectId)`'" } $tokens = @() if ([string]::IsNullOrWhiteSpace($pureOneToken)) { $tokens += Get-PureOneToken -pureOneOrganization $pureOneOrganization } else{ $tokens += $pureOneToken } $pureOneMetrics = @() foreach ($token in $tokens) { $pureOneMetrics += New-PureOneOperation -resourceType "metrics/history" -queryFilter $objectQuery -pureOneToken $token -restOperationType GET -ErrorAction SilentlyContinue } if (($pureOneMetrics | Measure-Object).Count -eq 0) { throw "No matching arrays were found on entered Pure1 organization(s)." } return $pureOneMetrics } function Get-PureOneVolume { <# .SYNOPSIS Returns all Pure Storage volumes listed in your Pure1 account. .DESCRIPTION Returns all Pure Storage volumes listed in your Pure1 account. Allows for some filters. .INPUTS None required. Optional inputs are array type, array name, and Pure1 access token. .OUTPUTS Returns the Pure Storage array information in Pure1. .EXAMPLE PS C:\ Get-PureOneVolume Get all volumes on all FlashArrays in all connected Pure1 organizations. .EXAMPLE PS C:\ Get-PureOneVolume -arrayName sn1-x70-b05-33 Get all volumes on specified FlashArray. .EXAMPLE PS C:\ Get-PureOneVolume -volumeName myVolume-01 Get all volumes with the specified name. If the same name exists on two more more arrays, all objects will be returned. .EXAMPLE PS C:\ Get-PureOneVolume -volumeName myVolume-01 -arrayName sn1-x70-b05-33 Get the volume with the specified name if it exists on that array. .EXAMPLE PS C:\ Get-PureOneVolume -volumeSerial 1037B35FD0EF40A500C65559 Get the volume with the specified serial number. .NOTES Version: 1.1 Author: Cody Hosterman https://codyhosterman.com Creation Date: 08/29/2020 Purpose/Change: Core support *******Disclaimer:****************************************************** This scripts are offered "as is" with no warranty. While this scripts is tested and working in my environment, it is recommended that you test this script in a test lab before using in a production environment. Everyone can use the scripts/commands provided here without any written permission but I will not be liable for any damage or loss to the system. ************************************************************************ #> [CmdletBinding(DefaultParameterSetName='ArrayNameVolName')] Param( [Parameter(Position=0,ParameterSetName='ArrayNameVolName')] [Parameter(Position=0,ParameterSetName='ArrayNameVolSerial')] [string]$ArrayName, [Parameter(Position=1,ParameterSetName='ArrayIDVolName')] [Parameter(Position=1,mandatory=$True,ParameterSetName='ArrayIDVolSerial')] [string]$ArrayId, [Parameter(Position=2,ParameterSetName='ArrayIDVolName')] [Parameter(Position=2,ParameterSetName='ArrayNameVolName')] [string]$VolumeName, [Parameter(Position=3,ParameterSetName='ArrayIDVolSerial')] [Parameter(Position=3,ParameterSetName='ArrayNameVolSerial')] [string]$VolumeSerial, [Parameter(Position=4)] [string]$PureOneToken, [Parameter(Position=4)] [PureOneOrganization[]]$PureOneOrganization ) if ($null -ne $global:pureOneRateLimit) { if ($Global:pureOneRateLimit -in 1..1000) { $objectQuery = "?limit=$($global:pureOneRateLimit)&" } else { throw "Pure1 Rate limit set to invalid amount. Must be between 1-1000. Currently set to $($global:pureOneRateLimit)" } } else { $objectQuery = "?" } if ($volumeName -ne "") { $objectQuery = $objectQuery + "names=`'$($volumeName)`'" if (($arrayName -ne "") -or ($arrayId -ne "")) { $objectQuery = $objectQuery + "&" } } elseif ($volumeSerial -ne "") { $volumeSerial = $volumeSerial.ToUpper() $objectQuery = $objectQuery +"filter=serial=`'$($volumeSerial)`'" if ($arrayName -ne "") { $objectQuery = $objectQuery + ([System.Web.HttpUtility]::Urlencode(" and arrays[any].name")) + "=`'$($arrayName)`'" } if ($arrayId -ne "") { $objectQuery = $objectQuery + ([System.Web.HttpUtility]::Urlencode(" and arrays[any].id")) + "=`'$($arrayId)`'" } } if ($volumeSerial -eq "") { if ($arrayName -ne "") { $objectQuery = $objectQuery + "filter=" + ([System.Web.HttpUtility]::Urlencode("arrays[any].name")) + "=`'$($arrayName)`'" } if ($arrayId -ne "") { $objectQuery = $objectQuery + "filter=" + ([System.Web.HttpUtility]::Urlencode("arrays[any].id")) + "=`'$($arrayId)`'" } } $tokens = @() if ([string]::IsNullOrWhiteSpace($pureOneToken)) { $tokens += Get-PureOneToken -pureOneOrganization $pureOneOrganization } else{ $tokens += $pureOneToken } $pureVolumes = @() foreach ($token in $tokens) { $pureVolumes += New-PureOneOperation -resourceType "volumes" -queryFilter $objectQuery -pureOneToken $token -restOperationType GET -ErrorAction SilentlyContinue } if (($pureVolumes | Measure-Object).Count -eq 0) { throw "No matching volumes were found on entered Pure1 organization(s)." } return $pureVolumes } function Get-PureOnePod { <# .SYNOPSIS Returns all Pure Storage pods listed in your Pure1 account. .DESCRIPTION Returns all Pure Storage pods listed in your Pure1 account. Allows for some filters. .INPUTS None required. Optional inputs are pod name, array name or ID, and Pure1 access token. .OUTPUTS Returns the Pure Storage pod information in all connected Pure1 organizations. .EXAMPLE PS C:\ Get-PureOnePod Returns all pods on all FlashArrays in all connected Pure1 organizations .EXAMPLE PS C:\ Get-PureOnePod -arrayId 2dcf29ad-6aca-4913-b62e-a15875c6635f Returns all pods on FlashArray with specified ID .EXAMPLE PS C:\ Get-PureOnePod -podName newpod Returns all pods with the specified name .EXAMPLE PS C:\ Get-PureOnePod -podName newpod -arrayName sn1-m20-c12-25 Returns the pod with the specified name on the specified FlashArray .NOTES Version: 1.1 Author: Cody Hosterman https://codyhosterman.com Creation Date: 08/29/2020 Purpose/Change: Core support *******Disclaimer:****************************************************** This scripts are offered "as is" with no warranty. While this scripts is tested and working in my environment, it is recommended that you test this script in a test lab before using in a production environment. Everyone can use the scripts/commands provided here without any written permission but I will not be liable for any damage or loss to the system. ************************************************************************ #> [CmdletBinding(DefaultParameterSetName='Pod')] Param( [Parameter(Position=0,ParameterSetName='ArrayName')] [Parameter(Position=0,ParameterSetName='Pod')] [string]$ArrayName, [Parameter(Position=1,ParameterSetName='ArrayId')] [Parameter(Position=1,ParameterSetName='Pod')] [string]$ArrayId, [Parameter(Position=2,ParameterSetName='Pod')] [string]$PodName, [Parameter(Position=3)] [string]$PureOneToken, [Parameter(Position=4)] [PureOneOrganization[]]$PureOneOrganization ) $objectQuery = "?" if ($podName -ne "") { $objectQuery = $objectQuery + "names=`'$($podName)`'" if (($arrayName -ne "") -or ($arrayId -ne "")) { $objectQuery = $objectQuery + "&" } } if ($arrayName -ne "") { $objectQuery = $objectQuery + "filter=" + ([System.Web.HttpUtility]::Urlencode("arrays[any].name")) + "=`'$($arrayName)`'" } if ($arrayId -ne "") { $objectQuery = $objectQuery + "filter=" + ([System.Web.HttpUtility]::Urlencode("arrays[any].id")) + "=`'$($arrayId)`'" } $tokens = @() if ([string]::IsNullOrWhiteSpace($pureOneToken)) { $tokens += Get-PureOneToken -pureOneOrganization $pureOneOrganization } else{ $tokens += $pureOneToken } $purePods = @() foreach ($token in $tokens) { $purePods += New-PureOneOperation -resourceType "pods" -queryFilter $objectQuery -pureOneToken $token -restOperationType GET-ErrorAction SilentlyContinue } if (($purePods | Measure-Object).Count -eq 0) { throw "No matching pods were found on entered Pure1 organization(s)." } return $purePods } function Get-PureOneVolumeSnapshot { <# .SYNOPSIS Returns all Pure Storage volume snapshots listed in all connected Pure1 organizations. .DESCRIPTION Returns all Pure Storage volume snapshots listed in all connected Pure1 organizations. Allows for some filters. .INPUTS None required. Optional inputs are array type, array name, volume name, snapshot name or snapshot serial, or Pure1 access token. .OUTPUTS Returns the Pure Storage array information in all connected Pure1 organizations. .EXAMPLE PS C:\ Get-PureOneVolumeSnapshot Returns all snapshots on all FlashArrays .EXAMPLE PS C:\ Get-PureOneVolumeSnapshot -arrayName flasharray-m50-2 Returns all snapshots on the specified array .EXAMPLE PS C:\ Get-PureOneVolumeSnapshot -snapshotName db-001.test Returns the snapshots with the specified name .EXAMPLE PS C:\ Get-PureOneVolumeSnapshot -volumeName sql00-Backup02 Returns all snapshots for the specified volume .NOTES Version: 1.1 Author: Cody Hosterman https://codyhosterman.com Creation Date: 08/29/2020 Purpose/Change: Core support *******Disclaimer:****************************************************** This scripts are offered "as is" with no warranty. While this scripts is tested and working in my environment, it is recommended that you test this script in a test lab before using in a production environment. Everyone can use the scripts/commands provided here without any written permission but I will not be liable for any damage or loss to the system. ************************************************************************ #> [CmdletBinding(DefaultParameterSetName='SnapshotName')] Param( [Parameter(Position=0,ParameterSetName='ArrayName')] [string]$ArrayName, [Parameter(Position=1,ParameterSetName='ArrayID')] [string]$ArrayId, [Parameter(Position=2,ParameterSetName='SnapshotName')] [string]$SnapshotName, [Parameter(Position=3,ParameterSetName='SnapshotSerial')] [string]$SnapshotSerial, [Parameter(Position=4,ParameterSetName='VolumeName')] [string]$VolumeName, [Parameter(Position=5)] [string]$PureOneToken, [Parameter(Position=4)] [PureOneOrganization[]]$PureOneOrganization ) if ($null -ne $global:pureOneRateLimit) { if ($Global:pureOneRateLimit -in 1..1000) { $objectQuery = "?limit=$($global:pureOneRateLimit)&" } else { throw "Pure1 Rate limit set to invalid amount. Must be between 1-1000. Currently set to $($global:pureOneRateLimit)" } } else { $objectQuery = "?limit=200" } if ($snapshotName -ne "") { $objectQuery = $objectQuery + "&names=`'$($snapshotName)`'" } elseif ($snapshotSerial -ne "") { $snapshotSerial = $snapshotSerial.ToUpper() $objectQuery = $objectQuery +"&filter=serial=`'$($snapshotSerial)`'" if ($arrayName -ne "") { $objectQuery = $objectQuery + ([System.Web.HttpUtility]::Urlencode(" and arrays[any].name")) + "=`'$($arrayName)`'" } if ($arrayId -ne "") { $objectQuery = $objectQuery + ([System.Web.HttpUtility]::Urlencode(" and arrays[any].id")) + "=`'$($arrayId)`'" } } if ($snapshotSerial -eq "") { if ($arrayName -ne "") { $objectQuery = $objectQuery + "&filter=" + ([System.Web.HttpUtility]::Urlencode("arrays[any].name")) + "=`'$($arrayName)`'" } if ($arrayId -ne "") { $objectQuery = $objectQuery + "&filter=" + ([System.Web.HttpUtility]::Urlencode("arrays[any].id")) + "=`'$($arrayId)`'" } } if ($volumeName -ne "") { $objectQuery = $objectQuery + "&filter=" + ([System.Web.HttpUtility]::Urlencode("source.name")) + "=`'$($volumeName)`'" } $tokens = @() if ([string]::IsNullOrWhiteSpace($pureOneToken)) { $tokens += Get-PureOneToken -pureOneOrganization $pureOneOrganization } else{ $tokens += $pureOneToken } $pureSnaps = @() foreach ($token in $tokens) { $pureSnaps += New-PureOneOperation -resourceType "volume-snapshots" -queryFilter $objectQuery -pureOneToken $token -restOperationType GET -ErrorAction SilentlyContinue } if (($pureSnaps | Measure-Object).Count -eq 0) { throw "No matching snapshots were found on entered Pure1 organization(s)." } return $pureSnaps } function Get-PureOneFileSystem { <# .SYNOPSIS Returns all Pure Storage file systems listed in all connected Pure1 organizations. .DESCRIPTION Returns all Pure Storage file systems listed in all connected Pure1 organizations. Allows for some filters. .INPUTS None required. Optional inputs are array type, array name, file system name, or Pure1 access token. .OUTPUTS Returns the Pure Storage array information in all connected Pure1 organizations. .EXAMPLE PS C:\ Get-PureOneFileSystem Return all FlashBlade file systems (NFS, SMB, S3) .EXAMPLE PS C:\ Get-PureOneFileSystem Return all FlashBlade file systems (NFS, SMB, S3) .EXAMPLE PS C:\ Get-PureOneFileSystem -fsName fs20 Return the specified FlashBlade file system (NFS, SMB, S3) .EXAMPLE PS C:\ Get-PureOneFileSystem -arrayName sn1-fb-c02-33 Return all FlashBlade file systems on specified array (NFS, SMB, S3) .EXAMPLE PS C:\ Get-PureOneFileSystem -arrayId 0e30e967-d749-4e03-9d32-701eeff14376 Return all FlashBlade file systems on specified array(NFS, SMB, S3) .NOTES Version: 1.1 Author: Cody Hosterman https://codyhosterman.com Creation Date: 08/29/2020 Purpose/Change: Core support *******Disclaimer:****************************************************** This scripts are offered "as is" with no warranty. While this scripts is tested and working in my environment, it is recommended that you test this script in a test lab before using in a production environment. Everyone can use the scripts/commands provided here without any written permission but I will not be liable for any damage or loss to the system. ************************************************************************ #> [CmdletBinding(DefaultParameterSetName='FileSystem')] Param( [Parameter(Position=0,ParameterSetName='ArrayName')] [string]$ArrayName, [Parameter(Position=1,ParameterSetName='ArrayID')] [string]$ArrayId, [Parameter(Position=2,ParameterSetName='FileSystem')] [string]$FsName, [Parameter(Position=3)] [string]$PureOneToken, [Parameter(Position=4)] [PureOneOrganization[]]$PureOneOrganization ) $objectQuery = "?" if ($fsName -ne "") { $restQuery = $restQuery + "names=`'$($fsName)`'" if (($arrayName -ne "") -or ($arrayId -ne "")) { $objectQuery = $objectQuery + "&" } } if ($arrayName -ne "") { $objectQuery = $objectQuery + "filter=" + ([System.Web.HttpUtility]::Urlencode("arrays[any].name")) + "=`'$($arrayName)`'" } if ($arrayId -ne "") { $objectQuery = $objectQuery + "filter=" + ([System.Web.HttpUtility]::Urlencode("arrays[any].id")) + "=`'$($arrayId)`'" } $tokens = @() if ([string]::IsNullOrWhiteSpace($pureOneToken)) { $tokens += Get-PureOneToken -pureOneOrganization $pureOneOrganization } else{ $tokens += $pureOneToken } $pureFilesystems = @() foreach ($token in $tokens) { $pureFilesystems += New-PureOneOperation -resourceType "file-systems" -queryFilter $objectQuery -pureOneToken $token -restOperationType GET -ErrorAction SilentlyContinue } if (($pureFilesystems | Measure-Object).Count -eq 0) { throw "No matching arrays were found on entered Pure1 organization(s)." } return $pureFilesystems } function Get-PureOneFileSystemSnapshot { <# .SYNOPSIS Returns all Pure Storage file system snapshots listed in all connected Pure1 organizations. .DESCRIPTION Returns all Pure Storage file system snapshots listed in all connected Pure1 organizations. Allows for some filters. .INPUTS None required. Optional inputs are array name, file system name, snapshot name, or Pure1 access token. .OUTPUTS Returns the Pure Storage file system(s) information in all connected Pure1 organizations. .EXAMPLE PS C:\ Get-PureOneFileSystemSnapshot Returns all file system snapshots on all FlashBlades .EXAMPLE PS C:\ Get-PureOneFileSystemSnapshot -arrayName sn1-fb-c02-33 Returns all file system snapshots on specified FlashBlade .EXAMPLE PS C:\ Get-PureOneFileSystemSnapshot -snapshotName nbu-msdp-metadata.2020_04_30_00_00 Returns the specified file system snapshot .EXAMPLE PS C:\ Get-PureOneFileSystemSnapshot -fsName nbu-msdp-metadata Returns all snapshots for the specified file system .NOTES Version: 1.1 Author: Cody Hosterman https://codyhosterman.com Creation Date: 08/29/2020 Purpose/Change: Core support *******Disclaimer:****************************************************** This scripts are offered "as is" with no warranty. While this scripts is tested and working in my environment, it is recommended that you test this script in a test lab before using in a production environment. Everyone can use the scripts/commands provided here without any written permission but I will not be liable for any damage or loss to the system. ************************************************************************ #> [CmdletBinding(DefaultParameterSetName='FileSystemName')] Param( [Parameter(Position=0,ParameterSetName='ArrayName')] [string]$ArrayName, [Parameter(Position=1,ParameterSetName='ArrayID')] [string]$ArrayId, [Parameter(Position=2,ParameterSetName='SnapshotName')] [string]$SnapshotName, [Parameter(Position=3,ParameterSetName='FileSystemName')] [string]$FsName, [Parameter(Position=4)] [string]$PureOneToken, [Parameter(Position=4)] [PureOneOrganization[]]$PureOneOrganization ) $objectQuery = "?" if ($snapshotName -ne "") { $objectQuery = $objectQuery + "names=`'$($snapshotName)`'" if (($arrayName -ne "") -or ($arrayId -ne "")) { $objectQuery = $objectQuery + "&" } } if ($arrayName -ne "") { $objectQuery = $objectQuery + "filter=" + ([System.Web.HttpUtility]::Urlencode("arrays[any].name")) + "=`'$($arrayName)`'" } if ($arrayId -ne "") { $objectQuery = $objectQuery + "filter=" + ([System.Web.HttpUtility]::Urlencode("arrays[any].id")) + "=`'$($arrayId)`'" } if ($fsName -ne "") { $objectQuery = $objectQuery + "filter=" + ([System.Web.HttpUtility]::Urlencode("source.name")) + "=`'$($fsName)`'" } $tokens = @() if ([string]::IsNullOrWhiteSpace($pureOneToken)) { $tokens += Get-PureOneToken -pureOneOrganization $pureOneOrganization } else{ $tokens += $pureOneToken } $purefsSnapshots = @() foreach ($token in $tokens) { $purefsSnapshots += New-PureOneOperation -resourceType "file-system-snapshots" -queryFilter $objectQuery -pureOneToken $token -restOperationType GET -ErrorAction SilentlyContinue } if (($purefsSnapshots | Measure-Object).Count -eq 0) { throw "No matching file system snapshots were found on entered Pure1 organization(s)." } return $purefsSnapshots } function Get-PureOneArrayLoadMeter { <# .SYNOPSIS Returns the busy meter for a given array in all connected Pure1 organizations .DESCRIPTION Returns the busy meter for a given array (or arrays) in all connected Pure1 organizations, either an average or a maximum of a given time period. Default behavior is to return the average. .INPUTS Required: resource names or IDs--must be an array. Optional: timeframe, granularity, and aggregation type (if none entered defaults will be used based on metric entered). Also optionally an access token. .OUTPUTS Returns the Pure Storage busy meter metric information in all connected Pure1 organizations. .EXAMPLE PS C:\ Get-PureOneArrayBusyMeter -objectName flasharray-m50-1 Returns the busy meter at default resolution for all available time, for the specified array. .EXAMPLE PS C:\ Get-PureOneArrayBusyMeter -objectName flasharray-m50-1 -startTime (get-date).AddDays(-10) Returns the busy meter at default resolution for the past ten days, for the specified array. .EXAMPLE PS C:\ Get-PureOneArrayBusyMeter -objectName flasharray-m50-1 -startTime (get-date).AddDays(-2) -endTime (get-date).AddDays(-1) Returns the busy meter at default resolution for one day ending 24 hours ago, for the specified array. .EXAMPLE PS C:\ Get-PureOneArrayBusyMeter -objectName flasharray-m50-1 -startTime (get-date).AddDays(-1) -startTime (get-date).AddDays(-1) -granularity 86400000 -maximum Returns one value for the previous 24 hours, representing the maximum busyness value for the specified array in that window. .NOTES Version: 1.1 Author: Cody Hosterman https://codyhosterman.com Creation Date: 08/29/2020 Purpose/Change: Core support *******Disclaimer:****************************************************** This scripts are offered "as is" with no warranty. While this scripts is tested and working in my environment, it is recommended that you test this script in a test lab before using in a production environment. Everyone can use the scripts/commands provided here without any written permission but I will not be liable for any damage or loss to the system. ************************************************************************ #> [CmdletBinding(DefaultParameterSetName='objectName')] Param( [Parameter(Position=0,mandatory=$True,ParameterSetName='objectName')] [Parameter(Position=0,mandatory=$True,ParameterSetName='objectNameAVG')] [Parameter(Position=0,mandatory=$True,ParameterSetName='objectNameMAX')] [string[]]$ObjectName, [Parameter(Position=1,mandatory=$True,ParameterSetName='objectID')] [Parameter(Position=1,mandatory=$True,ParameterSetName='objectIDAVG')] [Parameter(Position=1,mandatory=$True,ParameterSetName='objectIDMAX')] [string[]]$ObjectId, [Parameter(Position=2,mandatory=$True,ParameterSetName='objectNameAVG')] [Parameter(Position=2,mandatory=$True,ParameterSetName='objectIDAVG')] [switch]$Average, [Parameter(Position=2,mandatory=$True,ParameterSetName='objectNameMAX')] [Parameter(Position=2,mandatory=$True,ParameterSetName='objectIDMAX')] [switch]$Maximum, [Parameter(Position=5)] [System.DateTime]$StartTime, [Parameter(Position=6)] [System.DateTime]$EndTime, [Parameter(Position=7)] [Int64]$Granularity, [Parameter(Position=8)] [string]$PureOneToken, [Parameter(Position=4)] [PureOneOrganization[]]$PureOneOrganization ) $metricName = "array_total_load" if (($average -eq $false) -and ($maximum -eq $false)) { #defaulting to average if neither option is entered $average = $true } if (($null -ne $startTime) -and ($null -ne $endTime)) { if ($startTime -ge $endTime) { throw "The specified start time $($startTime) cannot be the same or later than the specified end time $($endTime)" } } #get metric rules $metricDetails = Get-PureOneMetricDetail -metricName $metricName #set granularity if not set if ($granularity -eq 0) { $granularity = $metricDetails.availabilities.resolution } #set end time to start time minus retention for that stat (if not entered) and convert to epoch time if ($endTime -eq $null) { $endTime = Get-Date $endTime = $endTime.ToUniversalTime() } else { $endTime = $endTime.ToUniversalTime() } [datetime]$epoch = '1970-01-01 00:00:00' $endEpoch = (New-TimeSpan -Start $epoch -End $endTime).TotalMilliSeconds $endEpoch = [math]::Round($endEpoch) #set start time to current time (if not entered) and convert to epoch time if ($startTime -eq $null) { $startTime = $epoch.AddMilliseconds($metricDetails._as_of - $metricDetails.availabilities.retention) } else { $startTime = $startTime.ToUniversalTime() } $startEpoch = (New-TimeSpan -Start $epoch -End $startTime).TotalMilliSeconds $startEpoch = [math]::Round($startEpoch) #building query if ($average -eq $true) { $objectQuery = "?aggregation='avg'&end_time=$($endEpoch)&names=`'$($metricName)`'&resolution=$($granularity)&start_time=$($startEpoch)&" } else { $objectQuery = "?aggregation='max'&end_time=$($endEpoch)&names=`'$($metricName)`'&resolution=$($granularity)&start_time=$($startEpoch)&" } if ($objectName -ne "") { if ($objectName.count -gt 1) { foreach ($arrayName in $objectName) { $pureArrays = $pureArrays + "`'$($arrayName)`'" if ($arrayName -ne ($objectName |Select-Object -Last 1)) { $pureArrays = $pureArrays + "," } } $objectQuery = $objectQuery + "resource_names=" + $pureArrays } else { $objectQuery = $objectQuery + "resource_names=`'$($objectName)`'" } } else { if ($objectId.count -gt 1) { foreach ($arrayName in $objectId) { $pureArrays = $pureArrays + "`'$($arrayName)`'" if ($arrayName -ne ($objectId |Select-Object -Last 1)) { $pureArrays = $pureArrays + "," } } $objectQuery = $objectQuery + "resource_ids=" + $pureArrays } else { $objectQuery = $objectQuery + "resource_ids=`'$($objectId)`'" } } $tokens = @() if ([string]::IsNullOrWhiteSpace($pureOneToken)) { $tokens += Get-PureOneToken -pureOneOrganization $pureOneOrganization } else{ $tokens += $pureOneToken } $loadMeters = @() foreach ($token in $tokens) { $loadMeters += New-PureOneOperation -resourceType "metrics/history" -queryFilter $objectQuery -pureOneToken $token -restOperationType GET -ErrorAction SilentlyContinue } if (($loadMeters | Measure-Object).Count -eq 0) { throw "No matching arrays were found on entered Pure1 organization(s)." } return $loadMeters } #internal functions function Resolve-JWTtoken { [cmdletbinding()] param([Parameter(Mandatory=$true)][string]$token) $tokenPayload = $token.Split(".")[1].Replace('-', '+').Replace('_', '/') while ($tokenPayload.Length % 4) { Write-Verbose "Invalid length for a Base-64 char array or string, adding ="; $tokenPayload += "=" } $tokenByteArray = [System.Convert]::FromBase64String($tokenPayload) $tokenArray = [System.Text.Encoding]::ASCII.GetString($tokenByteArray) $tokobj = $tokenArray | ConvertFrom-Json return $tokobj } function Set-PureOneHeader { [CmdletBinding()] Param( [Parameter(Position=0)] [string]$pureOneToken ) if (($null -eq $Global:PureOneConnections) -and ([string]::IsNullOrWhiteSpace($pureOneToken))) { throw "No access token found in the global variable or passed in. Run the cmdlet New-PureOneRestConnection to authenticate." } if (![string]::IsNullOrWhiteSpace($pureOneToken)) { $pureOneHeader = @{authorization="Bearer $($pureOnetoken)"} } else { $foundDefaultOrg = $Global:PureOneConnections |Where-Object {$_.DefaultOrg -eq $true} $pureOneHeader = @{authorization="Bearer $($foundDefaultOrg.pureOneToken)"} } return $pureOneHeader } function Get-PureOneToken{ [CmdletBinding()] Param( [Parameter(Position=0)] [PureOneOrganization[]]$pureOneOrganization, [Parameter(Position=1)] [switch]$defaultOrg ) if ($pureOneOrganization.Count -eq 0) { if ($defaultOrg -eq $true) { $foundDefaultOrg = $null $foundDefaultOrg = $Global:PureOneConnections |Where-Object {$_.DefaultOrg -eq $true} if ($null -eq $foundDefaultOrg) { throw "No default Pure1 Connection found. Please authenticate with New-PureOneConnection or set a connection with the .SetDefault(`$true) operation" } else { return $Global:foundDefaultOrg.PureOneToken } } else { return $Global:PureOneConnections.PureOneToken } } else { return $pureOneOrganization.PureOneToken } } #custom classes class PureOneOrganization { [int] $PureOneOrgID [string] $Role [datetime] $SessionExpiration [string] $PureOneAppID [string] $PureOneToken [bool]$DefaultOrg = $false hidden [bool]$updateLock = $false # Constructor SetDefault ([bool]$DefaultOrg) { if ($DefaultOrg -eq $true) { $count = 0 foreach ($connection in $Global:PureOneConnections) { if (($connection.DefaultOrg -eq $true) -and ($connection.PureOneOrgID -ne $this.PureOneOrgID)) { throw "Cannot set this connection as default, connection for Pure1 organization $($connection.PureOneOrgID) is already default. Unset it via: `$Global:PureOneConnections[$($count)].SetDefault(`$false)." } $count++ } } $this.DefaultOrg = $DefaultOrg } } class UnixPureOneOrganization : PureOneOrganization { [securestring]$RsaPassword [String]$PrivateKeyFileLocation UnixPureOneOrganization ([int] $PureOneOrgID, [string] $pureOneToken, [string] $PureOneAppID, [string] $role,[datetime] $SessionExpiration,[securestring]$RsaPassword, [String]$PrivateKeyFileLocation) { $this.PureOneOrgID = $PureOneOrgID $this.PureOneAppID = $PureOneAppID $this.SessionExpiration = $SessionExpiration $this.Role = $role $this.PureOneToken = $pureOnetoken $this.RsaPassword = $RsaPassword $this.PrivateKeyFileLocation = $PrivateKeyFileLocation } RefreshConnection () { $this.updateLock = $true $org = New-PureOneConnection -pureAppID $this.PureOneAppID -PrivateKeyFileLocation $this.PrivateKeyFileLocation -RsaPassword $this.RsaPassword -returnOrg $this.SessionExpiration = $org.SessionExpiration $this.PureOneToken = $org.pureOnetoken $this.updateLock = $false return } } class WindowsPureOneOrganization : PureOneOrganization { [System.Security.Cryptography.X509Certificates.X509Certificate]$Certificate # Constructor WindowsPureOneOrganization ([int] $PureOneOrgID, [string] $pureOneToken, [string] $PureOneAppID, [string] $role,[datetime] $SessionExpiration, [System.Security.Cryptography.X509Certificates.X509Certificate]$Certificate) { $this.PureOneOrgID = $PureOneOrgID $this.PureOneAppID = $PureOneAppID $this.SessionExpiration = $SessionExpiration $this.Role = $role $this.PureOneToken = $pureOnetoken $this.Certificate = $certificate } RefreshConnection () { $this.updateLock = $true $org = New-PureOneConnection -pureAppID $this.PureOneAppID -certificate $this.Certificate -returnOrg $this.SessionExpiration = $org.SessionExpiration $this.PureOneToken = $org.pureOnetoken $this.updateLock = $false return } } #Global variables $global:pureOneRateLimit = $null $global:pureOneRestVersion = "1.latest" $Global:PureOneConnections = @() New-Alias -Name Get-PureOneArrayBusyMeter -Value Get-PureOneArrayLoadMeter New-Alias -Name New-PureOneRestConnection -Value New-PureOneConnection New-Alias -Name New-PureOneRestOperation -Value New-PureOneOperation |