/**
 * devopness API
 * Devopness API - Painless essential DevOps to everyone
 *
 * The version of the OpenAPI document: latest
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
import { SourceType } from './source-type';
/**
 *
 * @export
 * @interface ActionPipelineCreate
 */
export interface ActionPipelineCreate {
    /**
     * List of valid resource IDs
     * @type {Array<number>}
     * @memberof ActionPipelineCreate
     */
    servers?: Array<number>;
    /**
     *
     * @type {SourceType}
     * @memberof ActionPipelineCreate
     */
    source_type?: SourceType;
    /**
     * A git reference pointing to a commit in a source provider repository from which the application source code will be retrieved and deployed. It can be a branch name, tag name or a specific commit hash. Must not be greater than 200 characters.
     * @type {string}
     * @memberof ActionPipelineCreate
     */
    source_ref?: string;
}
