Last active
March 19, 2019 18:11
-
-
Save MattMencel/0a1896e4b95e2b7015ffda89fd7d1944 to your computer and use it in GitHub Desktop.
Azure API Compute Resource SKU Responses
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"resourceType": "disks", | |
"name": "Standard_LRS", | |
"tier": "Standard", | |
"size": "S4", | |
"locations": [ | |
"centralus" | |
], | |
"locationInfo": [ | |
{ | |
"location": "centralus", | |
"zones": [ | |
"1", | |
"3", | |
"2" | |
] | |
} | |
], | |
"capabilities": [ | |
{ | |
"name": "MaxSizeGiB", | |
"value": "32" | |
}, | |
{ | |
"name": "MinSizeGiB", | |
"value": "0" | |
}, | |
{ | |
"name": "MaxIOps", | |
"value": "500" | |
}, | |
{ | |
"name": "MinIOps", | |
"value": "500" | |
}, | |
{ | |
"name": "MaxBandwidthMBps", | |
"value": "60" | |
}, | |
{ | |
"name": "MinBandwidthMBps", | |
"value": "60" | |
} | |
], | |
"restrictions": [] | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"resourceType": "virtualMachines", | |
"name": "Standard_D2s_v3", | |
"tier": "Standard", | |
"size": "D2s_v3", | |
"family": "standardDSv3Family", | |
"locations": [ | |
"centralus" | |
], | |
"locationInfo": [ | |
{ | |
"location": "centralus", | |
"zones": [ | |
"1", | |
"3", | |
"2" | |
] | |
} | |
], | |
"capabilities": [ | |
{ | |
"name": "MaxResourceVolumeMB", | |
"value": "16384" | |
}, | |
{ | |
"name": "OSVhdSizeMB", | |
"value": "1047552" | |
}, | |
{ | |
"name": "vCPUs", | |
"value": "2" | |
}, | |
{ | |
"name": "HyperVGenerations", | |
"value": "V1,V2" | |
}, | |
{ | |
"name": "MemoryGB", | |
"value": "8" | |
}, | |
{ | |
"name": "MaxDataDiskCount", | |
"value": "4" | |
}, | |
{ | |
"name": "LowPriorityCapable", | |
"value": "True" | |
}, | |
{ | |
"name": "PremiumIO", | |
"value": "True" | |
}, | |
{ | |
"name": "vCPUsAvailable", | |
"value": "2" | |
}, | |
{ | |
"name": "ACUs", | |
"value": "160" | |
}, | |
{ | |
"name": "vCPUsPerCore", | |
"value": "2" | |
}, | |
{ | |
"name": "CombinedTempDiskAndCachedIOPS", | |
"value": "4000" | |
}, | |
{ | |
"name": "CombinedTempDiskAndCachedReadBytesPerSecond", | |
"value": "33554432" | |
}, | |
{ | |
"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", | |
"value": "33554432" | |
}, | |
{ | |
"name": "CachedDiskBytes", | |
"value": "53687091200" | |
}, | |
{ | |
"name": "UncachedDiskIOPS", | |
"value": "3200" | |
}, | |
{ | |
"name": "UncachedDiskBytesPerSecond", | |
"value": "50331648" | |
}, | |
{ | |
"name": "EphemeralOSDiskSupported", | |
"value": "True" | |
} | |
], | |
"restrictions": [] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment