com.huawei.openstack4j.api.artifact.ToscaTemplatesArtifactService Maven / Gradle / Ivy
/*******************************************************************************
* Copyright 2016 ContainX and OpenStack4j
*
* 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 com.huawei.openstack4j.api.artifact;
import java.io.File;
import java.io.InputStream;
import java.util.List;
import com.huawei.openstack4j.common.RestService;
import com.huawei.openstack4j.model.artifact.ArtifactUpdate;
import com.huawei.openstack4j.model.artifact.Artifacts;
import com.huawei.openstack4j.model.artifact.ToscaTemplatesArtifact;
import com.huawei.openstack4j.model.artifact.ToscaTemplatesArtifacts;
import com.huawei.openstack4j.model.common.ActionResponse;
/**
* OpenStack (Glare) Artifact based Operations for Tosca Templates type
*
* @author Pavan Vadavi
*/
public interface ToscaTemplatesArtifactService extends RestService {
/**
* Lists all artifacts
*
* @return Tosca templates artifact list
*/
ToscaTemplatesArtifacts list();
/**
* Get specific artifact
*
* @return Tosca template artifact
*/
ToscaTemplatesArtifact get(String artifactId);
/**
* Create artifact
*
* @return Tosca template artifact
*/
ToscaTemplatesArtifact create(ToscaTemplatesArtifact toscaTemplatesArtifact);
/**
* Upload template to artifact
*
* @return Tosca template artifact
*/
ToscaTemplatesArtifact upload(String artifactId, File file);
/**
* Download template from artifact
*
* @return Input stream
*/
InputStream download(String artifactId);
/**
* Delete specific artifact
*
* @return Action response
*/
ActionResponse delete(String artifactId);
/**
* Update specific artifact
*
* @return Tosca template artifact
*/
ToscaTemplatesArtifact update(String artifactId, List artifactUpdates);
/**
* Activate specific artifact
*
* @return Tosca template artifact
*/
ToscaTemplatesArtifact activate(String artifactId);
/**
* Deactivate specific artifact
*
* @return Tosca template artifact
*/
ToscaTemplatesArtifact deactivate(String artifactId);
/**
* Reactivate specific artifact
*
* @return Tosca template artifact
*/
ToscaTemplatesArtifact reactivate(String artifactId);
/**
* Publish specific artifact
*
* @return Tosca template artifact
*/
ToscaTemplatesArtifact publish(String artifactId);
}