{"info":{"_postman_id":"17349241-49a9-4f16-a7c5-dd08b72d44be","name":"Pure Storage Pure1 REST API 1.0","description":"The main goal of this collection to help the developer understand the various capabilities of the Pure1 REST API. Please visit the [Pure1 Postman Collection Setup Guide](http://bit.ly/Pure1PostmanSetup) for detailed setup instructions and the [Pure1 REST API Reference page](http://bit.ly/Pure1RESTAPIRef) for more in-depth information about the API capabilities.\n\n","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json"},"item":[{"name":"Authentication","item":[{"name":"INIT: Load Crypto Library for RS256","event":[{"listen":"test","script":{"id":"824e628b-b420-417b-894b-417ab6412896","type":"text/javascript","exec":["postman.setGlobalVariable(\"jsrsasign-js\", responseBody);"]}}],"id":"1be5a6f6-082d-4116-8210-e384217226b3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://kjur.github.io/jsrsasign/jsrsasign-latest-all-min.js","description":"Load the RSA-Sign Crypto Library into a global environment variable. Required to sign the Pure1 OAuth Token.\n\nSource: http://kjur.github.io/jsrsasign/jsrsasign-latest-all-min.js\n\nGithub: https://github.com/kjur/jsrsasign"},"response":[],"_postman_id":"1be5a6f6-082d-4116-8210-e384217226b3"},{"name":"Get an OAuth token","event":[{"listen":"prerequest","script":{"id":"63dd7f87-67fb-4ae3-a976-c9066c44f00c","exec":["// Run the INIT: Load Crypto Library for RS256 request first to load the required crypto library","","var navigator = {}; //fake a navigator object for the lib","var window = {}; //fake a window object for the lib","eval(postman.getGlobalVariable(\"jsrsasign-js\")); //import javascript jsrsasign","","// Set headers for JWT","var header = {","\t\"alg\" : \"RS256\",","\t\"typ\" : \"JWT\"","};","","// Prepare timestamp in seconds","var currentTimestamp = Math.floor(Date.now() / 1000);","","var data = {","\t'iss': pm.environment.get('api_client_name'),","\t'iat': currentTimestamp,","\t'exp': currentTimestamp + 24*3600,","};","","","var secret = postman.getEnvironmentVariable(\"api_private_key_file\");","","var sHeader = JSON.stringify(header);","var sPayload = JSON.stringify(data);","var signedToken = KJUR.jws.JWS.sign(\"RS256\", sHeader, sPayload, secret);","","console.log(sPayload);","console.log(signedToken);","","pm.environment.set('id_token', signedToken);","console.log('Signed and encoded JWT', signedToken);"],"type":"text/javascript"}},{"listen":"test","script":{"id":"c1f53dde-9bcf-4ffd-9611-d6abb269ee1c","exec":["var jsonData = JSON.parse(responseBody);","postman.setEnvironmentVariable(\"api_token\", jsonData.access_token);"],"type":"text/javascript"}}],"id":"8399351e-4b37-4961-980a-2af3916f5dca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","value":"urn:ietf:params:oauth:grant-type:token-exchange","type":"text"},{"key":"subject_token","value":"{{id_token}}","type":"text"},{"key":"subject_token_type","value":"urn:ietf:params:oauth:token-type:jwt","type":"text"}]},"url":"https://{{host_url}}/oauth2/1.0/token","description":"Exchanges an ID token for an access token.\n\nRun the INIT: Load Crypto Library for RS256 request first to load the required crypto library"},"response":[],"_postman_id":"8399351e-4b37-4961-980a-2af3916f5dca"}],"id":"8ba70963-b40d-425f-a1bf-45bf13fa5435","_postman_id":"8ba70963-b40d-425f-a1bf-45bf13fa5435"},{"name":"Arrays","item":[{"name":"Get All Arrays","event":[{"listen":"test","script":{"id":"e5e164c5-7665-4b88-996c-77e0019c375d","exec":["var jsonData = JSON.parse(responseBody);","postman.setEnvironmentVariable(\"selected_array_id\", jsonData.items[0].id);","postman.setEnvironmentVariable(\"selected_array_name\", jsonData.items[0].name);","postman.setEnvironmentVariable(\"selected_array2_id\", jsonData.items[1].id);","postman.setEnvironmentVariable(\"selected_array2_name\", jsonData.items[1].name);","","var arrays = jsonData.items;","var MAX=16","var array_ids = '(';","var array_names = '(';","arrays.forEach(getArrays);","array_ids = array_ids + \")\";","array_names = array_names + \")\";","","postman.setEnvironmentVariable(\"selected_array_ids\", array_ids);","postman.setEnvironmentVariable(\"selected_array_names\", array_names);","","function getArrays(item, index, array) {","    if(index<MAX) { //currently API calls are limited to 16 metrics","        array_ids = array_ids + \"'\" + item.id + \"'\"; ","        array_names = array_names + \"'\" + item.name + \"'\";","        if(index<MAX-1) {","            array_ids = array_ids + \",\";","            array_names = array_names + \",\";","        }","    }","} "],"type":"text/javascript"}}],"id":"0ce1d0a5-6a8c-4925-96e7-71fd6ffe9ac5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":"https://{{host_url}}/api/{{api_version}}/arrays","description":"Return all the arrays available in your Pure1 account"},"response":[{"id":"36f21385-ecdc-416a-86e2-025b6a1e5406","name":"Get All Arrays","originalRequest":{"method":"GET","header":[],"url":"https://{{host_url}}/api/{{api_version}}/arrays"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"0ce1d0a5-6a8c-4925-96e7-71fd6ffe9ac5"},{"name":"Get Array by Name","event":[{"listen":"test","script":{"id":"f0830f1b-59a1-4e4c-bb04-bf2cf93e2535","exec":["var jsonData = JSON.parse(responseBody);","postman.setEnvironmentVariable(\"selected_array_id\", jsonData.items[0].id);"],"type":"text/javascript"}}],"id":"441d9916-e841-40c8-970b-047844373cd0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://{{host_url}}/api/{{api_version}}/arrays?filter=name='{{selected_array_name}}'","protocol":"https","host":["{{host_url}}"],"path":["api","{{api_version}}","arrays"],"query":[{"key":"filter","value":"name='{{selected_array_name}}'"}]},"description":"Uses array name filter to return all matching arrays\nNote: run 'Get All Arrays' first to assign selected_array_id and selected_array_name"},"response":[],"_postman_id":"441d9916-e841-40c8-970b-047844373cd0"},{"name":"Get Array by ID","id":"fb7bbdda-b51e-4223-9c5c-0ca43b72bc09","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://{{host_url}}/api/{{api_version}}/arrays?filter=id='{{selected_array_id}}' or id='{{selected_array2_id}}'","protocol":"https","host":["{{host_url}}"],"path":["api","{{api_version}}","arrays"],"query":[{"key":"filter","value":"id='{{selected_array_id}}' or id='{{selected_array2_id}}'"}]},"description":"Uses array ID filter to return the single array matching selected_array_id\nNote: run 'Get All Arrays' first to assign selected_array_id and selected_array_name"},"response":[],"_postman_id":"fb7bbdda-b51e-4223-9c5c-0ca43b72bc09"},{"name":"Get Arrays by Version","id":"33fa9d17-e438-4440-a0e3-7b869f153975","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://{{host_url}}/api/{{api_version}}/arrays?filter=version='{{array_version}}'","protocol":"https","host":["{{host_url}}"],"path":["api","{{api_version}}","arrays"],"query":[{"key":"filter","value":"version='{{array_version}}'"}]},"description":"Return arrays with the version specified in the array_version environment variable"},"response":[],"_postman_id":"33fa9d17-e438-4440-a0e3-7b869f153975"},{"name":"Get Arrays Complex","id":"7925314e-752f-473c-aae3-61983378a615","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://{{host_url}}/api/{{api_version}}/arrays?filter=(version='5.2.1' and model='FA-m20') or (version='5.2.2' and model='FA-x70')","protocol":"https","host":["{{host_url}}"],"path":["api","{{api_version}}","arrays"],"query":[{"key":"filter","value":"(version='5.2.1' and model='FA-m20') or (version='5.2.2' and model='FA-x70')"}]},"description":"Return arrays with the version specified in the array_version environment variable"},"response":[],"_postman_id":"7925314e-752f-473c-aae3-61983378a615"},{"name":"Get Arrays Sort by Version ASC","id":"62e53918-109c-4805-9936-580e61c69ff3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://{{host_url}}/api/{{api_version}}/arrays?sort=version","protocol":"https","host":["{{host_url}}"],"path":["api","{{api_version}}","arrays"],"query":[{"key":"sort","value":"version"}]},"description":"Returns arrays sorted by ascending version"},"response":[],"_postman_id":"62e53918-109c-4805-9936-580e61c69ff3"},{"name":"Get Arrays Sort by Version DESC","id":"755d81a1-1697-4710-91a0-d1fda198ab7d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://{{host_url}}/api/{{api_version}}/arrays?sort=version-","protocol":"https","host":["{{host_url}}"],"path":["api","{{api_version}}","arrays"],"query":[{"key":"sort","value":"version-"}]},"description":"Returns arrays sorted by descending version"},"response":[],"_postman_id":"755d81a1-1697-4710-91a0-d1fda198ab7d"},{"name":"Get Arrays by Version Greater Than","id":"80570766-a5e2-40f1-9e51-16bb646c5f69","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://api.pure1.purestorage.com/api/{{api_version}}/arrays?filter=version>='{{array_version}}'&sort=version","protocol":"https","host":["api","pure1","purestorage","com"],"path":["api","{{api_version}}","arrays"],"query":[{"key":"filter","value":"version>='{{array_version}}'"},{"key":"sort","value":"version"}]},"description":"Return arrays with version greater than (or equal to) the one specified in the array_version environment variable. The returned list is also sorted by version ascending."},"response":[],"_postman_id":"80570766-a5e2-40f1-9e51-16bb646c5f69"},{"name":"Get FlashArray Sort by Version DESC","id":"a2022e2c-ef80-4fa6-b819-e5ad27285d51","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://{{host_url}}/api/{{api_version}}/arrays?sort=version-&filter=os='{{flasharray_os}}'","protocol":"https","host":["{{host_url}}"],"path":["api","{{api_version}}","arrays"],"query":[{"key":"sort","value":"version-"},{"key":"filter","value":"os='{{flasharray_os}}'"}]},"description":"Returns arrays sorted by descending version"},"response":[],"_postman_id":"a2022e2c-ef80-4fa6-b819-e5ad27285d51"},{"name":"Get Arrays To Be Upgraded","id":"0b84979d-b7f2-4f73-90e4-0ab55d0bc42a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://{{host_url}}/api/{{api_version}}/arrays?filter=(version<'5.1.0' or os='{{flasharray_os}}') and (version<'2.3.0' or os='{{flashblade_os}}')&sort=version","protocol":"https","host":["{{host_url}}"],"path":["api","{{api_version}}","arrays"],"query":[{"key":"filter","value":"(version<'5.1.0' or os='{{flasharray_os}}') and (version<'2.3.0' or os='{{flashblade_os}}')"},{"key":"sort","value":"version"}]},"description":"Return FlashArrays whose version is lower than 5.2.0 along with FlashBlades whose version is lower than 2.3.0. \nThe returned list is also sorted by version ascending."},"response":[],"_postman_id":"0b84979d-b7f2-4f73-90e4-0ab55d0bc42a"},{"name":"Get Arrays by Model","id":"75392461-359f-4a21-a7a4-980bf009b61a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://{{host_url}}/api/{{api_version}}/arrays?filter=model='{{array_model}}'","protocol":"https","host":["{{host_url}}"],"path":["api","{{api_version}}","arrays"],"query":[{"key":"filter","value":"model='{{array_model}}'"}]},"description":"Returns arrays for model specified in the array_model environment variable"},"response":[],"_postman_id":"75392461-359f-4a21-a7a4-980bf009b61a"},{"name":"Get All FlashArrays (Model version)","id":"303d5731-1707-4cd8-8ebc-50b449682182","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://{{host_url}}/api/{{api_version}}/arrays?filter=contains(model,'FA')","protocol":"https","host":["{{host_url}}"],"path":["api","{{api_version}}","arrays"],"query":[{"key":"filter","value":"contains(model,'FA')"}]},"description":"Returns the list of all FlashArray arrays whose model name contains 'FA')\nNote: it is recommended to rely on the OS version of this method (as it is more reliable)"},"response":[],"_postman_id":"303d5731-1707-4cd8-8ebc-50b449682182"},{"name":"Get All FlashArrays (OS version)","id":"3043c08c-eaa7-494d-9cb9-d24da4162dbc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://{{host_url}}/api/{{api_version}}/arrays?filter=os='{{flasharray_os}}'","protocol":"https","host":["{{host_url}}"],"path":["api","{{api_version}}","arrays"],"query":[{"key":"filter","value":"os='{{flasharray_os}}'"}]},"description":"Returns the list of all FlashArray arrays using the os attribute filter (currently equal to 'Purity//FA' for FlashArrays)"},"response":[],"_postman_id":"3043c08c-eaa7-494d-9cb9-d24da4162dbc"},{"name":"Get All FlashBlades (OS version)","event":[{"listen":"test","script":{"id":"7b94ad9b-acd5-4962-91b1-0be341a8f99b","exec":["var jsonData = JSON.parse(responseBody);","postman.setEnvironmentVariable(\"selected_array_id\", jsonData.items[0].id);","postman.setEnvironmentVariable(\"selected_array_name\", jsonData.items[0].name);","postman.setEnvironmentVariable(\"selected_array2_id\", jsonData.items[1].id);","postman.setEnvironmentVariable(\"selected_array2_name\", jsonData.items[1].name);","","var arrays = jsonData.items;","var MAX=4","var array_ids = '(';","var array_names = '(';","arrays.forEach(getArrays);","array_ids = array_ids + \")\";","array_names = array_names + \")\";","","postman.setEnvironmentVariable(\"selected_array_ids\", array_ids);","postman.setEnvironmentVariable(\"selected_array_names\", array_names);","","function getArrays(item, index, array) {","    if(index<MAX) { //currently API calls are limited to 16 metrics","        array_ids = array_ids + \"'\" + item.id + \"'\"; ","        array_names = array_names + \"'\" + item.name + \"'\";","        if(index<MAX-1) {","            array_ids = array_ids + \",\";","            array_names = array_names + \",\";","        }","    }","} "],"type":"text/javascript"}}],"id":"08bf4909-d396-4476-b3f9-953d218a65fe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://{{host_url}}/api/{{api_version}}/arrays?filter=os='{{flashblade_os}}'","protocol":"https","host":["{{host_url}}"],"path":["api","{{api_version}}","arrays"],"query":[{"key":"filter","value":"os='{{flashblade_os}}'"}]},"description":"Returns the list of all FlashBlade arrays using the os attribute filter (currently equal to 'Purity//FB' for FlashArrays)"},"response":[],"_postman_id":"08bf4909-d396-4476-b3f9-953d218a65fe"},{"name":"Get All Array Tags","event":[{"listen":"test","script":{"id":"1feaac1c-d34d-4a15-862f-7117cb739c56","exec":["var jsonData = JSON.parse(responseBody);","postman.setEnvironmentVariable(\"selected_array_id\", jsonData.items[0].resource.id);","postman.setEnvironmentVariable(\"selected_array_name\", jsonData.items[0].resource.name);"],"type":"text/javascript"}}],"id":"298db164-19f3-4eee-9492-bc77a5b0dc64","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":"https://{{host_url}}/api/{{api_version}}/arrays/tags"},"response":[],"_postman_id":"298db164-19f3-4eee-9492-bc77a5b0dc64"},{"name":"Tag Array (env & location)","id":"b1b16bd0-1d9b-47d4-9474-8550a85321eb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"[\n\t{\"key\":\"env\",\"value\":\"prod\"},\n\t{\"key\":\"location\",\"value\":\"us-dc-01\"}\n]"},"url":{"raw":"https://{{host_url}}/api/{{api_version}}/arrays/tags/batch?resource_ids=('{{selected_array_id}}')","protocol":"https","host":["{{host_url}}"],"path":["api","{{api_version}}","arrays","tags","batch"],"query":[{"key":"resource_ids","value":"('{{selected_array_id}}')"}]},"description":"Adds 'env' and 'location' tags to the selected_array_name.\nEdit the Body tab to change the tag values"},"response":[],"_postman_id":"b1b16bd0-1d9b-47d4-9474-8550a85321eb"},{"name":"Get Production Arrays","event":[{"listen":"test","script":{"id":"330b2a1a-7c56-40e7-993e-608b1d4613d4","exec":[""],"type":"text/javascript"}}],"id":"0cf80cee-dd82-4073-9d5e-30f64b441721","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://{{host_url}}/api/{{api_version}}/arrays?filter=tags('env','{{env_tag_value}}')","protocol":"https","host":["{{host_url}}"],"path":["api","{{api_version}}","arrays"],"query":[{"key":"filter","value":"tags('env','{{env_tag_value}}')"}]}},"response":[],"_postman_id":"0cf80cee-dd82-4073-9d5e-30f64b441721"},{"name":"Get Configured Arrays","event":[{"listen":"test","script":{"id":"330b2a1a-7c56-40e7-993e-608b1d4613d4","exec":[""],"type":"text/javascript"}}],"id":"924dc008-0f74-44d9-b174-ba7f5ffa272d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://{{host_url}}/api/{{api_version}}/arrays?filter=tags('env','{{env_tag_value}}')","protocol":"https","host":["{{host_url}}"],"path":["api","{{api_version}}","arrays"],"query":[{"key":"filter","value":"tags('env','{{env_tag_value}}')"}]}},"response":[],"_postman_id":"924dc008-0f74-44d9-b174-ba7f5ffa272d"},{"name":"Get Tags By Array","event":[{"listen":"test","script":{"id":"330b2a1a-7c56-40e7-993e-608b1d4613d4","exec":[""],"type":"text/javascript"}}],"id":"230362bc-46ee-4de9-a306-dda0f5e893ac","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://{{host_url}}/api/{{api_version}}/arrays/tags?resource_names=('{{selected_array_name}}')","protocol":"https","host":["{{host_url}}"],"path":["api","{{api_version}}","arrays","tags"],"query":[{"key":"resource_names","value":"('{{selected_array_name}}')"}]}},"response":[],"_postman_id":"230362bc-46ee-4de9-a306-dda0f5e893ac"},{"name":"Get Arrays Paginated by Token","event":[{"listen":"test","script":{"id":"02af56b6-e791-4af5-a007-40670d7c10b8","exec":["var jsonData = JSON.parse(responseBody);","postman.setEnvironmentVariable(\"continuation_token\", jsonData.continuation_token);"],"type":"text/javascript"}}],"id":"cd6f656f-71f1-48aa-b45e-e64b8ef0acc4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://{{host_url}}/api/{{api_version}}/arrays?limit={{page_size}}&continuation_token='{{continuation_token}}'","protocol":"https","host":["{{host_url}}"],"path":["api","{{api_version}}","arrays"],"query":[{"key":"limit","value":"{{page_size}}"},{"key":"continuation_token","value":"'{{continuation_token}}'"}]}},"response":[],"_postman_id":"cd6f656f-71f1-48aa-b45e-e64b8ef0acc4"},{"name":"Get Arrays Paginated & Filtered by Model","event":[{"listen":"test","script":{"id":"02af56b6-e791-4af5-a007-40670d7c10b8","exec":[""],"type":"text/javascript"}}],"id":"cf07235d-7a3c-42a0-9bd2-f09af697f725","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://{{host_url}}/api/{{api_version}}/arrays?limit={{page_size}}&filter=model='{{array_model}}'&sort=version","protocol":"https","host":["{{host_url}}"],"path":["api","{{api_version}}","arrays"],"query":[{"key":"limit","value":"{{page_size}}"},{"key":"filter","value":"model='{{array_model}}'"},{"key":"sort","value":"version"}]},"description":"Retrieves appliances filtered by model, paged using tokens and sorted by name"},"response":[],"_postman_id":"cf07235d-7a3c-42a0-9bd2-f09af697f725"}],"id":"2aa6ef81-16b2-446f-84e8-d605d3b2c97d","_postman_id":"2aa6ef81-16b2-446f-84e8-d605d3b2c97d"},{"name":"Buckets","item":[{"name":"Get All Buckets","event":[{"listen":"test","script":{"id":"e5e164c5-7665-4b88-996c-77e0019c375d","exec":["var jsonData = JSON.parse(responseBody);","postman.setEnvironmentVariable(\"continuation_token\", jsonData.continuation_token);"],"type":"text/javascript"}}],"id":"5cfbaa34-c71d-4e38-9ccc-bea5d21b20ca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://{{host_url}}/api/{{api_version}}/buckets?limit={{page_size}}&continuation_token='{{continuation_token}}'&filter=arrays.id='aeb16c36-9531-47f5-98a6-b80d7ad06d7b'","protocol":"https","host":["{{host_url}}"],"path":["api","{{api_version}}","buckets"],"query":[{"key":"limit","value":"{{page_size}}"},{"key":"continuation_token","value":"'{{continuation_token}}'"},{"key":"filter","value":"arrays.id='aeb16c36-9531-47f5-98a6-b80d7ad06d7b'","type":"text"}]},"description":"Return all the arrays available in your Pure1 account"},"response":[],"_postman_id":"5cfbaa34-c71d-4e38-9ccc-bea5d21b20ca"},{"name":"Get All Object Store Accounts","event":[{"listen":"test","script":{"id":"e5e164c5-7665-4b88-996c-77e0019c375d","exec":["var jsonData = JSON.parse(responseBody);","postman.setEnvironmentVariable(\"selected_array_id\", jsonData.items[0].id);","postman.setEnvironmentVariable(\"selected_array_name\", jsonData.items[0].name);","postman.setEnvironmentVariable(\"selected_array2_id\", jsonData.items[1].id);","postman.setEnvironmentVariable(\"selected_array2_name\", jsonData.items[1].name);","","var arrays = jsonData.items;","var array_ids = '';","arrays.forEach(getArrays);","postman.setEnvironmentVariable(\"selected_array_ids\", array_ids);","","function getArrays(item, index, array) {","    if(index<16) { //currently API calls are limited to 16 metrics","        array_ids = array_ids + \"'\" + item.id + \"', \"; ","    }","} "],"type":"text/javascript"}}],"id":"eca228ee-76f3-421c-8330-b4a85c8a1453","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":"https://{{host_url}}/api/{{api_version}}/object-store-accounts","description":"Return all the bucket replica links available in your Pure1 account"},"response":[],"_postman_id":"eca228ee-76f3-421c-8330-b4a85c8a1453"},{"name":"Get All Targets","event":[{"listen":"test","script":{"id":"e5e164c5-7665-4b88-996c-77e0019c375d","exec":["var jsonData = JSON.parse(responseBody);","postman.setEnvironmentVariable(\"selected_array_id\", jsonData.items[0].id);","postman.setEnvironmentVariable(\"selected_array_name\", jsonData.items[0].name);","postman.setEnvironmentVariable(\"selected_array2_id\", jsonData.items[1].id);","postman.setEnvironmentVariable(\"selected_array2_name\", jsonData.items[1].name);","","var arrays = jsonData.items;","var array_ids = '';","arrays.forEach(getArrays);","postman.setEnvironmentVariable(\"selected_array_ids\", array_ids);","","function getArrays(item, index, array) {","    if(index<16) { //currently API calls are limited to 16 metrics","        array_ids = array_ids + \"'\" + item.id + \"', \"; ","    }","} "],"type":"text/javascript"}}],"id":"a8048048-c0e6-4968-add9-4d6b92396c71","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":"https://{{host_url}}/api/{{api_version}}/targets","description":"Return all the bucket replica links available in your Pure1 account"},"response":[],"_postman_id":"a8048048-c0e6-4968-add9-4d6b92396c71"}],"id":"94187449-a250-4798-98cc-af696dbb2df7","_postman_id":"94187449-a250-4798-98cc-af696dbb2df7"},{"name":"File Systems","item":[{"name":"Get All File Systems","event":[{"listen":"test","script":{"id":"c9f015d0-1002-48ba-9871-7ce05288d4c7","exec":["var jsonData = JSON.parse(responseBody);","postman.setEnvironmentVariable(\"selected_fs_id\", jsonData.items[0].id);","postman.setEnvironmentVariable(\"selected_fs_name\", jsonData.items[0].name);"],"type":"text/javascript"}}],"id":"173afa7e-97f3-4d31-a506-58b8a34d8462","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":"https://{{host_url}}/api/{{api_version}}/file-systems"},"response":[],"_postman_id":"173afa7e-97f3-4d31-a506-58b8a34d8462"},{"name":"Get All File System Snapshots","id":"aa9ae18a-b13a-4d05-b1e4-e1d0c2ade465","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":"https://{{host_url}}/api/{{api_version}}/file-system-snapshots"},"response":[],"_postman_id":"aa9ae18a-b13a-4d05-b1e4-e1d0c2ade465"}],"id":"1148fb7d-9dbf-49c6-8e48-3a87000138e7","_postman_id":"1148fb7d-9dbf-49c6-8e48-3a87000138e7"},{"name":"Metrics History","item":[{"name":"Array Metrics","item":[{"name":"Get Data Reduction by Array ID","event":[{"listen":"prerequest","script":{"id":"4f6e232b-02b8-4b85-b81d-853ca8179ec7","exec":["pm.environment.set(\"start_time\", Date.now() - 86400000*2)","pm.environment.set(\"end_time\",Date.now())"],"type":"text/javascript"}}],"id":"d7f7eff1-c09e-43e4-b11f-84dc09f9b414","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://{{host_url}}/api/{{api_version}}/metrics/history?names='array_data_reduction'&resource_ids=('{{selected_array_id}}', '{{selected_array2_id}}')&aggregation='avg'&resolution={{metric_resolution_large}}&start_time={{start_time}}&end_time={{end_time}}","protocol":"https","host":["{{host_url}}"],"path":["api","{{api_version}}","metrics","history"],"query":[{"key":"names","value":"'array_data_reduction'"},{"key":"resource_ids","value":"('{{selected_array_id}}', '{{selected_array2_id}}')"},{"key":"aggregation","value":"'avg'"},{"key":"resolution","value":"{{metric_resolution_large}}"},{"key":"start_time","value":"{{start_time}}"},{"key":"end_time","value":"{{end_time}}"}]},"description":"FlashArray only: Ratio of mapped sectors versus the amount of physical space the data occupies after data compression and deduplication. (This does not include thin provisioning savings)."},"response":[],"_postman_id":"d7f7eff1-c09e-43e4-b11f-84dc09f9b414"},{"name":"Get Data Reduction by Array Name","event":[{"listen":"prerequest","script":{"id":"4f6e232b-02b8-4b85-b81d-853ca8179ec7","exec":["pm.environment.set(\"start_time\", Date.now() - 86400000*100)","pm.environment.set(\"end_time\",Date.now())"],"type":"text/javascript"}}],"id":"bb8d8409-38f5-480b-b180-585f3786e83e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://{{host_url}}/api/{{api_version}}/metrics/history?names='array_data_reduction'&resource_names=('{{selected_array_name}}', '{{selected_array2_name}}')&aggregation='avg'&resolution={{metric_resolution_large}}&start_time={{start_time}}&end_time={{end_time}}","protocol":"https","host":["{{host_url}}"],"path":["api","{{api_version}}","metrics","history"],"query":[{"key":"names","value":"'array_data_reduction'"},{"key":"resource_names","value":"('{{selected_array_name}}', '{{selected_array2_name}}')"},{"key":"aggregation","value":"'avg'"},{"key":"resolution","value":"{{metric_resolution_large}}"},{"key":"start_time","value":"{{start_time}}"},{"key":"end_time","value":"{{end_time}}"}]},"description":"FlashArray only: Ratio of mapped sectors versus the amount of physical space the data occupies after data compression and deduplication. (This does not include thin provisioning savings)"},"response":[],"_postman_id":"bb8d8409-38f5-480b-b180-585f3786e83e"},{"name":"Get Effective Used Space by Array","event":[{"listen":"prerequest","script":{"id":"e6ead7ef-8f63-4835-a4ca-dfa8f3372fb8","exec":["pm.environment.set(\"start_time\", Date.now() - 86400000*10)","pm.environment.set(\"end_time\",Date.now())"],"type":"text/javascript"}}],"id":"4f1ffb36-f6c2-490c-b6c2-c12abd24e7e5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://{{host_url}}/api/{{api_version}}/metrics/history?names='array_effective_used_space'&resource_ids={{selected_array_ids}}&aggregation='avg'&resolution={{metric_resolution_large}}&start_time={{start_time}}&end_time={{end_time}}","protocol":"https","host":["{{host_url}}"],"path":["api","{{api_version}}","metrics","history"],"query":[{"key":"names","value":"'array_effective_used_space'"},{"key":"resource_ids","value":"{{selected_array_ids}}"},{"key":"aggregation","value":"'avg'"},{"key":"resolution","value":"{{metric_resolution_large}}"},{"key":"start_time","value":"{{start_time}}"},{"key":"end_time","value":"{{end_time}}"}]},"description":"FlashArray w/ ES2 subscription only: Effective used capacity of the array. Effective used is a metric utilized in billing for the ES2 program. More details on Effective Used are available at https://support.purestorage.com/Pure1/Pure1_Manage/003_Analytics/ES2_Effective_Used_Capacity_Quick_Reference_Guide"},"response":[],"_postman_id":"4f1ffb36-f6c2-490c-b6c2-c12abd24e7e5"},{"name":"Get Data Reduction & Total Capacity","event":[{"listen":"prerequest","script":{"id":"4f6e232b-02b8-4b85-b81d-853ca8179ec7","exec":["pm.environment.set(\"start_time\", Date.now() - 86400000*7)","pm.environment.set(\"end_time\",Date.now())"],"type":"text/javascript"}}],"id":"34dfb3a3-ac17-4264-8b21-9e34931f4b7f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://{{host_url}}/api/{{api_version}}/metrics/history?names=('array_total_capacity', 'array_data_reduction')&resource_ids=('{{selected_array_id}}', '{{selected_array2_id}}')&aggregation='avg'&resolution={{metric_resolution_large}}&start_time={{start_time}}&end_time={{end_time}}","protocol":"https","host":["{{host_url}}"],"path":["api","{{api_version}}","metrics","history"],"query":[{"key":"names","value":"('array_total_capacity', 'array_data_reduction')"},{"key":"resource_ids","value":"('{{selected_array_id}}', '{{selected_array2_id}}')"},{"key":"aggregation","value":"'avg'"},{"key":"resolution","value":"{{metric_resolution_large}}"},{"key":"start_time","value":"{{start_time}}"},{"key":"end_time","value":"{{end_time}}"}]},"description":"FlashArray only: Example of combining 2 metrics requests into a single API request."},"response":[],"_postman_id":"34dfb3a3-ac17-4264-8b21-9e34931f4b7f"},{"name":"Get File System Space by Array","event":[{"listen":"prerequest","script":{"id":"4f6e232b-02b8-4b85-b81d-853ca8179ec7","exec":["pm.environment.set(\"start_time\", Date.now() - 86400000*7)","pm.environment.set(\"end_time\",Date.now())"],"type":"text/javascript"}}],"id":"4bd9825d-29e4-4fa4-a583-eb7a056f1255","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://{{host_url}}/api/{{api_version}}/metrics/history?names='array_file_system_space'&resource_ids={{selected_array_ids}}&aggregation='avg'&resolution={{metric_resolution_large}}&start_time={{start_time}}&end_time={{end_time}}","protocol":"https","host":["{{host_url}}"],"path":["api","{{api_version}}","metrics","history"],"query":[{"key":"names","value":"'array_file_system_space'"},{"key":"resource_ids","value":"{{selected_array_ids}}"},{"key":"aggregation","value":"'avg'"},{"key":"resolution","value":"{{metric_resolution_large}}"},{"key":"start_time","value":"{{start_time}}"},{"key":"end_time","value":"{{end_time}}"},{"key":"resource_names","value":"{{array_names}}","disabled":true}]},"description":"FlashArray only: Physical space occupied by file system data on the array"},"response":[],"_postman_id":"4bd9825d-29e4-4fa4-a583-eb7a056f1255"},{"name":"Get Object Store Space by Array","event":[{"listen":"prerequest","script":{"id":"4f6e232b-02b8-4b85-b81d-853ca8179ec7","exec":["pm.environment.set(\"start_time\", Date.now() - 86400000*100)","pm.environment.set(\"end_time\",Date.now())"],"type":"text/javascript"}}],"id":"25628db4-4c5f-4a5c-b5e3-ad52bb2cc8f6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://{{host_url}}/api/{{api_version}}/metrics/history?names='array_object_store_space'&resource_ids='{{selected_array_id}}'&aggregation='avg'&resolution={{metric_resolution_large}}&start_time={{start_time}}&end_time={{end_time}}","protocol":"https","host":["{{host_url}}"],"path":["api","{{api_version}}","metrics","history"],"query":[{"key":"names","value":"'array_object_store_space'"},{"key":"resource_ids","value":"'{{selected_array_id}}'"},{"key":"aggregation","value":"'avg'"},{"key":"resolution","value":"{{metric_resolution_large}}"},{"key":"start_time","value":"{{start_time}}"},{"key":"end_time","value":"{{end_time}}"}]},"description":"FlashArray only: Physical space occupied by object store data on the array"},"response":[],"_postman_id":"25628db4-4c5f-4a5c-b5e3-ad52bb2cc8f6"},{"name":"Get Other IOPS by Array","event":[{"listen":"prerequest","script":{"id":"4f6e232b-02b8-4b85-b81d-853ca8179ec7","exec":["pm.environment.set(\"start_time\", Date.now() - 86400000*30)","pm.environment.set(\"end_time\",Date.now())"],"type":"text/javascript"}}],"id":"c6e81c0b-df73-4f2e-aedc-9749bf467f02","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://{{host_url}}/api/{{api_version}}/metrics/history?names='array_other_iops'&resource_ids={{selected_array_ids}}&aggregation='avg'&resolution={{metric_resolution}}&start_time={{start_time}}&end_time={{end_time}}","protocol":"https","host":["{{host_url}}"],"path":["api","{{api_version}}","metrics","history"],"query":[{"key":"names","value":"'array_other_iops'"},{"key":"resource_ids","value":"{{selected_array_ids}}"},{"key":"aggregation","value":"'avg'"},{"key":"resolution","value":"{{metric_resolution}}"},{"key":"start_time","value":"{{start_time}}"},{"key":"end_time","value":"{{end_time}}"}]},"description":"FlashArray only: Number of requests processed per second which are not read or write I/O by the array"},"response":[],"_postman_id":"c6e81c0b-df73-4f2e-aedc-9749bf467f02"},{"name":"Get Other Latency by Array","event":[{"listen":"prerequest","script":{"id":"4f6e232b-02b8-4b85-b81d-853ca8179ec7","exec":["pm.environment.set(\"start_time\", Date.now() - 86400000*10)","pm.environment.set(\"end_time\",Date.now())"],"type":"text/javascript"}}],"id":"9e554f9e-aab7-4a6f-b958-d0f41d1c69b2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://{{host_url}}/api/{{api_version}}/metrics/history?names='array_other_latency_us'&resource_ids='{{selected_array_id}}'&aggregation='avg'&resolution={{metric_resolution}}&start_time={{start_time}}&end_time={{end_time}}","protocol":"https","host":["{{host_url}}"],"path":["api","{{api_version}}","metrics","history"],"query":[{"key":"names","value":"'array_other_latency_us'"},{"key":"resource_ids","value":"'{{selected_array_id}}'"},{"key":"aggregation","value":"'avg'"},{"key":"resolution","value":"{{metric_resolution}}"},{"key":"start_time","value":"{{start_time}}"},{"key":"end_time","value":"{{end_time}}"}]},"description":"FlashArray only: Time it takes the array to process a request which is not read or write I/O"},"response":[],"_postman_id":"9e554f9e-aab7-4a6f-b958-d0f41d1c69b2"},{"name":"Get Read Bandwidth by Array","event":[{"listen":"prerequest","script":{"id":"4f6e232b-02b8-4b85-b81d-853ca8179ec7","exec":["pm.environment.set(\"start_time\", Date.now() - 86400000*10)","pm.environment.set(\"end_time\",Date.now())"],"type":"text/javascript"}}],"id":"b65ecc7a-f109-4cb5-ae9f-b8279c822b48","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://{{host_url}}/api/{{api_version}}/metrics/history?names='array_read_bandwidth'&resource_ids='{{selected_array_id}}'&aggregation='avg'&resolution={{metric_resolution}}&start_time={{start_time}}&end_time={{end_time}}","protocol":"https","host":["{{host_url}}"],"path":["api","{{api_version}}","metrics","history"],"query":[{"key":"names","value":"'array_read_bandwidth'"},{"key":"resource_ids","value":"'{{selected_array_id}}'"},{"key":"aggregation","value":"'avg'"},{"key":"resolution","value":"{{metric_resolution}}"},{"key":"start_time","value":"{{start_time}}"},{"key":"end_time","value":"{{end_time}}"}]},"description":"FlashArray only: Number of bytes read per second from the array"},"response":[],"_postman_id":"b65ecc7a-f109-4cb5-ae9f-b8279c822b48"},{"name":"Get Read IOPS by Array","event":[{"listen":"prerequest","script":{"id":"fdeaac38-e141-4242-ba48-56055fbaee97","exec":["//pm.environment.set(\"start_time\", Date.now() - 86400000*30)","//pm.environment.set(\"start_time\", Date.now() - 60000000)","//pm.environment.set(\"end_time\",Date.now())"],"type":"text/javascript"}}],"id":"62c957b7-0765-48f0-8cd8-1020bda14658","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://{{host_url}}/api/{{api_version}}/metrics/history?names='array_read_iops'&resource_ids={{selected_array_ids}}&aggregation='avg'&resolution={{metric_resolution}}&start_time={{start_time}}&end_time={{end_time}}","protocol":"https","host":["{{host_url}}"],"path":["api","{{api_version}}","metrics","history"],"query":[{"key":"names","value":"'array_read_iops'"},{"key":"resource_ids","value":"{{selected_array_ids}}"},{"key":"aggregation","value":"'avg'"},{"key":"resolution","value":"{{metric_resolution}}"},{"key":"start_time","value":"{{start_time}}"},{"key":"end_time","value":"{{end_time}}"}]},"description":"FlashArray only: Number of read requests processed per second by the array"},"response":[],"_postman_id":"62c957b7-0765-48f0-8cd8-1020bda14658"},{"name":"Get Read Latency by Array","event":[{"listen":"prerequest","script":{"id":"4f6e232b-02b8-4b85-b81d-853ca8179ec7","exec":["pm.environment.set(\"start_time\", Date.now() - 86400000*10)","pm.environment.set(\"end_time\",Date.now())"],"type":"text/javascript"}}],"id":"0af7fe21-282d-402a-a0f2-8045c3969aaa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://{{host_url}}/api/{{api_version}}/metrics/history?names='array_read_latency_us'&resource_ids='{{selected_array_id}}'&aggregation='avg'&resolution={{metric_resolution}}&start_time={{start_time}}&end_time={{end_time}}","protocol":"https","host":["{{host_url}}"],"path":["api","{{api_version}}","metrics","history"],"query":[{"key":"names","value":"'array_read_latency_us'"},{"key":"resource_ids","value":"'{{selected_array_id}}'"},{"key":"aggregation","value":"'avg'"},{"key":"resolution","value":"{{metric_resolution}}"},{"key":"start_time","value":"{{start_time}}"},{"key":"end_time","value":"{{end_time}}"}]},"description":"FlashArray only: Time it takes the array to process an I/O read request"},"response":[],"_postman_id":"0af7fe21-282d-402a-a0f2-8045c3969aaa"},{"name":"Get Shared Space by Array","event":[{"listen":"prerequest","script":{"id":"4f6e232b-02b8-4b85-b81d-853ca8179ec7","exec":["pm.environment.set(\"start_time\", Date.now() - 86400000*100)","pm.environment.set(\"end_time\",Date.now())"],"type":"text/javascript"}}],"id":"d2eb8f00-7d61-4af6-9a6f-d70772259aa3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://{{host_url}}/api/{{api_version}}/metrics/history?names='array_shared_space'&resource_ids='{{selected_array_id}}'&aggregation='avg'&resolution={{metric_resolution_large}}&start_time={{start_time}}&end_time={{end_time}}","protocol":"https","host":["{{host_url}}"],"path":["api","{{api_version}}","metrics","history"],"query":[{"key":"names","value":"'array_shared_space'"},{"key":"resource_ids","value":"'{{selected_array_id}}'"},{"key":"aggregation","value":"'avg'"},{"key":"resolution","value":"{{metric_resolution_large}}"},{"key":"start_time","value":"{{start_time}}"},{"key":"end_time","value":"{{end_time}}"}]},"description":"FlashArray only: Physical space occupied by deduplicated data on the array, meaning that the space is shared with other volumes and snapshots as a result of data deduplication"},"response":[],"_postman_id":"d2eb8f00-7d61-4af6-9a6f-d70772259aa3"},{"name":"Get Snapshot Space by Array","event":[{"listen":"prerequest","script":{"id":"4f6e232b-02b8-4b85-b81d-853ca8179ec7","exec":["pm.environment.set(\"start_time\", Date.now() - 86400000*10)","pm.environment.set(\"end_time\",Date.now())"],"type":"text/javascript"}}],"id":"8a64f1ce-4aa8-4a25-8fa8-0246dc0476ad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://{{host_url}}/api/{{api_version}}/metrics/history?names='array_snapshot_space'&resource_ids={{selected_array_ids}}&aggregation='avg'&resolution={{metric_resolution_large}}&start_time={{start_time}}&end_time={{end_time}}","protocol":"https","host":["{{host_url}}"],"path":["api","{{api_version}}","metrics","history"],"query":[{"key":"names","value":"'array_snapshot_space'"},{"key":"resource_ids","value":"{{selected_array_ids}}"},{"key":"aggregation","value":"'avg'"},{"key":"resolution","value":"{{metric_resolution_large}}"},{"key":"start_time","value":"{{start_time}}"},{"key":"end_time","value":"{{end_time}}"}]},"description":"FlashArray only: Physical space occupied by data unique to one or more snapshots on the array"},"response":[],"_postman_id":"8a64f1ce-4aa8-4a25-8fa8-0246dc0476ad"},{"name":"Get System Space by Array","event":[{"listen":"prerequest","script":{"id":"4f6e232b-02b8-4b85-b81d-853ca8179ec7","exec":["pm.environment.set(\"start_time\", Date.now() - 86400000*10)","pm.environment.set(\"end_time\",Date.now())"],"type":"text/javascript"}}],"id":"a49cd1c3-81cf-4b2c-acfa-db756304eca9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://{{host_url}}/api/{{api_version}}/metrics/history?names='array_system_space'&resource_ids=('{{selected_array_id}}', '{{selected_array2_id}}')&aggregation='avg'&resolution={{metric_resolution_large}}&start_time={{start_time}}&end_time={{end_time}}","protocol":"https","host":["{{host_url}}"],"path":["api","{{api_version}}","metrics","history"],"query":[{"key":"names","value":"'array_system_space'"},{"key":"resource_ids","value":"('{{selected_array_id}}', '{{selected_array2_id}}')"},{"key":"aggregation","value":"'avg'"},{"key":"resolution","value":"{{metric_resolution_large}}"},{"key":"start_time","value":"{{start_time}}"},{"key":"end_time","value":"{{end_time}}"}]},"description":"FlashArray only: Physical space occupied by internal array metadata"},"response":[],"_postman_id":"a49cd1c3-81cf-4b2c-acfa-db756304eca9"},{"name":"Get Total Capacity by Array","event":[{"listen":"prerequest","script":{"id":"4f6e232b-02b8-4b85-b81d-853ca8179ec7","exec":["pm.environment.set(\"start_time\", Date.now() - 86400000*10)","pm.environment.set(\"end_time\",Date.now())"],"type":"text/javascript"}}],"id":"743be33b-c08b-419b-9dac-7914bfd60767","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://{{host_url}}/api/{{api_version}}/metrics/history?names='array_total_capacity'&resource_ids='{{selected_array_id}}'&aggregation='avg'&resolution={{metric_resolution_large}}&start_time={{start_time}}&end_time={{end_time}}","protocol":"https","host":["{{host_url}}"],"path":["api","{{api_version}}","metrics","history"],"query":[{"key":"names","value":"'array_total_capacity'"},{"key":"resource_ids","value":"'{{selected_array_id}}'"},{"key":"aggregation","value":"'avg'"},{"key":"resolution","value":"{{metric_resolution_large}}"},{"key":"start_time","value":"{{start_time}}"},{"key":"end_time","value":"{{end_time}}"}]},"description":"FlashArray only: Total physical usable space on the array"},"response":[],"_postman_id":"743be33b-c08b-419b-9dac-7914bfd60767"},{"name":"Get Total Load by Array","event":[{"listen":"prerequest","script":{"id":"4f6e232b-02b8-4b85-b81d-853ca8179ec7","exec":["pm.environment.set(\"start_time\", Date.now() - 86400000)","pm.environment.set(\"end_time\",Date.now())"],"type":"text/javascript"}}],"id":"325a7c91-b628-4e1b-b73a-e49dda8b14e3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://{{host_url}}/api/{{api_version}}/metrics/history?names='array_total_load'&resource_ids={{selected_array_ids}}&aggregation='avg'&resolution={{metric_resolution_large}}&start_time={{start_time}}&end_time={{end_time}}","protocol":"https","host":["{{host_url}}"],"path":["api","{{api_version}}","metrics","history"],"query":[{"key":"names","value":"'array_total_load'"},{"key":"resource_ids","value":"{{selected_array_ids}}"},{"key":"aggregation","value":"'avg'"},{"key":"resolution","value":"{{metric_resolution_large}}"},{"key":"start_time","value":"{{start_time}}"},{"key":"end_time","value":"{{end_time}}"}]},"description":"FlashArray only: Percentage value indicating the overall load of the array"},"response":[],"_postman_id":"325a7c91-b628-4e1b-b73a-e49dda8b14e3"},{"name":"Get Volume Space by Array","event":[{"listen":"prerequest","script":{"id":"4f6e232b-02b8-4b85-b81d-853ca8179ec7","exec":["pm.environment.set(\"start_time\", Date.now() - 86400000*1)","pm.environment.set(\"end_time\",Date.now())"],"type":"text/javascript"}}],"id":"afe1c888-94ab-477e-8382-34941b02b096","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://{{host_url}}/api/{{api_version}}/metrics/history?names='array_volume_space'&resource_ids={{selected_array_ids}}&aggregation='avg'&resolution={{metric_resolution_day}}&start_time='{{start_time}}'&end_time='{{end_time}}'","protocol":"https","host":["{{host_url}}"],"path":["api","{{api_version}}","metrics","history"],"query":[{"key":"names","value":"'array_volume_space'"},{"key":"resource_ids","value":"{{selected_array_ids}}"},{"key":"aggregation","value":"'avg'"},{"key":"resolution","value":"{{metric_resolution_day}}"},{"key":"start_time","value":"'{{start_time}}'"},{"key":"end_time","value":"'{{end_time}}'"}]},"description":"FlashArray only: Physical space occupied by volume data that is not shared between volumes, excluding array metadata and snapshot"},"response":[],"_postman_id":"afe1c888-94ab-477e-8382-34941b02b096"},{"name":"Get Total Load Metrics by Array","event":[{"listen":"prerequest","script":{"id":"4f6e232b-02b8-4b85-b81d-853ca8179ec7","exec":["pm.environment.set(\"start_time\", Date.now() - 86400000*10)","pm.environment.set(\"end_time\",Date.now())"],"type":"text/javascript"}}],"id":"80e2a6be-cd4e-4a74-bd47-052a177791cc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://{{host_url}}/api/{{api_version}}/metrics/history?names='array_total_load'&resource_ids={{selected_array_ids}}&aggregation='avg'&resolution={{metric_resolution_large}}&start_time={{start_time}}&end_time={{end_time}}","protocol":"https","host":["{{host_url}}"],"path":["api","{{api_version}}","metrics","history"],"query":[{"key":"names","value":"'array_total_load'"},{"key":"resource_ids","value":"{{selected_array_ids}}"},{"key":"aggregation","value":"'avg'"},{"key":"resolution","value":"{{metric_resolution_large}}"},{"key":"start_time","value":"{{start_time}}"},{"key":"end_time","value":"{{end_time}}"},{"key":"resource_names","value":"{{selected_array_names}}","disabled":true}]},"description":"FlashArray only: Retrieves the total metric by array"},"response":[],"_postman_id":"80e2a6be-cd4e-4a74-bd47-052a177791cc"},{"name":"Get Write Bandwidth by Array","event":[{"listen":"prerequest","script":{"id":"4f6e232b-02b8-4b85-b81d-853ca8179ec7","exec":["pm.environment.set(\"start_date\", Date.now() - 86400000*10)"],"type":"text/javascript"}}],"id":"87f34957-f9d6-4ffc-b735-368a48e00de0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://{{host_url}}/api/{{api_version}}/metrics/history?names='array_write_bandwidth'&aggregation='avg'&resolution={{metric_resolution}}&start_time='{{start_date}}'&end_time='{{$timestamp}}'&resource_names={{selected_array_names}}","protocol":"https","host":["{{host_url}}"],"path":["api","{{api_version}}","metrics","history"],"query":[{"key":"names","value":"'array_write_bandwidth'"},{"key":"resource_ids","value":"'{{selected_array_id}}'","disabled":true},{"key":"aggregation","value":"'avg'"},{"key":"resolution","value":"{{metric_resolution}}"},{"key":"start_time","value":"'{{start_date}}'"},{"key":"end_time","value":"'{{$timestamp}}'"},{"key":"resource_names","value":"{{selected_array_names}}"}]},"description":"FlashArray only: Number of bytes written per second to the array"},"response":[],"_postman_id":"87f34957-f9d6-4ffc-b735-368a48e00de0"},{"name":"Get Write IOPS by Array","event":[{"listen":"prerequest","script":{"id":"4f6e232b-02b8-4b85-b81d-853ca8179ec7","exec":["pm.environment.set(\"start_date\", Date.now() - 86400000*30)"],"type":"text/javascript"}}],"id":"fa6c4cb4-3a04-4915-a665-b83836373d49","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://{{host_url}}/api/{{api_version}}/metrics/history?names='array_write_iops'&resource_ids='{{selected_array_id}}'&aggregation='avg'&resolution={{metric_resolution}}&start_time='{{start_date}}'&end_time='{{$timestamp}}'","protocol":"https","host":["{{host_url}}"],"path":["api","{{api_version}}","metrics","history"],"query":[{"key":"names","value":"'array_write_iops'"},{"key":"resource_ids","value":"'{{selected_array_id}}'"},{"key":"aggregation","value":"'avg'"},{"key":"resolution","value":"{{metric_resolution}}"},{"key":"start_time","value":"'{{start_date}}'"},{"key":"end_time","value":"'{{$timestamp}}'"}]},"description":"FlashArray only: Number of write requests processed per second by the array"},"response":[],"_postman_id":"fa6c4cb4-3a04-4915-a665-b83836373d49"},{"name":"Get Write Latency by Array","event":[{"listen":"prerequest","script":{"id":"4f6e232b-02b8-4b85-b81d-853ca8179ec7","exec":["pm.environment.set(\"start_date\", Date.now() - 86400000*10)"],"type":"text/javascript"}}],"id":"262d0dc3-050c-4f6a-96d7-6f950053babd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://{{host_url}}/api/{{api_version}}/metrics/history?names='array_write_latency_us'&aggregation='avg'&resolution={{metric_resolution}}&start_time='{{start_date}}'&end_time='{{$timestamp}}'&resource_names={{selected_array_names}}","protocol":"https","host":["{{host_url}}"],"path":["api","{{api_version}}","metrics","history"],"query":[{"key":"names","value":"'array_write_latency_us'"},{"key":"resource_ids","value":"'{{selected_array_id}}'","disabled":true},{"key":"aggregation","value":"'avg'"},{"key":"resolution","value":"{{metric_resolution}}"},{"key":"start_time","value":"'{{start_date}}'"},{"key":"end_time","value":"'{{$timestamp}}'"},{"key":"resource_names","value":"{{selected_array_names}}"}]},"description":"FlashArray only: Time it takes the array to process an I/O write request"},"response":[],"_postman_id":"262d0dc3-050c-4f6a-96d7-6f950053babd"}],"id":"7ae78147-ffd5-43f3-a728-096f044b561d","description":"Metrics available for Pure Storage FlashArray arrays only","event":[{"listen":"prerequest","script":{"id":"c629b9b3-bc5f-4b6a-9957-9f588215964c","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"9f096002-58e7-4e30-99d1-3e5510c72bd9","type":"text/javascript","exec":[""]}}],"_postman_id":"7ae78147-ffd5-43f3-a728-096f044b561d"},{"name":"File System Metrics","item":[{"name":"Get Read Bandwith","event":[{"listen":"prerequest","script":{"id":"4f6e232b-02b8-4b85-b81d-853ca8179ec7","exec":["pm.environment.set(\"start_date\", Date.now() - 86400000*10)"],"type":"text/javascript"}}],"id":"c0508cc9-f736-4886-bcaa-51349f32abda","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://{{host_url}}/api/{{api_version}}/metrics/history?names='file_system_read_bandwidth'&resource_names='{{selected_fs_name}}'&aggregation='avg'&resolution={{metric_resolution}}&start_time='{{start_date}}'&end_time='{{$timestamp}}'","protocol":"https","host":["{{host_url}}"],"path":["api","{{api_version}}","metrics","history"],"query":[{"key":"names","value":"'file_system_read_bandwidth'"},{"key":"resource_names","value":"'{{selected_fs_name}}'"},{"key":"aggregation","value":"'avg'"},{"key":"resolution","value":"{{metric_resolution}}"},{"key":"start_time","value":"'{{start_date}}'"},{"key":"end_time","value":"'{{$timestamp}}'"}]},"description":"FlashBlade only: Number of bytes read per second on the file system"},"response":[],"_postman_id":"c0508cc9-f736-4886-bcaa-51349f32abda"},{"name":"Get Read IOPS","event":[{"listen":"prerequest","script":{"id":"4f6e232b-02b8-4b85-b81d-853ca8179ec7","exec":["pm.environment.set(\"start_date\", Date.now() - 86400000*10)"],"type":"text/javascript"}}],"id":"753a7670-fc6a-4906-98fc-1db61db7b026","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://{{host_url}}/api/{{api_version}}/metrics/history?names='file_system_read_iops'&resource_names='{{selected_fs_name}}'&aggregation='avg'&resolution={{metric_resolution}}&start_time='{{start_date}}'&end_time='{{$timestamp}}'","protocol":"https","host":["{{host_url}}"],"path":["api","{{api_version}}","metrics","history"],"query":[{"key":"names","value":"'file_system_read_iops'"},{"key":"resource_names","value":"'{{selected_fs_name}}'"},{"key":"aggregation","value":"'avg'"},{"key":"resolution","value":"{{metric_resolution}}"},{"key":"start_time","value":"'{{start_date}}'"},{"key":"end_time","value":"'{{$timestamp}}'"}]},"description":"FlashBlade only: Number of read requests processed per second on the file system"},"response":[],"_postman_id":"753a7670-fc6a-4906-98fc-1db61db7b026"},{"name":"Get Read Latency","event":[{"listen":"prerequest","script":{"id":"4f6e232b-02b8-4b85-b81d-853ca8179ec7","exec":["pm.environment.set(\"start_date\", Date.now() - 86400000*10)"],"type":"text/javascript"}}],"id":"c358a259-07c5-49dc-9787-986d32f26f8e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://{{host_url}}/api/{{api_version}}/metrics/history?names='file_system_read_latency_us'&resource_names='{{selected_fs_name}}'&aggregation='avg'&resolution={{metric_resolution}}&start_time='{{start_date}}'&end_time='{{$timestamp}}'","protocol":"https","host":["{{host_url}}"],"path":["api","{{api_version}}","metrics","history"],"query":[{"key":"names","value":"'file_system_read_latency_us'"},{"key":"resource_names","value":"'{{selected_fs_name}}'"},{"key":"aggregation","value":"'avg'"},{"key":"resolution","value":"{{metric_resolution}}"},{"key":"start_time","value":"'{{start_date}}'"},{"key":"end_time","value":"'{{$timestamp}}'"}]},"description":"FlashBlade only: Time it takes the file system to process an I/O read request"},"response":[],"_postman_id":"c358a259-07c5-49dc-9787-986d32f26f8e"},{"name":"Get Write Bandwidth","event":[{"listen":"prerequest","script":{"id":"4f6e232b-02b8-4b85-b81d-853ca8179ec7","exec":["pm.environment.set(\"start_date\", Date.now() - 86400000*10)"],"type":"text/javascript"}}],"id":"99fa20f8-7f35-461e-95b0-079e4308da26","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://{{host_url}}/api/{{api_version}}/metrics/history?names='file_system_write_bandwidth'&resource_names='{{selected_fs_name}}'&aggregation='avg'&resolution={{metric_resolution}}&start_time='{{start_date}}'&end_time='{{$timestamp}}'","protocol":"https","host":["{{host_url}}"],"path":["api","{{api_version}}","metrics","history"],"query":[{"key":"names","value":"'file_system_write_bandwidth'"},{"key":"resource_names","value":"'{{selected_fs_name}}'"},{"key":"aggregation","value":"'avg'"},{"key":"resolution","value":"{{metric_resolution}}"},{"key":"start_time","value":"'{{start_date}}'"},{"key":"end_time","value":"'{{$timestamp}}'"}]},"description":"FlashBlade only: Number of bytes written per second to the file system"},"response":[],"_postman_id":"99fa20f8-7f35-461e-95b0-079e4308da26"},{"name":"Get Write IOPS","event":[{"listen":"prerequest","script":{"id":"4f6e232b-02b8-4b85-b81d-853ca8179ec7","exec":["pm.environment.set(\"start_date\", Date.now() - 86400000*10)"],"type":"text/javascript"}}],"id":"eae212bb-88c7-4156-a8ac-770a67c6cd77","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://{{host_url}}/api/{{api_version}}/metrics/history?names='file_system_write_iops'&resource_names='{{selected_fs_name}}'&aggregation='avg'&resolution={{metric_resolution}}&start_time='{{start_date}}'&end_time='{{$timestamp}}'","protocol":"https","host":["{{host_url}}"],"path":["api","{{api_version}}","metrics","history"],"query":[{"key":"names","value":"'file_system_write_iops'"},{"key":"resource_names","value":"'{{selected_fs_name}}'"},{"key":"aggregation","value":"'avg'"},{"key":"resolution","value":"{{metric_resolution}}"},{"key":"start_time","value":"'{{start_date}}'"},{"key":"end_time","value":"'{{$timestamp}}'"}]},"description":"FlashBlade only: Number of write requests processed per second on the file system"},"response":[],"_postman_id":"eae212bb-88c7-4156-a8ac-770a67c6cd77"},{"name":"Get Write Latency","event":[{"listen":"prerequest","script":{"id":"4f6e232b-02b8-4b85-b81d-853ca8179ec7","exec":["pm.environment.set(\"start_date\", Date.now() - 86400000*10)"],"type":"text/javascript"}}],"id":"a20ed5e6-3d35-4be7-83b1-5e11100f64dc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://{{host_url}}/api/{{api_version}}/metrics/history?names='file_system_write_latency_us'&resource_names='{{selected_fs_name}}'&aggregation='avg'&resolution={{metric_resolution}}&start_time='{{start_date}}'&end_time='{{$timestamp}}'","protocol":"https","host":["{{host_url}}"],"path":["api","{{api_version}}","metrics","history"],"query":[{"key":"names","value":"'file_system_write_latency_us'"},{"key":"resource_names","value":"'{{selected_fs_name}}'"},{"key":"aggregation","value":"'avg'"},{"key":"resolution","value":"{{metric_resolution}}"},{"key":"start_time","value":"'{{start_date}}'"},{"key":"end_time","value":"'{{$timestamp}}'"}]},"description":"FlashBlade only: Time it takes the files system to process an I/O write request"},"response":[],"_postman_id":"a20ed5e6-3d35-4be7-83b1-5e11100f64dc"},{"name":"Get Other IOPS","event":[{"listen":"prerequest","script":{"id":"4f6e232b-02b8-4b85-b81d-853ca8179ec7","exec":["pm.environment.set(\"start_date\", Date.now() - 86400000*10)"],"type":"text/javascript"}}],"id":"49ab29c7-002d-466c-af39-d90159b8220a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://{{host_url}}/api/{{api_version}}/metrics/history?names='file_system_other_iops'&resource_names='{{selected_fs_name}}'&aggregation='avg'&resolution={{metric_resolution}}&start_time='{{start_date}}'&end_time='{{$timestamp}}'","protocol":"https","host":["{{host_url}}"],"path":["api","{{api_version}}","metrics","history"],"query":[{"key":"names","value":"'file_system_other_iops'"},{"key":"resource_names","value":"'{{selected_fs_name}}'"},{"key":"aggregation","value":"'avg'"},{"key":"resolution","value":"{{metric_resolution}}"},{"key":"start_time","value":"'{{start_date}}'"},{"key":"end_time","value":"'{{$timestamp}}'"}]},"description":"FlashBlade only: Number of requests processed per second on the file system that are neither read nor write requests"},"response":[],"_postman_id":"49ab29c7-002d-466c-af39-d90159b8220a"},{"name":"Get Other Latency","event":[{"listen":"prerequest","script":{"id":"4f6e232b-02b8-4b85-b81d-853ca8179ec7","exec":["pm.environment.set(\"start_date\", Date.now() - 86400000*10)"],"type":"text/javascript"}}],"id":"325c6a78-ad0f-43bf-b75e-f556c402f089","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://{{host_url}}/api/{{api_version}}/metrics/history?names='file_system_other_latency_us'&resource_names='{{selected_fs_name}}'&aggregation='avg'&resolution={{metric_resolution}}&start_time='{{start_date}}'&end_time='{{$timestamp}}'","protocol":"https","host":["{{host_url}}"],"path":["api","{{api_version}}","metrics","history"],"query":[{"key":"names","value":"'file_system_other_latency_us'"},{"key":"resource_names","value":"'{{selected_fs_name}}'"},{"key":"aggregation","value":"'avg'"},{"key":"resolution","value":"{{metric_resolution}}"},{"key":"start_time","value":"'{{start_date}}'"},{"key":"end_time","value":"'{{$timestamp}}'"}]},"description":"FlashBlade only: Time it takes the file system to process an I/O request which is neither a read nor write request"},"response":[],"_postman_id":"325c6a78-ad0f-43bf-b75e-f556c402f089"}],"id":"41584925-81dc-484d-b18f-ab62220d8186","description":"Metrics available for Pure Storage FlashBlade arrays only\nRun the 'Get All File Systems' request first to assign a file system name used in all the File System Metrics requests","event":[{"listen":"prerequest","script":{"id":"58b4f2e7-e25f-4568-be36-a048cdf9d5d5","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"b0655a44-8615-4180-8fae-612b8885363a","type":"text/javascript","exec":[""]}}],"_postman_id":"41584925-81dc-484d-b18f-ab62220d8186"},{"name":"Pod Metrics","item":[{"name":"Get Pod Array Read Bandwidth","event":[{"listen":"prerequest","script":{"id":"4f6e232b-02b8-4b85-b81d-853ca8179ec7","exec":["pm.environment.set(\"start_date\", Date.now() - 86400000*10)"],"type":"text/javascript"}}],"id":"e32fb556-0109-4678-89e1-9a7aef80a04c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://{{host_url}}/api/{{api_version}}/metrics/history?names='pod_array_read_bandwidth'&resource_ids='{{selected_pod_id}}'&aggregation='avg'&resolution={{metric_resolution}}&start_time='{{start_date}}'&end_time='{{$timestamp}}'","protocol":"https","host":["{{host_url}}"],"path":["api","{{api_version}}","metrics","history"],"query":[{"key":"names","value":"'pod_array_read_bandwidth'"},{"key":"resource_ids","value":"'{{selected_pod_id}}'"},{"key":"aggregation","value":"'avg'"},{"key":"resolution","value":"{{metric_resolution}}"},{"key":"start_time","value":"'{{start_date}}'"},{"key":"end_time","value":"'{{$timestamp}}'"}]},"description":"FlashArray only: Number of bytes read per second per array in the pod"},"response":[],"_postman_id":"e32fb556-0109-4678-89e1-9a7aef80a04c"},{"name":"Get Pod Array Read IOPS","event":[{"listen":"prerequest","script":{"id":"4f6e232b-02b8-4b85-b81d-853ca8179ec7","exec":["pm.environment.set(\"start_date\", Date.now() - 86400000*10)"],"type":"text/javascript"}}],"id":"347da3d7-e0c2-4f63-a74c-7317c77dfe97","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://{{host_url}}/api/{{api_version}}/metrics/history?names='pod_array_read_iops'&resource_ids='{{selected_pod_id}}'&aggregation='avg'&resolution={{metric_resolution}}&start_time='{{start_date}}'&end_time='{{$timestamp}}'","protocol":"https","host":["{{host_url}}"],"path":["api","{{api_version}}","metrics","history"],"query":[{"key":"names","value":"'pod_array_read_iops'"},{"key":"resource_ids","value":"'{{selected_pod_id}}'"},{"key":"aggregation","value":"'avg'"},{"key":"resolution","value":"{{metric_resolution}}"},{"key":"start_time","value":"'{{start_date}}'"},{"key":"end_time","value":"'{{$timestamp}}'"}]},"description":"FlashArray only: Number of read requests processed per second per array in the pod"},"response":[],"_postman_id":"347da3d7-e0c2-4f63-a74c-7317c77dfe97"},{"name":"Get Pod Array Read Latency","event":[{"listen":"prerequest","script":{"id":"4f6e232b-02b8-4b85-b81d-853ca8179ec7","exec":["pm.environment.set(\"start_date\", Date.now() - 86400000*10)"],"type":"text/javascript"}}],"id":"c906f64a-6fac-4f90-973e-b4f27c154ae3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://{{host_url}}/api/{{api_version}}/metrics/history?names='pod_array_read_latency_us'&resource_ids='{{selected_pod_id}}'&aggregation='avg'&resolution={{metric_resolution}}&start_time='{{start_date}}'&end_time='{{$timestamp}}'","protocol":"https","host":["{{host_url}}"],"path":["api","{{api_version}}","metrics","history"],"query":[{"key":"names","value":"'pod_array_read_latency_us'"},{"key":"resource_ids","value":"'{{selected_pod_id}}'"},{"key":"aggregation","value":"'avg'"},{"key":"resolution","value":"{{metric_resolution}}"},{"key":"start_time","value":"'{{start_date}}'"},{"key":"end_time","value":"'{{$timestamp}}'"}]},"description":"FlashArray only: Time it takes to process an I/O read request by an array in the pod"},"response":[],"_postman_id":"c906f64a-6fac-4f90-973e-b4f27c154ae3"},{"name":"Get Pod Array Write Bandwidth","event":[{"listen":"prerequest","script":{"id":"4f6e232b-02b8-4b85-b81d-853ca8179ec7","exec":["pm.environment.set(\"start_date\", Date.now() - 86400000*10)"],"type":"text/javascript"}}],"id":"ec917f34-c647-4df2-8bad-dd93bd6000ec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://{{host_url}}/api/{{api_version}}/metrics/history?names='pod_array_write_bandwidth'&resource_ids='{{selected_pod_id}}'&aggregation='avg'&resolution={{metric_resolution}}&start_time='{{start_date}}'&end_time='{{$timestamp}}'","protocol":"https","host":["{{host_url}}"],"path":["api","{{api_version}}","metrics","history"],"query":[{"key":"names","value":"'pod_array_write_bandwidth'"},{"key":"resource_ids","value":"'{{selected_pod_id}}'"},{"key":"aggregation","value":"'avg'"},{"key":"resolution","value":"{{metric_resolution}}"},{"key":"start_time","value":"'{{start_date}}'"},{"key":"end_time","value":"'{{$timestamp}}'"}]},"description":"FlashArray only: Number of bytes written per second per array in the pod"},"response":[],"_postman_id":"ec917f34-c647-4df2-8bad-dd93bd6000ec"},{"name":"Get Pod Array Write IOPS","event":[{"listen":"prerequest","script":{"id":"4f6e232b-02b8-4b85-b81d-853ca8179ec7","exec":["pm.environment.set(\"start_date\", Date.now() - 86400000*10)"],"type":"text/javascript"}}],"id":"3de99cbf-7edb-457f-893b-06d371efb1fe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://{{host_url}}/api/{{api_version}}/metrics/history?names='pod_array_write_iops'&resource_ids='{{selected_pod_id}}'&aggregation='avg'&resolution={{metric_resolution}}&start_time='{{start_date}}'&end_time='{{$timestamp}}'","protocol":"https","host":["{{host_url}}"],"path":["api","{{api_version}}","metrics","history"],"query":[{"key":"names","value":"'pod_array_write_iops'"},{"key":"resource_ids","value":"'{{selected_pod_id}}'"},{"key":"aggregation","value":"'avg'"},{"key":"resolution","value":"{{metric_resolution}}"},{"key":"start_time","value":"'{{start_date}}'"},{"key":"end_time","value":"'{{$timestamp}}'"}]},"description":"FlashArray only: Number of write requests processed per second per array in the pod"},"response":[],"_postman_id":"3de99cbf-7edb-457f-893b-06d371efb1fe"},{"name":"Get Pod Array Write Latency","event":[{"listen":"prerequest","script":{"id":"4f6e232b-02b8-4b85-b81d-853ca8179ec7","exec":["pm.environment.set(\"start_date\", Date.now() - 86400000*10)"],"type":"text/javascript"}}],"id":"94574654-3fb1-4d35-9582-e5eaf664f208","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://{{host_url}}/api/{{api_version}}/metrics/history?names='pod_array_write_latency_us'&resource_ids='{{selected_pod_id}}'&aggregation='avg'&resolution={{metric_resolution}}&start_time='{{start_date}}'&end_time='{{$timestamp}}'","protocol":"https","host":["{{host_url}}"],"path":["api","{{api_version}}","metrics","history"],"query":[{"key":"names","value":"'pod_array_write_latency_us'"},{"key":"resource_ids","value":"'{{selected_pod_id}}'"},{"key":"aggregation","value":"'avg'"},{"key":"resolution","value":"{{metric_resolution}}"},{"key":"start_time","value":"'{{start_date}}'"},{"key":"end_time","value":"'{{$timestamp}}'"}]},"description":"FlashArray only: Time it takes to process an I/O write request by an array in the pod"},"response":[],"_postman_id":"94574654-3fb1-4d35-9582-e5eaf664f208"},{"name":"Get Pod Read Bandwidth","event":[{"listen":"prerequest","script":{"id":"4f6e232b-02b8-4b85-b81d-853ca8179ec7","exec":["pm.environment.set(\"start_date\", Date.now() - 86400000*10)"],"type":"text/javascript"}}],"id":"7814ba38-e4dc-4901-9b46-cee440e5fb06","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://{{host_url}}/api/{{api_version}}/metrics/history?names='pod_read_bandwidth'&resource_ids='{{selected_pod_id}}'&aggregation='avg'&resolution={{metric_resolution}}&start_time='{{start_date}}'&end_time='{{$timestamp}}'","protocol":"https","host":["{{host_url}}"],"path":["api","{{api_version}}","metrics","history"],"query":[{"key":"names","value":"'pod_read_bandwidth'"},{"key":"resource_ids","value":"'{{selected_pod_id}}'"},{"key":"aggregation","value":"'avg'"},{"key":"resolution","value":"{{metric_resolution}}"},{"key":"start_time","value":"'{{start_date}}'"},{"key":"end_time","value":"'{{$timestamp}}'"}]},"description":"FlashArray only: Number of bytes written per second to the pod"},"response":[],"_postman_id":"7814ba38-e4dc-4901-9b46-cee440e5fb06"},{"name":"Get Pod Read IOPS","event":[{"listen":"prerequest","script":{"id":"4f6e232b-02b8-4b85-b81d-853ca8179ec7","exec":["pm.environment.set(\"start_date\", Date.now() - 86400000*10)"],"type":"text/javascript"}}],"id":"1ba66ac1-c49f-4356-b55d-da565d1f324f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://{{host_url}}/api/{{api_version}}/metrics/history?names='pod_read_iops'&resource_ids='{{selected_pod_id}}'&aggregation='avg'&resolution={{metric_resolution}}&start_time='{{start_date}}'&end_time='{{$timestamp}}'","protocol":"https","host":["{{host_url}}"],"path":["api","{{api_version}}","metrics","history"],"query":[{"key":"names","value":"'pod_read_iops'"},{"key":"resource_ids","value":"'{{selected_pod_id}}'"},{"key":"aggregation","value":"'avg'"},{"key":"resolution","value":"{{metric_resolution}}"},{"key":"start_time","value":"'{{start_date}}'"},{"key":"end_time","value":"'{{$timestamp}}'"}]},"description":"FlashArray only: Number of read requests processed per second by the pod"},"response":[],"_postman_id":"1ba66ac1-c49f-4356-b55d-da565d1f324f"},{"name":"Get Pod Read Latency","event":[{"listen":"prerequest","script":{"id":"4f6e232b-02b8-4b85-b81d-853ca8179ec7","exec":["pm.environment.set(\"start_date\", Date.now() - 86400000*10)"],"type":"text/javascript"}}],"id":"45289cea-f6cd-4051-bc8c-62005a956666","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://{{host_url}}/api/{{api_version}}/metrics/history?names='pod_read_latency_us'&resource_ids='{{selected_pod_id}}'&aggregation='avg'&resolution={{metric_resolution}}&start_time='{{start_date}}'&end_time='{{$timestamp}}'","protocol":"https","host":["{{host_url}}"],"path":["api","{{api_version}}","metrics","history"],"query":[{"key":"names","value":"'pod_read_latency_us'"},{"key":"resource_ids","value":"'{{selected_pod_id}}'"},{"key":"aggregation","value":"'avg'"},{"key":"resolution","value":"{{metric_resolution}}"},{"key":"start_time","value":"'{{start_date}}'"},{"key":"end_time","value":"'{{$timestamp}}'"}]},"description":"FlashArray only: Time it takes the pod to process an I/O read request"},"response":[],"_postman_id":"45289cea-f6cd-4051-bc8c-62005a956666"},{"name":"Get Pod Write Bandwidth","event":[{"listen":"prerequest","script":{"id":"4f6e232b-02b8-4b85-b81d-853ca8179ec7","exec":["pm.environment.set(\"start_date\", Date.now() - 86400000*10)"],"type":"text/javascript"}}],"id":"5362151e-d089-4f6d-abb7-7c356c82ecaa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://{{host_url}}/api/{{api_version}}/metrics/history?names='pod_write_bandwidth'&resource_ids='{{selected_pod_id}}'&aggregation='avg'&resolution={{metric_resolution}}&start_time='{{start_date}}'&end_time='{{$timestamp}}'","protocol":"https","host":["{{host_url}}"],"path":["api","{{api_version}}","metrics","history"],"query":[{"key":"names","value":"'pod_write_bandwidth'"},{"key":"resource_ids","value":"'{{selected_pod_id}}'"},{"key":"aggregation","value":"'avg'"},{"key":"resolution","value":"{{metric_resolution}}"},{"key":"start_time","value":"'{{start_date}}'"},{"key":"end_time","value":"'{{$timestamp}}'"}]},"description":"FlashArray only: Number of bytes written per second to the pod"},"response":[],"_postman_id":"5362151e-d089-4f6d-abb7-7c356c82ecaa"},{"name":"Get Pod Write IOPS","event":[{"listen":"prerequest","script":{"id":"4f6e232b-02b8-4b85-b81d-853ca8179ec7","exec":["pm.environment.set(\"start_date\", Date.now() - 86400000*10)"],"type":"text/javascript"}}],"id":"bf369561-6b2c-4077-ae29-2c5ee73de79f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://{{host_url}}/api/{{api_version}}/metrics/history?names='pod_write_iops'&resource_ids='{{selected_pod_id}}'&aggregation='avg'&resolution={{metric_resolution}}&start_time='{{start_date}}'&end_time='{{$timestamp}}'","protocol":"https","host":["{{host_url}}"],"path":["api","{{api_version}}","metrics","history"],"query":[{"key":"names","value":"'pod_write_iops'"},{"key":"resource_ids","value":"'{{selected_pod_id}}'"},{"key":"aggregation","value":"'avg'"},{"key":"resolution","value":"{{metric_resolution}}"},{"key":"start_time","value":"'{{start_date}}'"},{"key":"end_time","value":"'{{$timestamp}}'"}]},"description":"FlashArray only: Number of write requests processed per second by the pod"},"response":[],"_postman_id":"bf369561-6b2c-4077-ae29-2c5ee73de79f"},{"name":"Get Pod Write Latency","event":[{"listen":"prerequest","script":{"id":"4f6e232b-02b8-4b85-b81d-853ca8179ec7","exec":["pm.environment.set(\"start_date\", Date.now() - 86400000*10)"],"type":"text/javascript"}}],"id":"784e40f4-882b-40b7-8b5f-60ad461085ea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://{{host_url}}/api/{{api_version}}/metrics/history?names='pod_write_latency_us'&resource_ids='{{selected_pod_id}}'&aggregation='avg'&resolution={{metric_resolution}}&start_time='{{start_date}}'&end_time='{{$timestamp}}'","protocol":"https","host":["{{host_url}}"],"path":["api","{{api_version}}","metrics","history"],"query":[{"key":"names","value":"'pod_write_latency_us'"},{"key":"resource_ids","value":"'{{selected_pod_id}}'"},{"key":"aggregation","value":"'avg'"},{"key":"resolution","value":"{{metric_resolution}}"},{"key":"start_time","value":"'{{start_date}}'"},{"key":"end_time","value":"'{{$timestamp}}'"}]},"description":"FlashArray only: Number of write requests processed per second by the pod"},"response":[],"_postman_id":"784e40f4-882b-40b7-8b5f-60ad461085ea"}],"id":"9e4db64a-6f70-4906-9a7a-11841de18785","description":"Metrics available for Pure Storage FlashArray pods only","event":[{"listen":"prerequest","script":{"id":"e7c59675-aacc-4c90-b984-6972f1a1be85","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"09546fc4-64c9-427b-b6d3-f0e4ba0a7286","type":"text/javascript","exec":[""]}}],"_postman_id":"9e4db64a-6f70-4906-9a7a-11841de18785"},{"name":"Volume Metrics","item":[{"name":"Get Volume Read Bandwidth","event":[{"listen":"prerequest","script":{"id":"4f6e232b-02b8-4b85-b81d-853ca8179ec7","exec":["pm.environment.set(\"start_date\", Date.now() - 86400000*10)"],"type":"text/javascript"}},{"listen":"test","script":{"id":"61d049e1-7eea-4774-bfff-334614f21560","exec":[""],"type":"text/javascript"}}],"id":"1ffcba52-4cbe-47d6-ad9e-a2ce8d2e2243","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://api.pure1.purestorage.com/api/{{api_version}}/metrics/history?names='volume_read_bandwidth'&resource_ids='{{selected_volume_id}}'&aggregation='avg'&resolution={{metric_resolution}}&start_time='{{start_date}}'&end_time='{{$timestamp}}'","protocol":"https","host":["api","pure1","purestorage","com"],"path":["api","{{api_version}}","metrics","history"],"query":[{"key":"names","value":"'volume_read_bandwidth'"},{"key":"resource_ids","value":"'{{selected_volume_id}}'"},{"key":"aggregation","value":"'avg'"},{"key":"resolution","value":"{{metric_resolution}}"},{"key":"start_time","value":"'{{start_date}}'"},{"key":"end_time","value":"'{{$timestamp}}'"}]},"description":"FlashArray only: Number of bytes read per second on the volume"},"response":[],"_postman_id":"1ffcba52-4cbe-47d6-ad9e-a2ce8d2e2243"},{"name":"Get Volume Read IOPS","event":[{"listen":"prerequest","script":{"id":"4f6e232b-02b8-4b85-b81d-853ca8179ec7","exec":["pm.environment.set(\"start_date\", Date.now() - 86400000*10)"],"type":"text/javascript"}}],"id":"7fc4609b-de96-4c8c-809f-b8f93d19486b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://api.pure1.purestorage.com/api/{{api_version}}/metrics/history?names='volume_read_iops'&resource_ids='{{selected_volume_id}}'&aggregation='avg'&resolution={{metric_resolution}}&start_time='{{start_date}}'&end_time='{{$timestamp}}'","protocol":"https","host":["api","pure1","purestorage","com"],"path":["api","{{api_version}}","metrics","history"],"query":[{"key":"names","value":"'volume_read_iops'"},{"key":"resource_ids","value":"'{{selected_volume_id}}'"},{"key":"aggregation","value":"'avg'"},{"key":"resolution","value":"{{metric_resolution}}"},{"key":"start_time","value":"'{{start_date}}'"},{"key":"end_time","value":"'{{$timestamp}}'"}]},"description":"FlashArray only: Number of read requests processed per second on the volume"},"response":[],"_postman_id":"7fc4609b-de96-4c8c-809f-b8f93d19486b"},{"name":"Get Volume Read Latency","event":[{"listen":"prerequest","script":{"id":"4f6e232b-02b8-4b85-b81d-853ca8179ec7","exec":["pm.environment.set(\"start_date\", Date.now() - 86400000*10)"],"type":"text/javascript"}}],"id":"b42e5cbf-3fd4-461e-ad1a-fc234e18560c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://api.pure1.purestorage.com/api/{{api_version}}/metrics/history?names='volume_read_latency_us'&resource_ids='{{selected_volume_id}}'&aggregation='avg'&resolution={{metric_resolution}}&start_time='{{start_date}}'&end_time='{{$timestamp}}'","protocol":"https","host":["api","pure1","purestorage","com"],"path":["api","{{api_version}}","metrics","history"],"query":[{"key":"names","value":"'volume_read_latency_us'"},{"key":"resource_ids","value":"'{{selected_volume_id}}'"},{"key":"aggregation","value":"'avg'"},{"key":"resolution","value":"{{metric_resolution}}"},{"key":"start_time","value":"'{{start_date}}'"},{"key":"end_time","value":"'{{$timestamp}}'"}]},"description":"FlashArray only: Time it takes the volume to process an I/O read request"},"response":[],"_postman_id":"b42e5cbf-3fd4-461e-ad1a-fc234e18560c"},{"name":"Get Volume Write Bandwidth","event":[{"listen":"prerequest","script":{"id":"4f6e232b-02b8-4b85-b81d-853ca8179ec7","exec":["pm.environment.set(\"start_date\", Date.now() - 86400000*10)"],"type":"text/javascript"}}],"id":"8c4f3a79-24fd-443d-ab70-57aadf0b9f78","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://api.pure1.purestorage.com/api/{{api_version}}/metrics/history?names='volume_write_bandwidth'&resource_ids='{{selected_volume_id}}'&aggregation='avg'&resolution={{metric_resolution}}&start_time='{{start_date}}'&end_time='{{$timestamp}}'","protocol":"https","host":["api","pure1","purestorage","com"],"path":["api","{{api_version}}","metrics","history"],"query":[{"key":"names","value":"'volume_write_bandwidth'"},{"key":"resource_ids","value":"'{{selected_volume_id}}'"},{"key":"aggregation","value":"'avg'"},{"key":"resolution","value":"{{metric_resolution}}"},{"key":"start_time","value":"'{{start_date}}'"},{"key":"end_time","value":"'{{$timestamp}}'"}]},"description":"FlashArray only: Number of bytes written per second to the volume"},"response":[],"_postman_id":"8c4f3a79-24fd-443d-ab70-57aadf0b9f78"},{"name":"Get Volume Write IOPS","event":[{"listen":"prerequest","script":{"id":"4f6e232b-02b8-4b85-b81d-853ca8179ec7","exec":["pm.environment.set(\"start_date\", Date.now() - 86400000*10)"],"type":"text/javascript"}}],"id":"f83c11ff-f544-4d9f-9782-f9b0e130118c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://api.pure1.purestorage.com/api/{{api_version}}/metrics/history?names='volume_write_iops'&resource_ids='{{selected_volume_id}}'&aggregation='avg'&resolution={{metric_resolution}}&start_time='{{start_date}}'&end_time='{{$timestamp}}'","protocol":"https","host":["api","pure1","purestorage","com"],"path":["api","{{api_version}}","metrics","history"],"query":[{"key":"names","value":"'volume_write_iops'"},{"key":"resource_ids","value":"'{{selected_volume_id}}'"},{"key":"aggregation","value":"'avg'"},{"key":"resolution","value":"{{metric_resolution}}"},{"key":"start_time","value":"'{{start_date}}'"},{"key":"end_time","value":"'{{$timestamp}}'"}]},"description":"FlashArray only: Number of write requests processed on the volume"},"response":[],"_postman_id":"f83c11ff-f544-4d9f-9782-f9b0e130118c"},{"name":"Get Volume Write Latency","event":[{"listen":"prerequest","script":{"id":"4f6e232b-02b8-4b85-b81d-853ca8179ec7","exec":["pm.environment.set(\"start_date\", Date.now() - 86400000*10)"],"type":"text/javascript"}}],"id":"04e5db93-4d2f-4171-b71d-8b5988ff4050","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://api.pure1.purestorage.com/api/{{api_version}}/metrics/history?names='volume_write_latency_us'&resource_ids='{{selected_volume_id}}'&aggregation='avg'&resolution={{metric_resolution}}&start_time='{{start_date}}'&end_time='{{$timestamp}}'","protocol":"https","host":["api","pure1","purestorage","com"],"path":["api","{{api_version}}","metrics","history"],"query":[{"key":"names","value":"'volume_write_latency_us'"},{"key":"resource_ids","value":"'{{selected_volume_id}}'"},{"key":"aggregation","value":"'avg'"},{"key":"resolution","value":"{{metric_resolution}}"},{"key":"start_time","value":"'{{start_date}}'"},{"key":"end_time","value":"'{{$timestamp}}'"}]},"description":"FlashArray only: Time it takes the volume to process an I/O write request"},"response":[],"_postman_id":"04e5db93-4d2f-4171-b71d-8b5988ff4050"}],"id":"e9be08df-1701-4d1b-b225-f04aca338683","description":"Metrics available for Pure Storage FlashArray volumes only","event":[{"listen":"prerequest","script":{"id":"2d736863-61ca-4570-bf91-3494840c9e50","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"a3d25134-2c7d-4a93-bb6a-72254fd1dfab","type":"text/javascript","exec":[""]}}],"_postman_id":"e9be08df-1701-4d1b-b225-f04aca338683"},{"name":"Get All Metrics","id":"ef266513-6016-4903-a0bb-16d47b1ab360","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://api.pure1.purestorage.com/api/{{api_version}}/metrics","protocol":"https","host":["api","pure1","purestorage","com"],"path":["api","{{api_version}}","metrics"],"query":[{"key":"sort","value":"availabilities%5Bany%5D.resolution","disabled":true}]},"description":"Lists all available metrics for the Pure1 account"},"response":[],"_postman_id":"ef266513-6016-4903-a0bb-16d47b1ab360"},{"name":"Get Array Metrics","id":"0269c3a0-e335-44bc-8635-a88ad40a5009","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://api.pure1.purestorage.com/api/{{api_version}}/metrics?filter=resource_types='arrays'","protocol":"https","host":["api","pure1","purestorage","com"],"path":["api","{{api_version}}","metrics"],"query":[{"key":"filter","value":"resource_types='arrays'"}]},"description":"Lists all available metrics for the Pure1 account"},"response":[],"_postman_id":"0269c3a0-e335-44bc-8635-a88ad40a5009"},{"name":"Get Array, Non-Mirrored Metrics","id":"20e30ba7-cca9-45b7-889c-934f04d1c512","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://api.pure1.purestorage.com/api/{{api_version}}/metrics?filter=resource_types%5Ball%5D='arrays' and not(contains(name, 'mirrored'))","protocol":"https","host":["api","pure1","purestorage","com"],"path":["api","{{api_version}}","metrics"],"query":[{"key":"filter","value":"resource_types%5Ball%5D='arrays' and not(contains(name, 'mirrored'))"}]},"description":"Lists all non-mirrored array metrics available for the Pure1 account"},"response":[],"_postman_id":"20e30ba7-cca9-45b7-889c-934f04d1c512"}],"id":"d6a8eb69-b8a2-40a8-95a2-d1953200b70c","_postman_id":"d6a8eb69-b8a2-40a8-95a2-d1953200b70c"},{"name":"Network Interfaces","item":[{"name":"Get All Network Interfaces","event":[{"listen":"test","script":{"id":"755c8737-6266-4b59-b1cd-af5257fb4374","exec":["var jsonData = JSON.parse(responseBody);","postman.setEnvironmentVariable(\"selected_pod_id\", jsonData.items[0].id);","postman.setEnvironmentVariable(\"selected_pod_name\", jsonData.items[0].name);"],"type":"text/javascript"}}],"id":"20b6d199-8316-4153-87fa-d8fdb63d5180","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":"https://api.pure1.purestorage.com/api/{{api_version}}/network-interfaces"},"response":[],"_postman_id":"20b6d199-8316-4153-87fa-d8fdb63d5180"},{"name":"Get Enabled Network Interfaces w/ sub-interfaces","id":"f8e39404-42ce-4eb9-b73b-8e85ffe1b56d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://api.pure1.purestorage.com/api/{{api_version}}/network-interfaces?filter=enabled='true' and subinterfaces","protocol":"https","host":["api","pure1","purestorage","com"],"path":["api","{{api_version}}","network-interfaces"],"query":[{"key":"filter","value":"enabled='true' and subinterfaces"}]}},"response":[],"_postman_id":"f8e39404-42ce-4eb9-b73b-8e85ffe1b56d"}],"id":"bd8ef9dc-440b-46bc-acfa-8e7796861ea5","_postman_id":"bd8ef9dc-440b-46bc-acfa-8e7796861ea5"},{"name":"Pods","item":[{"name":"Get All Pods","event":[{"listen":"test","script":{"id":"755c8737-6266-4b59-b1cd-af5257fb4374","exec":["var jsonData = JSON.parse(responseBody);","postman.setEnvironmentVariable(\"selected_pod_id\", jsonData.items[0].id);","postman.setEnvironmentVariable(\"selected_pod_name\", jsonData.items[0].name);"],"type":"text/javascript"}}],"id":"62da141a-4fa0-44f9-b959-cf23c5bfc847","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":"https://{{host_url}}/api/{{api_version}}/pods"},"response":[],"_postman_id":"62da141a-4fa0-44f9-b959-cf23c5bfc847"},{"name":"Get Pod Replica Links","event":[{"listen":"test","script":{"id":"55c2a06e-a669-40ae-8401-600663537037","exec":["var jsonData = JSON.parse(responseBody);","postman.setEnvironmentVariable(\"selected_pod_id\", jsonData.items[0].id);","postman.setEnvironmentVariable(\"selected_pod_name\", jsonData.items[0].name);"],"type":"text/javascript"}}],"id":"318dd44c-0cd7-4700-bac1-4b65f4ebb5a9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":"https://{{host_url}}/api/{{api_version}}/pod-replica-links"},"response":[],"_postman_id":"318dd44c-0cd7-4700-bac1-4b65f4ebb5a9"},{"name":"Get Pod by Name","event":[{"listen":"test","script":{"id":"755c8737-6266-4b59-b1cd-af5257fb4374","exec":[""],"type":"text/javascript"}}],"id":"a3da54c8-6d9a-427e-bce9-8bb3f1a0b530","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://api.pure1.purestorage.com/api/{{api_version}}/pods?filter=name='{{selected_pod_name}}'","protocol":"https","host":["api","pure1","purestorage","com"],"path":["api","{{api_version}}","pods"],"query":[{"key":"filter","value":"name='{{selected_pod_name}}'"}]},"description":"Returns the pod specified in the {{selected_pod_name}} environment variables."},"response":[],"_postman_id":"a3da54c8-6d9a-427e-bce9-8bb3f1a0b530"},{"name":"Get Pods w/ all arrays online","id":"2f1881a0-a0ab-4887-9592-1570e53545c9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://api.pure1.purestorage.com/api/{{api_version}}/pods?filter=arrays%5Ball%5D.status='online'","protocol":"https","host":["api","pure1","purestorage","com"],"path":["api","{{api_version}}","pods"],"query":[{"key":"filter","value":"arrays%5Ball%5D.status='online'"}]}},"response":[],"_postman_id":"2f1881a0-a0ab-4887-9592-1570e53545c9"},{"name":"Get Pods w/ at least 1 array offline","id":"31b0e300-98d8-4c85-bbdf-5bb255110ea0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://api.pure1.purestorage.com/api/{{api_version}}/pods?filter=arrays.status='offline'","protocol":"https","host":["api","pure1","purestorage","com"],"path":["api","{{api_version}}","pods"],"query":[{"key":"filter","value":"arrays.status='offline'"}]}},"response":[],"_postman_id":"31b0e300-98d8-4c85-bbdf-5bb255110ea0"}],"id":"2353f998-c26a-4130-b876-b065eec766f6","_postman_id":"2353f998-c26a-4130-b876-b065eec766f6"},{"name":"Policies","item":[{"name":"Get All Policies","event":[{"listen":"test","script":{"id":"3da1c4d9-677a-43c5-a1d7-55832ff95d1e","exec":["var jsonData = JSON.parse(responseBody);","postman.setEnvironmentVariable(\"selected_volume_id\", jsonData.items[0].id);","postman.setEnvironmentVariable(\"selected_volume_name\", jsonData.items[0].name);"],"type":"text/javascript"}}],"id":"64808b2f-aa1b-4d46-9a62-a7effe90bb0a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":"https://{{host_url}}/api/{{api_version}}/policies"},"response":[],"_postman_id":"64808b2f-aa1b-4d46-9a62-a7effe90bb0a"}],"id":"540e300a-9685-4629-972c-e4bd243a993a","_postman_id":"540e300a-9685-4629-972c-e4bd243a993a"},{"name":"Volumes","item":[{"name":"Get All Volumes","event":[{"listen":"test","script":{"id":"3da1c4d9-677a-43c5-a1d7-55832ff95d1e","exec":["var jsonData = JSON.parse(responseBody);","postman.setEnvironmentVariable(\"selected_volume_id\", jsonData.items[0].id);","postman.setEnvironmentVariable(\"selected_volume_name\", jsonData.items[0].name);"],"type":"text/javascript"}}],"id":"9ad656fd-420a-4e2b-a703-b148a65c0ea9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":"https://{{host_url}}/api/{{api_version}}/volumes"},"response":[],"_postman_id":"9ad656fd-420a-4e2b-a703-b148a65c0ea9"},{"name":"Get Volumes Paginated by Token","event":[{"listen":"test","script":{"id":"3da1c4d9-677a-43c5-a1d7-55832ff95d1e","exec":["var jsonData = JSON.parse(responseBody);","postman.setEnvironmentVariable(\"selected_volume_id\", jsonData.items[0].id);","postman.setEnvironmentVariable(\"selected_volume_name\", jsonData.items[0].name);","postman.setEnvironmentVariable(\"continuation_token\", jsonData.continuation_token);"],"type":"text/javascript"}}],"id":"e815744f-9172-480e-b433-2f9489551d70","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://{{host_url}}/api/{{api_version}}/volumes","protocol":"https","host":["{{host_url}}"],"path":["api","{{api_version}}","volumes"],"query":[{"key":"limit","value":"{{page_size}}","disabled":true},{"key":"continuation_token","value":"'{{continuation_token}}'","disabled":true}]}},"response":[],"_postman_id":"e815744f-9172-480e-b433-2f9489551d70"},{"name":"Get Volumes Paginated by Offset","event":[{"listen":"test","script":{"id":"3da1c4d9-677a-43c5-a1d7-55832ff95d1e","exec":["pm.environment.set(\"page_offset\", Number(pm.environment.get(\"page_offset\")) + 1);"],"type":"text/javascript"}}],"id":"df2cc7b2-10d3-47d5-8edf-13a645a3b002","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://{{host_url}}/api/{{api_version}}/volumes?limit={{page_size}}&offset={{page_offset}}&sort=name&filter=not (contains(name, '@'))","protocol":"https","host":["{{host_url}}"],"path":["api","{{api_version}}","volumes"],"query":[{"key":"limit","value":"{{page_size}}"},{"key":"offset","value":"{{page_offset}}"},{"key":"sort","value":"name"},{"key":"filter","value":"not (contains(name, '@'))"}]}},"response":[],"_postman_id":"df2cc7b2-10d3-47d5-8edf-13a645a3b002"},{"name":"Get VMware Virtual Volumes (VVols)","event":[{"listen":"test","script":{"id":"3da1c4d9-677a-43c5-a1d7-55832ff95d1e","exec":[""],"type":"text/javascript"}}],"id":"6f2072f0-a1e5-442e-8edc-4379e0e49999","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://api.pure1.purestorage.com/api/{{api_version}}/volumes?filter=contains(name, 'vvol-')","protocol":"https","host":["api","pure1","purestorage","com"],"path":["api","{{api_version}}","volumes"],"query":[{"key":"filter","value":"contains(name, 'vvol-')"}]},"description":"Returns the list of virtual volumes, typically created by the Pure Storage VMware vRealize Orchestrator"},"response":[],"_postman_id":"6f2072f0-a1e5-442e-8edc-4379e0e49999"},{"name":"Get VVol Volumes Filtered by Array","event":[{"listen":"test","script":{"id":"3da1c4d9-677a-43c5-a1d7-55832ff95d1e","exec":[""],"type":"text/javascript"}}],"id":"3670667b-3553-459b-974d-e99235e9fcfc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://api.pure1.purestorage.com/api/{{api_version}}/volumes?filter=contains(name, 'vvol-') and arrays%5Bany%5D.name=('{{selected_array_name}}', '{{selected_array2_name}}')","protocol":"https","host":["api","pure1","purestorage","com"],"path":["api","{{api_version}}","volumes"],"query":[{"key":"filter","value":"contains(name, 'vvol-') and arrays%5Bany%5D.name=('{{selected_array_name}}', '{{selected_array2_name}}')"}]},"description":"Returns the list of VMware virtual volumes (typically created by the Pure Storage VMware vRealize Orchestrator), filtered for 2 specific arrays.\n\nNote: Use the Get VMware Virtual Volumes (VVols) query first to automatically assign the 2 ararys"},"response":[],"_postman_id":"3670667b-3553-459b-974d-e99235e9fcfc"},{"name":"Get Kubernetes Volumes","event":[{"listen":"test","script":{"id":"3da1c4d9-677a-43c5-a1d7-55832ff95d1e","exec":["var jsonData = JSON.parse(responseBody);","postman.setEnvironmentVariable(\"selected_volume_id\", jsonData.items[0].id);","postman.setEnvironmentVariable(\"selected_volume_name\", jsonData.items[0].name);"],"type":"text/javascript"}}],"id":"f38c04d1-2f40-46ad-b779-8dbd560fd089","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://api.pure1.purestorage.com/api/{{api_version}}/volumes?filter=contains(name, 'k8s-')","protocol":"https","host":["api","pure1","purestorage","com"],"path":["api","{{api_version}}","volumes"],"query":[{"key":"filter","value":"contains(name, 'k8s-')"}]},"description":"Returns the list of Kubernetes persistent volumes created by Pure Service Orchestrator (starting with 'k8s-')"},"response":[],"_postman_id":"f38c04d1-2f40-46ad-b779-8dbd560fd089"},{"name":"Get All Cloned Volumes","id":"aebc01f7-15fd-4168-9f68-1bd06ed3b76d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://api.pure1.purestorage.com/api/{{api_version}}/volumes?filter=source","protocol":"https","host":["api","pure1","purestorage","com"],"path":["api","{{api_version}}","volumes"],"query":[{"key":"filter","value":"source"}]}},"response":[],"_postman_id":"aebc01f7-15fd-4168-9f68-1bd06ed3b76d"},{"name":"Get All Non-Cloned Volumes","id":"12ba1025-dfb1-4b54-9ff6-57e0a34d5662","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://api.pure1.purestorage.com/api/{{api_version}}/volumes?filter=not(source)","protocol":"https","host":["api","pure1","purestorage","com"],"path":["api","{{api_version}}","volumes"],"query":[{"key":"filter","value":"not(source)"}]}},"response":[],"_postman_id":"12ba1025-dfb1-4b54-9ff6-57e0a34d5662"},{"name":"Get Volumes By Array Name","id":"d1a8dc2c-4b4d-45f3-98c0-8b0caab25f5c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://api.pure1.purestorage.com/api/{{api_version}}/volumes?filter=arrays%5Bany%5D.name='{{selected_array_name}}'","protocol":"https","host":["api","pure1","purestorage","com"],"path":["api","{{api_version}}","volumes"],"query":[{"key":"filter","value":"arrays%5Bany%5D.name='{{selected_array_name}}'"}]}},"response":[],"_postman_id":"d1a8dc2c-4b4d-45f3-98c0-8b0caab25f5c"},{"name":"Get Volumes By Array Id","event":[{"listen":"test","script":{"id":"e565bf17-1931-40db-a0da-d7e63784788f","exec":["var jsonData = JSON.parse(responseBody);","postman.setEnvironmentVariable(\"continuation_token\", jsonData.continuation_token);"],"type":"text/javascript"}}],"id":"88c0765d-1dee-4192-a6ac-983970fcd2c2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://api.pure1.purestorage.com/api/{{api_version}}/volumes?filter=arrays.id='{{selected_array2_id}}'&limit={{page_size}}&continuation_token='{{continuation_token}}'","protocol":"https","host":["api","pure1","purestorage","com"],"path":["api","{{api_version}}","volumes"],"query":[{"key":"filter","value":"arrays.id='{{selected_array2_id}}'"},{"key":"limit","value":"{{page_size}}"},{"key":"continuation_token","value":"'{{continuation_token}}'"},{"key":"sort","value":"name","disabled":true}]}},"response":[],"_postman_id":"88c0765d-1dee-4192-a6ac-983970fcd2c2"},{"name":"Get Volumes By Array Id Copy","event":[{"listen":"test","script":{"id":"e565bf17-1931-40db-a0da-d7e63784788f","exec":["var jsonData = JSON.parse(responseBody);","postman.setEnvironmentVariable(\"continuation_token\", jsonData.continuation_token);"],"type":"text/javascript"}}],"id":"1f02ed66-eeed-402f-bc0c-d7b2f8ee0437","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://api.pure1.purestorage.com/api/{{api_version}}/volumes?filter=arrays.id='0343e126-44e6-4277-8a56-6d16bb517cb6'&limit=10&continuation_token='MTUwZmFhYWMtNTZlMi01NjEwLTYwNzgtMGFjZGEzZDllNzcy'","protocol":"https","host":["api","pure1","purestorage","com"],"path":["api","{{api_version}}","volumes"],"query":[{"key":"filter","value":"arrays.id='0343e126-44e6-4277-8a56-6d16bb517cb6'"},{"key":"limit","value":"10"},{"key":"continuation_token","value":"'MTUwZmFhYWMtNTZlMi01NjEwLTYwNzgtMGFjZGEzZDllNzcy'"},{"key":"sort","value":"name","disabled":true}]}},"response":[],"_postman_id":"1f02ed66-eeed-402f-bc0c-d7b2f8ee0437"},{"name":"Get Volumes By Multiple Array Id","event":[{"listen":"test","script":{"id":"e565bf17-1931-40db-a0da-d7e63784788f","exec":["var jsonData = JSON.parse(responseBody);","postman.setEnvironmentVariable(\"continuation_token\", jsonData.continuation_token);"],"type":"text/javascript"}}],"id":"5bd35557-7193-4f36-ad00-9c3aaa92df20","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://api.pure1.purestorage.com/api/{{api_version}}/volumes?filter=arrays.id=('{{selected_array2_id}}', '{{selected_array_id}}')&sort=name-","protocol":"https","host":["api","pure1","purestorage","com"],"path":["api","{{api_version}}","volumes"],"query":[{"key":"filter","value":"arrays.id=('{{selected_array2_id}}', '{{selected_array_id}}')"},{"key":"sort","value":"name-"},{"key":"limit","value":"{{page_size}}","disabled":true},{"key":"continuation_token","value":"'{{continuation_token}}'","disabled":true}]}},"response":[],"_postman_id":"5bd35557-7193-4f36-ad00-9c3aaa92df20"},{"name":"Get All Volume Snapshots","event":[{"listen":"test","script":{"id":"224f8f4a-4166-4009-8ac4-fd1a447809cd","exec":["var jsonData = JSON.parse(responseBody);","postman.setEnvironmentVariable(\"selected_array_name\", jsonData.items[0].on.name);"],"type":"text/javascript"}}],"id":"b6000111-ad17-4c4d-a295-3595acf842aa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":"https://api.pure1.purestorage.com/api/{{api_version}}/volume-snapshots"},"response":[],"_postman_id":"b6000111-ad17-4c4d-a295-3595acf842aa"},{"name":"Get Filtered Volume Snapshots","id":"b8b68c3e-c49f-4648-a442-3908a0db4400","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://api.pure1.purestorage.com/api/{{api_version}}/volume-snapshots?filter=on.name='{{selected_array_name}}'","protocol":"https","host":["api","pure1","purestorage","com"],"path":["api","{{api_version}}","volume-snapshots"],"query":[{"key":"filter","value":"on.name='{{selected_array_name}}'"}]}},"response":[],"_postman_id":"b8b68c3e-c49f-4648-a442-3908a0db4400"}],"id":"fedf8ba8-dc96-4c1f-a77f-1b34cc17cdc4","_postman_id":"fedf8ba8-dc96-4c1f-a77f-1b34cc17cdc4"},{"name":"Alerts","item":[{"name":"Get All Alerts","event":[{"listen":"test","script":{"id":"e5e164c5-7665-4b88-996c-77e0019c375d","exec":[""],"type":"text/javascript"}}],"id":"1c4338b4-3014-4d86-a84c-07c935f05c45","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":"https://{{host_url}}/api/{{api_version}}/alerts","description":"Retrieves all alerts from all arrays"},"response":[],"_postman_id":"1c4338b4-3014-4d86-a84c-07c935f05c45"},{"name":"Get Alerts Paginated","event":[{"listen":"test","script":{"id":"e5e164c5-7665-4b88-996c-77e0019c375d","exec":["var jsonData = JSON.parse(responseBody);","postman.setEnvironmentVariable(\"continuation_token\", jsonData.continuation_token);"],"type":"text/javascript"}}],"id":"1146848d-fd3f-422e-8687-872e506a527c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://{{host_url}}/api/{{api_version}}/alerts?limit={{page_size}}&continuation_token='{{continuation_token}}'","protocol":"https","host":["{{host_url}}"],"path":["api","{{api_version}}","alerts"],"query":[{"key":"limit","value":"{{page_size}}"},{"key":"continuation_token","value":"'{{continuation_token}}'"}]},"description":"Retrieves all alerts from all arrays"},"response":[],"_postman_id":"1146848d-fd3f-422e-8687-872e506a527c"},{"name":"Get All Critical Alerts","event":[{"listen":"test","script":{"id":"e5e164c5-7665-4b88-996c-77e0019c375d","exec":["var jsonData = JSON.parse(responseBody);","postman.setEnvironmentVariable(\"selected_array_id\", jsonData.items[0].arrays[0].id);","postman.setEnvironmentVariable(\"selected_array_name\", jsonData.items[0].arrays[0].name);"],"type":"text/javascript"}}],"id":"be33c8fb-2da9-4ff1-9f30-b4cbb3bed7fc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://api.pure1.purestorage.com/api/{{api_version}}/alerts?filter=severity='critical'","protocol":"https","host":["api","pure1","purestorage","com"],"path":["api","{{api_version}}","alerts"],"query":[{"key":"filter","value":"severity='critical'"}]},"description":"Retrieves all alerts with severity=critical"},"response":[],"_postman_id":"be33c8fb-2da9-4ff1-9f30-b4cbb3bed7fc"},{"name":"Get Critical Alerts by Appliance","event":[{"listen":"test","script":{"id":"e5e164c5-7665-4b88-996c-77e0019c375d","exec":[""],"type":"text/javascript"}}],"id":"d2165bc9-3aae-42d4-82fe-14bb861ffdc3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://api.pure1.purestorage.com/api/{{api_version}}/alerts?filter=severity='critical' and arrays%5Bany%5D.name='{{selected_array_name}}'","protocol":"https","host":["api","pure1","purestorage","com"],"path":["api","{{api_version}}","alerts"],"query":[{"key":"filter","value":"severity='critical' and arrays%5Bany%5D.name='{{selected_array_name}}'"}]},"description":"Get critical severity alerts for a specific array\nNote: run 'Get All Critical Alerts' first to automatically assign the selected_array_id variable"},"response":[],"_postman_id":"d2165bc9-3aae-42d4-82fe-14bb861ffdc3"},{"name":"Get All Warning Alerts","event":[{"listen":"test","script":{"id":"e5e164c5-7665-4b88-996c-77e0019c375d","exec":[""],"type":"text/javascript"}}],"id":"7c5a2dc6-4ae8-45e4-9ebc-ae119c095d59","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://api.pure1.purestorage.com/api/{{api_version}}/alerts?filter=severity='warning'","protocol":"https","host":["api","pure1","purestorage","com"],"path":["api","{{api_version}}","alerts"],"query":[{"key":"filter","value":"severity='warning'"}]},"description":"Retrieves all alerts with severity=warning"},"response":[],"_postman_id":"7c5a2dc6-4ae8-45e4-9ebc-ae119c095d59"},{"name":"Get All Info Alerts","event":[{"listen":"test","script":{"id":"e5e164c5-7665-4b88-996c-77e0019c375d","exec":[""],"type":"text/javascript"}}],"id":"d1b9001c-3736-4db1-a1dd-6ddd2cb4860b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://api.pure1.purestorage.com/api/{{api_version}}/alerts?filter=severity='info'","protocol":"https","host":["api","pure1","purestorage","com"],"path":["api","{{api_version}}","alerts"],"query":[{"key":"filter","value":"severity='info'"}]},"description":"Retrieves all alerts with severity=warning"},"response":[],"_postman_id":"d1b9001c-3736-4db1-a1dd-6ddd2cb4860b"},{"name":"Get Open Warning Alerts by Array","event":[{"listen":"test","script":{"id":"e5e164c5-7665-4b88-996c-77e0019c375d","exec":[""],"type":"text/javascript"}}],"id":"65e7fb03-4b70-46d9-892a-2ae413d6fe47","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://api.pure1.purestorage.com/api/{{api_version}}/alerts?filter=severity='warning' and state='open' and arrays%5Bany%5D.id='{{selected_array_id}}'","protocol":"https","host":["api","pure1","purestorage","com"],"path":["api","{{api_version}}","alerts"],"query":[{"key":"filter","value":"severity='warning' and state='open' and arrays%5Bany%5D.id='{{selected_array_id}}'"}]},"description":"Retrieves open status, warning severity alerts for a specific array\nHelp: run 'Get All Warning Alerts' first to automatically assign the selected_array_id variable"},"response":[],"_postman_id":"65e7fb03-4b70-46d9-892a-2ae413d6fe47"}],"id":"5e6aa1f8-5751-4380-9917-dfc6bae375b4","_postman_id":"5e6aa1f8-5751-4380-9917-dfc6bae375b4"},{"name":"Audits","item":[{"name":"Get All Audit Logs","event":[{"listen":"test","script":{"id":"e5e164c5-7665-4b88-996c-77e0019c375d","exec":["var jsonData = JSON.parse(responseBody);","postman.setEnvironmentVariable(\"selected_array_id\", jsonData.items[0].arrays[0].id);","postman.setEnvironmentVariable(\"selected_array_name\", jsonData.items[0].arrays[0].name);",""],"type":"text/javascript"}}],"id":"6837c364-833d-4323-ada1-254226b4b7bc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":"https://{{host_url}}/api/{{api_version}}/audits","description":"Return all the audits available in your Pure1 account"},"response":[],"_postman_id":"6837c364-833d-4323-ada1-254226b4b7bc"},{"name":"Get Audit Logs (last 24 hrs)","event":[{"listen":"test","script":{"id":"e5e164c5-7665-4b88-996c-77e0019c375d","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"a2dedacd-1289-4512-bf80-e1f6ec5717b7","exec":["pm.environment.set(\"yesterday\", Date.now() - 864000000000/24)"],"type":"text/javascript"}}],"id":"0115b4ed-67ff-4dea-8dc5-eaf04dcee6cf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://{{host_url}}/api/{{api_version}}/audits?filter=time>{{yesterday}}","protocol":"https","host":["{{host_url}}"],"path":["api","{{api_version}}","audits"],"query":[{"key":"filter","value":"time>{{yesterday}}"}]},"description":"Return all the audits available in your Pure1 account"},"response":[],"_postman_id":"0115b4ed-67ff-4dea-8dc5-eaf04dcee6cf"},{"name":"Get Audits Paginated","event":[{"listen":"test","script":{"id":"e5e164c5-7665-4b88-996c-77e0019c375d","exec":["var jsonData = JSON.parse(responseBody);","postman.setEnvironmentVariable(\"selected_array_id\", jsonData.items[0].arrays[0].id);","postman.setEnvironmentVariable(\"selected_array_name\", jsonData.items[0].arrays[0].name);","postman.setEnvironmentVariable(\"continuation_token\", jsonData.continuation_token);"],"type":"text/javascript"}}],"id":"bb76afdb-dc9a-4a2a-805f-1957f1c99142","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://{{host_url}}/api/{{api_version}}/audits?limit={{page_size}}&continuation_token='{{continuation_token}}'","protocol":"https","host":["{{host_url}}"],"path":["api","{{api_version}}","audits"],"query":[{"key":"limit","value":"{{page_size}}"},{"key":"continuation_token","value":"'{{continuation_token}}'"}]},"description":"Return all the audits available in your Pure1 account"},"response":[],"_postman_id":"bb76afdb-dc9a-4a2a-805f-1957f1c99142"},{"name":"Get Audits by Appliance","event":[{"listen":"test","script":{"id":"e5e164c5-7665-4b88-996c-77e0019c375d","exec":[""],"type":"text/javascript"}}],"id":"7f6cd69b-8b81-47cd-aa81-5eebbf70d81b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://api.pure1.purestorage.com/api/{{api_version}}/audits?filter=arrays%5Bany%5D.name='{{selected_array_name}}'","protocol":"https","host":["api","pure1","purestorage","com"],"path":["api","{{api_version}}","audits"],"query":[{"key":"filter","value":"arrays%5Bany%5D.name='{{selected_array_name}}'"}]},"description":"Return all the audit logs for a specific array"},"response":[],"_postman_id":"7f6cd69b-8b81-47cd-aa81-5eebbf70d81b"},{"name":"Get Volume Audits","event":[{"listen":"test","script":{"id":"e5e164c5-7665-4b88-996c-77e0019c375d","exec":[""],"type":"text/javascript"}}],"id":"a59f9674-32a5-4346-9e42-36e47a4c3779","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://{{host_url}}/api/{{api_version}}/audits?filter=command='purevol'","protocol":"https","host":["{{host_url}}"],"path":["api","{{api_version}}","audits"],"query":[{"key":"filter","value":"command='purevol'"}]},"description":"Return all volume-related audits (using the 'purevol' command)"},"response":[],"_postman_id":"a59f9674-32a5-4346-9e42-36e47a4c3779"},{"name":"Get Volume Create Audits","event":[{"listen":"test","script":{"id":"e5e164c5-7665-4b88-996c-77e0019c375d","exec":[""],"type":"text/javascript"}}],"id":"83e503d4-7bc8-4d17-9c99-484c6c59f1f0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://{{host_url}}/api/{{api_version}}/audits?filter=command='purevol' and subcommand='create'","protocol":"https","host":["{{host_url}}"],"path":["api","{{api_version}}","audits"],"query":[{"key":"filter","value":"command='purevol' and subcommand='create'"}]},"description":"Return all create volume audit logs (using the 'purevol' command and 'create' sub-command)"},"response":[],"_postman_id":"83e503d4-7bc8-4d17-9c99-484c6c59f1f0"},{"name":"Get Volume Destroy Audits","event":[{"listen":"test","script":{"id":"e5e164c5-7665-4b88-996c-77e0019c375d","exec":[""],"type":"text/javascript"}}],"id":"efae09eb-9fa4-440b-a976-7838161d8a7a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://api.pure1.purestorage.com/api/{{api_version}}/audits?filter=command='purevol' and subcommand='destroy'","protocol":"https","host":["api","pure1","purestorage","com"],"path":["api","{{api_version}}","audits"],"query":[{"key":"filter","value":"command='purevol' and subcommand='destroy'"}]},"description":"Return all delete volume audit logs (using the 'purevol' command and 'delete' sub-command)"},"response":[],"_postman_id":"efae09eb-9fa4-440b-a976-7838161d8a7a"},{"name":"Get Volume Destroy or Eradicate Audits","event":[{"listen":"test","script":{"id":"e5e164c5-7665-4b88-996c-77e0019c375d","exec":[""],"type":"text/javascript"}}],"id":"90e3f3cd-5b74-4502-b235-a8e4b6351242","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://api.pure1.purestorage.com/api/{{api_version}}/audits?filter=command='purevol' and (subcommand='destroy' or subcommand='eradicate')","protocol":"https","host":["api","pure1","purestorage","com"],"path":["api","{{api_version}}","audits"],"query":[{"key":"filter","value":"command='purevol' and (subcommand='destroy' or subcommand='eradicate')"}]},"description":"Return all the audits available in your Pure1 account"},"response":[],"_postman_id":"90e3f3cd-5b74-4502-b235-a8e4b6351242"},{"name":"Get Volume Eradicate Audits","event":[{"listen":"test","script":{"id":"e5e164c5-7665-4b88-996c-77e0019c375d","exec":[""],"type":"text/javascript"}}],"id":"a2056165-21a3-4104-b3c8-4ff3283b7a8e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://api.pure1.purestorage.com/api/{{api_version}}/audits?filter=command='purevol' and subcommand='eradicate'","protocol":"https","host":["api","pure1","purestorage","com"],"path":["api","{{api_version}}","audits"],"query":[{"key":"filter","value":"command='purevol' and subcommand='eradicate'"}]},"description":"Return all eradicate volume audit logs (using the 'purevol' command and 'eradicate' sub-command)"},"response":[],"_postman_id":"a2056165-21a3-4104-b3c8-4ff3283b7a8e"}],"id":"337ffde3-7f75-4bc1-8497-d5a9c156b8d0","_postman_id":"337ffde3-7f75-4bc1-8497-d5a9c156b8d0"},{"name":"Hardware","item":[{"name":"Get Controllers","event":[{"listen":"test","script":{"id":"4292e898-772a-49cd-b389-204a977cf0ed","exec":["var jsonData = JSON.parse(responseBody);","postman.setEnvironmentVariable(\"selected_array_id\", jsonData.items[0].id);","postman.setEnvironmentVariable(\"selected_array_name\", jsonData.items[0].name);","postman.setEnvironmentVariable(\"selected_array2_id\", jsonData.items[1].id);","postman.setEnvironmentVariable(\"selected_array2_name\", jsonData.items[1].name);","","var arrays = jsonData.items;","var MAX=6","var array_ids = '(';","var array_names = '(';","arrays.forEach(getArrays);","array_ids = array_ids + \")\";","array_names = array_names + \")\";","","postman.setEnvironmentVariable(\"selected_array_ids\", array_ids);","postman.setEnvironmentVariable(\"selected_array_names\", array_names);","","function getArrays(item, index, array) {","    if(index<MAX) { //currently API calls are limited to 16 metrics","        array_ids = array_ids + \"'\" + item.id + \"'\"; ","        array_names = array_names + \"'\" + item.name + \"'\";","        if(index<MAX-1) {","            array_ids = array_ids + \",\";","            array_names = array_names + \",\";","        }","    }","} "],"type":"text/javascript"}}],"id":"78b3cd19-2cb8-424e-a4e6-1cd4f7354ad0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://{{host_url}}/api/{{api_version}}/controllers","protocol":"https","host":["{{host_url}}"],"path":["api","{{api_version}}","controllers"],"query":[{"key":"filter","value":"","type":"text","disabled":true},{"key":"filter","value":"mode!=('primary')","disabled":true}]},"description":"Return all the arrays available in your Pure1 account"},"response":[],"_postman_id":"78b3cd19-2cb8-424e-a4e6-1cd4f7354ad0"},{"name":"Get Ports","event":[{"listen":"test","script":{"id":"780414ae-7d4d-4be8-b1c0-ec026f6f44a4","exec":["var jsonData = JSON.parse(responseBody);","postman.setEnvironmentVariable(\"selected_array_id\", jsonData.items[0].id);","postman.setEnvironmentVariable(\"selected_array_name\", jsonData.items[0].name);","postman.setEnvironmentVariable(\"selected_array2_id\", jsonData.items[1].id);","postman.setEnvironmentVariable(\"selected_array2_name\", jsonData.items[1].name);","","var arrays = jsonData.items;","var MAX=6","var array_ids = '(';","var array_names = '(';","arrays.forEach(getArrays);","array_ids = array_ids + \")\";","array_names = array_names + \")\";","","postman.setEnvironmentVariable(\"selected_array_ids\", array_ids);","postman.setEnvironmentVariable(\"selected_array_names\", array_names);","","function getArrays(item, index, array) {","    if(index<MAX) { //currently API calls are limited to 16 metrics","        array_ids = array_ids + \"'\" + item.id + \"'\"; ","        array_names = array_names + \"'\" + item.name + \"'\";","        if(index<MAX-1) {","            array_ids = array_ids + \",\";","            array_names = array_names + \",\";","        }","    }","} "],"type":"text/javascript"}}],"id":"3d087d51-905d-4870-962e-213c3ff75b83","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://{{host_url}}/api/{{api_version}}/ports","protocol":"https","host":["{{host_url}}"],"path":["api","{{api_version}}","ports"],"query":[{"key":"filter","type":"text","value":"","disabled":true},{"key":"filter","value":"mode!=('primary')","disabled":true}]},"description":"Return all the arrays available in your Pure1 account"},"response":[],"_postman_id":"3d087d51-905d-4870-962e-213c3ff75b83"},{"name":"Get Hardware Connectors","event":[{"listen":"test","script":{"id":"18bffad1-34a1-4b03-b894-36b36fc65073","exec":["var jsonData = JSON.parse(responseBody);","postman.setEnvironmentVariable(\"selected_array_id\", jsonData.items[0].id);","postman.setEnvironmentVariable(\"selected_array_name\", jsonData.items[0].name);","postman.setEnvironmentVariable(\"selected_array2_id\", jsonData.items[1].id);","postman.setEnvironmentVariable(\"selected_array2_name\", jsonData.items[1].name);","","var arrays = jsonData.items;","var MAX=6","var array_ids = '(';","var array_names = '(';","arrays.forEach(getArrays);","array_ids = array_ids + \")\";","array_names = array_names + \")\";","","postman.setEnvironmentVariable(\"selected_array_ids\", array_ids);","postman.setEnvironmentVariable(\"selected_array_names\", array_names);","","function getArrays(item, index, array) {","    if(index<MAX) { //currently API calls are limited to 16 metrics","        array_ids = array_ids + \"'\" + item.id + \"'\"; ","        array_names = array_names + \"'\" + item.name + \"'\";","        if(index<MAX-1) {","            array_ids = array_ids + \",\";","            array_names = array_names + \",\";","        }","    }","} "],"type":"text/javascript"}}],"id":"ebb2169e-ad1a-41ea-95a4-1342fffe1df1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://{{host_url}}/api/{{api_version}}/hardware-connectors","protocol":"https","host":["{{host_url}}"],"path":["api","{{api_version}}","hardware-connectors"],"query":[{"key":"filter","type":"text","value":"","disabled":true},{"key":"filter","value":"mode!=('primary')","disabled":true}]},"description":"Return all the arrays available in your Pure1 account"},"response":[],"_postman_id":"ebb2169e-ad1a-41ea-95a4-1342fffe1df1"},{"name":"Get Blades","event":[{"listen":"test","script":{"id":"97391141-9612-425d-b9a5-20a43bd78ff8","exec":["var jsonData = JSON.parse(responseBody);","postman.setEnvironmentVariable(\"selected_array_id\", jsonData.items[0].id);","postman.setEnvironmentVariable(\"selected_array_name\", jsonData.items[0].name);","postman.setEnvironmentVariable(\"selected_array2_id\", jsonData.items[1].id);","postman.setEnvironmentVariable(\"selected_array2_name\", jsonData.items[1].name);","","var arrays = jsonData.items;","var MAX=6","var array_ids = '(';","var array_names = '(';","arrays.forEach(getArrays);","array_ids = array_ids + \")\";","array_names = array_names + \")\";","","postman.setEnvironmentVariable(\"selected_array_ids\", array_ids);","postman.setEnvironmentVariable(\"selected_array_names\", array_names);","","function getArrays(item, index, array) {","    if(index<MAX) { //currently API calls are limited to 16 metrics","        array_ids = array_ids + \"'\" + item.id + \"'\"; ","        array_names = array_names + \"'\" + item.name + \"'\";","        if(index<MAX-1) {","            array_ids = array_ids + \",\";","            array_names = array_names + \",\";","        }","    }","} "],"type":"text/javascript"}}],"id":"d3e19a20-f5ea-468d-a398-71d261b0b363","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://{{host_url}}/api/{{api_version}}/blades?filter=arrays.id='33b4e7d6-26cb-4633-8500-b1d093c481bc'","protocol":"https","host":["{{host_url}}"],"path":["api","{{api_version}}","blades"],"query":[{"key":"filter","value":"arrays.id='33b4e7d6-26cb-4633-8500-b1d093c481bc'"}]},"description":"Return all the arrays available in your Pure1 account"},"response":[],"_postman_id":"d3e19a20-f5ea-468d-a398-71d261b0b363"},{"name":"Get Drives","event":[{"listen":"test","script":{"id":"8a331eae-7efb-49a8-bb8b-f482185b3e78","exec":["var jsonData = JSON.parse(responseBody);","postman.setEnvironmentVariable(\"selected_array_id\", jsonData.items[0].id);","postman.setEnvironmentVariable(\"selected_array_name\", jsonData.items[0].name);","postman.setEnvironmentVariable(\"selected_array2_id\", jsonData.items[1].id);","postman.setEnvironmentVariable(\"selected_array2_name\", jsonData.items[1].name);","","var arrays = jsonData.items;","var MAX=6","var array_ids = '(';","var array_names = '(';","arrays.forEach(getArrays);","array_ids = array_ids + \")\";","array_names = array_names + \")\";","","postman.setEnvironmentVariable(\"selected_array_ids\", array_ids);","postman.setEnvironmentVariable(\"selected_array_names\", array_names);","","function getArrays(item, index, array) {","    if(index<MAX) { //currently API calls are limited to 16 metrics","        array_ids = array_ids + \"'\" + item.id + \"'\"; ","        array_names = array_names + \"'\" + item.name + \"'\";","        if(index<MAX-1) {","            array_ids = array_ids + \",\";","            array_names = array_names + \",\";","        }","    }","} "],"type":"text/javascript"}}],"id":"788a9626-44c9-47a0-b7eb-ca3415479cda","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://{{host_url}}/api/{{api_version}}/drives","protocol":"https","host":["{{host_url}}"],"path":["api","{{api_version}}","drives"],"query":[{"key":"filter","value":"not(details)","disabled":true}]},"description":"Return all the arrays available in your Pure1 account"},"response":[],"_postman_id":"788a9626-44c9-47a0-b7eb-ca3415479cda"},{"name":"Get Hardware","event":[{"listen":"test","script":{"id":"1dfd48be-f455-451e-9f7e-a0f6ea3ce377","exec":["var jsonData = JSON.parse(responseBody);","postman.setEnvironmentVariable(\"selected_array_id\", jsonData.items[0].id);","postman.setEnvironmentVariable(\"selected_array_name\", jsonData.items[0].name);","postman.setEnvironmentVariable(\"selected_array2_id\", jsonData.items[1].id);","postman.setEnvironmentVariable(\"selected_array2_name\", jsonData.items[1].name);","","var arrays = jsonData.items;","var MAX=6","var array_ids = '(';","var array_names = '(';","arrays.forEach(getArrays);","array_ids = array_ids + \")\";","array_names = array_names + \")\";","","postman.setEnvironmentVariable(\"selected_array_ids\", array_ids);","postman.setEnvironmentVariable(\"selected_array_names\", array_names);","","function getArrays(item, index, array) {","    if(index<MAX) { //currently API calls are limited to 16 metrics","        array_ids = array_ids + \"'\" + item.id + \"'\"; ","        array_names = array_names + \"'\" + item.name + \"'\";","        if(index<MAX-1) {","            array_ids = array_ids + \",\";","            array_names = array_names + \",\";","        }","    }","} "],"type":"text/javascript"}}],"id":"fbd465c0-08f8-485a-95ab-b908014fb453","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"method":"GET","header":[],"url":{"raw":"https://{{host_url}}/api/{{api_version}}/hardware","protocol":"https","host":["{{host_url}}"],"path":["api","{{api_version}}","hardware"],"query":[{"key":"filter","value":"not(details)","disabled":true}]},"description":"Return all the arrays available in your Pure1 account"},"response":[],"_postman_id":"fbd465c0-08f8-485a-95ab-b908014fb453"}],"id":"ee11c53e-6463-4bb7-8e03-ae23bb19efdd","_postman_id":"ee11c53e-6463-4bb7-8e03-ae23bb19efdd"}],"event":[{"listen":"prerequest","script":{"id":"d6feee25-f7c5-4530-81bc-0db6bcf03abc","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"3c8b3c50-8234-4c5f-a9e7-1645ecdf1721","type":"text/javascript","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"]}}]}