action redhat_order_service_offering { label: "Order an existing ServiceOffering" description: "Returns a Task id" provider: redhat method: POST path: "/service_offerings/{id}/order" encoding: json input: { type: "object" properties: { provider_control_parameters: { type: "object" description: "The provider specific parameters needed to provision this service. This might include namespaces, special keys" } service_parameters: { type: "object" description: "JSON object with provisioning parameters" } service_plan_id: { type: "string" description: "ID of the resource" } } additionalProperties: false } output: { type: "object" properties: { task_id: { type: "string" } } } }