Skip to main content

Python SDK for Morpheus API - A powerful cloud management tool

Project description

morpheus-python-sdk

Morpheus is a powerful cloud management tool that provides provisioning, monitoring, logging, backups, and application deployment strategies.

This document describes the Morpheus API protocol and the available endpoints. Sections are organized in the same manner as they appear in the Morpheus UI.

This Python package is automatically generated by the OpenAPI Generator project:

  • API version: 8.0.8
  • Package version: 0.0.2
  • Generator version: 7.16.0-SNAPSHOT
  • Build package: org.openapitools.codegen.languages.PythonClientCodegen

Requirements.

Python 3.9+

Installation & Usage

pip install

You can install the package from PyPI:

pip install morpheus-python-sdk

Or install directly from GitHub:

pip install git+https://github.com/hpe-hcss/morpheus-python-sdk.git

Then import the package:

import morpheus

Setuptools

Install via Setuptools.

python setup.py install --user

(or sudo python setup.py install to install the package for all users)

Then import the package:

import morpheus

Tests

Execute pytest to run the tests.

Getting Started

Please follow the installation procedure and then run the following:

import morpheus
from morpheus.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to https://CHANGEME
# See configuration.py for a list of all supported configuration parameters.
configuration = morpheus.Configuration(
    host = "https://CHANGEME"
)

# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.

# Configure Bearer authorization: bearerAuth
configuration = morpheus.Configuration(
    access_token = os.environ["BEARER_TOKEN"]
)


# Enter a context with an instance of the API client
with morpheus.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = morpheus.ActivityApi(api_client)
    max = 25 # int | Maximum number of records to return (optional) (default to 25)
    offset = 0 # int | Offset records, the number of records to skip, for paginating requests (optional) (default to 0)
    sort = 'name' # str | Sort order, the name of the property to sort by (optional) (default to 'name')
    order = asc # str | Sort direction, use 'desc' to reverse sort (optional) (default to asc)
    phrase = 'phrase_example' # str | Search phrase for partial matches on name or description (optional)
    name = 'example' # str | Filter by name (optional)
    user_id = 6 # int | Filter by User ID (optional)
    tenant_id = 3 # float | Filter by Tenant ID. Only available to the master account. (optional)
    timeframe = 'month' # str | Filter by a timeframe (ex - today, yesterday, week, month, 3months) (optional) (default to 'month')
    start = '2013-10-20T19:20:30+01:00' # datetime | Filter by activity on or after a date(time). Default is 1 month prior (optional)
    end = '2013-10-20T19:20:30+01:00' # datetime | Filter by activity on or before a date(time). Default is current date (optional)

    try:
        # Retrieves Activity
        api_response = api_instance.list_activity(max=max, offset=offset, sort=sort, order=order, phrase=phrase, name=name, user_id=user_id, tenant_id=tenant_id, timeframe=timeframe, start=start, end=end)
        print("The response of ActivityApi->list_activity:\n")
        pprint(api_response)
    except ApiException as e:
        print("Exception when calling ActivityApi->list_activity: %s\n" % e)

Documentation for API Endpoints

All URIs are relative to https://CHANGEME

