Skip to content

Latest commit

 

History

History
53 lines (44 loc) · 3.96 KB

File metadata and controls

53 lines (44 loc) · 3.96 KB

InlineResponse200568ResultDataInstances

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 This return is unused. [optional]
created_on int The WordPress instance's installation date. [optional]
current_version str This return is unused. [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. Note `mysql` is the only possible value. [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]
import_guid str The imported WordPress instance's unique identifier. [optional]
imported_on int The WordPress instance's import date. [optional]
initial_install_version str The WordPress instance's version number at installation. [optional]
migrated_from str The cPAddon that the system migrated the instance from. [optional]
migrated_on int The timestamp when the system migrated the instance from legacy to modern WordPress cPAddon. [optional]
recent int Whether the system added the WordPress instance in the last 24 hours. * `1` — Added recently. * `0` — Added previously. [optional]
rel_path str The WordPress instance's installation path. Note This function returns an empty value if the relative path is the document root. [optional]
site_url str The WordPress instance's home page URL. [optional]

Example

from clientapi_cpanel.models.inline_response200568_result_data_instances import InlineResponse200568ResultDataInstances

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

# convert the object into a dict
inline_response200568_result_data_instances_dict = inline_response200568_result_data_instances_instance.to_dict()
# create an instance of InlineResponse200568ResultDataInstances from a dict
inline_response200568_result_data_instances_from_dict = InlineResponse200568ResultDataInstances.from_dict(inline_response200568_result_data_instances_dict)

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