Skip to content

Latest commit

 

History

History
51 lines (42 loc) · 4.69 KB

File metadata and controls

51 lines (42 loc) · 4.69 KB

InlineResponse200113ResultData

Properties

Name Type Description Notes
all_aliases_valid int Whether a valid SSL certificate exists on the domain's aliases. * `1` - A valid SSL certificate exists on the aliases. * `0` - A valid SSL certificate does not exist on the aliases. Important: This return only appears if you set the `return_https_redirects_status` parameter to `1`. [optional]
can_https_redirect int Whether a valid SSL certificate exists or AutoSSL runs on the domain. * `1` - A valid SSL certificate exists or AutoSSL runs. * `0` - A valid SSL certificate does not exist, and AutoSSL does not run. Important: This return only appears if you set the `return_https_redirects_status` parameter to `1`. [optional]
customlog InlineResponse200113ResultDataCustomlog [optional]
documentroot str The absolute path to the domain's document root. [optional]
domain str The domain name on the cPanel account. [optional]
group str The domain's group name. [optional]
hascgi int Whether CGI is enabled for the domain. * `1` - Enabled. * `0` - Disabled. [optional]
homedir str The absolute path to the account's home directory. [optional]
ifmodulemodsuphpc InlineResponse200113ResultDataIfmodulemodsuphpc [optional]
ip str The domain's IP address. [optional]
is_https_redirecting int Whether the domain redirects to https. * `1` - Redirects. * `0` - Does not redirect. Important: This return only appears if you set the `return_https_redirects_status` parameter to `1`. [optional]
options str The Apache `Options` directive for the domain. [optional]
owner str The WHM account (root or a reseller) that owns the cPanel account. [optional]
phpopenbasedirprotect int The domain's `open_basedir` setting. * `1` - Enabled. * `0` - Disabled. Note: In EasyApache 4, change this directive in the Editor Mode section of WHM's MultiPHP INI Editor interface (WHM >> Home >> Software >> MultiPHP INI Editor). [optional]
port int Apache's port to access the domain. [optional]
scriptalias InlineResponse200113ResultDataScriptalias [optional]
serveradmin str The domain's administrator's contact email address. [optional]
serveralias str A space-separated list of the domain's aliases. [optional]
servername str The domain's identifier on the server. [optional]
type str The domain type. * `addon_domain` - The domain is an addon domain. * `sub_domain` - The domain is a subdomain. * `main_domain` - The domain is the account's main domain. * `parked_domain` - The domain is a parked domain (domain alias). [optional]
usecanonicalname str The domain's Canonical Name (CNAME) setting. * `On` - Use the CNAME. * `Off` - Do not use the CNAME. [optional]
user str The cPanel account's username. [optional]
userdirprotect int The domain's Apache `mod_userdir` Tweak setting. * `1` - Enabled. * `0` - Disabled. [optional]

Example

from clientapi_cpanel.models.inline_response200113_result_data import InlineResponse200113ResultData

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

# convert the object into a dict
inline_response200113_result_data_dict = inline_response200113_result_data_instance.to_dict()
# create an instance of InlineResponse200113ResultData from a dict
inline_response200113_result_data_from_dict = InlineResponse200113ResultData.from_dict(inline_response200113_result_data_dict)

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