public class CreateFileSystemRequest extends AbstractModel
Constructor and Description |
---|
CreateFileSystemRequest() |
CreateFileSystemRequest(CreateFileSystemRequest source)
NOTE: Any ambiguous key set via .set("AnyKey", "value") will be a shallow copy,
and any explicit key, i.e Foo, set via .setFoo("value") will be a deep copy.
|
Modifier and Type | Method and Description |
---|---|
Long |
getCapacityQuota()
Get File system capacity (in bytes), which can range from 1 GB to 1 PB and must be an integer multiple of 1 GB
|
String |
getDescription()
Get File system description, which is an empty string by default
|
String |
getFileSystemName()
Get File system name
|
Boolean |
getPosixAcl()
Get Whether to verify POSIX ACL
|
String |
getRootInodeGroup()
Get Group name of the root directory Inode, which is `supergroup` by default
|
String |
getRootInodeUser()
Get Username of the root directory Inode, which is `hadoop` by default
|
String[] |
getSuperUsers()
Get List of superuser names, which is an empty array by default
|
void |
setCapacityQuota(Long CapacityQuota)
Set File system capacity (in bytes), which can range from 1 GB to 1 PB and must be an integer multiple of 1 GB
|
void |
setDescription(String Description)
Set File system description, which is an empty string by default
|
void |
setFileSystemName(String FileSystemName)
Set File system name
|
void |
setPosixAcl(Boolean PosixAcl)
Set Whether to verify POSIX ACL
|
void |
setRootInodeGroup(String RootInodeGroup)
Set Group name of the root directory Inode, which is `supergroup` by default
|
void |
setRootInodeUser(String RootInodeUser)
Set Username of the root directory Inode, which is `hadoop` by default
|
void |
setSuperUsers(String[] SuperUsers)
Set List of superuser names, which is an empty array by default
|
void |
toMap(HashMap<String,String> map,
String prefix)
Internal implementation, normal users should not use it.
|
any, fromJsonString, getBinaryParams, getMultipartRequestParams, set, setParamArrayObj, setParamArraySimple, setParamObj, setParamSimple, toJsonString
public CreateFileSystemRequest()
public CreateFileSystemRequest(CreateFileSystemRequest source)
public String getFileSystemName()
public void setFileSystemName(String FileSystemName)
FileSystemName
- File system namepublic Long getCapacityQuota()
public void setCapacityQuota(Long CapacityQuota)
CapacityQuota
- File system capacity (in bytes), which can range from 1 GB to 1 PB and must be an integer multiple of 1 GBpublic Boolean getPosixAcl()
public void setPosixAcl(Boolean PosixAcl)
PosixAcl
- Whether to verify POSIX ACLpublic String getDescription()
public void setDescription(String Description)
Description
- File system description, which is an empty string by defaultpublic String[] getSuperUsers()
public void setSuperUsers(String[] SuperUsers)
SuperUsers
- List of superuser names, which is an empty array by defaultpublic String getRootInodeUser()
public void setRootInodeUser(String RootInodeUser)
RootInodeUser
- Username of the root directory Inode, which is `hadoop` by defaultpublic String getRootInodeGroup()
public void setRootInodeGroup(String RootInodeGroup)
RootInodeGroup
- Group name of the root directory Inode, which is `supergroup` by defaultCopyright © 2021. All rights reserved.