Class Method HTTP request Description
ActivityApi list_activity GET /api/activity Retrieves Activity
AlertsApi add_alerts POST /api/monitoring/alerts Create a New Alert
AlertsApi delete_alerts DELETE /api/monitoring/alerts/{id} Delete a Specific Alert
AlertsApi get_alerts GET /api/monitoring/alerts/{id} Get a Specific Alert
AlertsApi list_alerts GET /api/monitoring/alerts List All Alerts
AlertsApi update_alerts PUT /api/monitoring/alerts/{id} Update Alert
ApplianceSettingsApi list_appliance_settings GET /api/appliance-settings Get Appliance Settings
ApplianceSettingsApi reindex POST /api/appliance-settings/reindex Reindex Search
ApplianceSettingsApi set_appliance_settings_maintenance_mode POST /api/appliance-settings/maintenance Toggle Maintenance Mode
ApplianceSettingsApi update_appliance_settings PUT /api/appliance-settings Update Appliance Settings
ApprovalsApi get_approvals GET /api/approvals/{id} Retrieves a Specific Approval
ApprovalsApi get_approvals_item GET /api/approval-items/{id} Retrieves a Specific Approval Item
ApprovalsApi list_approvals GET /api/approvals Retrieves all Approvals
ApprovalsApi update_approvals_item PUT /api/approval-items/{id}/{action} Updates a Specific Approval Item
AppsApi add_app_instance POST /api/apps/{id}/add-instance Add Existing Instance to App
AppsApi add_app_undo_delete PUT /api/apps/{id}/cancel-removal Undo Delete of an App
AppsApi add_apps POST /api/apps Create an App
AppsApi apply_app_state POST /api/apps/{id}/apply Apply State of an App
AppsApi delete_app DELETE /api/apps/{id} Delete an App
AppsApi get_app GET /api/apps/{id} Get a Specific App
AppsApi get_app_security_groups GET /api/apps/{id}/security-groups Get Security Groups for an App
AppsApi get_app_state GET /api/apps/{id}/state Get State of an App
AppsApi list_apps GET /api/apps Get All Apps
AppsApi prepare_app_apply GET /api/apps/{id}/prepare-apply Prepare To Apply an App
AppsApi refresh_app_state POST /api/apps/{id}/refresh Refresh State of an App
AppsApi remove_app_instance POST /api/apps/{id}/remove-instance Remove Instance from App
AppsApi set_app_security_groups POST /api/apps/{id}/security-groups Set Security Groups for an App
AppsApi update_app PUT /api/apps/{id} Updating an App
AppsApi validate_app_state POST /api/apps/{id}/validate-apply Validate Apply State for an App
ArchivesApi add_archive_bucket POST /api/archives/buckets Create an Archive Bucket
ArchivesApi add_archive_file POST /api/archives/buckets/{bucket}/files/{filepath} Upload Archive File
ArchivesApi add_archive_file_link POST /api/archives/files/{id}/links Create an Archive File Link
ArchivesApi delete_archive_bucket DELETE /api/archives/buckets/{id} Delete an Archive Bucket
ArchivesApi delete_archive_file DELETE /api/archives/files/{id} Delete Archive File
ArchivesApi delete_archive_file_link DELETE /api/archives/files/{id}/links/{linkId} Delete an Archive File Link
ArchivesApi get_archive_bucket GET /api/archives/buckets/{id} Get a Specific Archive Bucket
ArchivesApi get_archive_file GET /api/archives/download/{bucket}/{filepath} Download an Archive File
ArchivesApi get_archive_file_detail GET /api/archives/files/{id} Get Archive File Details
ArchivesApi get_archive_file_links GET /api/archives/files/{id}/links Get Archive File Links
ArchivesApi get_archive_public_file GET /api/public-archives/download/{bucket}/{filepath} Download a Public Archive File
ArchivesApi get_archive_public_file_link GET /api/public-archives/link Download an Archive File Link
ArchivesApi list_archive_buckets GET /api/archives/buckets Get All Archive Buckets
ArchivesApi list_archive_files GET /api/archives/buckets/{bucket}/files/{filepath} Get All Archive Files
ArchivesApi update_archive_bucket PUT /api/archives/buckets/{id} Update an Archive Bucket
AuthenticationApi forgot_password POST /api/forgot/send-email Request a reset password email
AuthenticationApi get_access_token POST /oauth/token Provides authentication via username and password
AuthenticationApi reset_password POST /api/forgot/reset-password Reset user password
AuthenticationApi whoami GET /api/whoami Retrieves information about current user roles and permissions
AutomationApi add_execute_schedules POST /api/execute-schedules Creates a Execute Schedule
AutomationApi add_power_schedule_instances PUT /api/power-schedules/{id}/add-instances Add Instances to a Power Schedule
AutomationApi add_power_schedule_servers PUT /api/power-schedules/{id}/add-servers Add Servers to a Power Schedule
AutomationApi add_power_schedules POST /api/power-schedules Creates a Power Schedule
AutomationApi add_scale_thresholds POST /api/scale-thresholds Creates a Scale Threshold
AutomationApi add_tasks POST /api/tasks Creates a Task
AutomationApi add_workflows POST /api/task-sets Creates a Workflow
AutomationApi delete_power_schedule_instances PUT /api/power-schedules/{id}/remove-instances Remove Instances from a Power Schedule
AutomationApi delete_power_schedule_servers PUT /api/power-schedules/{id}/remove-servers Remove Servers from a Power Schedule
AutomationApi execute_execution_request POST /api/execution-request/execute Executes an Execution Request
AutomationApi execute_tasks POST /api/tasks/{id}/execute Executes a Task
AutomationApi execute_workflows POST /api/task-sets/{id}/execute Executes a Workflow
AutomationApi get_execute_schedules GET /api/execute-schedules/{id} Retrieves a Specific Execute Schedule
AutomationApi get_execution_request GET /api/execution-request/{uniqueId} Retrieves a Specific Execution Request
AutomationApi get_power_schedules GET /api/power-schedules/{id} Retrieves a Specific Power Schedule
AutomationApi get_scale_thresholds GET /api/scale-thresholds/{id} Retrieves a Specific Scale Threshold
AutomationApi get_task_types GET /api/task-types/{id} Retrieves a Specific Task Type
AutomationApi get_tasks GET /api/tasks/{id} Retrieves a Specific Task
AutomationApi get_workflows GET /api/task-sets/{id} Retrieves a Specific Workflow
AutomationApi list_execute_schedules GET /api/execute-schedules Retrieves all Execute Schedules
AutomationApi list_power_schedules GET /api/power-schedules Retrieves all Power Schedules
AutomationApi list_scale_thresholds GET /api/scale-thresholds Retrieves all Scale Thresholds
AutomationApi list_task_types GET /api/task-types Retrieves all Task Types
AutomationApi list_tasks GET /api/tasks Retrieves all Tasks
AutomationApi list_workflows GET /api/task-sets Retrieves all Workflows
AutomationApi remove_execute_schedules DELETE /api/execute-schedules/{id} Deletes a Execute Schedule
AutomationApi remove_power_schedules DELETE /api/power-schedules/{id} Deletes a Power Schedule
AutomationApi remove_scale_thresholds DELETE /api/scale-thresholds/{id} Deletes a Scale Threshold
AutomationApi remove_tasks DELETE /api/tasks/{id} Deletes a Task
AutomationApi remove_workflows DELETE /api/task-sets/{id} Deletes a Workflow
AutomationApi update_execute_schedules PUT /api/execute-schedules/{id} Updates a Execute Schedule
AutomationApi update_power_schedules PUT /api/power-schedules/{id} Updates a Power Schedule
AutomationApi update_scale_thresholds PUT /api/scale-thresholds/{id} Updates a Scale Threshold
AutomationApi update_tasks PUT /api/tasks/{id} Updates a Task
AutomationApi update_workflows PUT /api/task-sets/{id} Updates a Workflow
BackupSettingsApi list_backup_settings GET /api/backup-settings Get Backup Settings
BackupSettingsApi update_backup_settings PUT /api/backup-settings Update Backup Settings
BackupsApi add_backup_jobs POST /api/backups/jobs Creates a Backup Job
BackupsApi add_backups POST /api/backups Creates a Backup
BackupsApi execute_backup_jobs POST /api/backups/jobs/{id}/execute Executes a Backup Job
BackupsApi execute_backup_restore POST /api/backups/restores Executes a Backup Restore
BackupsApi execute_backups POST /api/backups/{id}/execute Executes a Backup
BackupsApi get_backup_jobs GET /api/backups/jobs/{id} Retrieves a Specific Backup Job
BackupsApi get_backup_restores GET /api/backups/restores/{id} Retrieves a Specific Backup Restore
BackupsApi get_backup_results GET /api/backups/results/{id} Retrieves a Specific Backup Result
BackupsApi get_backups GET /api/backups/{id} Retrieves a Specific Backup
BackupsApi list_backup_jobs GET /api/backups/jobs Retrieves all Backup Jobs
BackupsApi list_backup_restores GET /api/backups/restores Retrieves all Backup Restores
BackupsApi list_backup_results GET /api/backups/results Retrieves all Backup Results
BackupsApi list_backups GET /api/backups Retrieves all Backups
BackupsApi remove_backup_jobs DELETE /api/backups/jobs/{id} Deletes a Backup Job
BackupsApi remove_backup_restores DELETE /api/backups/restores/{id} Deletes a Backup Restore
BackupsApi remove_backup_results DELETE /api/backups/results/{id} Deletes a Backup Result
BackupsApi remove_backups DELETE /api/backups/{id} Deletes a Backup
BackupsApi update_backup_jobs PUT /api/backups/jobs/{id} Updates a Backup Job
BackupsApi update_backups PUT /api/backups/{id} Updates a Backup
BillingApi get_billing_account GET /api/billing/account/{id} This endpoint will retrieve a specific account by id if the user has permission to access it
BillingApi get_billing_instances_identifier GET /api/billing/instances/{identifier} Retrieves billing information for an instance in the requestor's account. Use instanceUUID whenever possible.
BillingApi get_billing_servers_identifier GET /api/billing/servers/{identifier} Retrieves billing information for a specific server (container host) in the requestor's account. Use refUUID whenever possible.
BillingApi get_billing_zone_identifier GET /api/billing/zones/{identifier} Retrieves billing information for a specific zone in the requestor's account. Use zoneUUID whenever possible.
BillingApi list_billing_account GET /api/billing/account Retrieves billing information for the requesting user's account.
BillingApi list_billing_instances GET /api/billing/instances Retrieves billing information for all instances on the requestor's account.
BillingApi list_billing_servers GET /api/billing/servers Retrieves billing information for all servers (container hosts) on the requestor's account.
BillingApi list_billing_zone GET /api/billing/zones Retrieves billing information for all zones on the requestor's account.
BlueprintsApi add_blueprint POST /api/blueprints Create a Blueprint
BlueprintsApi delete_blueprint DELETE /api/blueprints/{id} Delete a Blueprint
BlueprintsApi get_blueprint GET /api/blueprints/{id} Get a Specific Blueprint
BlueprintsApi list_blueprints GET /api/blueprints Get All Blueprints
BlueprintsApi update_blueprint PUT /api/blueprints/{id} Updating a Blueprint
BlueprintsApi update_blueprint_image POST /api/blueprints/{id}/image Update Blueprint Image
BlueprintsApi update_blueprint_permissions PUT /api/blueprints/{id}/update-permissions Update Blueprint Permissions
BudgetsApi add_budgets POST /api/budgets Creates a Budget
BudgetsApi get_budgets GET /api/budgets/{id} Retrieves a Specific Budget
BudgetsApi list_budgets GET /api/budgets Retrieves all Budgets
BudgetsApi remove_budgets DELETE /api/budgets/{id} Deletes a Budget
BudgetsApi update_budgets PUT /api/budgets/{id} Updates a Budget
CatalogItemsApi add_catalog_item_type POST /api/catalog-item-types Create a Catalog Item Type
CatalogItemsApi get_catalog_item_type GET /api/catalog-item-types/{id} Get a Specific Catalog Item Type
CatalogItemsApi list_catalog_item_types GET /api/catalog-item-types Get All Catalog Item Types
CatalogItemsApi remove_catalog_item_type DELETE /api/catalog-item-types/{id} Delete a Catalog Item Type
CatalogItemsApi update_catalog_item_type PUT /api/catalog-item-types/{id} Update a Catalog Item Type
CatalogItemsApi update_catalog_item_type_logo PUT /api/catalog-item-types/{id}/update-logo Update Logo For Catalog Item Type
ChecksApi add_check_apps POST /api/monitoring/apps Create a New Check App
ChecksApi add_check_groups POST /api/monitoring/groups Create a New Check Group
ChecksApi add_checks POST /api/monitoring/checks Create a New Check
ChecksApi delete_check_apps DELETE /api/monitoring/apps/{id} Delete a Specific Check App
ChecksApi delete_check_groups DELETE /api/monitoring/groups/{id} Delete a Specific Check Group
ChecksApi delete_checks DELETE /api/monitoring/checks/{id} Delete a Specific Check
ChecksApi get_check_apps GET /api/monitoring/apps/{id} Get a Specific Check App
ChecksApi get_check_groups GET /api/monitoring/groups/{id} Get a Specific Check Group
ChecksApi get_check_types GET /api/monitoring/check-types/{id} Get a Specific Check Type
ChecksApi get_checks GET /api/monitoring/checks/{id} Get a Specific Check
ChecksApi list_check_apps GET /api/monitoring/apps List All Check Apps
ChecksApi list_check_groups GET /api/monitoring/groups List All Check Groups
ChecksApi list_check_types GET /api/monitoring/check-types List All Check Types
ChecksApi list_checks GET /api/monitoring/checks List All Checks
ChecksApi update_check_apps PUT /api/monitoring/apps/{id} Update Check App
ChecksApi update_check_groups PUT /api/monitoring/groups/{id} Update Check Group
ChecksApi update_checks PUT /api/monitoring/checks/{id} Updates a Check
ChecksApi update_mute_all_check_apps PUT /api/monitoring/apps/mute-all Mute All Check Apps
ChecksApi update_mute_all_check_groups PUT /api/monitoring/groups/mute-all Mute All Check Groups
ChecksApi update_mute_all_checks PUT /api/monitoring/checks/mute-all Mute All Checks
ChecksApi update_mute_check_apps PUT /api/monitoring/apps/{id}/mute Mute Check App
ChecksApi update_mute_check_groups PUT /api/monitoring/groups/{id}/mute Mute Check Group
ChecksApi update_mute_checks PUT /api/monitoring/checks/{id}/mute Mute Check
ClientsApi add_client POST /api/clients Create an Oauth Client
ClientsApi get_clients GET /api/clients/{id} Retrieves a Specific Oauth Client
ClientsApi list_clients GET /api/clients Get All Oauth Clients
ClientsApi remove_clients DELETE /api/clients/{id} Deletes an Oauth Client
ClientsApi update_clients PUT /api/clients/{id} Updates an Oauth Client
CloudsApi add_cloud_resource_pool POST /api/zones/{zoneId}/resource-pools Creates a Specified Resource Pool for Specified Cloud
CloudsApi add_clouds POST /api/zones Creates a Cloud
CloudsApi get_cloud_datastores GET /api/zones/{zoneId}/data-stores/{id} Retrieves a Datastore for Specified Cloud
CloudsApi get_cloud_folders GET /api/zones/{zoneId}/folders/{id} Retrieves a Resource Folder for Specified Cloud
CloudsApi get_cloud_resource_pools GET /api/zones/{zoneId}/resource-pools/{id} Retrieves a Resource Pool for Specified Cloud
CloudsApi get_cloud_types GET /api/zone-types/{id} Retrieves a Specific Cloud Type
CloudsApi get_clouds GET /api/zones/{id} Retrieves a Specific Cloud
CloudsApi list_cloud_datastores GET /api/zones/{zoneId}/data-stores Retrieves all Datastores for Specified Cloud
CloudsApi list_cloud_folders GET /api/zones/{zoneId}/folders Retrieves all resource folders for Specified Cloud
CloudsApi list_cloud_resource_pools GET /api/zones/{zoneId}/resource-pools Retrieves all Resource Pools for Specified Cloud
CloudsApi list_cloud_security_groups GET /api/zones/{id}/security-groups Retrieves all Security Groups for a Cloud
CloudsApi list_cloud_types GET /api/zone-types Retrieves all Cloud Types
CloudsApi list_clouds GET /api/zones Retrieves all Clouds
CloudsApi refresh_clouds POST /api/zones/{id}/refresh Refreshes a Cloud
CloudsApi remove_cloud_resource_pools DELETE /api/zones/{zoneId}/resource-pools/{id} Deletes a Resource Pool for Specified Cloud
CloudsApi remove_clouds DELETE /api/zones/{id} Deletes a Cloud
CloudsApi save_cloud_datastore POST /api/zones/{zoneId}/data-stores Create a Datastore for Specified Cloud
CloudsApi update_cloud_datastores PUT /api/zones/{zoneId}/data-stores/{id} Updates a Specified Datastore for Specified Cloud
CloudsApi update_cloud_folders PUT /api/zones/{zoneId}/folders/{id} Updates a Resource Folder for Specified Cloud
CloudsApi update_cloud_logo POST /api/zones/{id}/update-logo Update Logo For Cloud
CloudsApi update_cloud_resource_pool PUT /api/zones/{zoneId}/resource-pools/{id} Updates a Specified Resource Pool for Specified Cloud
CloudsApi update_cloud_security_groups POST /api/zones/{id}/security-groups Sets Security Groups for a Cloud
CloudsApi update_clouds PUT /api/zones/{id} Updates a Cloud
ClusterLayoutsApi add_cluster_layout_clone POST /api/library/cluster-layouts/{id}/clone Clone a Cluster Layout
ClusterLayoutsApi add_cluster_layouts POST /api/library/cluster-layouts Create a Cluster Layout
ClusterLayoutsApi delete_cluster_layout DELETE /api/library/cluster-layouts/{id} Delete a Cluster Layout
ClusterLayoutsApi get_cluster_layout GET /api/library/cluster-layouts/{id} Get a Specific Cluster Layout
ClusterLayoutsApi list_cluster_layouts GET /api/library/cluster-layouts Get All Cluster Layouts
ClusterLayoutsApi update_cluster_layout PUT /api/library/cluster-layouts/{id} Update a Cluster Layout
ClusterPackagesApi add_cluster_package POST /api/library/cluster-packages Create a Cluster Package
ClusterPackagesApi delete_cluster_package DELETE /api/library/cluster-packages/{id} Delete a Cluster Package
ClusterPackagesApi get_cluster_package GET /api/library/cluster-packages/{id} Get a Specific Cluster Package
ClusterPackagesApi list_cluster_packages GET /api/library/cluster-packages Get All Cluster Packages
ClusterPackagesApi update_cluster_package PUT /api/library/cluster-packages/{id} Update a Cluster Package
ClustersApi add_cluster POST /api/clusters Create a Cluster
ClustersApi add_cluster_namespace POST /api/clusters/{clusterId}/namespaces Add Namespace (Kubernetes)
ClustersApi add_cluster_worker POST /api/clusters/{clusterId}/servers Add Worker
ClustersApi apply_template POST /api/clusters/{clusterId}/apply-template Apply Template to Cluster (Kubernetes)
ClustersApi delete_cluster DELETE /api/clusters/{clusterId} Delete a Cluster
ClustersApi delete_cluster_container DELETE /api/clusters/{clusterId}/containers/{id} Delete Container
ClustersApi delete_cluster_datastore DELETE /api/clusters/{clusterId}/datastores/{id} Delete a Cluster Datastore
ClustersApi delete_cluster_deployment DELETE /api/clusters/{clusterId}/deployments/{id} Delete Deployment
ClustersApi delete_cluster_job DELETE /api/clusters/{clusterId}/jobs/{id} Delete a Job
ClustersApi delete_cluster_namespace DELETE /api/clusters/{clusterId}/namespaces/{id} Delete a Namespace (Kubernetes)
ClustersApi delete_cluster_service DELETE /api/clusters/{clusterId}/services/{id} Delete a Service
ClustersApi delete_cluster_stateful_set DELETE /api/clusters/{clusterId}/statefulsets/{id} Delete a Stateful Set
ClustersApi delete_cluster_volume DELETE /api/clusters/{clusterId}/volumes/{id} Delete a Volume
ClustersApi delete_cluster_worker DELETE /api/clusters/{clusterId}/servers/{id} Delete a Worker
ClustersApi get_cluster GET /api/clusters/{clusterId} Get a Specific Cluster
ClustersApi get_cluster_api_config GET /api/clusters/{clusterId}/api-config Get API Config
ClustersApi get_cluster_configmap GET /api/clusters/{clusterId}/configmaps/{id} Get a Specific Cluster Configmap
ClustersApi get_cluster_container GET /api/clusters/{clusterId}/containers/{id} Get a Specific Cluster Container
ClustersApi get_cluster_daemonset GET /api/clusters/{clusterId}/daemonsets/{id} Get a Specific Cluster Daemonset
ClustersApi get_cluster_datastore GET /api/clusters/{clusterId}/datastores/{id} Get a Specific Cluster Datastore
ClustersApi get_cluster_deployment GET /api/clusters/{clusterId}/deployments/{id} Get a Specific Cluster Deployment
ClustersApi get_cluster_history GET /api/clusters/{clusterId}/history Get Cluster History
ClustersApi get_cluster_history_detail GET /api/clusters/{clusterId}/history/{id} Get Cluster History Details
ClustersApi get_cluster_history_event_detail GET /api/clusters/{clusterId}/history/events/{id} Get Cluster History Event
ClustersApi get_cluster_ingress GET /api/clusters/{clusterId}/ingresses/{id} Get a Specific Cluster Ingress
ClustersApi get_cluster_job GET /api/clusters/{clusterId}/jobs/{id} Get a Specific Cluster Job
ClustersApi get_cluster_masters GET /api/clusters/{clusterId}/masters Get Masters (Kubernetes)
ClustersApi get_cluster_namespace GET /api/clusters/{clusterId}/namespaces/{id} Get Namespace (Kubernetes)
ClustersApi get_cluster_namespaces GET /api/clusters/{clusterId}/namespaces List Namespaces (Kubernetes)
ClustersApi get_cluster_network_endpoing GET /api/clusters/{clusterId}/endpoints/{id} Get a Specific Cluster Endpoint
ClustersApi get_cluster_pod GET /api/clusters/{clusterId}/pods/{id} Get a Specific Pod for a Cluster
ClustersApi get_cluster_policy GET /api/clusters/{clusterId}/policies/{id} Get a Specific Cluster Policy
ClustersApi get_cluster_replicaset GET /api/clusters/{clusterId}/replicasets/{id} Get a Specific Cluster Replicaset
ClustersApi get_cluster_secret GET /api/clusters/{clusterId}/secrets/{id} Get a Specific Cluster Secret
ClustersApi get_cluster_service GET /api/clusters/{clusterId}/services/{id} Get a Specific Cluster Service
ClustersApi get_cluster_statefulset GET /api/clusters/{clusterId}/statefulsets/{id} Get a Specific Cluster Statefulset
ClustersApi get_cluster_upgrade_versions GET /api/clusters/{clusterId}/upgrade-cluster Get Cluster Upgrade Versions (Kubernetes)
ClustersApi get_cluster_volume GET /api/clusters/{clusterId}/volumes/{id} Get a Specific Cluster Volume
ClustersApi get_cluster_volumeclaim GET /api/clusters/{clusterId}/volumeclaims/{id} Get a Specific Cluster VolumeClaim
ClustersApi list_cluster_configmaps GET /api/clusters/{clusterId}/configmaps Get Configmaps
ClustersApi list_cluster_containers GET /api/clusters/{clusterId}/containers Get Containers for a Cluster
ClustersApi list_cluster_daemonsets GET /api/clusters/{clusterId}/daemonsets Get Daemonsets
ClustersApi list_cluster_datastores GET /api/clusters/{clusterId}/datastores Get Cluster Datastores
ClustersApi list_cluster_deployments GET /api/clusters/{clusterId}/deployments Get Deployments
ClustersApi list_cluster_ingresses GET /api/clusters/{clusterId}/ingresses Get Ingresses
ClustersApi list_cluster_jobs GET /api/clusters/{clusterId}/jobs Get Jobs
ClustersApi list_cluster_network_endpoints GET /api/clusters/{clusterId}/endpoints Get Endpoints
ClustersApi list_cluster_pods GET /api/clusters/{clusterId}/pods Get Pods
ClustersApi list_cluster_policies GET /api/clusters/{clusterId}/policies Get Policies
ClustersApi list_cluster_replicasets GET /api/clusters/{clusterId}/replicasets Get Replicasets
ClustersApi list_cluster_secrets GET /api/clusters/{clusterId}/secrets Get Secrets
ClustersApi list_cluster_services GET /api/clusters/{clusterId}/services Get Services
ClustersApi list_cluster_stateful_sets GET /api/clusters/{clusterId}/statefulsets Get Stateful Sets
ClustersApi list_cluster_types GET /api/cluster-types Get All Cluster Types
ClustersApi list_cluster_volumeclaims GET /api/clusters/{clusterId}/volumeclaims Get VolumeClaims
ClustersApi list_cluster_volumes GET /api/clusters/{clusterId}/volumes Get Volumes
ClustersApi list_cluster_workers GET /api/clusters/{clusterId}/workers Get Workers
ClustersApi list_clusters GET /api/clusters Get All Clusters
ClustersApi refresh_cluster GET /api/clusters/{clusterId}/refresh Refreshes a Cluster
ClustersApi restart_cluster_container PUT /api/clusters/{clusterId}/containers/{id}/restart Restart a Container
ClustersApi restart_cluster_deployment PUT /api/clusters/{clusterId}/deployments/{id}/restart Restart a Deployment
ClustersApi restart_cluster_pod PUT /api/clusters/{clusterId}/pods/{id}/restart Restart a Pod
ClustersApi restart_cluster_stateful_set PUT /api/clusters/{clusterId}/statefulsets/{id}/restart Restart a Stateful Set
ClustersApi save_cluster_datastore POST /api/clusters/{clusterId}/datastores Create a Cluster Datastore
ClustersApi update_cluster PUT /api/clusters/{clusterId} Update Cluster
ClustersApi update_cluster_datastore PUT /api/clusters/{clusterId}/datastores/{id} Update Cluster Datastore
ClustersApi update_cluster_namespace PUT /api/clusters/{clusterId}/namespaces/{id} Update Namespace (Kubernetes)
ClustersApi update_cluster_permissions PUT /api/clusters/{clusterId}/permissions Update Cluster Permissions
ClustersApi update_cluster_upgrade_versions POST /api/clusters/{clusterId}/upgrade-cluster Upgrade a Cluster (Kubernetes)
ClustersApi update_cluster_worker_count PUT /api/clusters/{clusterId}/worker-count Update Worker Count
ContactsApi add_contacts POST /api/monitoring/contacts Create a New Contact
ContactsApi delete_contacts DELETE /api/monitoring/contacts/{id} Delete a Specific Contact
ContactsApi get_contacts GET /api/monitoring/contacts/{id} Get a Specific Contact
ContactsApi list_contacts GET /api/monitoring/contacts List All Contacts
ContactsApi update_contacts PUT /api/monitoring/contacts/{id} Update Contact
ContainersApi clone_image_container_action PUT /api/containers/{id}/clone-image Clone Specific Container to Image
ContainersApi containers_attach_floating_ip PUT /api/containers/{id}/attach-floating-ip Attach Floating IP to Container
ContainersApi containers_detach_floating_ip PUT /api/containers/{id}/detach-floating-ip Detach Floating IP from Container
ContainersApi eject_container_action PUT /api/containers/{id}/eject Eject a Specific Container
ContainersApi execute_container_action PUT /api/containers/{id}/action Execute Container Action
ContainersApi get_container GET /api/containers/{id} Get a Specific Container
ContainersApi get_container_actions GET /api/containers/{id}/actions List Container Actions
ContainersApi import_container_action PUT /api/containers/{id}/import Import a Specific Container
ContainersApi restart_container_action PUT /api/containers/{id}/restart Restart a Specific Container
ContainersApi start_container_action PUT /api/containers/{id}/start Start a Specific Container
ContainersApi stop_container_action PUT /api/containers/{id}/stop Stop a Specific Container
ContainersApi suspend_container_action PUT /api/containers/{id}/suspend Suspend a Specific Container
CredentialsApi add_credentials POST /api/credentials Creates a Credential
CredentialsApi get_credential_type GET /api/credential-types/{id} Get a Specific Credential Type
CredentialsApi get_credentials GET /api/credentials/{id} Retrieves a Specific Credential
CredentialsApi list_credential_types GET /api/credential-types Get All Credential Types
CredentialsApi list_credentials GET /api/credentials Retrieves all Credentials
CredentialsApi remove_credentials DELETE /api/credentials/{id} Deletes a Credential
CredentialsApi update_credentials PUT /api/credentials/{id} Updates a Credential
CypherApi add_cypher_key POST /api/cypher/{cypherPath} Write a Cypher
CypherApi get_cypher_key GET /api/cypher/{cypherPath} Read or Create a Cypher Key
CypherApi list_cypher_keys GET /api/cypher List Cypher Keys
CypherApi remove_cypher DELETE /api/cypher/{cypherPath} Delete a Cypher
DatastoresApi get_datastores GET /api/data-stores/{id} Retrieves a Datastore
DatastoresApi list_datastores GET /api/data-stores Retrieves all Datastores
DatastoresApi save_datastore POST /api/data-stores Create a Datastore
DatastoresApi update_datastores PUT /api/data-stores/{id} Updates a Specified Datastore
DeploymentsApi add_deployment_file POST /api/deployments/{deploymentId}/versions/{id}/files{filepath} Upload a Deployment File
DeploymentsApi add_deployment_version POST /api/deployments/{deploymentId}/versions Create a new Deployment Version
DeploymentsApi add_deployments POST /api/deployments Create a new Deployment
DeploymentsApi delete_deployment DELETE /api/deployments/{deploymentId} Delete a Deployment
DeploymentsApi delete_deployment_file DELETE /api/deployments/{deploymentId}/versions/{id}/files{filepath} Delete a Deployment File
DeploymentsApi delete_deployment_version DELETE /api/deployments/{deploymentId}/versions/{id} Delete a Deployment Version
DeploymentsApi get_deployment GET /api/deployments/{deploymentId} Get a Specific Deployment
DeploymentsApi get_deployment_version GET /api/deployments/{deploymentId}/versions/{id} Get a Specific Deployment Version
DeploymentsApi list_deployment_files GET /api/deployments/{deploymentId}/versions/{id}/files{filepath} List Deployment Files
DeploymentsApi list_deployment_versions GET /api/deployments/{deploymentId}/versions Get All Versions For a Deployment
DeploymentsApi list_deployments GET /api/deployments Get All Deployments
DeploymentsApi update_deployment PUT /api/deployments/{deploymentId} Updating a Deployment
DeploymentsApi update_deployment_version PUT /api/deployments/{deploymentId}/versions/{id} Updating a Deployment Version
DeploysApi add_instance_deploy POST /api/instances/{id}/deploys Deploy to an Instance
DeploysApi deletedeploy DELETE /api/deploys/{id} Delete a Deploy
DeploysApi get_instance_deploys GET /api/instances/{id}/deploys Get all Deploys for an Instance
DeploysApi list_deploys GET /api/deploys Get all Deploys
DeploysApi run_deploy POST /api/deploys/{id}/deploy Run a Deploy
DeploysApi update_deploy PUT /api/deploys/{id} Update a Deploy
EmailTemplatesApi add_email_template POST /api/email-templates Creates an Email Template
EmailTemplatesApi delete_email_template DELETE /api/email-templates/{id} Deletes an Email Template
EmailTemplatesApi get_email_template GET /api/email-templates/{id} Retrieves a Specific Email Template
EmailTemplatesApi list_email_templates GET /api/email-templates Retrieves all Email Templates
EmailTemplatesApi update_email_template PUT /api/email-templates/{id} Updates an Email Template
EnvironmentsApi add_environments POST /api/environments Create a New Environment
EnvironmentsApi delete_environments DELETE /api/environments/{id} Delete a Specific Environment
EnvironmentsApi get_environments GET /api/environments/{id} Get a Specific Environment
EnvironmentsApi list_environments GET /api/environments List All Environments
EnvironmentsApi update_environments PUT /api/environments/{id} Update Environment
EnvironmentsApi update_environments_active PUT /api/environments/{id}/toggle-active Toggle Active State of Environment
GroupsApi add_groups POST /api/groups Creates a Group
GroupsApi get_groups GET /api/groups/{id} Retrieves a Specific Group
GroupsApi list_groups GET /api/groups Retrieves all Groups
GroupsApi remove_groups DELETE /api/groups/{id} Deletes a Group
GroupsApi update_groups PUT /api/groups/{id} Updates a Group
GroupsApi update_groups_zones PUT /api/groups/{id}/update-zones Updates a Group's Zones
GuidanceApi execute_guidances PUT /api/guidance/{id}/execute Executes a Specific Guidance Recommendation
GuidanceApi get_guidance_stats GET /api/guidance/stats Retrieves Guidance Stats
GuidanceApi get_guidance_types GET /api/guidance/types Retrieves Guidance Types
GuidanceApi get_guidances GET /api/guidance/{id} Retrieves a Specific Guidance Recommendation
GuidanceApi ignore_guidances PUT /api/guidance/{id}/ignore Ignores a Specific Guidance Recommendation
GuidanceApi list_guidances GET /api/guidance Retrieves all Guidance Recommendations
GuidanceSettingsApi get_guidance_settings GET /api/guidance-settings Get Guidance Settings
GuidanceSettingsApi update_guidance_settings PUT /api/guidance-settings Update Guidance Settings
HealthApi acknowledge_health_alarm PUT /api/health/alarms/{id}/acknowledge Acknowledge a Health Alarm
HealthApi acknowledge_health_alarms PUT /api/health/alarms/acknowledge Acknowledge Many Health Alarms
HealthApi export_health_logs GET /api/health/logs/export Export Appliance Health Logs
HealthApi get_health_alarms GET /api/health/alarms/{id} Retrieves a Specific Appliance Health Alarm
HealthApi list_health GET /api/health Retrieves Appliance Health
HealthApi list_health_alarms GET /api/health/alarms Retrieves Appliance Health Alarms
HealthApi list_health_logs GET /api/health/logs Retrieves Appliance Health Logs
HistoryApi cancel_process POST /api/processes/{id}/cancel Cancel a Specific Process
HistoryApi get_history GET /api/processes/{id} Retrieves a Specific Process
HistoryApi list_history GET /api/processes Retrieves Process History
HistoryApi retry_process POST /api/processes/{id}/retry Retry a Specific Process
HostsApi add_baremetal_host POST /api/servers Add a Baremetal Host
HostsApi assign_device PUT /api/servers/{id}/devices/{deviceId}/assign Assign a Host Device
HostsApi attach_device PUT /api/servers/{id}/devices/{deviceId}/attach Attach a Host Device
HostsApi detach_device PUT /api/servers/{id}/devices/{deviceId}/detach Detach a Host Device
HostsApi enable_maintenance_mode PUT /api/servers/{id}/maintenance Enable Maintenance Mode
HostsApi get_host GET /api/servers/{id} Get a Specific Host
HostsApi get_host_snpshots GET /api/servers/{id}/snapshots Get list of snapshots for a Host
HostsApi get_host_type GET /api/server-types/{id} Get a Specific Host Type
HostsApi leave_maintenance_mode PUT /api/servers/{id}/leave-maintenance Leave Maintenance Mode
HostsApi list_host_devices GET /api/servers/{id}/devices Get list of devices for a Host
HostsApi list_host_types GET /api/server-types Host Types
HostsApi list_hosts GET /api/servers Get All Hosts
HostsApi list_server_service_plans GET /api/servers/service-plans Get Available Service Plans for a Host
HostsApi manage_host_placement PUT /api/servers/{id}/placement Manage Host Placement
HostsApi remove_host DELETE /api/servers/{id} Delete a Host
HostsApi restart_host PUT /api/servers/{id}/restart Restart a Host
HostsApi snapshot_host PUT /api/servers/{id}/snapshot Snapshot a Host
HostsApi start_host PUT /api/servers/{id}/start Start a Host
HostsApi stop_host PUT /api/servers/{id}/stop Stop a Host
HostsApi update_host PUT /api/servers/{id} Updating a Host
HostsApi update_host_assign_tenant PUT /api/servers/{id}/assign-account Assign To Tenant
HostsApi update_host_cloud PUT /api/servers/change-cloud Change Server Cloud
HostsApi update_host_execute_workflow PUT /api/servers/{id}/workflow Run Workflow on a Host
HostsApi update_host_install_agent PUT /api/servers/{id}/install-agent Install Agent
HostsApi update_host_managed PUT /api/servers/{id}/make-managed Convert To Managed
HostsApi update_host_resize PUT /api/servers/{id}/resize Resize a Host
HostsApi update_host_upgrade_agent PUT /api/servers/{id}/upgrade Upgrade Agent
HostsApi update_server_network_interface PUT /api/servers/{id}/networkInterfaces/{networkInterfaceId} Updating a label for a Server's Network
IdentitySourcesApi add_identity_sources POST /api/user-sources Creates an Identity Source
IdentitySourcesApi get_identity_sources GET /api/user-sources/{id} Retrieves a Specific Identity Source
IdentitySourcesApi list_identity_sources GET /api/user-sources Retrieves all Identity Sources
IdentitySourcesApi remove_identity_sources DELETE /api/user-sources/{id} Deletes an Identity Source
IdentitySourcesApi update_identity_source_subdomains PUT /api/user-sources/{id}/subdomain Updates an Identity Source Subdomain
IdentitySourcesApi update_identity_sources PUT /api/user-sources/{id} Updates an Identity Source
ImageBuildsApi add_boot_script POST /api/boot-scripts Create a Boot Script
ImageBuildsApi add_image_build POST /api/image-builds Create an Image Build
ImageBuildsApi add_preseed_script POST /api/preseed-scripts Create a Preseed Script
ImageBuildsApi delete_boot_script DELETE /api/boot-scripts/{id} Delete a Boot Script
ImageBuildsApi delete_image_build DELETE /api/image-builds/{id} Delete an Image Build
ImageBuildsApi delete_preseed_script DELETE /api/preseed-scripts/{id} Delete a Preseed Script
ImageBuildsApi execute_image_build POST /api/image-builds/{id}/run Run an Image Build
ImageBuildsApi get_boot_script GET /api/boot-scripts/{id} Get a Specific Boot Script
ImageBuildsApi get_image_build GET /api/image-builds/{id} Get a Specific Image Build
ImageBuildsApi get_image_build_executions GET /api/image-builds/{id}/list-executions List Image Build Executions
ImageBuildsApi get_preseed_script GET /api/preseed-scripts/{id} Get a Specific Preseed Script
ImageBuildsApi list_boot_scripts GET /api/boot-scripts Boot Scripts
ImageBuildsApi list_image_builds GET /api/image-builds Get All Image Builds
ImageBuildsApi list_preseed_scripts GET /api/preseed-scripts Preseed Scripts
ImageBuildsApi update_boot_script PUT /api/boot-scripts/{id} Update a Boot Script
ImageBuildsApi update_image_build PUT /api/image-builds/{id} Update an Image Build
ImageBuildsApi update_preseed_script PUT /api/preseed-scripts/{id} Update a Preseed Script
IncidentsApi add_incident POST /api/monitoring/incidents Create a New Incident
IncidentsApi delete_incidents DELETE /api/monitoring/incidents/{id} Close a Specific Incident
IncidentsApi get_incidents GET /api/monitoring/incidents/{id} Get a Specific Incident
IncidentsApi list_incidents GET /api/monitoring/incidents List All Incidents
IncidentsApi update_incidents PUT /api/monitoring/incidents/{id} Update Incident
IncidentsApi update_incidents_reopen GET /api/monitoring/incidents/{id}/reopen Reopen a Specific Incident
IncidentsApi update_mute_all_incidents PUT /api/monitoring/incidents/mute-all Mute All Incidents
IncidentsApi update_mute_incidents PUT /api/monitoring/incidents/{id}/mute Mute Incident
InstancesApi add_instance POST /api/instances Create an Instance
InstancesApi backup_instance PUT /api/instances/{id}/backup Backup an instance
InstancesApi backups_instance GET /api/instances/{id}/backups Get list of backups for an Instance
InstancesApi cancel_expiration_instance PUT /api/instances/{id}/cancel-expiration Cancel Expiration of an Instance
InstancesApi cancel_removal_instance PUT /api/instances/{id}/cancel-removal Cancel Removal of an Instance
InstancesApi cancel_shutdown_instance PUT /api/instances/{id}/cancel-shutdown Cancel Shutdown of an Instance
InstancesApi clone_image_instance PUT /api/instances/{id}/clone-image Clone to Image
InstancesApi clone_instance PUT /api/instances/{id}/clone Clone an Instance
InstancesApi create_instance_schedule POST /api/instances/{id}/schedules Create a new Instance Schedule
InstancesApi delete_all_snapshots_instance DELETE /api/instances/{id}/delete-all-snapshots Delete All Snapshots of Instance
InstancesApi delete_all_snapshots_instance_container DELETE /api/instances/{id}/delete-container-snapshots/{containerId} Delete All Snapshots of Instance Container
InstancesApi delete_instance DELETE /api/instances/{id} Delete an instance
InstancesApi delete_instance_schedule DELETE /api/instances/{id}/schedules/{scheduleId} Deletes an Instance Schedule
InstancesApi delete_snapshot_instance DELETE /api/snapshots/{id} Delete Snapshot of Instance
InstancesApi eject_instance PUT /api/instances/{id}/eject Eject an instance
InstancesApi execute_instance_action PUT /api/instances/{id}/action Execute Instance Action
InstancesApi extend_expiration_instance PUT /api/instances/{id}/extend-expiration Extend Expiration of an Instance
InstancesApi extend_shutdown_instance PUT /api/instances/{id}/extend-shutdown Extend Shutdown of an Instance
InstancesApi get_env_variables GET /api/instances/{id}/envs Get Env Variables
InstancesApi get_instance GET /api/instances/{id} Retrieves a Specific Instance
InstancesApi get_instance_actions GET /api/instances/{id}/actions List Instance Actions
InstancesApi get_instance_containers GET /api/instances/{id}/containers Get Container Details
InstancesApi get_instance_history GET /api/instances/{id}/history Get Instance History
InstancesApi get_instance_schedule GET /api/instances/{id}/schedules/{scheduleId} Get a Specific Instance Schedule
InstancesApi get_instance_schedules GET /api/instances/{id}/schedules Get all Instance Schedules
InstancesApi get_instance_stats GET /api/instances/stats Get Statistics for all Instances
InstancesApi get_instance_threshold GET /api/instances/{id}/threshold Get an Instance Scale Threshold
InstancesApi get_instance_type_provisioning GET /api/instance-types/{id} Get Specific Instance Type for Provisioning
InstancesApi get_prepare_apply_instance GET /api/instances/{id}/prepare-apply Prepare To Apply an Instance
InstancesApi get_snapshot_instance GET /api/snapshots/{id} Get a Specific Snapshot
InstancesApi get_state_instance GET /api/instances/{id}/state Get State of an Instance
InstancesApi get_validate_apply_instance POST /api/instances/{id}/validate-apply Validate Apply State for an Instance
InstancesApi import_snapshot_instance PUT /api/instances/{id}/import-snapshot Import Snapshot of an Instance
InstancesApi linked_clone_snapshot_instance PUT /api/instances/{id}/linked-clone/{snapshotId} Create Linked Clone of Instance Snapshot
InstancesApi list_instance_service_plans GET /api/instances/service-plans Get Available Service Plans for an Instance
InstancesApi list_instance_types_provisioning GET /api/instance-types Get All Instance Types for Provisioning
InstancesApi list_instances GET /api/instances Get All Instances
InstancesApi list_security_groups_instance GET /api/instances/{id}/security-groups Get Security Groups for an Instance
InstancesApi lock_instance PUT /api/instances/{id}/lock Lock an Instance
InstancesApi refresh_state_instance POST /api/instances/{id}/refresh Refresh State of an Instance
InstancesApi remove_instances_from_control DELETE /api/instances/remove-from-control Remove From Control
InstancesApi resize_instance PUT /api/instances/{id}/resize Resize an Instance
InstancesApi restart_instance PUT /api/instances/{id}/restart Restart an instance
InstancesApi revert_snapshot_instance PUT /api/instances/{id}/revert-snapshot/{snapshotId} Revert Instance to Snapshot
InstancesApi run_workflow_instance PUT /api/instances/{id}/workflow Run Workflow on an Instance
InstancesApi set_apply_instance POST /api/instances/{id}/apply Apply State of an Instance
InstancesApi set_instance_security_groups POST /api/instances/{id}/security-groups Set Security Groups for an Instance
InstancesApi snapshot_instance PUT /api/instances/{id}/snapshot Snapshot an Instance
InstancesApi snapshots_instance GET /api/instances/{id}/snapshots Get list of snapshots for an Instance
InstancesApi start_instance PUT /api/instances/{id}/start Start an instance
InstancesApi stop_instance PUT /api/instances/{id}/stop Stop an instance
InstancesApi suspend_instance PUT /api/instances/{id}/suspend Suspend an instance
InstancesApi unlock_instance PUT /api/instances/{id}/unlock Unlock an Instance
InstancesApi update_instance PUT /api/instances/{id} Updating an Instance
InstancesApi update_instance_network_interface PUT /api/instances/{id}/networkInterfaces/{networkInterfaceId} Updating a label for an Instance's Network
InstancesApi update_instance_schedule PUT /api/instances/{id}/schedules/{scheduleId} Updating an Instance Schedule
InstancesApi update_instance_threshold PUT /api/instances/{id}/threshold Updates an Instance Scale Threshold
IntegrationsApi add_integration_snow_objects POST /api/integrations/{id}/objects Creates an Exposed ServiceNow Catalog Item
IntegrationsApi add_integrations POST /api/integrations Creates an Integration
IntegrationsApi get_integration_inventory GET /api/integrations/{id}/inventory/{inventoryId} Get a Specific Integration Inventory
IntegrationsApi get_integration_objects GET /api/integrations/{id}/objects/{objectId} Get a Specific ServiceNow Integration Object
IntegrationsApi get_integration_type_option_types GET /api/integration-types/{id}/option-types Retrieves a Option Types for a Specific Integration Type
IntegrationsApi get_integration_types GET /api/integration-types/{id} Retrieves a Specific Integration Type
IntegrationsApi get_integrations GET /api/integrations/{id} Retrieves a Specific Integration
IntegrationsApi list_integration_inventory GET /api/integrations/{id}/inventory Get All Integration Inventory
IntegrationsApi list_integration_objects GET /api/integrations/{id}/objects Get ServiceNow Integration Objects
IntegrationsApi list_integration_types GET /api/integration-types Retrieves all Integration Types
IntegrationsApi list_integrations GET /api/integrations Retrieves all Integrations
IntegrationsApi refresh_integrations POST /api/integrations/{id}/refresh Refresh an Integration
IntegrationsApi remove_integration_objects DELETE /api/integrations/{id}/objects/{objectId} Deletes a ServiceNow Integration object
IntegrationsApi remove_integrations DELETE /api/integrations/{id} Deletes an Integration
IntegrationsApi update_integration_inventory PUT /api/integrations/{id}/inventory/{inventoryId} Updating an Integration Inventory
IntegrationsApi update_integrations PUT /api/integrations/{id} Updates an Integration
InvoicesApi get_invoice_line_items GET /api/invoice-line-items/{id} Get a Specific Invoice Line Item
InvoicesApi get_invoices GET /api/invoices/{id} Get a Specific Invoice
InvoicesApi list_invoice_line_items GET /api/invoice-line-items List All Invoice Line Items
InvoicesApi list_invoices GET /api/invoices List All Invoices
InvoicesApi update_invoices PUT /api/invoices/{id} Update Invoice Tags
JobsApi add_jobs POST /api/jobs Creates a Job
JobsApi execute_jobs PUT /api/jobs/{id}/execute Executes a Specific Job
JobsApi get_job_execution_events GET /api/job-executions/{id}/events/{eventId} Retrieves a Specific Job Execution Event
JobsApi get_job_executions GET /api/job-executions/{id} Retrieves a Specific Job Execution
JobsApi get_jobs GET /api/jobs/{id} Retrieves a Specific Job
JobsApi list_job_executions GET /api/job-executions Retrieves all Job Executions
JobsApi list_jobs GET /api/jobs Retrieves all Jobs
JobsApi remove_jobs DELETE /api/jobs/{id} Deletes a Job
JobsApi update_jobs PUT /api/jobs/{id} Updates a Job
KeyPairsApi add_key_pairs POST /api/key-pairs Creates a Key Pair
KeyPairsApi generate_key_pairs POST /api/key-pairs/generate Generates a Key Pair
KeyPairsApi get_key_pairs GET /api/key-pairs/{id} Retrieves a Specific Key Pair
KeyPairsApi remove_key_pairs DELETE /api/key-pairs/{id} Deletes a Key Pair
LibraryApi add_file_template POST /api/library/container-templates Create a File Template
LibraryApi add_instance_type POST /api/library/instance-types Create an Instance Type
LibraryApi add_layout POST /api/library/instance-types/{instanceTypeId}/layouts Create a Layout
LibraryApi add_node_type POST /api/library/container-types Create a Node Type
LibraryApi add_option_form POST /api/library/option-type-forms Create an Option Form
LibraryApi add_option_list POST /api/library/option-type-lists Create an Option List
LibraryApi add_option_type POST /api/library/option-types Create an Input
LibraryApi add_os_type_image POST /api/library/operating-systems/os-types/create-image Create an OsTypeImage
LibraryApi add_os_types POST /api/library/operating-systems/os-types Create an OsType
LibraryApi add_script POST /api/library/container-scripts Create a Script
LibraryApi add_spec_template POST /api/library/spec-templates Create a Spec Template
LibraryApi add_virtual_image POST /api/virtual-images Create a Virtual Image
LibraryApi add_virtual_image_file POST /api/virtual-images/{virtualImageId}/upload Upload Virtual Image File
LibraryApi convert_image POST /api/virtual-images/{virtualImageId}/convert Convert Virtual Image File
LibraryApi delete_file_template DELETE /api/library/container-templates/{id} Delete a File Template
LibraryApi delete_instance_type DELETE /api/library/instance-types/{instanceTypeId} Delete an Instance Type
LibraryApi delete_layout DELETE /api/library/layouts/{id} Delete a Layout
LibraryApi delete_node_type DELETE /api/library/container-types/{id} Delete a Node Type
LibraryApi delete_option_form DELETE /api/library/option-type-forms/{id} Delete an Option Form
LibraryApi delete_option_list DELETE /api/library/option-type-lists/{id} Delete an Option List
LibraryApi delete_option_type DELETE /api/library/option-types/{id} Delete an Input
LibraryApi delete_os_type DELETE /api/library/operating-systems/os-types/{id} Delete an OsType
LibraryApi delete_os_type_image DELETE /api/library/operating-systems/os-types/images/{id} Delete an OsTypeImage
LibraryApi delete_script DELETE /api/library/container-scripts/{id} Delete a Script
LibraryApi delete_spec_template DELETE /api/library/spec-templates/{id} Delete a Spec Template
LibraryApi get_file_template GET /api/library/container-templates/{id} Get a Specific File Template
LibraryApi get_input GET /api/library/option-types/{id} Get A Specific Input
LibraryApi get_instance_type GET /api/library/instance-types/{instanceTypeId} Get a Specific Instance Type
LibraryApi get_layout GET /api/library/layouts/{id} Get a Specific Layout
LibraryApi get_node_type GET /api/library/container-types/{id} Get a Specific Node Type
LibraryApi get_option_form GET /api/library/option-type-forms/{id} Get a Specific Option Form
LibraryApi get_option_list GET /api/library/option-type-lists/{id} Get a Specific Option List
LibraryApi get_option_list_items GET /api/library/option-type-lists/{id}/items List Items for a Specific Option List
LibraryApi get_os_type GET /api/library/operating-systems/os-types/{id} Get an OsType
LibraryApi get_os_type_image GET /api/library/operating-systems/os-types/images/{id} Get an OsTypeImage
LibraryApi get_script GET /api/library/container-scripts/{id} Get a Specific Script
LibraryApi get_security_package_type GET /api/security-package-types/{id} Retrieves a Specific Security Package Type
LibraryApi get_spec_template GET /api/library/spec-templates/{id} Get a Specific Spec Template
LibraryApi get_virtual_image GET /api/virtual-images/{virtualImageId} Get a Specific Virtual Image
LibraryApi list_file_templates GET /api/library/container-templates Get All File Templates
LibraryApi list_inputs GET /api/library/option-types Get All Inputs
LibraryApi list_instance_types GET /api/library/instance-types Get All Instance Types
LibraryApi list_layouts GET /api/library/layouts Get All Layouts
LibraryApi list_layouts_for_instance_type GET /api/library/instance-types/{instanceTypeId}/layouts Get All Layouts For an Instance Type
LibraryApi list_node_types GET /api/library/container-types Get All Node Types
LibraryApi list_option_forms GET /api/library/option-type-forms Get All Option Forms
LibraryApi list_option_lists GET /api/library/option-type-lists Get All Option Lists
LibraryApi list_os_types GET /api/library/operating-systems/os-types Retrieves all OsTypes
LibraryApi list_scripts GET /api/library/container-scripts Get All Scripts
LibraryApi list_security_package_types GET /api/security-package-types Retrieves all Security Package Types
LibraryApi list_spec_templates GET /api/library/spec-templates Get All Spec Templates
LibraryApi list_virtual_image_locations GET /api/virtual-images/{virtualImageId}/locations Get a List of Virtual Image Locations
LibraryApi list_virtual_images GET /api/virtual-images Get List of Virtual Images
LibraryApi remove_security_scans DELETE /api/security-scans/{id} Deletes a Security Scan
LibraryApi remove_virtual_image DELETE /api/virtual-images/{virtualImageId} Delete a Virtual Image
LibraryApi remove_virtual_image_file DELETE /api/virtual-images/{virtualImageId}/files Remove Virtual Image File
LibraryApi remove_virtual_image_location DELETE /api/virtual-images/{virtualImageId}/locations/{id} Delete a Virtual Image Location
LibraryApi set_instance_type_featured PUT /api/library/instance-types/{instanceTypeId}/toggle-featured Toggle Featured For Instance Type
LibraryApi update_file_template PUT /api/library/container-templates/{id} Update a File Template
LibraryApi update_instance_type PUT /api/library/instance-types/{instanceTypeId} Update an Instance Type
LibraryApi update_instance_type_logo POST /api/library/instance-types/{instanceTypeId}/update-logo Update Logo For Instance Type
LibraryApi update_layout PUT /api/library/layouts/{id} Update a Layout
LibraryApi update_layout_permissions POST /api/library/layouts/{id}/permissions Update Layout Permissions
LibraryApi update_node_type PUT /api/library/container-types/{id} Update a Node Type
LibraryApi update_option_form PUT /api/library/option-type-forms/{id} Update an Option Form
LibraryApi update_option_list PUT /api/library/option-type-lists/{id} Update an Option List
LibraryApi update_option_type PUT /api/library/option-types/{id} Update an Input
LibraryApi update_os_type PUT /api/library/operating-systems/os-types/{id} Update an OsType
LibraryApi update_script PUT /api/library/container-scripts/{id} Update a Script
LibraryApi update_spec_template PUT /api/library/spec-templates/{id} Update a Spec Template
LibraryApi update_virtual_image PUT /api/virtual-images/{virtualImageId} Update a Virtual Image
LicenseApi get_license GET /api/license Get license
LicenseApi install_license POST /api/license Install license key
LicenseApi test_license POST /api/license/test Test license key
LicenseApi uninstall_license DELETE /api/license Uninstall license key
LoadBalancersApi create_load_balancer POST /api/load-balancers Create a Load Balancer
LoadBalancersApi create_load_balancer_monitor POST /api/load-balancers/{loadBalancerId}/monitors Create a Load Balancer Monitor
LoadBalancersApi create_load_balancer_pool POST /api/load-balancers/{loadBalancerId}/pools Create a Load Balancer Pool
LoadBalancersApi create_load_balancer_pool_node POST /api/load-balancer-pools/{loadBalancerPoolId}/nodes Create a Load Balancer Pool Node
LoadBalancersApi create_load_balancer_profile POST /api/load-balancers/{loadBalancerId}/profiles Create a Load Balancer Profile
LoadBalancersApi create_load_balancer_virtual_server POST /api/load-balancers/{loadBalancerId}/virtual-servers Create a Load Balancer Virtual Server
LoadBalancersApi delete_load_balancer DELETE /api/load-balancers/{loadBalancerId} Delete a Load Balancer
LoadBalancersApi delete_load_balancer_monitor DELETE /api/load-balancers/{loadBalancerId}/monitors/{id} Delete a Load Balancer Monitor
LoadBalancersApi delete_load_balancer_pool DELETE /api/load-balancers/{loadBalancerId}/pools/{id} Delete a Load Balancer Pool
LoadBalancersApi delete_load_balancer_pool_node DELETE /api/load-balancer-pools/{loadBalancerPoolId}/nodes/{id} Delete a Load Balancer Pool Node
LoadBalancersApi delete_load_balancer_profile DELETE /api/load-balancers/{loadBalancerId}/profiles/{id} Delete a Load Balancer Profile
LoadBalancersApi delete_load_balancer_virtual_server DELETE /api/load-balancers/{loadBalancerId}/virtual-servers/{id} Delete a Load Balancer Virtual Server
LoadBalancersApi get_load_balancer GET /api/load-balancers/{loadBalancerId} Get a Specific Load Balancer
LoadBalancersApi get_load_balancer_monitor GET /api/load-balancers/{loadBalancerId}/monitors/{id} Get a Specific Load Balancer Monitor
LoadBalancersApi get_load_balancer_pool GET /api/load-balancers/{loadBalancerId}/pools/{id} Get a Specific Load Balancer Pool
LoadBalancersApi get_load_balancer_pool_node GET /api/load-balancer-pools/{loadBalancerPoolId}/nodes/{id} Get a Specific Load Balancer Pool Node
LoadBalancersApi get_load_balancer_profile GET /api/load-balancers/{loadBalancerId}/profiles/{id} Get a Specific Load Balancer Profile
LoadBalancersApi get_load_balancer_type GET /api/load-balancer-types/{id} Get a Specific Load Balancer Type
LoadBalancersApi get_load_balancer_virtual_server GET /api/load-balancers/{loadBalancerId}/virtual-servers/{id} Get a Specific Load Balancer Virtual Server
LoadBalancersApi list_load_balancer_monitors GET /api/load-balancers/{loadBalancerId}/monitors Get All Load Balancer Monitors For Load Balancer
LoadBalancersApi list_load_balancer_pool_nodes GET /api/load-balancer-pools/{loadBalancerPoolId}/nodes Get All Load Balancer Pool Nodes For Load Balancer Pool
LoadBalancersApi list_load_balancer_pools GET /api/load-balancers/{loadBalancerId}/pools Get All Load Balancer Pools For Load Balancer
LoadBalancersApi list_load_balancer_profiles GET /api/load-balancers/{loadBalancerId}/profiles Get All Load Balancer Profiles For Load Balancer
LoadBalancersApi list_load_balancer_types GET /api/load-balancer-types Get All Load Balancer Types
LoadBalancersApi list_load_balancer_virtual_servers GET /api/load-balancers/{loadBalancerId}/virtual-servers Get All Load Balancer Virtual Servers For Load Balancer
LoadBalancersApi list_load_balancers GET /api/load-balancers Get All Load Balancers
LoadBalancersApi refresh_load_balancer PUT /api/load-balancers/{loadBalancerId}/refresh Refresh a Load Balancer
LoadBalancersApi update_load_balancer PUT /api/load-balancers/{loadBalancerId} Update a Load Balancer
LoadBalancersApi update_load_balancer_monitor PUT /api/load-balancers/{loadBalancerId}/monitors/{id} Update a Load Balancer Monitor
LoadBalancersApi update_load_balancer_pool PUT /api/load-balancers/{loadBalancerId}/pools/{id} Update a Load Balancer Pool
LoadBalancersApi update_load_balancer_pool_node PUT /api/load-balancer-pools/{loadBalancerPoolId}/nodes/{id} Update a Load Balancer Pool Node
LoadBalancersApi update_load_balancer_profile PUT /api/load-balancers/{loadBalancerId}/profiles/{id} Update a Load Balancer Profile
LoadBalancersApi update_load_balancer_virtual_server PUT /api/load-balancers/{loadBalancerId}/virtual-servers/{id} Update a Load Balancer Virtual Server
LogSettingsApi add_log_settings_syslog_rules POST /api/log-settings/syslog-rules Create a New Syslog Rule
LogSettingsApi delete_log_settings_syslog_rules DELETE /api/log-settings/syslog-rules/{id} Delete a Specific Syslog Rule
LogSettingsApi list_log_settings GET /api/log-settings List All Log Settings
LogSettingsApi update_log_settings PUT /api/log-settings Update Log Settings
LogsApi list_logs GET /api/logs Retrieves Logs
MonitoringSettingsApi get_monitoring_settings GET /api/monitoring-settings Get Monitoring Settings
MonitoringSettingsApi update_monitoring_settings PUT /api/monitoring-settings Update Monitoring Settings
NetworksApi allocate_network_floating_ip POST /api/networks/floating-ips Allocate a Floating IP
NetworksApi create_network_dhcp_relay POST /api/networks/servers/{serverId}/dhcp-relays Create a Network DHCP Relay
NetworksApi create_network_dhcp_server POST /api/networks/servers/{serverId}/dhcp-servers Create a Network DHCP Server
NetworksApi create_network_domain POST /api/networks/domains Create a Network Domain
NetworksApi create_network_firewall_rule POST /api/networks/servers/{serverId}/firewall-rules Create a Network Firewall Rule
NetworksApi create_network_firewall_rule_group POST /api/networks/servers/{serverId}/firewall-rule-groups Create a Network Firewall Rule Group
NetworksApi create_network_group POST /api/networks/groups Create a Network Group
NetworksApi create_network_pool POST /api/networks/pools Create a Network Pool
NetworksApi create_network_pool_ip POST /api/networks/pools/{id}/ips Create a Network Pool IP Address
NetworksApi create_network_pool_server POST /api/networks/pool-servers Create a Network Pool Server
NetworksApi create_network_proxy POST /api/networks/proxies Create a Network Proxy
NetworksApi create_network_router POST /api/networks/routers Create a Network Router
NetworksApi create_network_router_bgp_neighbor POST /api/networks/routers/{routerId}/bgp-neighbors Create a Network Router BGP Neighbor
NetworksApi create_network_router_firewall_rule POST /api/networks/routers/{routerId}/firewall-rules Create a Network Router Firewall Rule
NetworksApi create_network_router_firewall_rule_group POST /api/networks/routers/{routerId}/firewall-rule-groups Create a Network Router Firewall Rule Group
NetworksApi create_network_router_nat POST /api/networks/routers/{routerId}/nats Create a Network Router NAT
NetworksApi create_network_router_route POST /api/networks/routers/{routerId}/routes Create a Network Router Route
NetworksApi create_network_server POST /api/networks/servers Create a Network Server
NetworksApi create_network_server_group POST /api/networks/servers/{serverId}/groups Create a Network Server Group
NetworksApi create_network_transport_zone POST /api/networks/servers/{serverId}/scopes Create a Network Transport Zone
NetworksApi create_networks POST /api/networks Create a Network
NetworksApi create_static_route PUT /api/networks/{id}/routes Create a Network Static Route
NetworksApi create_subnet POST /api/subnets Create a Subnet
NetworksApi delete_network DELETE /api/networks/{id} Delete a Network
NetworksApi delete_network_dhcp_relay DELETE /api/networks/servers/{serverId}/dhcp-relays/{id} Delete a Network DHCP Relay
NetworksApi delete_network_dhcp_server DELETE /api/networks/servers/{serverId}/dhcp-servers/{id} Delete a Network DHCP Server
NetworksApi delete_network_domain DELETE /api/networks/domains/{id} Delete a Network Domain
NetworksApi delete_network_firewall_rule DELETE /api/networks/servers/{serverId}/firewall-rules/{id} Delete a Network Firewall Rule
NetworksApi delete_network_firewall_rule_group DELETE /api/networks/servers/{serverId}/firewall-rule-groups/{id} Delete a Network firewall rule group
NetworksApi delete_network_group DELETE /api/networks/groups/{id} Delete a Network Group
NetworksApi delete_network_pool DELETE /api/networks/pools/{id} Delete a Network Pool
NetworksApi delete_network_pool_ip DELETE /api/networks/pools/{networkPoolId}/ips/{id} Delete a host record associated with an IP Address for a Specific Network Pool
NetworksApi delete_network_pool_server DELETE /api/networks/pool-servers/{id} Delete a Network Pool Server
NetworksApi delete_network_proxy DELETE /api/networks/proxies/{id} Delete a Network Proxy
NetworksApi delete_network_router DELETE /api/networks/routers/{id} Delete a Network Router
NetworksApi delete_network_router_bgp_neighbor DELETE /api/networks/routers/{routerId}/bgp-neighbors/{id} Delete a Network Router BGP Neighbor
NetworksApi delete_network_router_firewall_rule DELETE /api/networks/routers/{routerId}/firewall-rules/{id} Delete a Network Router Firewall Rule
NetworksApi delete_network_router_firewall_rule_group DELETE /api/networks/routers/{routerId}/firewall-rule-groups/{id} Delete a Network Router firewall rule group
NetworksApi delete_network_router_nat DELETE /api/networks/routers/{routerId}/nats/{id} Delete a Network Router NAT
NetworksApi delete_network_router_route DELETE /api/networks/routers/{routerId}/routes/{id} Delete a Network Router Route
NetworksApi delete_network_server DELETE /api/networks/servers/{id} Delete a Network Server
NetworksApi delete_network_server_group DELETE /api/networks/servers/{serverId}/groups/{id} Delete a Network Server Group
NetworksApi delete_network_transport_zone DELETE /api/networks/servers/{serverId}/scopes/{id} Delete a Network Transport Zone
NetworksApi delete_static_route DELETE /api/networks/{id}/routes/{routeId} Delete a Network Static Route
NetworksApi delete_subnet DELETE /api/subnets/{id} Delete a Subnet
NetworksApi get_all_network_floating_ips GET /api/networks/floating-ips Get All Floating IPs
NetworksApi get_network GET /api/networks/{id} Get a Specific Network
NetworksApi get_network_dhcp_relay GET /api/networks/servers/{serverId}/dhcp-relays/{id} Get a Specific Network DHCP Relay
NetworksApi get_network_dhcp_relays GET /api/networks/servers/{serverId}/dhcp-relays Get all Network DHCP Relays for Network Relay
NetworksApi get_network_dhcp_server GET /api/networks/servers/{serverId}/dhcp-servers/{id} Get a Specific Network DHCP Server
NetworksApi get_network_dhcp_servers GET /api/networks/servers/{serverId}/dhcp-servers Get all Network DHCP Servers for Network Server
NetworksApi get_network_domain GET /api/networks/domains/{id} Get a Specific Network Domain
NetworksApi get_network_domains GET /api/networks/domains Get all Network Domains
NetworksApi get_network_edge_cluster GET /api/networks/servers/{serverId}/edge-clusters/{id} Get a Specific Network Edge Cluster
NetworksApi get_network_edge_clusters GET /api/networks/servers/{serverId}/edge-clusters Get all Network Edge Clusters for Network Server
NetworksApi get_network_firewall_rule GET /api/networks/servers/{serverId}/firewall-rules/{id} Get a Specific Network Firewall Rule
NetworksApi get_network_firewall_rule_group GET /api/networks/servers/{serverId}/firewall-rule-groups/{id} Get a Specific Network Firewall Rule Group
NetworksApi get_network_firewall_rule_groups GET /api/networks/servers/{serverId}/firewall-rule-groups Get all Network Firewall Rule Groups for Network Server
NetworksApi get_network_firewall_rules GET /api/networks/servers/{serverId}/firewall-rules Get all Network Firewall Rules for Network Server
NetworksApi get_network_floating_ip GET /api/networks/floating-ips/{id} Get a Specific Floating IP
NetworksApi get_network_group GET /api/networks/groups/{id} Get a Specific Network Group
NetworksApi get_network_groups GET /api/networks/groups Get all Network Groups
NetworksApi get_network_pool GET /api/networks/pools/{id} Get a Specific Network Pool
NetworksApi get_network_pool_ip GET /api/networks/pools/{networkPoolId}/ips/{id} Get a Specific IP Address for a Specific Network Pool
NetworksApi get_network_pool_ips GET /api/networks/pools/{id}/ips Get all IP Addresses for a Specific Network Pool
NetworksApi get_network_pool_server GET /api/networks/pool-servers/{id} Get a Specific Network Pool Server
NetworksApi get_network_pool_server_type GET /api/networks/pool-server-types/{id} Retrieves a Specific Network Pool Server Type
NetworksApi get_network_pools GET /api/networks/pools Get all Network Pools
NetworksApi get_network_proxies GET /api/networks/proxies Get all Network Proxies
NetworksApi get_network_proxy GET /api/networks/proxies/{id} Get a Specific Network Proxy
NetworksApi get_network_router GET /api/networks/routers/{id} Get a Specific Network Router
NetworksApi get_network_router_bgp_neighbor GET /api/networks/routers/{routerId}/bgp-neighbors/{id} Get a Network Router BGP Neighbor
NetworksApi get_network_router_firewall_rule GET /api/networks/routers/{routerId}/firewall-rules/{id} Get a Firewall Rule for Network Router
NetworksApi get_network_router_firewall_rule_group GET /api/networks/routers/{routerId}/firewall-rule-groups/{id} Get a Firewall Rule Group for Network Router
NetworksApi get_network_router_firewall_rule_groups GET /api/networks/routers/{routerId}/firewall-rule-groups Get all Network Firewall Rule Groups for Network Router
NetworksApi get_network_router_nat GET /api/networks/routers/{routerId}/nats/{id} Get a Network Router NAT
NetworksApi get_network_router_route GET /api/networks/routers/{routerId}/routes/{id} Get a Route for Network Router
NetworksApi get_network_router_type GET /api/network-router-types/{id} Get a Specific Network Router Type
NetworksApi get_network_routers GET /api/networks/routers Get all Network Routers
NetworksApi get_network_routers_bgp_neighbors GET /api/networks/routers/{routerId}/bgp-neighbors Get all BGP Neighbors for Network Router
NetworksApi get_network_routers_firewall_rules GET /api/networks/routers/{routerId}/firewall-rules Get all Firewall Rules for Network Router
NetworksApi get_network_routers_nats GET /api/networks/routers/{routerId}/nats Get all Network Router NATs for Network Router
NetworksApi get_network_routers_routes GET /api/networks/routers/{routerId}/routes Get all Routes for Network Router
NetworksApi get_network_server GET /api/networks/servers/{id} Get a Specific Network Server
NetworksApi get_network_server_group GET /api/networks/servers/{serverId}/groups/{id} Get a specific Network Server Group
NetworksApi get_network_subnets GET /api/networks/{id}/subnets Get Subnets for a Network
NetworksApi get_network_transport_zone GET /api/networks/servers/{serverId}/scopes/{id} Get a Specific Network Transport Zone
NetworksApi get_network_transport_zones GET /api/networks/servers/{serverId}/scopes Get all Network Transport Zones for Network Server
NetworksApi get_network_type GET /api/network-types/{id} Get a Specific Network Type
NetworksApi get_static_route GET /api/networks/{id}/routes/{routeId} Get a Static Route for a Network
NetworksApi get_static_routes GET /api/networks/{id}/routes Get all Static Routes for a Network
NetworksApi get_subnet GET /api/subnets/{id} Get a Specific Subnet
NetworksApi list_network_pool_server_types GET /api/networks/pool-server-types Get All Network Pool Server Types
NetworksApi list_network_pool_servers GET /api/networks/pool-servers Get All Network Pool Servers
NetworksApi list_network_router_types GET /api/network-router-types Get all Network Router Types
NetworksApi list_network_server_groups GET /api/networks/servers/{serverId}/groups Get all Network Server Groups for Network Server
NetworksApi list_network_servers GET /api/networks/servers Get All Network Servers
NetworksApi list_network_services GET /api/networks/services Get All Network Services
NetworksApi list_network_types GET /api/network-types Network Types
NetworksApi list_networks GET /api/networks Get All Networks
NetworksApi list_subnet_types GET /api/subnet-types Get All Subnet Types
NetworksApi list_subnets GET /api/subnets Get All Subnets
NetworksApi refresh_network_server POST /api/networks/servers/{id}/refresh Refresh a Network Server/Integration
NetworksApi release_network_floating_ip PUT /api/networks/floating-ips/{id}/release Release a Floating IP
NetworksApi update_network PUT /api/networks/{id} Update a Network
NetworksApi update_network_dhcp_relay PUT /api/networks/servers/{serverId}/dhcp-relays/{id} Update a Network DHCP Relay
NetworksApi update_network_dhcp_server PUT /api/networks/servers/{serverId}/dhcp-servers/{id} Update a Network DHCP Server
NetworksApi update_network_domain PUT /api/networks/domains/{id} Update a Network Domain
NetworksApi update_network_edge_cluster PUT /api/networks/servers/{serverId}/edge-clusters/{id} Update a Network Edge Cluster
NetworksApi update_network_firewall_rule PUT /api/networks/servers/{serverId}/firewall-rules/{id} Update a Network Firewall Rule
NetworksApi update_network_firewall_rule_group PUT /api/networks/servers/{serverId}/firewall-rule-groups/{id} Update a Network Firewall Rule Group
NetworksApi update_network_group PUT /api/networks/groups/{id} Update a Network Group
NetworksApi update_network_pool PUT /api/networks/pools/{id} Update a Network Pool
NetworksApi update_network_pool_server PUT /api/networks/pool-servers/{id} Update a Network Pool Server
NetworksApi update_network_proxy PUT /api/networks/proxies/{id} Update a Network Proxy
NetworksApi update_network_router PUT /api/networks/routers/{id} Update a Network Router
NetworksApi update_network_router_bgp_neighbor PUT /api/networks/routers/{routerId}/bgp-neighbors/{id} Update Network Router BGP Neighbor
NetworksApi update_network_router_firewall_rule PUT /api/networks/routers/{routerId}/firewall-rules/{id} Update a Network Router Firewall Rule
NetworksApi update_network_router_firewall_rule_group PUT /api/networks/routers/{routerId}/firewall-rule-groups/{id} Update a Network Router Firewall Rule Group
NetworksApi update_network_router_nat PUT /api/networks/routers/{routerId}/nats/{id} Update Network Router NAT
NetworksApi update_network_router_permissions PUT /api/networks/routers/{routerId}/permissions Update Network Router Permissions
NetworksApi update_network_server PUT /api/networks/servers/{id} Update a Network Server
NetworksApi update_network_server_group PUT /api/networks/servers/{serverId}/groups/{id} Update a Network Server Group
NetworksApi update_network_transport_zone PUT /api/networks/servers/{serverId}/scopes/{id} Update a Network Transport Zone
NetworksApi update_static_route PUT /api/networks/{id}/routes/{routeId} Update a Network Static Route
NetworksApi update_subnet PUT /api/subnets/{id} Update a Subnet
OptionsApi get_option_source_data GET /api/options/{optionSource} Get Option Source Data
OptionsApi list_code_repositories GET /api/options/codeRepositories Retrieves a list of Code/GIT Repositories
OptionsApi list_option_ansible_tower_inventory_options GET /api/options/ansibleTowerInventory Retrieves available Ansible Tower Inventories
OptionsApi list_option_ansible_tower_job_template_options GET /api/options/ansibleTowerJobTemplate Retrieves available Ansible Tower Job Templates
OptionsApi list_option_chef_server_options GET /api/options/chefServer Retrieves available Chef Servers
OptionsApi list_option_network_options GET /api/options/zoneNetworkOptions Retrieves network options by zone/cloud
OptionsApi list_option_service_now_workflows_options GET /api/options/serviceNowWorkflows Retrieves available ServiceNow workflows
OptionsApi list_option_values GET /api/options/list Retrieves input option values
OptionsApi list_option_zone_types_options GET /api/options/zoneTypes Retrieves enabled zones/clouds
PingApi ping GET /api/ping Basic information about current Morpheus Installation
PluginsApi get_plugin GET /api/plugins/{id} Retrieves a Specific Plugin
PluginsApi list_plugins GET /api/plugins Retrieves all Plugins
PluginsApi remove_plugin DELETE /api/plugins/{id} Deletes a Plugin
PluginsApi update_plugin PUT /api/plugins/{id} Updates a Plugin
PluginsApi upload_plugin POST /api/plugins/upload Upload Plugin
PoliciesApi add_policies POST /api/policies Creates a Policy
PoliciesApi add_policies_cloud POST /api/zones/{cloudId}/policies Creates a Policy for a Cloud
PoliciesApi add_policies_group POST /api/groups/{groupId}/policies Creates a Policy for a Group
PoliciesApi get_policies GET /api/policies/{id} Retrieves a Specific Policy
PoliciesApi get_policies_cloud GET /api/zones/{cloudId}/policies/{id} Retrieves a Specific Policy for a Cloud
PoliciesApi get_policies_group GET /api/groups/{groupId}/policies/{id} Retrieves a Specific Policy for a Group
PoliciesApi list_policies GET /api/policies Retrieves all Policies
PoliciesApi list_policies_cloud GET /api/zones/{cloudId}/policies Retrieves Policies for a Cloud
PoliciesApi list_policies_group GET /api/groups/{groupId}/policies Retrieves Policies for a Group
PoliciesApi list_policy_types GET /api/policy-types Retrieves all Policy Types
PoliciesApi remove_policies DELETE /api/policies/{id} Deletes a Policy
PoliciesApi remove_policies_cloud DELETE /api/zones/{cloudId}/policies/{id} Deletes a Policy for a Cloud
PoliciesApi remove_policies_group DELETE /api/groups/{groupId}/policies/{id} Deletes a Policy for a Group
PoliciesApi update_policies PUT /api/policies/{id} Updates a Policy
PoliciesApi update_policies_cloud PUT /api/zones/{cloudId}/policies/{id} Updates a Policy for a Cloud
PoliciesApi update_policies_group PUT /api/groups/{groupId}/policies/{id} Updates a Policy for a Group
PriceSetsApi add_price_sets POST /api/price-sets Creates a Price Set
PriceSetsApi deactivate_price_sets PUT /api/price-sets/{id}/deactivate Deactivates a Price Set
PriceSetsApi get_price_sets GET /api/price-sets/{id} Retrieves a Specific Price Set
PriceSetsApi list_price_sets GET /api/price-sets Retrieves all Price Sets
PriceSetsApi update_price_sets PUT /api/price-sets/{id} Updates a Price Set
PricesApi add_prices POST /api/prices Creates a Price
PricesApi deactivate_prices PUT /api/prices/{id}/deactivate Deactivates a Price
PricesApi get_prices GET /api/prices/{id} Retrieves a Specific Price
PricesApi list_prices GET /api/prices Retrieves all Prices
PricesApi update_prices PUT /api/prices/{id} Updates a Price
ProvisioningApi get_provision_types GET /api/provision-types/{id} Retrieves a Specific Provision Type
ProvisioningApi list_provision_types GET /api/provision-types Retrieves all Provision Types
ProvisioningLicensesApi add_provisioning_license POST /api/provisioning-licenses Create a License
ProvisioningLicensesApi get_provisioning_license GET /api/provisioning-licenses/{id} Get a Specific License
ProvisioningLicensesApi get_provisioning_license_reservations GET /api/provisioning-licenses/{id}/reservations Get Reservations for Specific License
ProvisioningLicensesApi list_provisioning_licenses GET /api/provisioning-licenses Get All Licenses
ProvisioningLicensesApi remove_provisioning_license DELETE /api/provisioning-licenses/{id} Delete a License
ProvisioningLicensesApi update_provisioning_license PUT /api/provisioning-licenses/{id} Update a License
ProvisioningSettingsApi list_provisioning_settings GET /api/provisioning-settings Get Provisioning Settings
ProvisioningSettingsApi update_provisioning_settings PUT /api/provisioning-settings Update Provisioning Settings
ReportsApi download_reports GET /api/reports/download/{id}{format} Downloads a specific report result as a file attachment
ReportsApi get_report_types GET /api/report-types This endpoint retrieves all available report types
ReportsApi get_reports GET /api/reports/{id} This endpoint returns a specific report result
ReportsApi list_reports GET /api/reports Returns all reports
ReportsApi remove_reports DELETE /api/reports/{id} This endpoint will delete a report result
ReportsApi run_reports POST /api/reports Run specified report
ResourcePoolsApi create_resource_pool_group POST /api/resource-pools/groups Create a Resource Pool Group
ResourcePoolsApi delete_resource_pool_group DELETE /api/resource-pools/groups/{id} Delete a Resource Pool Group
ResourcePoolsApi get_resource_pool_groups GET /api/resource-pools/groups Get all Resource Pool Groups
ResourcePoolsApi getresource_pool_group GET /api/resource-pools/groups/{id} Get a Specific Resource Pool Group
ResourcePoolsApi update_resource_pool_group PUT /api/resource-pools/groups/{id} Update a Resource Pool Group
RolesApi add_roles POST /api/roles Create role
RolesApi delete_role DELETE /api/roles/{id} Delete role
RolesApi get_role GET /api/roles/{id} Get role
RolesApi list_roles GET /api/roles List roles
RolesApi update_role PUT /api/roles/{id} Update role
RolesApi update_role_blueprint_access PUT /api/roles/{id}/update-blueprint Customizing Blueprint Access
RolesApi update_role_catalog_item_type_access PUT /api/roles/{id}/update-catalog-item-type Customizing Catalog Item Type Access
RolesApi update_role_cloud_access PUT /api/roles/{id}/update-cloud Customizing Cloud Access
RolesApi update_role_group_access PUT /api/roles/{id}/update-group Customizing Group Access
RolesApi update_role_instance_type_access PUT /api/roles/{id}/update-instance-type Customizing Instance Type Access
RolesApi update_role_permission PUT /api/roles/{id}/update-permission Updating Role Permissions
RolesApi update_role_persona_access PUT /api/roles/{id}/update-persona Customizing Persona Access
RolesApi update_role_report_type_access PUT /api/roles/{id}/update-report-type Customizing Report Type Access
RolesApi update_role_task_access PUT /api/roles/{id}/update-task Customizing Task Access
RolesApi update_role_vdi_pool_access PUT /api/roles/{id}/update-vdi-pool Customizing VDI Pool Access
RolesApi update_role_workflow_access PUT /api/roles/{id}/update-task-set Customizing Workflow Access
SSLCertificatesApi add_certificate POST /api/certificates Create a Certificate
SSLCertificatesApi delete_certificate DELETE /api/certificates/{id} Delete a Certificate
SSLCertificatesApi get_certificate GET /api/certificates/{id} Get a Specific Certificate
SSLCertificatesApi list_certificates GET /api/certificates Get All SSL Certificates
SSLCertificatesApi update_certificate PUT /api/certificates/{id} Update a Certificate
SearchApi search GET /api/search Provides global search for all types of objects
SecurityGroupsApi add_security_group_locations POST /api/security-groups/{id}/locations Creates a Security Group Location
SecurityGroupsApi add_security_group_rules POST /api/security-groups/{id}/rules Creates a Security Group Rule
SecurityGroupsApi add_security_groups POST /api/security-groups Creates a Security Group
SecurityGroupsApi get_security_group_rules GET /api/security-groups/{id}/rules/{sgId} Retrieves a Specific Security Group Rule
SecurityGroupsApi get_security_groups GET /api/security-groups/{id} Retrieves a Specific Security Group
SecurityGroupsApi list_security_group_rules GET /api/security-groups/{id}/rules Retrieves all Security Group Rules
SecurityGroupsApi list_security_groups GET /api/security-groups Retrieves all Security Groups
SecurityGroupsApi remove_security_group_locations DELETE /api/security-groups/{id}/locations/{locationId} Deletes a Security Group Location
SecurityGroupsApi remove_security_group_rules DELETE /api/security-groups/{id}/rules/{sgId} Deletes a Security Group Rule
SecurityGroupsApi remove_security_groups DELETE /api/security-groups/{id} Deletes a Security Group
SecurityGroupsApi update_security_group_rules PUT /api/security-groups/{id}/rules/{sgId} Updates a Security Group Rule
SecurityGroupsApi update_security_groups PUT /api/security-groups/{id} Updating a Security Group
SecurityPackagesApi add_security_packages POST /api/security-packages Creates a Security Package
SecurityPackagesApi get_security_packages GET /api/security-packages/{id} Retrieves a Specific Security Package
SecurityPackagesApi list_security_packages GET /api/security-packages Retrieves all Security Packages
SecurityPackagesApi remove_security_packages DELETE /api/security-packages/{id} Deletes a Security Package
SecurityPackagesApi update_security_packages PUT /api/security-packages/{id} Updates a Security Package
SecurityScansApi get_security_scans GET /api/security-scans/{id} Retrieves a Specific Security Scan
SecurityScansApi list_security_scans GET /api/security-scans Retrieves all Security Scans
ServiceCatalogApi add_catalog_cart POST /api/catalog/checkout Checkout Catalog Cart
ServiceCatalogApi add_catalog_cart_item PUT /api/catalog/cart/items Add Catalog Item to Cart
ServiceCatalogApi add_catalog_order POST /api/catalog/orders Place Catalog Order
ServiceCatalogApi delete_catalog_cart DELETE /api/catalog/cart Clear Catalog Cart
ServiceCatalogApi delete_catalog_cart_item DELETE /api/catalog/cart/items/{id} Remove a Catalog Item From Cart
ServiceCatalogApi delete_catalog_item DELETE /api/catalog/items/{id} Delete a Catalog Inventory Item
ServiceCatalogApi get_catalog_item GET /api/catalog/items/{id} Get a Specific Catalog Inventory Item
ServiceCatalogApi get_catalog_type GET /api/catalog/types/{id} Get a Specific Catalog Type
ServiceCatalogApi list_catalog_cart GET /api/catalog/cart Get Catalog Cart
ServiceCatalogApi list_catalog_items GET /api/catalog/items List Catalog Inventory Items
ServiceCatalogApi list_catalog_types GET /api/catalog/types List Catalog Types
ServicePlansApi activate_service_plans PUT /api/service-plans/{id}/activate Activates a Service Plan
ServicePlansApi add_service_plans POST /api/service-plans Creates a Service Plan
ServicePlansApi deactivate_service_plans PUT /api/service-plans/{id}/deactivate Deactivates a Service Plan
ServicePlansApi get_service_plans GET /api/service-plans/{id} Retrieves a Specific Service Plan
ServicePlansApi list_service_plans GET /api/service-plans Retrieves all Service Plans
ServicePlansApi remove_service_plans DELETE /api/service-plans/{id} Deletes a Service Plan
ServicePlansApi update_service_plans PUT /api/service-plans/{id} Updates a Service Plan
SetupApi setup POST /api/setup Setup appliance
StorageApi add_storage_buckets POST /api/storage-buckets Creates a Storage Bucket
StorageApi add_storage_servers POST /api/storage-servers Creates a Storage Server
StorageApi add_storage_volumes POST /api/storage-volumes Creates a Storage Volume
StorageApi attach_server_volume PUT /api/servers/{id}/volumes/{volumeId}/attach Attach existing storage volume
StorageApi detach_server_volume PUT /api/servers/{id}/volumes/{volumeId}/detach Detach storage volume
StorageApi get_storage_buckets GET /api/storage-buckets/{id} Retrieves a Specific Storage Bucket
StorageApi get_storage_server_types GET /api/storage-server-types/{id} Retrieves a Specific Storage Server Type
StorageApi get_storage_servers GET /api/storage-servers/{id} Retrieves a Specific Storage Server
StorageApi get_storage_volume_types GET /api/storage-volume-types/{id} Retrieves a Specific Storage Volume Type
StorageApi get_storage_volumes GET /api/storage-volumes/{id} Retrieves a Specific Storage Volume
StorageApi list_storage_buckets GET /api/storage-buckets Retrieves all Storage Buckets
StorageApi list_storage_server_types GET /api/storage-server-types Retrieves all Storage Server Types
StorageApi list_storage_servers GET /api/storage-servers Retrieves all Storage Servers
StorageApi list_storage_volume_types GET /api/storage-volume-types Retrieves all Storage Volume Types
StorageApi list_storage_volumes GET /api/storage-volumes Retrieves all Storage Volumes
StorageApi remove_storage_buckets DELETE /api/storage-buckets/{id} Deletes a Storage Bucket
StorageApi remove_storage_servers DELETE /api/storage-servers/{id} Deletes a Storage Server
StorageApi remove_storage_volumes DELETE /api/storage-volumes/{id} Deletes a Storage Volume
StorageApi update_storage_buckets PUT /api/storage-buckets/{id} Updates a Storage Bucket
StorageApi update_storage_servers PUT /api/storage-servers/{id} Updates a Storage Server
StorageApi update_storage_volumes PUT /api/storage-volumes/{id} Updates a Storage Volume
TenantsApi add_subtenant_identity_sources POST /api/accounts/{accountId}/user-sources Creates a Subtenant Identity Source
TenantsApi add_tenant POST /api/accounts Create a Tenant
TenantsApi add_user_tenant POST /api/accounts/{accountId}/users Create a User For a Tenant
TenantsApi create_tenant_subtenant_group POST /api/accounts/{accountId}/groups Create a Group for Subtenant
TenantsApi get_tenant GET /api/accounts/{id} Get tenant
TenantsApi get_tenant_subtenant_group GET /api/accounts/{accountId}/groups/{id} Get a Specific Group for Subtenant
TenantsApi list_tenant_subtenant_groups GET /api/accounts/{accountId}/groups Get Subtenant Groups
TenantsApi list_tenant_subtenant_identity_sources GET /api/accounts/{accountId}/user-sources Get Subtenant Identity Sources
TenantsApi list_tenants GET /api/accounts List All Tenants
TenantsApi list_tenants_available_roles GET /api/accounts/available-roles List available roles for a tenant
TenantsApi remove_tenant DELETE /api/accounts/{id} Delete a Specific Tenant
TenantsApi remove_tenant_subtenant_group DELETE /api/accounts/{accountId}/groups/{id} Delete a Group for Subtenant
TenantsApi update_tenant PUT /api/accounts/{id} Update tenant
TenantsApi update_tenant_subtenant_group PUT /api/accounts/{accountId}/groups/{id} Updating a Group for Subtenant
TenantsApi update_tenant_subtenant_group_zones PUT /api/accounts/{accountId}/groups/{id}/update-zones Updating Group Zones for Subtenant
UsageApi list_usages GET /api/usage Retrieves Usage Records
UsersApi add_user POST /api/users Create a New User
UsersApi add_user_group POST /api/user-groups Creates a User Group
UsersApi delete_user DELETE /api/users/{id} Delete a User
UsersApi delete_user_group DELETE /api/user-groups/{id} Delete User Group
UsersApi delete_user_settings_access_token PUT /api/user-settings/clear-access-token Revoke API Access Token
UsersApi delete_user_settings_avatar DELETE /api/user-settings/avatar Delete Avatar
UsersApi delete_user_settings_desktop_background DELETE /api/user-settings/desktop-background Delete Desktop Background
UsersApi get_user GET /api/users/{id} Get a Specific User
UsersApi get_user_group GET /api/user-groups/{id} Get a Specific User Group
UsersApi get_user_permissions GET /api/users/{id}/permissions Get a Specific User Permissions
UsersApi get_user_settings_api_clients GET /api/user-settings/api-clients Get Available API Clients
UsersApi list_user_groups GET /api/user-groups Retrieves all User Groups
UsersApi list_user_settings GET /api/user-settings User Settings
UsersApi list_users GET /api/users List All Users
UsersApi list_users_available_roles GET /api/users/available-roles List available roles for a user
UsersApi update_user PUT /api/users/{id} Update user
UsersApi update_user_group PUT /api/user-groups/{id} Update User Group
UsersApi update_user_settings PUT /api/user-settings Update User Settings
UsersApi update_user_settings_access_token PUT /api/user-settings/regenerate-access-token Regenerate API Access Token
UsersApi update_user_settings_avatar POST /api/user-settings/avatar Update Avatar
UsersApi update_user_settings_desktop_background POST /api/user-settings/desktop-background Update Desktop Background
VDIApi add_vdi_allocation POST /api/vdi/{id}/allocate Allocate Virtual Desktop
VDIApi add_vdi_apps POST /api/vdi-apps Creates a VDI App
VDIApi add_vdi_gateways POST /api/vdi-gateways Creates a VDI Gateway
VDIApi add_vdi_pools POST /api/vdi-pools Creates a VDI Pool
VDIApi get_vdi GET /api/vdi/{id} Get a Specific Virtual Desktop
VDIApi get_vdi_allocations GET /api/vdi-allocations/{id} Retrieves a Specific VDI Allocation
VDIApi get_vdi_apps GET /api/vdi-apps/{id} Retrieves a Specific VDI App
VDIApi get_vdi_gateways GET /api/vdi-gateways/{id} Retrieves a Specific VDI Gateway
VDIApi get_vdi_pools GET /api/vdi-pools/{id} Retrieves a Specific VDI Pool
VDIApi list_vdi GET /api/vdi List Virtual Desktops
VDIApi list_vdi_allocations GET /api/vdi-allocations Retrieves all VDI Allocations
VDIApi list_vdi_apps GET /api/vdi-apps Retrieves all VDI Apps
VDIApi list_vdi_gateways GET /api/vdi-gateways Retrieves all VDI Gateways
VDIApi list_vdi_pools GET /api/vdi-pools Retrieves all VDI Pools
VDIApi remove_vdi_apps DELETE /api/vdi-apps/{id} Deletes a VDI App
VDIApi remove_vdi_gateways DELETE /api/vdi-gateways/{id} Deletes a VDI Gateway
VDIApi remove_vdi_pools DELETE /api/vdi-pools/{id} Deletes a VDI Pool
VDIApi update_vdi_apps PUT /api/vdi-apps/{id} Updates a VDI App Configuration or Icon
VDIApi update_vdi_gateways PUT /api/vdi-gateways/{id} Updates a VDI Gateway Configuration
VDIApi update_vdi_pools PUT /api/vdi-pools/{id} Updates a VDI Pool Configuration or Icon
WhitelabelSettingsApi get_whitelabel_image GET /api/whitelabel-settings/images/{imageType} Download Image
WhitelabelSettingsApi list_whitelabel_settings GET /api/whitelabel-settings Get Whitelabel Settings
WhitelabelSettingsApi remove_whitelabel_image DELETE /api/whitelabel-settings/images/{imageType} Reset Image
WhitelabelSettingsApi update_whitelabel_images POST /api/whitelabel-settings/images Update Images
WhitelabelSettingsApi update_whitelabel_settings PUT /api/whitelabel-settings Update Whitelabel Settings
WikiApi add_wiki POST /api/wiki/pages Create a Wiki Page
WikiApi get_wiki GET /api/wiki/pages/{id} Retrieves a specific Wiki page
WikiApi get_wiki_app GET /api/apps/{id}/wiki Retrieves an App Wiki Page
WikiApi get_wiki_categories GET /api/wiki/categories Retrieves all Wiki categories associated with the account
WikiApi get_wiki_cloud GET /api/zones/{id}/wiki Retrieves a Cloud Wiki Page
WikiApi get_wiki_cluster GET /api/clusters/{clusterId}/wiki Retrieves a Cluster Wiki Page
WikiApi get_wiki_group GET /api/groups/{id}/wiki Retrieves a Group Wiki Page
WikiApi get_wiki_instance GET /api/instances/{id}/wiki Retrieves an Instance Wiki Page
WikiApi get_wiki_server GET /api/servers/{id}/wiki Retrieves a Server Wiki Page
WikiApi list_wiki GET /api/wiki/pages Retrieves wiki pages associated with the account.
WikiApi remove_wiki DELETE /api/wiki/pages/{id} Deletes a Wiki Page
WikiApi update_wiki PUT /api/wiki/pages/{id} Updates a Wiki Page
WikiApi update_wiki_app PUT /api/apps/{id}/wiki Update an App Wiki Page
WikiApi update_wiki_cloud PUT /api/zones/{id}/wiki Update a Cloud Wiki Page
WikiApi update_wiki_cluster PUT /api/clusters/{clusterId}/wiki Update a Cluster Wiki Page
WikiApi update_wiki_group PUT /api/groups/{id}/wiki Update a Group Wiki Page
WikiApi update_wiki_instance PUT /api/instances/{id}/wiki Update an Instance Wiki Page
WikiApi update_wiki_server PUT /api/servers/{id}/wiki Update a Server Wiki Page

