azure
sc_crawler.vendors.azure
#
SERVER_FEATURES
module-attribute
#
SERVER_FEATURES = {'a': 'AMD processor', 'p': 'ARM processor', 'b': 'Block Storage performance', 'd': 'Local Disk', 'i': 'Isolated', 'l': 'Low Memory', 'm': 'Memory Intensive', 't': 'Tiny Memory', 's': 'Premium Storage capable', 'r': 'RDMA capable', 'e': 'Memory Optimized', 'x': 'Unmatched Memory Capacity'}
Map lowercase chars from the server name to features.
STORAGE_METER_MAPPING
module-attribute
#
STORAGE_METER_MAPPING = {'P2 LRS Disk Mount': ('PremiumV2_LRS', 1), 'P1 LRS Disk': ('Premium_LRS', 4), 'P1 ZRS Disk': ('Premium_ZRS', 4), 'E1 LRS Disk': ('StandardSSD_LRS', 4), 'E1 ZRS Disk': ('StandardSSD_ZRS', 4), 'S4 LRS Disk': ('Standard_LRS', 32), 'Ultra LRS Provisioned Capacity': ('UltraSSD_LRS', 1)}
Map Storage price meter names to the Storage name and the related disk's size.
inventory_compliance_frameworks
#
Manual list of known compliance frameworks at Azure.
Data collected from https://learn.microsoft.com/en-us/azure/compliance/.
Source code in sc_crawler/vendors/azure.py
inventory_regions
#
List all regions via API call.
Location (country and state) and founding year were collected manually from https://datacenters.microsoft.com/globe/explore/ and its underlying JSON at https://datacenters.microsoft.com/globe/data/geo/regions.json.
City and the energy source information was collected from the sustainability fact sheets referenced in the above page and JSON.
Coordinates were provided by the Microsoft API, which doesn't seem to be very reliable.
Source code in sc_crawler/vendors/azure.py
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 |
|
inventory_zones
#
List all availability zones.
API call to list existing availability zones ("1", "2", and "3") for each region, and creating a dummy "0" zone for the regions without availability zones.
Source code in sc_crawler/vendors/azure.py
inventory_servers
#
List all available instance types in all regions.
Source code in sc_crawler/vendors/azure.py
inventory_server_prices
#
List all known server ondemand prices in all regions using the Azure Retail Pricing API.
More information: https://learn.microsoft.com/en-us/rest/api/cost-management/retail-prices/azure-retail-prices.
Source code in sc_crawler/vendors/azure.py
inventory_server_prices_spot
#
List all known server spot prices in all regions using the Azure Retail Pricing API.
See details at inventory_server_prices.
Source code in sc_crawler/vendors/azure.py
inventory_storages
#
List all storage options via the Compute resource manager client.
For more information, see https://learn.microsoft.com/en-us/azure/virtual-machines/disks-types.
Source code in sc_crawler/vendors/azure.py
inventory_storage_prices
#
Look up Storage prices via the Azure Retail Prices API.
For more information, see https://learn.microsoft.com/en-us/rest/api/cost-management/retail-prices/azure-retail-prices.
Source code in sc_crawler/vendors/azure.py
inventory_traffic_prices
#
Look up Internet Egress/Ingress prices via the Azure Retail Prices API.
For more information, see https://learn.microsoft.com/en-us/rest/api/cost-management/retail-prices/azure-retail-prices.
Source code in sc_crawler/vendors/azure.py
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 |
|
inventory_ipv4_prices
#
Look up Internet Egress/Ingress prices via the Azure Retail Prices API.
For more information, see https://learn.microsoft.com/en-us/rest/api/cost-management/retail-prices/azure-retail-prices.