Skip to content

Latest commit

 

History

History
47 lines (38 loc) · 3.27 KB

File metadata and controls

47 lines (38 loc) · 3.27 KB

InlineResponse200570ResultDataInstances

Properties

Name Type Description Notes
addon_config str 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

from clientapi_cpanel.models.inline_response200570_result_data_instances import InlineResponse200570ResultDataInstances

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

# convert the object into a dict
inline_response200570_result_data_instances_dict = inline_response200570_result_data_instances_instance.to_dict()
# create an instance of InlineResponse200570ResultDataInstances from a dict
inline_response200570_result_data_instances_from_dict = InlineResponse200570ResultDataInstances.from_dict(inline_response200570_result_data_instances_dict)

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