action windows_pool_list_usage_metrics { label: "Lists the usage metrics, aggregated by pool across individual time intervals, for the specified account." description: "If you do not specify a $filter clause including a poolId, the response includes all pools that existed in the account in the time range of the returned aggregation intervals. If you do not specify a $filter clause including a startTime or endTime these filters default to the start and end times of the last aggregation interval currently available; that is, only the last aggregation interval is returned." provider: windows method: GET path: "/poolusagemetrics" encoding: json input: { type: "object" properties: { "$filter": { type: "string" } "api-version": { type: "string" } "client-request-id": { type: "string" } endtime: { type: "string" } maxresults: { type: "string" } "ocp-date": { type: "string" } "return-client-request-id": { type: "string" } starttime: { type: "string" } timeout: { type: "string" } } required: ["api-version"] additionalProperties: false } output: { type: "object" additionalProperties: true } }