Documentation For Models

Documentation For Authorization

Authentication schemes defined for the API:

bearerAuth

  • Type: Bearer authentication

cypherAuth-XCToken

  • Type: API key
  • API key parameter name: X-Cypher-Token
  • Location: HTTP header

cypherAuth-XVToken

  • Type: API key
  • API key parameter name: X-Vault-Token
  • Location: HTTP header

cypherAuth-XMLease

  • Type: API key
  • API key parameter name: X-Morpheus-Lease
  • Location: HTTP header

Author

dev@morpheusdata.com

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

morpheus_python_sdk-0.0.2.tar.gz (2.3 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

morpheus_python_sdk-0.0.2-py3-none-any.whl (6.1 MB view details)

Uploaded Python 3

File details

Details for the file morpheus_python_sdk-0.0.2.tar.gz.

File metadata

  • Download URL: morpheus_python_sdk-0.0.2.tar.gz
  • Upload date:
  • Size: 2.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.7.19

File hashes

Hashes for morpheus_python_sdk-0.0.2.tar.gz
Algorithm Hash digest
SHA256 2fdd6ce76bea4de5e85d01ad7db96b88a53c0fd8acc84bf1ba54ba998fda65b2
MD5 7d9f4283b766a75ccf3e87c96392e00a
BLAKE2b-256 4c3645f40f2290f2e82f2c6c2ba3ae30de4de739685114b257922a8afd0eb70b

See more details on using hashes here.

File details

Details for the file morpheus_python_sdk-0.0.2-py3-none-any.whl.

File metadata

File hashes

Hashes for morpheus_python_sdk-0.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 edd00500d44f49cc85d2a85b46e9492714e5cde9cea12dec3c1610d1c98820b1
MD5 07ddea1b0d551ea2c05ea3afa61a3f7f
BLAKE2b-256 036a8776f06794ed1313a1b6bcc212b1341eaac252415875f8a4ba8ead1b524d

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page