action visualstudio_get_api_v1_locations_location { label: "get_api_v1_Locations_location" provider: visualstudio method: GET path: "/api/v1/Locations/{location}" encoding: json input: { type: "object" properties: { location: { type: "string" } planId: { type: "string" } } required: ["location"] additionalProperties: false } output: { type: "object" properties: { skus: { type: "array" items: { type: "object" properties: { availableSettings: { type: "object" properties: { sku: { type: "array" items: { type: "string" } } } additionalProperties: false } displayName: { type: "string" } name: { type: "string" } os: { type: "string" } } additionalProperties: false } } } additionalProperties: false } }