
com.amazonaws.services.lightsail.model.CreateDiskSnapshotRequest Maven / Gradle / Ivy
/*
* Copyright 2018-2023 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
* the License. A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file 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.amazonaws.services.lightsail.model;
import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.AmazonWebServiceRequest;
/**
*
* @see AWS API
* Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class CreateDiskSnapshotRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {
/**
*
* The unique name of the source disk (e.g., Disk-Virginia-1
).
*
*
*
* This parameter cannot be defined together with the instance name
parameter. The
* disk name
and instance name
parameters are mutually exclusive.
*
*
*/
private String diskName;
/**
*
* The name of the destination disk snapshot (e.g., my-disk-snapshot
) based on the source disk.
*
*/
private String diskSnapshotName;
/**
*
* The unique name of the source instance (e.g., Amazon_Linux-512MB-Virginia-1
). When this is defined,
* a snapshot of the instance's system volume is created.
*
*
*
* This parameter cannot be defined together with the disk name
parameter. The
* instance name
and disk name
parameters are mutually exclusive.
*
*
*/
private String instanceName;
/**
*
* The tag keys and optional values to add to the resource during create.
*
*
* Use the TagResource
action to tag a resource after it's created.
*
*/
private java.util.List tags;
/**
*
* The unique name of the source disk (e.g., Disk-Virginia-1
).
*
*
*
* This parameter cannot be defined together with the instance name
parameter. The
* disk name
and instance name
parameters are mutually exclusive.
*
*
*
* @param diskName
* The unique name of the source disk (e.g., Disk-Virginia-1
).
*
* This parameter cannot be defined together with the instance name
parameter. The
* disk name
and instance name
parameters are mutually exclusive.
*
*/
public void setDiskName(String diskName) {
this.diskName = diskName;
}
/**
*
* The unique name of the source disk (e.g., Disk-Virginia-1
).
*
*
*
* This parameter cannot be defined together with the instance name
parameter. The
* disk name
and instance name
parameters are mutually exclusive.
*
*
*
* @return The unique name of the source disk (e.g., Disk-Virginia-1
).
*
* This parameter cannot be defined together with the instance name
parameter. The
* disk name
and instance name
parameters are mutually exclusive.
*
*/
public String getDiskName() {
return this.diskName;
}
/**
*
* The unique name of the source disk (e.g., Disk-Virginia-1
).
*
*
*
* This parameter cannot be defined together with the instance name
parameter. The
* disk name
and instance name
parameters are mutually exclusive.
*
*
*
* @param diskName
* The unique name of the source disk (e.g., Disk-Virginia-1
).
*
* This parameter cannot be defined together with the instance name
parameter. The
* disk name
and instance name
parameters are mutually exclusive.
*
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateDiskSnapshotRequest withDiskName(String diskName) {
setDiskName(diskName);
return this;
}
/**
*
* The name of the destination disk snapshot (e.g., my-disk-snapshot
) based on the source disk.
*
*
* @param diskSnapshotName
* The name of the destination disk snapshot (e.g., my-disk-snapshot
) based on the source disk.
*/
public void setDiskSnapshotName(String diskSnapshotName) {
this.diskSnapshotName = diskSnapshotName;
}
/**
*
* The name of the destination disk snapshot (e.g., my-disk-snapshot
) based on the source disk.
*
*
* @return The name of the destination disk snapshot (e.g., my-disk-snapshot
) based on the source disk.
*/
public String getDiskSnapshotName() {
return this.diskSnapshotName;
}
/**
*
* The name of the destination disk snapshot (e.g., my-disk-snapshot
) based on the source disk.
*
*
* @param diskSnapshotName
* The name of the destination disk snapshot (e.g., my-disk-snapshot
) based on the source disk.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateDiskSnapshotRequest withDiskSnapshotName(String diskSnapshotName) {
setDiskSnapshotName(diskSnapshotName);
return this;
}
/**
*
* The unique name of the source instance (e.g., Amazon_Linux-512MB-Virginia-1
). When this is defined,
* a snapshot of the instance's system volume is created.
*
*
*
* This parameter cannot be defined together with the disk name
parameter. The
* instance name
and disk name
parameters are mutually exclusive.
*
*
*
* @param instanceName
* The unique name of the source instance (e.g., Amazon_Linux-512MB-Virginia-1
). When this is
* defined, a snapshot of the instance's system volume is created.
*
* This parameter cannot be defined together with the disk name
parameter. The
* instance name
and disk name
parameters are mutually exclusive.
*
*/
public void setInstanceName(String instanceName) {
this.instanceName = instanceName;
}
/**
*
* The unique name of the source instance (e.g., Amazon_Linux-512MB-Virginia-1
). When this is defined,
* a snapshot of the instance's system volume is created.
*
*
*
* This parameter cannot be defined together with the disk name
parameter. The
* instance name
and disk name
parameters are mutually exclusive.
*
*
*
* @return The unique name of the source instance (e.g., Amazon_Linux-512MB-Virginia-1
). When this is
* defined, a snapshot of the instance's system volume is created.
*
* This parameter cannot be defined together with the disk name
parameter. The
* instance name
and disk name
parameters are mutually exclusive.
*
*/
public String getInstanceName() {
return this.instanceName;
}
/**
*
* The unique name of the source instance (e.g., Amazon_Linux-512MB-Virginia-1
). When this is defined,
* a snapshot of the instance's system volume is created.
*
*
*
* This parameter cannot be defined together with the disk name
parameter. The
* instance name
and disk name
parameters are mutually exclusive.
*
*
*
* @param instanceName
* The unique name of the source instance (e.g., Amazon_Linux-512MB-Virginia-1
). When this is
* defined, a snapshot of the instance's system volume is created.
*
* This parameter cannot be defined together with the disk name
parameter. The
* instance name
and disk name
parameters are mutually exclusive.
*
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateDiskSnapshotRequest withInstanceName(String instanceName) {
setInstanceName(instanceName);
return this;
}
/**
*
* The tag keys and optional values to add to the resource during create.
*
*
* Use the TagResource
action to tag a resource after it's created.
*
*
* @return The tag keys and optional values to add to the resource during create.
*
* Use the TagResource
action to tag a resource after it's created.
*/
public java.util.List getTags() {
return tags;
}
/**
*
* The tag keys and optional values to add to the resource during create.
*
*
* Use the TagResource
action to tag a resource after it's created.
*
*
* @param tags
* The tag keys and optional values to add to the resource during create.
*
* Use the TagResource
action to tag a resource after it's created.
*/
public void setTags(java.util.Collection tags) {
if (tags == null) {
this.tags = null;
return;
}
this.tags = new java.util.ArrayList(tags);
}
/**
*
* The tag keys and optional values to add to the resource during create.
*
*
* Use the TagResource
action to tag a resource after it's created.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setTags(java.util.Collection)} or {@link #withTags(java.util.Collection)} if you want to override the
* existing values.
*
*
* @param tags
* The tag keys and optional values to add to the resource during create.
*
* Use the TagResource
action to tag a resource after it's created.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateDiskSnapshotRequest withTags(Tag... tags) {
if (this.tags == null) {
setTags(new java.util.ArrayList(tags.length));
}
for (Tag ele : tags) {
this.tags.add(ele);
}
return this;
}
/**
*
* The tag keys and optional values to add to the resource during create.
*
*
* Use the TagResource
action to tag a resource after it's created.
*
*
* @param tags
* The tag keys and optional values to add to the resource during create.
*
* Use the TagResource
action to tag a resource after it's created.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateDiskSnapshotRequest withTags(java.util.Collection tags) {
setTags(tags);
return this;
}
/**
* Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
* redacted from this string using a placeholder value.
*
* @return A string representation of this object.
*
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (getDiskName() != null)
sb.append("DiskName: ").append(getDiskName()).append(",");
if (getDiskSnapshotName() != null)
sb.append("DiskSnapshotName: ").append(getDiskSnapshotName()).append(",");
if (getInstanceName() != null)
sb.append("InstanceName: ").append(getInstanceName()).append(",");
if (getTags() != null)
sb.append("Tags: ").append(getTags());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof CreateDiskSnapshotRequest == false)
return false;
CreateDiskSnapshotRequest other = (CreateDiskSnapshotRequest) obj;
if (other.getDiskName() == null ^ this.getDiskName() == null)
return false;
if (other.getDiskName() != null && other.getDiskName().equals(this.getDiskName()) == false)
return false;
if (other.getDiskSnapshotName() == null ^ this.getDiskSnapshotName() == null)
return false;
if (other.getDiskSnapshotName() != null && other.getDiskSnapshotName().equals(this.getDiskSnapshotName()) == false)
return false;
if (other.getInstanceName() == null ^ this.getInstanceName() == null)
return false;
if (other.getInstanceName() != null && other.getInstanceName().equals(this.getInstanceName()) == false)
return false;
if (other.getTags() == null ^ this.getTags() == null)
return false;
if (other.getTags() != null && other.getTags().equals(this.getTags()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getDiskName() == null) ? 0 : getDiskName().hashCode());
hashCode = prime * hashCode + ((getDiskSnapshotName() == null) ? 0 : getDiskSnapshotName().hashCode());
hashCode = prime * hashCode + ((getInstanceName() == null) ? 0 : getInstanceName().hashCode());
hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode());
return hashCode;
}
@Override
public CreateDiskSnapshotRequest clone() {
return (CreateDiskSnapshotRequest) super.clone();
}
}