services.StepService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of model Show documentation
Show all versions of model Show documentation
Model management tools for the oVirt Engine API.
/*
Copyright (c) 2015 Red Hat, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package services;
import annotations.Area;
import mixins.Follow;
import org.ovirt.api.metamodel.annotations.In;
import org.ovirt.api.metamodel.annotations.InputDetail;
import org.ovirt.api.metamodel.annotations.Out;
import org.ovirt.api.metamodel.annotations.Service;
import types.Step;
import static org.ovirt.api.metamodel.language.ApiLanguage.mandatory;
import static org.ovirt.api.metamodel.language.ApiLanguage.optional;
/**
* A service to manage a step.
*
* @author Moti Asayag
* @date 12 Dec 2016
* @status added
*/
@Service
@Area("Infrastructure")
public interface StepService extends MeasurableService {
/**
* Marks an external step execution as ended.
*
* For example, to terminate a step with identifier `456` which belongs to a `job` with identifier `123` send the
* following request:
*
* [source]
* ----
* POST /ovirt-engine/api/jobs/123/steps/456/end
* ----
*
* With the following request body:
*
* [source,xml]
* ----
*
* true
* true
*
* ----
*
* @author Moti Asayag
* @date 12 Dec 2016
* @status added
*/
interface End {
@InputDetail
default void inputDetail() {
mandatory(succeeded());
optional(force());
}
/**
* Indicates if the step should be forcibly terminated.
*
* @author Moti Asayag
* @date 12 Dec 2016
* @status added
*/
@In Boolean force();
/**
* Indicates if the step should be marked as successfully finished or as failed.
*
* This parameter is optional, and the default value is `true`.
*
* @author Moti Asayag
* @author Juan Hernandez
* @date 16 Dec 2016
* @status added
*/
@In Boolean succeeded();
/**
* Indicates if the action should be performed asynchronously.
*/
@In Boolean async();
}
/**
* Retrieves a step.
*
* [source]
* ----
* GET /ovirt-engine/api/jobs/123/steps/456
* ----
*
* You will receive response in XML like this one:
*
* [source,xml]
* ----
*
*
*
*
* Validating
* 2016-12-12T23:07:26.627+02:00
* false
* 0
* 2016-12-12T23:07:26.605+02:00
* finished
* validating
*
*
* ----
*
* @author Moti Asayag
* @date 12 Dec 2016
* @status added
*/
interface Get extends Follow {
/**
* Retrieves the representation of the step.
*
* @author Moti Asayag
* @date 12 Dec 2016
* @status added
*/
@Out Step step();
}
}