All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.openshift.restclient.model.deploy.IDeploymentRequest Maven / Gradle / Ivy

The newest version!
/*******************************************************************************
 * Copyright (c) 2016 Red Hat, Inc.
 * Distributed under license by Red Hat, Inc. All rights reserved.
 * This program is made available under the terms of the
 * Eclipse Public License v1.0 which accompanies this distribution,
 * and is available at http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     Red Hat, Inc. - initial API and implementation
 ******************************************************************************/

package com.openshift.restclient.model.deploy;

import com.openshift.restclient.api.models.INameSetable;
import com.openshift.restclient.api.models.ITypeMeta;

/**
 * Resource payload for triggering a deployment via the instantiate endpoint
 * @author gmontero
 *
 */
public interface IDeploymentRequest extends ITypeMeta, INameSetable {
    
    /**
     * If set the true latest will update the deployment config with the latest state from all triggers.
     */
    void setLatest(boolean latest);
    
    /**
     * Returns the current setting of the latest flag.
     */
    boolean isLatest();
    
    /**
     * If set to try force will try to force a new deployment to run. If the deployment config is paused, 
     * then setting this to true will return an Invalid error.
     */
    void setForce(boolean force);
    
    /**
     * Returns the latest setting of the force flag.
     */
    boolean isForce();
    
    /**
     * The name of the deployment config; note, the name in the corresponding oapi type
     * is not in the k8s metadata object
     * @param name of the deployment config
     */
    void setName(String name);
    
    /**
     * Returns the name of the deployment config seeded into the deployment request
     */
    String getName();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy