org.jclouds.googlecomputeengine.options.AttachDiskOptions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of google-compute-engine Show documentation
Show all versions of google-compute-engine Show documentation
jclouds components to access GoogleCompute
The newest version!
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.jclouds.googlecomputeengine.options;
import java.net.URI;
/**
* Options for attaching disks to instances.
*
* @author Andrew Bayer
* @see
*/
public class AttachDiskOptions {
public enum DiskType {
SCRATCH,
PERSISTENT
}
public enum DiskMode {
READ_WRITE,
READ_ONLY
}
private DiskType type;
private DiskMode mode;
private URI source;
private String deviceName;
private boolean boot;
/**
* The disk type
*
* @return the disk type.
*/
public DiskType getType() {
return type;
}
/**
* The disk mode
*
* @return the disk mode
*/
public DiskMode getMode() {
return mode;
}
/**
* The URI of the source disk - optional, if DiskType.SCRATCH is used.
*
* @return the URI
*/
public URI getSource() {
return source;
}
/**
* The device name on the instance - optional.
*
* @return the device name
*/
public String getDeviceName() {
return deviceName;
}
/**
* Indicates that this is a boot disk. VM will use the first partition of the disk for its root filesystem.
*
* @return true if this is a boot disk, false otherwise
*/
public boolean getBoot() {
return boot;
}
/**
* @see AttachDiskOptions#getType()
*/
public AttachDiskOptions type(DiskType type) {
this.type = type;
return this;
}
/**
* @see AttachDiskOptions#getMode()
*/
public AttachDiskOptions mode(DiskMode mode) {
this.mode = mode;
return this;
}
/**
* @see AttachDiskOptions#getSource()
*/
public AttachDiskOptions source(URI source) {
this.source = source;
return this;
}
/**
* @see AttachDiskOptions#getDeviceName()
*/
public AttachDiskOptions deviceName(String deviceName) {
this.deviceName = deviceName;
return this;
}
/**
* @see org.jclouds.googlecomputeengine.options.AttachDiskOptions#getBoot()
*/
public AttachDiskOptions boot(boolean boot) {
this.boot = boot;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy