action windows_job_schedule_disable { label: "Disables a job schedule." description: "No new jobs will be created until the job schedule is enabled again." provider: windows method: POST path: "/jobschedules/{jobScheduleId}/disable" encoding: json input: { type: "object" properties: { "If-Match": { type: "string" } "If-Modified-Since": { type: "string" } "If-None-Match": { type: "string" } "If-Unmodified-Since": { type: "string" } "api-version": { type: "string" } "client-request-id": { type: "string" } jobScheduleId: { type: "string" } "ocp-date": { type: "string" } "return-client-request-id": { type: "string" } timeout: { type: "string" } } required: ["api-version", "jobScheduleId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }