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 WordPress instance's configuration file location.
[optional]
addon_name
str
The WordPress cPAddon that installed the instance. * `cPanel::Blogs::WordPress` * `cPanel::Blogs::WordPressX` * `cPanel::Blogs::WordPressUnmanaged`
[optional]
addon_type
str
The WordPress instance's installation method. * `modern` — Installed by RPM-managed WordPress cPAddon. * `legacy` — Installed by legacy cPAddon. * `unmanaged` — Installed by third-party tool or the WordPress installer.
[optional]
admin_url
str
The URL to the instance's administration interface.
[optional]
admin_username
str
The administrator username the installer created at the time of installation.
[optional]
available_version
str
The latest Wordpress's version.
[optional]
current_version
str
The WordPress instance's installed version.
[optional]
db_name
str
The WordPress instance's database name.
[optional]
db_prefix
str
The WordPress instance's database prefix.
[optional]
db_server
str
The WordPress instance's database server hostname.
[optional]
db_type
str
The WordPress instance's database type. * `mysql` * `postgres`
[optional]
db_username
str
The WordPress instance's database username.
[optional]
domain
str
The WordPress instance's domain.
[optional]
full_path
str
The WordPress instance's full installation path.
[optional]
homedir
str
The cPanel account's home directory.
[optional]
id
str
The WordPress instance's unique identifier.
[optional]
initial_install_version
str
The WordPress instance's version number at installation.
[optional]
rel_path
str
The WordPress instance's installation path relative to the domain's document root.
[optional]
site_url
str
The WordPress instance's home page URL.
[optional]
Example
fromclientapi_cpanel.models.inline_response200570_result_data_instancesimportInlineResponse200570ResultDataInstances# TODO update the JSON string belowjson="{}"# create an instance of InlineResponse200570ResultDataInstances from a JSON stringinline_response200570_result_data_instances_instance=InlineResponse200570ResultDataInstances.from_json(json)
# print the JSON string representation of the objectprint(InlineResponse200570ResultDataInstances.to_json())
# convert the object into a dictinline_response200570_result_data_instances_dict=inline_response200570_result_data_instances_instance.to_dict()
# create an instance of InlineResponse200570ResultDataInstances from a dictinline_response200570_result_data_instances_from_dict=InlineResponse200570ResultDataInstances.from_dict(inline_response200570_result_data_instances_dict)