com.amazonaws.services.datasync.model.UpdateLocationNfsRequest Maven / Gradle / Ivy
Show all versions of aws-java-sdk-datasync Show documentation
/*
* Copyright 2017-2022 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.datasync.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 UpdateLocationNfsRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {
/**
*
* The Amazon Resource Name (ARN) of the NFS location to update.
*
*/
private String locationArn;
/**
*
* The subdirectory in the NFS file system that is used to read data from the NFS source location or write data to
* the NFS destination. The NFS path should be a path that's exported by the NFS server, or a subdirectory of that
* path. The path should be such that it can be mounted by other NFS clients in your network.
*
*
* To see all the paths exported by your NFS server, run "showmount -e nfs-server-name
" from an NFS
* client that has access to your server. You can specify any directory that appears in the results, and any
* subdirectory of that directory. Ensure that the NFS export is accessible without Kerberos authentication.
*
*
* To transfer all the data in the folder that you specified, DataSync must have permissions to read all the data.
* To ensure this, either configure the NFS export with no_root_squash
, or ensure that the files you
* want DataSync to access have permissions that allow read access for all users. Doing either option enables the
* agent to read the files. For the agent to access directories, you must additionally enable all execute access.
*
*
* If you are copying data to or from your Snowcone device, see NFS Server
* on Snowcone for more information.
*
*
* For information about NFS export configuration, see 18.7. The /etc/exports Configuration File in the Red Hat
* Enterprise Linux documentation.
*
*/
private String subdirectory;
private OnPremConfig onPremConfig;
private NfsMountOptions mountOptions;
/**
*
* The Amazon Resource Name (ARN) of the NFS location to update.
*
*
* @param locationArn
* The Amazon Resource Name (ARN) of the NFS location to update.
*/
public void setLocationArn(String locationArn) {
this.locationArn = locationArn;
}
/**
*
* The Amazon Resource Name (ARN) of the NFS location to update.
*
*
* @return The Amazon Resource Name (ARN) of the NFS location to update.
*/
public String getLocationArn() {
return this.locationArn;
}
/**
*
* The Amazon Resource Name (ARN) of the NFS location to update.
*
*
* @param locationArn
* The Amazon Resource Name (ARN) of the NFS location to update.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public UpdateLocationNfsRequest withLocationArn(String locationArn) {
setLocationArn(locationArn);
return this;
}
/**
*
* The subdirectory in the NFS file system that is used to read data from the NFS source location or write data to
* the NFS destination. The NFS path should be a path that's exported by the NFS server, or a subdirectory of that
* path. The path should be such that it can be mounted by other NFS clients in your network.
*
*
* To see all the paths exported by your NFS server, run "showmount -e nfs-server-name
" from an NFS
* client that has access to your server. You can specify any directory that appears in the results, and any
* subdirectory of that directory. Ensure that the NFS export is accessible without Kerberos authentication.
*
*
* To transfer all the data in the folder that you specified, DataSync must have permissions to read all the data.
* To ensure this, either configure the NFS export with no_root_squash
, or ensure that the files you
* want DataSync to access have permissions that allow read access for all users. Doing either option enables the
* agent to read the files. For the agent to access directories, you must additionally enable all execute access.
*
*
* If you are copying data to or from your Snowcone device, see NFS Server
* on Snowcone for more information.
*
*
* For information about NFS export configuration, see 18.7. The /etc/exports Configuration File in the Red Hat
* Enterprise Linux documentation.
*
*
* @param subdirectory
* The subdirectory in the NFS file system that is used to read data from the NFS source location or write
* data to the NFS destination. The NFS path should be a path that's exported by the NFS server, or a
* subdirectory of that path. The path should be such that it can be mounted by other NFS clients in your
* network.
*
* To see all the paths exported by your NFS server, run "showmount -e nfs-server-name
" from an
* NFS client that has access to your server. You can specify any directory that appears in the results, and
* any subdirectory of that directory. Ensure that the NFS export is accessible without Kerberos
* authentication.
*
*
* To transfer all the data in the folder that you specified, DataSync must have permissions to read all the
* data. To ensure this, either configure the NFS export with no_root_squash
, or ensure that the
* files you want DataSync to access have permissions that allow read access for all users. Doing either
* option enables the agent to read the files. For the agent to access directories, you must additionally
* enable all execute access.
*
*
* If you are copying data to or from your Snowcone device, see NFS
* Server on Snowcone for more information.
*
*
* For information about NFS export configuration, see 18.7. The /etc/exports Configuration File in the Red
* Hat Enterprise Linux documentation.
*/
public void setSubdirectory(String subdirectory) {
this.subdirectory = subdirectory;
}
/**
*
* The subdirectory in the NFS file system that is used to read data from the NFS source location or write data to
* the NFS destination. The NFS path should be a path that's exported by the NFS server, or a subdirectory of that
* path. The path should be such that it can be mounted by other NFS clients in your network.
*
*
* To see all the paths exported by your NFS server, run "showmount -e nfs-server-name
" from an NFS
* client that has access to your server. You can specify any directory that appears in the results, and any
* subdirectory of that directory. Ensure that the NFS export is accessible without Kerberos authentication.
*
*
* To transfer all the data in the folder that you specified, DataSync must have permissions to read all the data.
* To ensure this, either configure the NFS export with no_root_squash
, or ensure that the files you
* want DataSync to access have permissions that allow read access for all users. Doing either option enables the
* agent to read the files. For the agent to access directories, you must additionally enable all execute access.
*
*
* If you are copying data to or from your Snowcone device, see NFS Server
* on Snowcone for more information.
*
*
* For information about NFS export configuration, see 18.7. The /etc/exports Configuration File in the Red Hat
* Enterprise Linux documentation.
*
*
* @return The subdirectory in the NFS file system that is used to read data from the NFS source location or write
* data to the NFS destination. The NFS path should be a path that's exported by the NFS server, or a
* subdirectory of that path. The path should be such that it can be mounted by other NFS clients in your
* network.
*
* To see all the paths exported by your NFS server, run "showmount -e nfs-server-name
" from an
* NFS client that has access to your server. You can specify any directory that appears in the results, and
* any subdirectory of that directory. Ensure that the NFS export is accessible without Kerberos
* authentication.
*
*
* To transfer all the data in the folder that you specified, DataSync must have permissions to read all the
* data. To ensure this, either configure the NFS export with no_root_squash
, or ensure that
* the files you want DataSync to access have permissions that allow read access for all users. Doing either
* option enables the agent to read the files. For the agent to access directories, you must additionally
* enable all execute access.
*
*
* If you are copying data to or from your Snowcone device, see NFS
* Server on Snowcone for more information.
*
*
* For information about NFS export configuration, see 18.7. The /etc/exports Configuration File in the Red
* Hat Enterprise Linux documentation.
*/
public String getSubdirectory() {
return this.subdirectory;
}
/**
*
* The subdirectory in the NFS file system that is used to read data from the NFS source location or write data to
* the NFS destination. The NFS path should be a path that's exported by the NFS server, or a subdirectory of that
* path. The path should be such that it can be mounted by other NFS clients in your network.
*
*
* To see all the paths exported by your NFS server, run "showmount -e nfs-server-name
" from an NFS
* client that has access to your server. You can specify any directory that appears in the results, and any
* subdirectory of that directory. Ensure that the NFS export is accessible without Kerberos authentication.
*
*
* To transfer all the data in the folder that you specified, DataSync must have permissions to read all the data.
* To ensure this, either configure the NFS export with no_root_squash
, or ensure that the files you
* want DataSync to access have permissions that allow read access for all users. Doing either option enables the
* agent to read the files. For the agent to access directories, you must additionally enable all execute access.
*
*
* If you are copying data to or from your Snowcone device, see NFS Server
* on Snowcone for more information.
*
*
* For information about NFS export configuration, see 18.7. The /etc/exports Configuration File in the Red Hat
* Enterprise Linux documentation.
*
*
* @param subdirectory
* The subdirectory in the NFS file system that is used to read data from the NFS source location or write
* data to the NFS destination. The NFS path should be a path that's exported by the NFS server, or a
* subdirectory of that path. The path should be such that it can be mounted by other NFS clients in your
* network.
*
* To see all the paths exported by your NFS server, run "showmount -e nfs-server-name
" from an
* NFS client that has access to your server. You can specify any directory that appears in the results, and
* any subdirectory of that directory. Ensure that the NFS export is accessible without Kerberos
* authentication.
*
*
* To transfer all the data in the folder that you specified, DataSync must have permissions to read all the
* data. To ensure this, either configure the NFS export with no_root_squash
, or ensure that the
* files you want DataSync to access have permissions that allow read access for all users. Doing either
* option enables the agent to read the files. For the agent to access directories, you must additionally
* enable all execute access.
*
*
* If you are copying data to or from your Snowcone device, see NFS
* Server on Snowcone for more information.
*
*
* For information about NFS export configuration, see 18.7. The /etc/exports Configuration File in the Red
* Hat Enterprise Linux documentation.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public UpdateLocationNfsRequest withSubdirectory(String subdirectory) {
setSubdirectory(subdirectory);
return this;
}
/**
* @param onPremConfig
*/
public void setOnPremConfig(OnPremConfig onPremConfig) {
this.onPremConfig = onPremConfig;
}
/**
* @return
*/
public OnPremConfig getOnPremConfig() {
return this.onPremConfig;
}
/**
* @param onPremConfig
* @return Returns a reference to this object so that method calls can be chained together.
*/
public UpdateLocationNfsRequest withOnPremConfig(OnPremConfig onPremConfig) {
setOnPremConfig(onPremConfig);
return this;
}
/**
* @param mountOptions
*/
public void setMountOptions(NfsMountOptions mountOptions) {
this.mountOptions = mountOptions;
}
/**
* @return
*/
public NfsMountOptions getMountOptions() {
return this.mountOptions;
}
/**
* @param mountOptions
* @return Returns a reference to this object so that method calls can be chained together.
*/
public UpdateLocationNfsRequest withMountOptions(NfsMountOptions mountOptions) {
setMountOptions(mountOptions);
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 (getLocationArn() != null)
sb.append("LocationArn: ").append(getLocationArn()).append(",");
if (getSubdirectory() != null)
sb.append("Subdirectory: ").append(getSubdirectory()).append(",");
if (getOnPremConfig() != null)
sb.append("OnPremConfig: ").append(getOnPremConfig()).append(",");
if (getMountOptions() != null)
sb.append("MountOptions: ").append(getMountOptions());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof UpdateLocationNfsRequest == false)
return false;
UpdateLocationNfsRequest other = (UpdateLocationNfsRequest) obj;
if (other.getLocationArn() == null ^ this.getLocationArn() == null)
return false;
if (other.getLocationArn() != null && other.getLocationArn().equals(this.getLocationArn()) == false)
return false;
if (other.getSubdirectory() == null ^ this.getSubdirectory() == null)
return false;
if (other.getSubdirectory() != null && other.getSubdirectory().equals(this.getSubdirectory()) == false)
return false;
if (other.getOnPremConfig() == null ^ this.getOnPremConfig() == null)
return false;
if (other.getOnPremConfig() != null && other.getOnPremConfig().equals(this.getOnPremConfig()) == false)
return false;
if (other.getMountOptions() == null ^ this.getMountOptions() == null)
return false;
if (other.getMountOptions() != null && other.getMountOptions().equals(this.getMountOptions()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getLocationArn() == null) ? 0 : getLocationArn().hashCode());
hashCode = prime * hashCode + ((getSubdirectory() == null) ? 0 : getSubdirectory().hashCode());
hashCode = prime * hashCode + ((getOnPremConfig() == null) ? 0 : getOnPremConfig().hashCode());
hashCode = prime * hashCode + ((getMountOptions() == null) ? 0 : getMountOptions().hashCode());
return hashCode;
}
@Override
public UpdateLocationNfsRequest clone() {
return (UpdateLocationNfsRequest) super.clone();
}
}