Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.97 KB

ServiceAccountServicesWebdisk.md

File metadata and controls

34 lines (25 loc) · 1.97 KB

ServiceAccountServicesWebdisk

This object contains information that indicates the subaccount's Web Disk status.

Properties

Name Type Description Notes
enabled int Whether the subaccount can access Web Disk. * `1` - Can access. * `0` - Cannot access. [optional]
enabledigest int Whether the subaccount's Web Disk service has enabled Digest Authentication. * `1` - Digest Authentication is enabled. * `0` - Digest Authentication is not enabled. [optional]
homedir str The subaccount's Web Disk home directory, relative to the cPanel account's home directory. [optional]
perms str Whether to grant write permissions to the subaccount. * `ro` - Read-only permissions. * `rw` - Read and write permissions. [optional]
private int Whether to set the Web Disk directory's permissions to public or private. * `1` - Private (0700). * `0` - Public (0755). [optional]

Example

from clientapi_cpanel.models.service_account_services_webdisk import ServiceAccountServicesWebdisk

# TODO update the JSON string below
json = "{}"
# create an instance of ServiceAccountServicesWebdisk from a JSON string
service_account_services_webdisk_instance = ServiceAccountServicesWebdisk.from_json(json)
# print the JSON string representation of the object
print(ServiceAccountServicesWebdisk.to_json())

# convert the object into a dict
service_account_services_webdisk_dict = service_account_services_webdisk_instance.to_dict()
# create an instance of ServiceAccountServicesWebdisk from a dict
service_account_services_webdisk_from_dict = ServiceAccountServicesWebdisk.from_dict(service_account_services_webdisk_dict)

[Back to Model list] [Back to API list] [Back to README]