com.openshift.restclient.model.volume.IPersistentVolumeClaim Maven / Gradle / Ivy
The newest version!
/*******************************************************************************
* Copyright (c) 2015 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.volume;
import java.util.Set;
import com.openshift.restclient.model.IResource;
public interface IPersistentVolumeClaim extends IResource {
/**
*
* @return the {@link PVCAccessModes}
*/
Set getAccessModes();
/**
* Set the access modes for this claim.
*
* @param accessModes
* The access modes to set
*/
void setAccessModes(Set accessModes);
/**
* The requested storage
*
*/
String getRequestedStorage();
/**
* Set the requested storage of the claim
*
* @param requestedStorage
* The requested storage capacity
*/
void setRequestedStorage(String requestedStorage);
/**
* The status of the claim
*
*/
String getStatus();
/**
* The volume name
*/
String getVolumeName();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy