# java-msx-sdk **Repository Path**: mirrors_CiscoDevNet/java-msx-sdk ## Basic Information - **Project Name**: java-msx-sdk - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-10-22 - **Last Updated**: 2025-09-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # java-msx-sdk MSX SDK - API version: 1.0.10 - Build date: 2022-05-17T18:31:30.346538700-04:00[America/Toronto] MSX SDK client. *Automatically generated by the [OpenAPI Generator](https://openapi-generator.tech)* ## Requirements Building the API client library requires: 1. Java 1.8+ 2. Maven (3.8.3+)/Gradle (7.2+) ## Installation To install the API client library to your local Maven repository, simply execute: ```shell mvn clean install ``` To deploy it to a remote Maven repository instead, configure the settings of the repository and execute: ```shell mvn clean deploy ``` Refer to the [OSSRH Guide](http://central.sonatype.org/pages/ossrh-guide.html) for more information. ### Maven users Add this dependency to your project's POM: ```xml com.cisco.msx.platform java-msx-sdk 1.0.10 compile ``` ### Gradle users Add this dependency to your project's build file: ```groovy repositories { mavenCentral() // Needed if the 'java-msx-sdk' jar has been published to maven central. mavenLocal() // Needed if the 'java-msx-sdk' jar has been published to the local maven repo. } dependencies { implementation "com.cisco.msx.platform:java-msx-sdk:1.0.10" } ``` ### Others At first generate the JAR by executing: ```shell mvn clean package ``` Then manually install the following JARs: * `target/java-msx-sdk-1.0.10.jar` * `target/lib/*.jar` ## Getting Started Please follow the [installation](#installation) instruction and execute the following Java code: ```java // Import classes: import com.cisco.msx.platform.ApiClient; import com.cisco.msx.platform.ApiException; import com.cisco.msx.platform.Configuration; import com.cisco.msx.platform.models.*; import com.cisco.msx.platform.client.AuditingGenericEventsApi; public class Example { public static void main(String[] args) { ApiClient defaultClient = Configuration.getDefaultApiClient(); defaultClient.setBasePath("http://localhost"); AuditingGenericEventsApi apiInstance = new AuditingGenericEventsApi(defaultClient); GenericEventCreate genericEventCreate = new GenericEventCreate(); // GenericEventCreate | try { GenericEvent result = apiInstance.createGenericEvent(genericEventCreate); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling AuditingGenericEventsApi#createGenericEvent"); System.err.println("Status code: " + e.getCode()); System.err.println("Reason: " + e.getResponseBody()); System.err.println("Response headers: " + e.getResponseHeaders()); e.printStackTrace(); } } } ``` ## Documentation for API Endpoints All URIs are relative to *http://localhost* Class | Method | HTTP request | Description ------------ | ------------- | ------------- | ------------- *AuditingGenericEventsApi* | [**createGenericEvent**](docs/AuditingGenericEventsApi.md#createGenericEvent) | **POST** /auditing/api/v8/genericevents | Create Generic Event *BillingCyclesApi* | [**addBillingCycle**](docs/BillingCyclesApi.md#addBillingCycle) | **POST** /billing/api/v8/cycles | Add a billing cycle. *BillingCyclesApi* | [**deleteBillingCycle**](docs/BillingCyclesApi.md#deleteBillingCycle) | **DELETE** /billing/api/v8/cycles/{id} | Delete a billing cycle. *BillingCyclesApi* | [**getBillingCycle**](docs/BillingCyclesApi.md#getBillingCycle) | **GET** /billing/api/v8/cycles/{id} | Get a billing cycle. *BillingCyclesApi* | [**getBillingCyclesPage**](docs/BillingCyclesApi.md#getBillingCyclesPage) | **GET** /billing/api/v8/cycles | Retrieve a page of billing cycles. *BillingCyclesApi* | [**processBillingCycle**](docs/BillingCyclesApi.md#processBillingCycle) | **POST** /billing/api/v8/cycles/process | Process a billing cycle. *BillingCyclesApi* | [**updateBillingCycle**](docs/BillingCyclesApi.md#updateBillingCycle) | **PUT** /billing/api/v8/cycles/{id} | Update billing cycle for an event type and tenant. *BillingEventsApi* | [**getCostSummary**](docs/BillingEventsApi.md#getCostSummary) | **GET** /billing/api/v8/events/costs | Retrieve a summary for tenant cost. *BillingEventsApi* | [**getEvent**](docs/BillingEventsApi.md#getEvent) | **GET** /billing/api/v8/events/{id} | Get an Event. *BillingEventsApi* | [**getEventsPage**](docs/BillingEventsApi.md#getEventsPage) | **GET** /billing/api/v8/events | Retrieve a page of events for tenant. *BillingPricesApi* | [**addPrice**](docs/BillingPricesApi.md#addPrice) | **POST** /billing/api/v8/prices | Add price for tenant and event type. *BillingPricesApi* | [**deletePrice**](docs/BillingPricesApi.md#deletePrice) | **DELETE** /billing/api/v8/prices/{id} | Delete a price. *BillingPricesApi* | [**getPrice**](docs/BillingPricesApi.md#getPrice) | **GET** /billing/api/v8/prices/{id} | Get a price. *BillingPricesApi* | [**getPricesPage**](docs/BillingPricesApi.md#getPricesPage) | **GET** /billing/api/v8/prices | Retrieve a page of prices. *BillingPricesApi* | [**updatePrice**](docs/BillingPricesApi.md#updatePrice) | **PUT** /billing/api/v8/prices/{id} | Update price for an event type and tenant. *DeviceTemplatesApi* | [**createDeviceTemplate**](docs/DeviceTemplatesApi.md#createDeviceTemplate) | **POST** /manage/api/v8/devicetemplates | Creates a device template. *DeviceTemplatesApi* | [**createDeviceTemplateVersion**](docs/DeviceTemplatesApi.md#createDeviceTemplateVersion) | **POST** /manage/api/v8/devicetemplates/versions | Creates a new version of an existing device template. *DeviceTemplatesApi* | [**deleteDeviceTemplate**](docs/DeviceTemplatesApi.md#deleteDeviceTemplate) | **DELETE** /manage/api/v8/devicetemplates/{id} | Deletes a device template. *DeviceTemplatesApi* | [**getDeviceTemplate**](docs/DeviceTemplatesApi.md#getDeviceTemplate) | **GET** /manage/api/v8/devicetemplates/{id} | Returns a device template. *DeviceTemplatesApi* | [**getDeviceTemplatesList**](docs/DeviceTemplatesApi.md#getDeviceTemplatesList) | **GET** /manage/api/v8/devicetemplates/list | Returns a list of device templates. *DeviceTemplatesApi* | [**scanDeviceTemplateParameters**](docs/DeviceTemplatesApi.md#scanDeviceTemplateParameters) | **POST** /manage/api/v8/devicetemplates/parameters/scan | API to scan parameters from the device template XML. *DeviceTemplatesApi* | [**updateDeviceTemplateAccess**](docs/DeviceTemplatesApi.md#updateDeviceTemplateAccess) | **PUT** /manage/api/v8/devicetemplates/{id}/access | Updates device template access. *DevicesApi* | [**attachDeviceTemplates**](docs/DevicesApi.md#attachDeviceTemplates) | **POST** /manage/api/v8/devices/{id}/templates | Attaches one or more device templates to a device instance. *DevicesApi* | [**batchAttachDeviceTemplates**](docs/DevicesApi.md#batchAttachDeviceTemplates) | **POST** /manage/api/v8/devices/templates/attach | Attaches one or more device templates to a batch of device instances. *DevicesApi* | [**createDevice**](docs/DevicesApi.md#createDevice) | **POST** /manage/api/v8/devices | Creates a device. *DevicesApi* | [**deleteDevice**](docs/DevicesApi.md#deleteDevice) | **DELETE** /manage/api/v8/devices/{id} | Deletes a device. *DevicesApi* | [**detachDeviceTemplate**](docs/DevicesApi.md#detachDeviceTemplate) | **DELETE** /manage/api/v8/devices/{id}/templates/{templateId} | Detaches a template from a device. *DevicesApi* | [**detachDeviceTemplates**](docs/DevicesApi.md#detachDeviceTemplates) | **DELETE** /manage/api/v8/devices/{id}/templates | Detach device templates that are already attached to a device. *DevicesApi* | [**getDevice**](docs/DevicesApi.md#getDevice) | **GET** /manage/api/v8/devices/{id} | Returns a device. *DevicesApi* | [**getDeviceConfig**](docs/DevicesApi.md#getDeviceConfig) | **GET** /manage/api/v8/devices/{id}/config | Returns the running configuration for a device. *DevicesApi* | [**getDeviceTemplateHistory**](docs/DevicesApi.md#getDeviceTemplateHistory) | **GET** /manage/api/v8/devices/{id}/templates | Returns device template history. *DevicesApi* | [**getDevicesPage**](docs/DevicesApi.md#getDevicesPage) | **GET** /manage/api/v8/devices | Returns a page of devices. *DevicesApi* | [**patchDevice**](docs/DevicesApi.md#patchDevice) | **PATCH** /manage/api/v8/devices/{id} | Update a device. *DevicesApi* | [**redeployDevice**](docs/DevicesApi.md#redeployDevice) | **POST** /manage/api/v8/devices/{id}/redeploy | Dedeploys a device. *DevicesApi* | [**updateDevice**](docs/DevicesApi.md#updateDevice) | **PUT** /manage/api/v8/devices/{id} | Update a device. *DevicesApi* | [**updateDeviceConfig**](docs/DevicesApi.md#updateDeviceConfig) | **POST** /manage/api/v8/devices/{id}/config/update | push device configuration to the actual device *DevicesApi* | [**updateDeviceTemplates**](docs/DevicesApi.md#updateDeviceTemplates) | **PUT** /manage/api/v8/devices/{id}/templates | Update device templates that are already attached to a device. *HealthApi* | [**getDevicesHealthList**](docs/HealthApi.md#getDevicesHealthList) | **GET** /monitor/api/v8/health/devices/list | *HealthApi* | [**getServicesHealthList**](docs/HealthApi.md#getServicesHealthList) | **GET** /monitor/api/v8/health/services/list | *IncidentChangeRequestsApi* | [**createChangeRequest**](docs/IncidentChangeRequestsApi.md#createChangeRequest) | **POST** /incident/api/v8/changerequests | Create a change request. *IncidentChangeRequestsApi* | [**deleteChangeRequest**](docs/IncidentChangeRequestsApi.md#deleteChangeRequest) | **DELETE** /incident/api/v8/changerequests/{id} | Deletes a change request. *IncidentChangeRequestsApi* | [**getChangeRequest**](docs/IncidentChangeRequestsApi.md#getChangeRequest) | **GET** /incident/api/v8/changerequests/{id} | Returns a change request. *IncidentChangeRequestsApi* | [**getChangeRequestsPage**](docs/IncidentChangeRequestsApi.md#getChangeRequestsPage) | **GET** /incident/api/v8/changerequests | Returns a filtered list of change requests. *IncidentChangeRequestsApi* | [**updateChangeRequest**](docs/IncidentChangeRequestsApi.md#updateChangeRequest) | **PUT** /incident/api/v8/changerequests/{id} | Updates a change request. *IncidentConfigurationsApi* | [**createServiceNowConfiguration**](docs/IncidentConfigurationsApi.md#createServiceNowConfiguration) | **POST** /incident/api/v8/configurations | Creates a ServiceNow configuration. *IncidentConfigurationsApi* | [**deleteServiceNowConfiguration**](docs/IncidentConfigurationsApi.md#deleteServiceNowConfiguration) | **DELETE** /incident/api/v8/configurations/{id} | Deletes a ServiceNow configuration. *IncidentConfigurationsApi* | [**getConfiguration**](docs/IncidentConfigurationsApi.md#getConfiguration) | **GET** /incident/api/v1/config | API to get configuration of encloud service. *IncidentConfigurationsApi* | [**getServiceNowConfiguration**](docs/IncidentConfigurationsApi.md#getServiceNowConfiguration) | **GET** /incident/api/v8/configurations/{id} | Returns a ServiceNow configuration. *IncidentConfigurationsApi* | [**getServiceNowConfigurationsPage**](docs/IncidentConfigurationsApi.md#getServiceNowConfigurationsPage) | **GET** /incident/api/v8/configurations | Returns a ServiceNow configurations. *IncidentConfigurationsApi* | [**patchConfiguration**](docs/IncidentConfigurationsApi.md#patchConfiguration) | **PATCH** /incident/api/v1/config | API to patch configure encloud service *IncidentConfigurationsApi* | [**updateConfiguration**](docs/IncidentConfigurationsApi.md#updateConfiguration) | **PUT** /incident/api/v1/config | API to configure encloud service. *IncidentsApi* | [**cancelIncident**](docs/IncidentsApi.md#cancelIncident) | **PATCH** /incident/api/v1/incidents/{id}/cancel | Cancels an incident. *IncidentsApi* | [**createIncident**](docs/IncidentsApi.md#createIncident) | **POST** /incident/api/v1/incidents | Create a new Incident. *IncidentsApi* | [**deleteIncident**](docs/IncidentsApi.md#deleteIncident) | **DELETE** /incident/api/v1/incidents/{id} | Deletes an incident. *IncidentsApi* | [**getIncident**](docs/IncidentsApi.md#getIncident) | **GET** /incident/api/v1/incidents/{id} | Get incident details. *IncidentsApi* | [**getIncidents**](docs/IncidentsApi.md#getIncidents) | **GET** /incident/api/v1/incidents | Get Incidents by filter. *IncidentsApi* | [**updateIncident**](docs/IncidentsApi.md#updateIncident) | **PUT** /incident/api/v1/incidents/{id} | Updates an incident. *LicensingAccountsApi* | [**getUserAccountsList**](docs/LicensingAccountsApi.md#getUserAccountsList) | **GET** /licensing/api/v8/accounts/smart/list | Returns a filtered page of smart accounts. *LicensingConfigurationsApi* | [**createSmartAccountConfiguration**](docs/LicensingConfigurationsApi.md#createSmartAccountConfiguration) | **POST** /licensing/api/v8/configuration | Creates a smart account configuration. *LicensingConfigurationsApi* | [**getSmartAccountConfiguration**](docs/LicensingConfigurationsApi.md#getSmartAccountConfiguration) | **GET** /licensing/api/v8/configuration | Returns a smart account configuration. *LicensingConfigurationsApi* | [**updateSmartAccountConfiguration**](docs/LicensingConfigurationsApi.md#updateSmartAccountConfiguration) | **PUT** /licensing/api/v8/configuration | Updates a smart account configuration. *LicensingLicensesApi* | [**getLicensesList**](docs/LicensingLicensesApi.md#getLicensesList) | **GET** /licensing/api/v8/licensing/api/v8/licenses/list | Returns a filtered list of licenses. *OffersApi* | [**createOffer**](docs/OffersApi.md#createOffer) | **POST** /consume/api/v8/offers | Creates a product offer. *OffersApi* | [**deleteOffer**](docs/OffersApi.md#deleteOffer) | **DELETE** /consume/api/v8/offers/{id} | Deletes a product offer *OffersApi* | [**getOffer**](docs/OffersApi.md#getOffer) | **GET** /consume/api/v8/offers/{id} | Returns a product offer. *OffersApi* | [**getOfferAssignmentsList**](docs/OffersApi.md#getOfferAssignmentsList) | **GET** /consume/api/v8/offers/{id}/assignments/list | Returns a list of tenant assignments for a product offer. *OffersApi* | [**getOffersCount**](docs/OffersApi.md#getOffersCount) | **GET** /consume/api/v8/offers/count | Returns the number of product offers. *OffersApi* | [**getOffersPage**](docs/OffersApi.md#getOffersPage) | **GET** /consume/api/v8/offers | Returns a page of product offers. *OffersApi* | [**updateOffer**](docs/OffersApi.md#updateOffer) | **PUT** /consume/api/v8/offers/{id} | Updates a product offer. *OffersApi* | [**updateOfferAssignments**](docs/OffersApi.md#updateOfferAssignments) | **PUT** /consume/api/v8/offers/{id}/assignments | Updates the tenant assignemnts for a product offer. *ProductsApi* | [**createProduct**](docs/ProductsApi.md#createProduct) | **POST** /consume/api/v8/products | Creates a product. *ProductsApi* | [**deleteProduct**](docs/ProductsApi.md#deleteProduct) | **DELETE** /consume/api/v8/products/{id} | Deletes a product. *ProductsApi* | [**getProduct**](docs/ProductsApi.md#getProduct) | **GET** /consume/api/v8/products/{id} | Returns a product. *ProductsApi* | [**getProductAssignmentsList**](docs/ProductsApi.md#getProductAssignmentsList) | **GET** /consume/api/v8/products/{id}/assignments/list | Returns a list of tenant assignments for a product . *ProductsApi* | [**getProductsCount**](docs/ProductsApi.md#getProductsCount) | **GET** /consume/api/v8/products/count | Returns the number of products. *ProductsApi* | [**getProductsPage**](docs/ProductsApi.md#getProductsPage) | **GET** /consume/api/v8/products | Returns a page of products. *ProductsApi* | [**updateProduct**](docs/ProductsApi.md#updateProduct) | **PUT** /consume/api/v8/products/{id} | Updates a product. *ProductsApi* | [**updateProductAssignments**](docs/ProductsApi.md#updateProductAssignments) | **PUT** /consume/api/v8/products/{id}/assignments | Updates the tenant assignments for a product. *RegistrationApi* | [**deleteRegisteredProductVersion**](docs/RegistrationApi.md#deleteRegisteredProductVersion) | **DELETE** /vulnerability/api/v8/vulnerabilities/registrations/{id} | Delete a registration. *RegistrationApi* | [**getRegisteredProductVersionPage**](docs/RegistrationApi.md#getRegisteredProductVersionPage) | **GET** /vulnerability/api/v8/vulnerabilities/registrations | Returns a filtered page of registered products / versions. *RegistrationApi* | [**registerProductVersion**](docs/RegistrationApi.md#registerProductVersion) | **POST** /vulnerability/api/v8/vulnerabilities/registrations | Register a product / verison combination for vulnerability inspection. *RolesApi* | [**getRoleByName**](docs/RolesApi.md#getRoleByName) | **GET** /idm/api/v8/roles/name/{name} | Returns a role by name. *RolesApi* | [**getRolesList**](docs/RolesApi.md#getRolesList) | **GET** /idm/api/v8/roles/list | Returns a list of roles. *SecurityApi* | [**getAccessToken**](docs/SecurityApi.md#getAccessToken) | **POST** /idm/v2/token | Returns an access token. *ServicesApi* | [**deleteService**](docs/ServicesApi.md#deleteService) | **DELETE** /manage/api/v8/services/{id} | Deletes a service. *ServicesApi* | [**getService**](docs/ServicesApi.md#getService) | **GET** /manage/api/v8/services/{id} | Returns a service. *ServicesApi* | [**getServicesPage**](docs/ServicesApi.md#getServicesPage) | **GET** /manage/api/v8/services | Returns a page of services. *ServicesApi* | [**submitOrder**](docs/ServicesApi.md#submitOrder) | **POST** /manage/api/v8/services | Submits an order. *ServicesApi* | [**updateOrder**](docs/ServicesApi.md#updateOrder) | **PUT** /manage/api/v8/services | Updates an order. *ServicesApi* | [**updateService**](docs/ServicesApi.md#updateService) | **PUT** /manage/api/v8/services/{id} | Updates a service. *SitesApi* | [**addDevicesToSite**](docs/SitesApi.md#addDevicesToSite) | **POST** /manage/api/v8/sites/{id}/devices/add | Add devices to a site. *SitesApi* | [**addServicesToSite**](docs/SitesApi.md#addServicesToSite) | **POST** /manage/api/v8/sites/{id}/services/add | Add services to a site. *SitesApi* | [**createSite**](docs/SitesApi.md#createSite) | **POST** /manage/api/v8/sites | Creates a new site. *SitesApi* | [**deleteSite**](docs/SitesApi.md#deleteSite) | **DELETE** /manage/api/v8/sites/{id} | Deletes a site. *SitesApi* | [**getSite**](docs/SitesApi.md#getSite) | **GET** /manage/api/v8/sites/{id} | Returns a site. *SitesApi* | [**getSitesPage**](docs/SitesApi.md#getSitesPage) | **GET** /manage/api/v8/sites | Returns a page of Sites. Only one filter is supported at a time. *SitesApi* | [**removeDevicesFromSite**](docs/SitesApi.md#removeDevicesFromSite) | **POST** /manage/api/v8/sites/{id}/devices/remove | Removes devices from a site. *SitesApi* | [**removeServicesFromSite**](docs/SitesApi.md#removeServicesFromSite) | **POST** /manage/api/v8/sites/{id}/services/remove | Remove services from a site. *SitesApi* | [**updateSite**](docs/SitesApi.md#updateSite) | **PUT** /manage/api/v8/sites/{id} | Updates a site. *TemplateApplicationsApi* | [**applyTemplate**](docs/TemplateApplicationsApi.md#applyTemplate) | **POST** /template/api/v8/templates/{id}/applications | Applies a template to a target. *TemplateApplicationsApi* | [**deleteTemplateApplication**](docs/TemplateApplicationsApi.md#deleteTemplateApplication) | **DELETE** /template/api/v8/templates/applications/{id} | Deletes a template application. *TemplateApplicationsApi* | [**getTemplateApplication**](docs/TemplateApplicationsApi.md#getTemplateApplication) | **GET** /template/api/v8/templates/applications/{id} | Gets a template application. *TemplateApplicationsApi* | [**getTemplateApplicationHistory**](docs/TemplateApplicationsApi.md#getTemplateApplicationHistory) | **GET** /template/api/v8/templates/applications/{id}/history | Gets a template application history. *TemplateApplicationsApi* | [**getTemplateApplicationsPage**](docs/TemplateApplicationsApi.md#getTemplateApplicationsPage) | **GET** /template/api/v8/templates/applications | Get a page of template applications. *TemplateApplicationsApi* | [**updateApplicationStatus**](docs/TemplateApplicationsApi.md#updateApplicationStatus) | **PATCH** /template/api/v8/templates/applications/{id} | Updates an application status. *TemplateAssignmentsApi* | [**batchAssignTemplate**](docs/TemplateAssignmentsApi.md#batchAssignTemplate) | **POST** /template/api/v8/templates/{id}/assignments/add | Assigns a template to one or more tenants. *TemplateAssignmentsApi* | [**batchUnassignTemplate**](docs/TemplateAssignmentsApi.md#batchUnassignTemplate) | **POST** /template/api/v8/templates/{id}/assignments/remove | Unassigns a template from one or more tenants. *TemplateAssignmentsApi* | [**getAssignment**](docs/TemplateAssignmentsApi.md#getAssignment) | **GET** /template/api/v8/templates/assignments/{id} | Gets a template assignment. *TemplateAssignmentsApi* | [**getAssignmentHistory**](docs/TemplateAssignmentsApi.md#getAssignmentHistory) | **GET** /template/api/v8/templates/assignments/{id}/history | Gets a template assignment history. *TemplateAssignmentsApi* | [**getTemplateAssignmentsPage**](docs/TemplateAssignmentsApi.md#getTemplateAssignmentsPage) | **GET** /template/api/v8/templates/assignments | Returns a page of template assignments. *TemplateAssignmentsApi* | [**updateAssignmentStatus**](docs/TemplateAssignmentsApi.md#updateAssignmentStatus) | **PATCH** /template/api/v8/templates/assignments/{id} | Updates a template assignment status. *TemplatesApi* | [**deleteTemplate**](docs/TemplatesApi.md#deleteTemplate) | **DELETE** /template/api/v8/templates/{id} | Deletes a template. *TemplatesApi* | [**getTemplate**](docs/TemplatesApi.md#getTemplate) | **GET** /template/api/v8/templates/{id} | Returns a template by id. *TemplatesApi* | [**getTemplateHistory**](docs/TemplatesApi.md#getTemplateHistory) | **GET** /template/api/v8/templates/{id}/history | Returns a template history by id. *TemplatesApi* | [**getTemplatesPage**](docs/TemplatesApi.md#getTemplatesPage) | **GET** /template/api/v8/templates | Returns a page of templates. *TemplatesApi* | [**importTemplate**](docs/TemplatesApi.md#importTemplate) | **POST** /template/api/v8/templates | Imports a template. *TemplatesApi* | [**updateTemplateStatus**](docs/TemplatesApi.md#updateTemplateStatus) | **PATCH** /template/api/v8/templates/{id} | Updates a template status. *TenantsApi* | [**createTenant**](docs/TenantsApi.md#createTenant) | **POST** /idm/api/v8/tenants | Creates a new tenant. *TenantsApi* | [**deleteTenant**](docs/TenantsApi.md#deleteTenant) | **DELETE** /idm/api/v8/tenants/{id} | Deletes a tenant by id. *TenantsApi* | [**getTenant**](docs/TenantsApi.md#getTenant) | **GET** /idm/api/v8/tenants/{id} | Returns a tenant by id. *TenantsApi* | [**getTenantByExternalId**](docs/TenantsApi.md#getTenantByExternalId) | **GET** /idm/api/v8/tenants/externalId/{externalId} | Returns a tenant by externalId. *TenantsApi* | [**getTenantsList**](docs/TenantsApi.md#getTenantsList) | **GET** /idm/api/v8/tenants/list | Returns a list of tenants. *TenantsApi* | [**getTenantsPage**](docs/TenantsApi.md#getTenantsPage) | **GET** /idm/api/v8/tenants | Returns a page of tenants. *TenantsApi* | [**updateTenant**](docs/TenantsApi.md#updateTenant) | **PUT** /idm/api/v8/tenants/{id} | Updates a tenant by id. *UsersApi* | [**createUser**](docs/UsersApi.md#createUser) | **POST** /idm/api/v8/users | Creates a new user. *UsersApi* | [**deleteUser**](docs/UsersApi.md#deleteUser) | **DELETE** /idm/api/v8/users/{id} | Deletes a user by id. *UsersApi* | [**getCurrentUser**](docs/UsersApi.md#getCurrentUser) | **GET** /idm/api/v8/users/current | Returns the current user. *UsersApi* | [**getUser**](docs/UsersApi.md#getUser) | **GET** /idm/api/v8/users/{id} | Returns an existing user. *UsersApi* | [**getUsersPage**](docs/UsersApi.md#getUsersPage) | **GET** /idm/api/v8/users | Returns a page of users. *UsersApi* | [**updateUser**](docs/UsersApi.md#updateUser) | **PUT** /idm/api/v8/users/{id} | Updates an existing user. *UsersApi* | [**updateUserPassword**](docs/UsersApi.md#updateUserPassword) | **PUT** /idm/api/v8/users/updatepassword | Update a user password. *ValidationApi* | [**getValidateProductVersionPage**](docs/ValidationApi.md#getValidateProductVersionPage) | **GET** /vulnerability/api/v8/vulnerabilities/validations | Returns a filtered page of validations. *ValidationApi* | [**validateProductVersion**](docs/ValidationApi.md#validateProductVersion) | **POST** /vulnerability/api/v8/vulnerabilities/validations | Validate registered product / verison combinations for vulnerabilities. *VulnerabilitiesApi* | [**getIngestVulnerabilitiesTasksPage**](docs/VulnerabilitiesApi.md#getIngestVulnerabilitiesTasksPage) | **GET** /vulnerability/api/v8/vulnerabilities/ingests | Returns a filtered page of ingest tasks. *VulnerabilitiesApi* | [**getVulnerabilitiesPage**](docs/VulnerabilitiesApi.md#getVulnerabilitiesPage) | **GET** /vulnerability/api/v8/vulnerabilities | Returns a filtered page of vulnerabilities. *VulnerabilitiesApi* | [**ingestVulnerabilities**](docs/VulnerabilitiesApi.md#ingestVulnerabilities) | **POST** /vulnerability/api/v8/vulnerabilities/ingests | Ingests a CVE JSON feed into the Vulnerability Service datastore. *WorkflowCategoriesApi* | [**createWorkflowCategory**](docs/WorkflowCategoriesApi.md#createWorkflowCategory) | **POST** /workflow/api/v8/categories | Creates a new workflow category. *WorkflowCategoriesApi* | [**deleteWorkflowCategory**](docs/WorkflowCategoriesApi.md#deleteWorkflowCategory) | **DELETE** /workflow/api/v8/categories/{id} | Deletes a workflow category. *WorkflowCategoriesApi* | [**getWorkflowCategoriesList**](docs/WorkflowCategoriesApi.md#getWorkflowCategoriesList) | **GET** /workflow/api/v8/categories/list | Returns a list of workflow categories. *WorkflowCategoriesApi* | [**getWorkflowCategory**](docs/WorkflowCategoriesApi.md#getWorkflowCategory) | **GET** /workflow/api/v8/categories/{id} | Returns a workflow category. *WorkflowCategoriesApi* | [**updateWorkflowCategory**](docs/WorkflowCategoriesApi.md#updateWorkflowCategory) | **PUT** /workflow/api/v8/categories/{id} | Updates a workflow category. *WorkflowEventsApi* | [**createWorkflowEvent**](docs/WorkflowEventsApi.md#createWorkflowEvent) | **POST** /workflow/api/v8/events | Creates a new workflow event. *WorkflowEventsApi* | [**deleteWorkflowEvent**](docs/WorkflowEventsApi.md#deleteWorkflowEvent) | **DELETE** /workflow/api/v8/events/{id} | Deletes a workflow event. *WorkflowEventsApi* | [**getWorkflowEvent**](docs/WorkflowEventsApi.md#getWorkflowEvent) | **GET** /workflow/api/v8/events/{id} | Returns a workflow event. *WorkflowEventsApi* | [**getWorkflowEventsList**](docs/WorkflowEventsApi.md#getWorkflowEventsList) | **GET** /workflow/api/v8/events/list | Returns a list of workflow events. *WorkflowEventsApi* | [**updateWorkflowEvent**](docs/WorkflowEventsApi.md#updateWorkflowEvent) | **PUT** /workflow/api/v8/events/{id} | Updates a workflow event. *WorkflowInstancesApi* | [**cancelWorkflowInstance**](docs/WorkflowInstancesApi.md#cancelWorkflowInstance) | **POST** /workflow/api/v8/workflows/instances/{id}/cancel | Cancels a workflow instance. *WorkflowInstancesApi* | [**deleteWorkflowInstance**](docs/WorkflowInstancesApi.md#deleteWorkflowInstance) | **DELETE** /workflow/api/v8/workflows/instances/{id} | Deletes a workflow instance. *WorkflowInstancesApi* | [**getWorkflowInstance**](docs/WorkflowInstancesApi.md#getWorkflowInstance) | **GET** /workflow/api/v8/workflows/instances/{id} | Returns a workflow instance. *WorkflowInstancesApi* | [**getWorkflowInstanceAction**](docs/WorkflowInstancesApi.md#getWorkflowInstanceAction) | **GET** /workflow/api/v8/workflows/instances/{id}/actions/{actionId} | Returns a workflow instance action. *WorkflowInstancesApi* | [**getWorkflowInstancesList**](docs/WorkflowInstancesApi.md#getWorkflowInstancesList) | **GET** /workflow/api/v8/workflows/{id}/instances/list | Returns a list of workflow instances. *WorkflowSchemasApi* | [**getWorkflowSchema**](docs/WorkflowSchemasApi.md#getWorkflowSchema) | **GET** /workflow/api/v8/schemas/{id} | Returns a workflow schema. *WorkflowSchemasApi* | [**getWorkflowSchemasList**](docs/WorkflowSchemasApi.md#getWorkflowSchemasList) | **GET** /workflow/api/v8/schemas/list | Returns a list of workflow schemas. *WorkflowTargetsApi* | [**createWorkflowTarget**](docs/WorkflowTargetsApi.md#createWorkflowTarget) | **POST** /workflow/api/v8/targets | Creates a new workflow target. *WorkflowTargetsApi* | [**deleteWorkflowTarget**](docs/WorkflowTargetsApi.md#deleteWorkflowTarget) | **DELETE** /workflow/api/v8/targets/{id} | Deletes a workflow target. *WorkflowTargetsApi* | [**getWorkflowTarget**](docs/WorkflowTargetsApi.md#getWorkflowTarget) | **GET** /workflow/api/v8/targets/{id} | Returns a workflow target. *WorkflowTargetsApi* | [**getWorkflowTargetsList**](docs/WorkflowTargetsApi.md#getWorkflowTargetsList) | **GET** /workflow/api/v8/targets/list | Returns a list of workflow targets. *WorkflowTargetsApi* | [**updateWorkflowTarget**](docs/WorkflowTargetsApi.md#updateWorkflowTarget) | **PUT** /workflow/api/v8/targets/{id} | Updates a workflow target. *WorkflowsApi* | [**deleteWorkflow**](docs/WorkflowsApi.md#deleteWorkflow) | **DELETE** /workflow/api/v8/workflows/{id} | Delete a workflow. *WorkflowsApi* | [**exportWorkflow**](docs/WorkflowsApi.md#exportWorkflow) | **GET** /workflow/api/v8/workflows/{id}/export | Exports a workflow. *WorkflowsApi* | [**getWorkflow**](docs/WorkflowsApi.md#getWorkflow) | **GET** /workflow/api/v8/workflows/{id} | Returns a workflow. *WorkflowsApi* | [**getWorkflowStartConfig**](docs/WorkflowsApi.md#getWorkflowStartConfig) | **GET** /workflow/api/v8/workflows/{id}/startconfig | Returns a workflow start config. *WorkflowsApi* | [**getWorkflowsList**](docs/WorkflowsApi.md#getWorkflowsList) | **GET** /workflow/api/v8/workflows/list | Returns a list of workflows. *WorkflowsApi* | [**importWorkflow**](docs/WorkflowsApi.md#importWorkflow) | **POST** /workflow/api/v8/workflows | Imports a workflow. *WorkflowsApi* | [**startWorkflow**](docs/WorkflowsApi.md#startWorkflow) | **POST** /workflow/api/v8/workflows/{id}/start | Starts a workflow. *WorkflowsApi* | [**updateWorkflow**](docs/WorkflowsApi.md#updateWorkflow) | **PUT** /workflow/api/v8/workflows/{id} | Updates a workflow. *WorkflowsApi* | [**validateWorkflow**](docs/WorkflowsApi.md#validateWorkflow) | **POST** /workflow/api/v8/workflows/{id}/validate | Validates a workflow. ## Documentation for Models - [AccessToken](docs/AccessToken.md) - [BillingCostsReport](docs/BillingCostsReport.md) - [BillingCycle](docs/BillingCycle.md) - [BillingCycleAllOf](docs/BillingCycleAllOf.md) - [BillingCycleCreate](docs/BillingCycleCreate.md) - [BillingCycleProcess](docs/BillingCycleProcess.md) - [BillingCycleProcessAccepted](docs/BillingCycleProcessAccepted.md) - [BillingCycleUpdate](docs/BillingCycleUpdate.md) - [BillingCyclesPage](docs/BillingCyclesPage.md) - [BillingCyclesPageAllOf](docs/BillingCyclesPageAllOf.md) - [BillingEvent](docs/BillingEvent.md) - [BillingEventAllOf](docs/BillingEventAllOf.md) - [BillingEventCreate](docs/BillingEventCreate.md) - [BillingEventUpdate](docs/BillingEventUpdate.md) - [BillingEventsPage](docs/BillingEventsPage.md) - [BillingEventsPageAllOf](docs/BillingEventsPageAllOf.md) - [BillingPrice](docs/BillingPrice.md) - [BillingPriceAllOf](docs/BillingPriceAllOf.md) - [BillingPriceCreate](docs/BillingPriceCreate.md) - [BillingPriceUpdate](docs/BillingPriceUpdate.md) - [BillingPricesPage](docs/BillingPricesPage.md) - [BillingPricesPageAllOf](docs/BillingPricesPageAllOf.md) - [CatalogAssignment](docs/CatalogAssignment.md) - [ChangeRequest](docs/ChangeRequest.md) - [ChangeRequestAllOf](docs/ChangeRequestAllOf.md) - [ChangeRequestCreate](docs/ChangeRequestCreate.md) - [ChangeRequestSummary](docs/ChangeRequestSummary.md) - [ChangeRequestUpdate](docs/ChangeRequestUpdate.md) - [ChangeRequestsPage](docs/ChangeRequestsPage.md) - [ChangeRequestsPageAllOf](docs/ChangeRequestsPageAllOf.md) - [CostSummary](docs/CostSummary.md) - [Device](docs/Device.md) - [DeviceAllOf](docs/DeviceAllOf.md) - [DeviceConfigUpdate](docs/DeviceConfigUpdate.md) - [DeviceCreate](docs/DeviceCreate.md) - [DeviceCreateAllOf](docs/DeviceCreateAllOf.md) - [DevicePatch](docs/DevicePatch.md) - [DeviceSummary](docs/DeviceSummary.md) - [DeviceTemplate](docs/DeviceTemplate.md) - [DeviceTemplateAccess](docs/DeviceTemplateAccess.md) - [DeviceTemplateAccessResponse](docs/DeviceTemplateAccessResponse.md) - [DeviceTemplateAttachRequest](docs/DeviceTemplateAttachRequest.md) - [DeviceTemplateBatchAttachRequest](docs/DeviceTemplateBatchAttachRequest.md) - [DeviceTemplateCreate](docs/DeviceTemplateCreate.md) - [DeviceTemplateDetails](docs/DeviceTemplateDetails.md) - [DeviceTemplateHistory](docs/DeviceTemplateHistory.md) - [DeviceTemplateHistorySummary](docs/DeviceTemplateHistorySummary.md) - [DeviceTemplateUpdateDetails](docs/DeviceTemplateUpdateDetails.md) - [DeviceTemplateUpdateRequest](docs/DeviceTemplateUpdateRequest.md) - [DeviceTemplateVersionCreate](docs/DeviceTemplateVersionCreate.md) - [DeviceUpdate](docs/DeviceUpdate.md) - [DeviceUpdateAllOf](docs/DeviceUpdateAllOf.md) - [DevicesPage](docs/DevicesPage.md) - [DevicesPageAllOf](docs/DevicesPageAllOf.md) - [Error](docs/Error.md) - [GenericEvent](docs/GenericEvent.md) - [GenericEventAllOf](docs/GenericEventAllOf.md) - [GenericEventCreate](docs/GenericEventCreate.md) - [GenericEventSecurity](docs/GenericEventSecurity.md) - [GenericEventSeverity](docs/GenericEventSeverity.md) - [GenericEventTrace](docs/GenericEventTrace.md) - [Incident](docs/Incident.md) - [IncidentAllOf](docs/IncidentAllOf.md) - [IncidentCancel](docs/IncidentCancel.md) - [IncidentConfig](docs/IncidentConfig.md) - [IncidentConfigPatch](docs/IncidentConfigPatch.md) - [IncidentConfigUpdate](docs/IncidentConfigUpdate.md) - [IncidentCreate](docs/IncidentCreate.md) - [IncidentUpdate](docs/IncidentUpdate.md) - [IncidentsPage](docs/IncidentsPage.md) - [IncidentsPageAllOf](docs/IncidentsPageAllOf.md) - [LegacyAbsoluteConfig](docs/LegacyAbsoluteConfig.md) - [LegacyAddress](docs/LegacyAddress.md) - [LegacyNsoResponseTypes](docs/LegacyNsoResponseTypes.md) - [LegacyRelativeConfig](docs/LegacyRelativeConfig.md) - [LegacyScheduleConfig](docs/LegacyScheduleConfig.md) - [LegacyServiceOrder](docs/LegacyServiceOrder.md) - [LegacyServiceOrderDetail](docs/LegacyServiceOrderDetail.md) - [LegacyServiceOrderResponse](docs/LegacyServiceOrderResponse.md) - [LegacySite](docs/LegacySite.md) - [LegacySiteDevice](docs/LegacySiteDevice.md) - [LegacySiteDeviceOnboard](docs/LegacySiteDeviceOnboard.md) - [LegacySubscriptionDetail](docs/LegacySubscriptionDetail.md) - [LicenseDetails](docs/LicenseDetails.md) - [LicenseSummary](docs/LicenseSummary.md) - [ManageChangeRequestPending](docs/ManageChangeRequestPending.md) - [NSOConfigDataXPath](docs/NSOConfigDataXPath.md) - [NameValue](docs/NameValue.md) - [Offer](docs/Offer.md) - [OfferAllOf](docs/OfferAllOf.md) - [OfferCreate](docs/OfferCreate.md) - [OfferUpdate](docs/OfferUpdate.md) - [OffersPage](docs/OffersPage.md) - [OffersPageAllOf](docs/OffersPageAllOf.md) - [PageHeader](docs/PageHeader.md) - [Product](docs/Product.md) - [ProductAllOf](docs/ProductAllOf.md) - [ProductCreate](docs/ProductCreate.md) - [ProductUpdate](docs/ProductUpdate.md) - [ProductsPage](docs/ProductsPage.md) - [ProductsPageAllOf](docs/ProductsPageAllOf.md) - [ResourceHealth](docs/ResourceHealth.md) - [ResourceStatus](docs/ResourceStatus.md) - [ResourceType](docs/ResourceType.md) - [Role](docs/Role.md) - [Service](docs/Service.md) - [ServiceAllOf](docs/ServiceAllOf.md) - [ServiceElement](docs/ServiceElement.md) - [ServiceElementPrice](docs/ServiceElementPrice.md) - [ServiceNowConfiguration](docs/ServiceNowConfiguration.md) - [ServiceNowConfigurationCreate](docs/ServiceNowConfigurationCreate.md) - [ServiceNowConfigurationRequest](docs/ServiceNowConfigurationRequest.md) - [ServiceNowConfigurationsPage](docs/ServiceNowConfigurationsPage.md) - [ServiceNowConfigurationsPageAllOf](docs/ServiceNowConfigurationsPageAllOf.md) - [ServiceSLMUIConfig](docs/ServiceSLMUIConfig.md) - [ServiceUIConfig](docs/ServiceUIConfig.md) - [ServiceUILink](docs/ServiceUILink.md) - [ServiceUIResource](docs/ServiceUIResource.md) - [ServiceUpdate](docs/ServiceUpdate.md) - [ServicesPage](docs/ServicesPage.md) - [ServicesPageAllOf](docs/ServicesPageAllOf.md) - [Site](docs/Site.md) - [SiteAddress](docs/SiteAddress.md) - [SiteContact](docs/SiteContact.md) - [SiteCreate](docs/SiteCreate.md) - [SiteCreateAllOf](docs/SiteCreateAllOf.md) - [SiteLocation](docs/SiteLocation.md) - [SiteStatus](docs/SiteStatus.md) - [SiteUpdate](docs/SiteUpdate.md) - [SitesPage](docs/SitesPage.md) - [SitesPageAllOf](docs/SitesPageAllOf.md) - [SmartAccountConfiguration](docs/SmartAccountConfiguration.md) - [SmartAccountConfigurationCreate](docs/SmartAccountConfigurationCreate.md) - [SmartAccountConfigurationUpdate](docs/SmartAccountConfigurationUpdate.md) - [SmartAccountType](docs/SmartAccountType.md) - [SmartAccountUser](docs/SmartAccountUser.md) - [SmartAccountUserRole](docs/SmartAccountUserRole.md) - [SmartUserAccounts](docs/SmartUserAccounts.md) - [SmartUserAccountsAllOf](docs/SmartUserAccountsAllOf.md) - [StartWorkflowResponse](docs/StartWorkflowResponse.md) - [Template](docs/Template.md) - [TemplateApplication](docs/TemplateApplication.md) - [TemplateApplicationAllOf](docs/TemplateApplicationAllOf.md) - [TemplateApplicationCreate](docs/TemplateApplicationCreate.md) - [TemplateApplicationStatusPatch](docs/TemplateApplicationStatusPatch.md) - [TemplateApplicationsPage](docs/TemplateApplicationsPage.md) - [TemplateApplicationsPageAllOf](docs/TemplateApplicationsPageAllOf.md) - [TemplateAssignment](docs/TemplateAssignment.md) - [TemplateAssignmentAllOf](docs/TemplateAssignmentAllOf.md) - [TemplateAssignmentResponse](docs/TemplateAssignmentResponse.md) - [TemplateAssignmentResponseAllOf](docs/TemplateAssignmentResponseAllOf.md) - [TemplateAssignmentStatusPatch](docs/TemplateAssignmentStatusPatch.md) - [TemplateAssignmentsPage](docs/TemplateAssignmentsPage.md) - [TemplateAssignmentsPageAllOf](docs/TemplateAssignmentsPageAllOf.md) - [TemplateCreate](docs/TemplateCreate.md) - [TemplateParameterValidator](docs/TemplateParameterValidator.md) - [TemplatePatch](docs/TemplatePatch.md) - [TemplateStatus](docs/TemplateStatus.md) - [TemplateStatusMeta](docs/TemplateStatusMeta.md) - [TemplatesPage](docs/TemplatesPage.md) - [TemplatesPageAllOf](docs/TemplatesPageAllOf.md) - [Tenant](docs/Tenant.md) - [TenantAllOf](docs/TenantAllOf.md) - [TenantCreate](docs/TenantCreate.md) - [TenantCreateAllOf](docs/TenantCreateAllOf.md) - [TenantUpdate](docs/TenantUpdate.md) - [TenantsPage](docs/TenantsPage.md) - [TenantsPageAllOf](docs/TenantsPageAllOf.md) - [UpdatePassword](docs/UpdatePassword.md) - [User](docs/User.md) - [UserAllOf](docs/UserAllOf.md) - [UserCreate](docs/UserCreate.md) - [UserCreateAllOf](docs/UserCreateAllOf.md) - [UserUpdate](docs/UserUpdate.md) - [UsersPage](docs/UsersPage.md) - [UsersPageAllOf](docs/UsersPageAllOf.md) - [ValidateWorkflowResponse](docs/ValidateWorkflowResponse.md) - [VulnerabilitiesPage](docs/VulnerabilitiesPage.md) - [VulnerabilitiesPageAllOf](docs/VulnerabilitiesPageAllOf.md) - [VulnerabilitiesRegistrationPage](docs/VulnerabilitiesRegistrationPage.md) - [VulnerabilitiesRegistrationPageAllOf](docs/VulnerabilitiesRegistrationPageAllOf.md) - [Vulnerability](docs/Vulnerability.md) - [VulnerabilityFeed](docs/VulnerabilityFeed.md) - [VulnerabilityIngestPage](docs/VulnerabilityIngestPage.md) - [VulnerabilityIngestPageAllOf](docs/VulnerabilityIngestPageAllOf.md) - [VulnerabilityIngestion](docs/VulnerabilityIngestion.md) - [VulnerabilityRegistration](docs/VulnerabilityRegistration.md) - [VulnerabilityRegistrationAllOf](docs/VulnerabilityRegistrationAllOf.md) - [VulnerabilityRegistrationCreate](docs/VulnerabilityRegistrationCreate.md) - [VulnerabilitySeverity](docs/VulnerabilitySeverity.md) - [VulnerabilityValidation](docs/VulnerabilityValidation.md) - [VulnerabilityValidationPage](docs/VulnerabilityValidationPage.md) - [VulnerabilityValidationPageAllOf](docs/VulnerabilityValidationPageAllOf.md) - [Workflow](docs/Workflow.md) - [WorkflowAccessMeta](docs/WorkflowAccessMeta.md) - [WorkflowAccessMetaType](docs/WorkflowAccessMetaType.md) - [WorkflowAction](docs/WorkflowAction.md) - [WorkflowActionBlock](docs/WorkflowActionBlock.md) - [WorkflowAllOf](docs/WorkflowAllOf.md) - [WorkflowCategory](docs/WorkflowCategory.md) - [WorkflowCategoryAllOf](docs/WorkflowCategoryAllOf.md) - [WorkflowCategoryCreate](docs/WorkflowCategoryCreate.md) - [WorkflowCategoryUpdate](docs/WorkflowCategoryUpdate.md) - [WorkflowDefAccessMeta](docs/WorkflowDefAccessMeta.md) - [WorkflowEvent](docs/WorkflowEvent.md) - [WorkflowEventAllOf](docs/WorkflowEventAllOf.md) - [WorkflowEventCreate](docs/WorkflowEventCreate.md) - [WorkflowEventUpdate](docs/WorkflowEventUpdate.md) - [WorkflowFooter](docs/WorkflowFooter.md) - [WorkflowInstance](docs/WorkflowInstance.md) - [WorkflowInstanceAllOf](docs/WorkflowInstanceAllOf.md) - [WorkflowInstanceDeleteResponse](docs/WorkflowInstanceDeleteResponse.md) - [WorkflowMapping](docs/WorkflowMapping.md) - [WorkflowMetadata](docs/WorkflowMetadata.md) - [WorkflowMetadataGitInfo](docs/WorkflowMetadataGitInfo.md) - [WorkflowSchema](docs/WorkflowSchema.md) - [WorkflowSchemaAllOf](docs/WorkflowSchemaAllOf.md) - [WorkflowSchemaByTypeResponse](docs/WorkflowSchemaByTypeResponse.md) - [WorkflowStartConfig](docs/WorkflowStartConfig.md) - [WorkflowTarget](docs/WorkflowTarget.md) - [WorkflowTargetAllOf](docs/WorkflowTargetAllOf.md) - [WorkflowTargetCreate](docs/WorkflowTargetCreate.md) - [WorkflowTargetUpdate](docs/WorkflowTargetUpdate.md) - [WorkflowVariable](docs/WorkflowVariable.md) - [WorkflowVariableAllOf](docs/WorkflowVariableAllOf.md) ## Documentation for Authorization All endpoints do not require authorization. Authentication schemes defined for the API: ## Recommendation It's recommended to create an instance of `ApiClient` per thread in a multithreaded environment to avoid any potential issues. ## Author