Class StepsServiceImpl

    • Method Detail

      • add

        public StepsService.AddRequest add()
        Description copied from interface: StepsService
        Add an external step to an existing job or to an existing step. For example, to add a step to `job` with identifier `123` send the following request: [source] ---- POST /ovirt-engine/api/jobs/123/steps ---- With the following request body: [source,xml] ---- Validating 2016-12-12T23:07:26.605+02:00 started validating ---- The response should look like: [source,xml] ---- Validating true 2 2016-12-13T01:06:15.380+02:00 started validating ----
        Specified by:
        add in interface StepsService
      • list

        public StepsService.ListRequest list()
        Description copied from interface: StepsService
        Retrieves the representation of the steps. [source] ---- GET /ovirt-engine/api/job/123/steps ---- You will receive response in XML like this one: [source,xml] ---- Validating true 2 2016-12-13T01:06:15.380+02:00 started validating ... ---- The order of the returned list of steps isn't guaranteed.
        Specified by:
        list in interface StepsService
      • service

        public Service service​(String path)
        Description copied from interface: StepsService
        Service locator method, returns individual service on which the URI is dispatched.
        Specified by:
        service in interface StepsService