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

org.ovirt.engine.sdk4.types.Disk Maven / Gradle / Ivy

/*
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 org.ovirt.engine.sdk4.types;

import java.lang.String;
import java.math.BigInteger;
import java.util.List;

/**
 * Represents a virtual disk device.
 */
public interface Disk extends Device {
    boolean active();
    
    boolean activePresent();
    
    BigInteger actualSize();
    Byte actualSizeAsByte();
    Short actualSizeAsShort();
    Integer actualSizeAsInteger();
    Long actualSizeAsLong();
    
    boolean actualSizePresent();
    
    String alias();
    
    boolean aliasPresent();
    
    DiskBackup backup();
    
    boolean backupPresent();
    
    DiskBackupMode backupMode();
    
    boolean backupModePresent();
    
    boolean bootable();
    
    boolean bootablePresent();
    
    DiskContentType contentType();
    
    boolean contentTypePresent();
    
    String externalDisk();
    
    boolean externalDiskPresent();
    
    DiskFormat format();
    
    boolean formatPresent();
    
    String imageId();
    
    boolean imageIdPresent();
    
    BigInteger initialSize();
    Byte initialSizeAsByte();
    Short initialSizeAsShort();
    Integer initialSizeAsInteger();
    Long initialSizeAsLong();
    
    boolean initialSizePresent();
    
    DiskInterface interface_();
    
    boolean interface_Present();
    
    String logicalName();
    
    boolean logicalNamePresent();
    
    HostStorage lunStorage();
    
    boolean lunStoragePresent();
    
    boolean propagateErrors();
    
    boolean propagateErrorsPresent();
    
    BigInteger provisionedSize();
    Byte provisionedSizeAsByte();
    Short provisionedSizeAsShort();
    Integer provisionedSizeAsInteger();
    Long provisionedSizeAsLong();
    
    boolean provisionedSizePresent();
    
    QcowVersion qcowVersion();
    
    boolean qcowVersionPresent();
    
    boolean readOnly();
    
    boolean readOnlyPresent();
    
    ScsiGenericIO sgio();
    
    boolean sgioPresent();
    
    boolean shareable();
    
    boolean shareablePresent();
    
    boolean sparse();
    
    boolean sparsePresent();
    
    DiskStatus status();
    
    boolean statusPresent();
    
    DiskStorageType storageType();
    
    boolean storageTypePresent();
    
    BigInteger totalSize();
    Byte totalSizeAsByte();
    Short totalSizeAsShort();
    Integer totalSizeAsInteger();
    Long totalSizeAsLong();
    
    boolean totalSizePresent();
    
    boolean usesScsiReservation();
    
    boolean usesScsiReservationPresent();
    
    boolean wipeAfterDelete();
    
    boolean wipeAfterDeletePresent();
    
    DiskProfile diskProfile();
    
    boolean diskProfilePresent();
    
    List diskSnapshots();
    
    boolean diskSnapshotsPresent();
    
    OpenStackVolumeType openstackVolumeType();
    
    boolean openstackVolumeTypePresent();
    
    List permissions();
    
    boolean permissionsPresent();
    
    Quota quota();
    
    boolean quotaPresent();
    
    Snapshot snapshot();
    
    boolean snapshotPresent();
    
    List statistics();
    
    boolean statisticsPresent();
    
    StorageDomain storageDomain();
    
    boolean storageDomainPresent();
    
    List storageDomains();
    
    boolean storageDomainsPresent();
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy