action windows_pool_update_properties { label: "Updates the properties of the specified pool." description: "This fully replaces all the updatable properties of the pool. For example, if the pool has a start task associated with it and if start task is not specified with this request, then the Batch service will remove the existing start task." provider: windows method: POST path: "/pools/{poolId}/updateproperties" encoding: json input: { type: "object" properties: { "api-version": { type: "string" } "client-request-id": { type: "string" } "ocp-date": { type: "string" } poolId: { type: "string" } "return-client-request-id": { type: "string" } timeout: { type: "string" } } required: ["api-version", "poolId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }