Skip to content

Latest commit

 

History

History
54 lines (45 loc) · 3.08 KB

File metadata and controls

54 lines (45 loc) · 3.08 KB

InstallationFeatures

Properties

Name Type Description Notes
wp_cron_takeover InstallationWpCron
updates InstallationUpdates
restore_point InstallationRestorePoint
maintenance InstallationMaintenance
hotlink_protection InstallationHotlinkProtection
security InstallationSecurity
nginx_caching InstallationNginxCaching
indexing InstallationIndexing
debug InstallationDebug
password_protection InstallationPasswordProtection
vulnerability InstallationVulnerability
multiple_sites_management InstallationMultipleSitesManagement
clone InstallationClone
copy_data InstallationCopyData
credentials InstallationCredentials
backups InstallationBackups
file_manager InstallationFileManager
action_log InstallationActionLog
remote_management InstallationRemoteManagement
synchronize_site_url InstallationSynchronizeSiteUrl
malware_scan InstallationMalwareScan
php InstallationPhp
integrity InstallationIntegrityFeature
plugins_block_list InstallationPluginsBlockList
virtual_patches InstallationVirtualPatches
vulnerability_filtering InstallationVulnerabilityFiltering

Example

from plesk_wp_toolkit_client.models.installation_features import InstallationFeatures

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

# convert the object into a dict
installation_features_dict = installation_features_instance.to_dict()
# create an instance of InstallationFeatures from a dict
installation_features_from_dict = InstallationFeatures.from_dict(installation_features_dict)

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