You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The name of the cPAddon in double colon-delimited form.
[optional]
admin_user
str
The administrative user for the cPAddon instance.
[optional]
autoupdate
int
Whether the system processes automatic updates for the cPAddon instance. * `1` - Automatic updates enabled. * `0` - Automatic updates disabled.
[optional]
db_name
str
The cPAddon instance's database name.
[optional]
db_type
str
The cPAddon instance's database type.
[optional]
db_user
str
The cPAddon instance's database user.
[optional]
domain
str
The domain on which the instance is installed.
[optional]
installdir
str
The full path of the directory in which the system deployed the cPAddon.
[optional]
url_to_install
str
The URL to access the cPAddon instance.
[optional]
Example
fromclientapi_cpanel.models.inline_response200579_result_dataimportInlineResponse200579ResultData# TODO update the JSON string belowjson="{}"# create an instance of InlineResponse200579ResultData from a JSON stringinline_response200579_result_data_instance=InlineResponse200579ResultData.from_json(json)
# print the JSON string representation of the objectprint(InlineResponse200579ResultData.to_json())
# convert the object into a dictinline_response200579_result_data_dict=inline_response200579_result_data_instance.to_dict()
# create an instance of InlineResponse200579ResultData from a dictinline_response200579_result_data_from_dict=InlineResponse200579ResultData.from_dict(inline_response200579_result_data_dict)