# go-msx-sdk **Repository Path**: mirrors_CiscoDevNet/go-msx-sdk ## Basic Information - **Project Name**: go-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**: 2026-02-15 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Go API client for msxsdk MSX SDK client. ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client. - API version: 1.0.10 - Package version: 1.0.10 - Build package: org.openapitools.codegen.languages.GoClientCodegen ## Installation Install the following dependencies: ```shell go get github.com/stretchr/testify/assert go get golang.org/x/oauth2 go get golang.org/x/net/context ``` Put the package under your project folder and add the following in import: ```golang import msxsdk "github.com/GIT_USER_ID/GIT_REPO_ID" ``` To use a proxy, set the environment variable `HTTP_PROXY`: ```golang os.Setenv("HTTP_PROXY", "http://proxy_name:proxy_port") ``` ## Configuration of Server URL Default configuration comes with `Servers` field that contains server objects as defined in the OpenAPI specification. ### Select Server Configuration For using other server than the one defined on index 0 set context value `sw.ContextServerIndex` of type `int`. ```golang ctx := context.WithValue(context.Background(), msxsdk.ContextServerIndex, 1) ``` ### Templated Server URL Templated server URL is formatted using default variables from configuration or from context value `sw.ContextServerVariables` of type `map[string]string`. ```golang ctx := context.WithValue(context.Background(), msxsdk.ContextServerVariables, map[string]string{ "basePath": "v2", }) ``` Note, enum values are always validated and all unused variables are silently ignored. ### URLs Configuration per Operation Each operation can use different server URL defined using `OperationServers` map in the `Configuration`. An operation is uniquely identified by `"{classname}Service.{nickname}"` string. Similar rules for overriding default operation server index and variables applies by using `sw.ContextOperationServerIndices` and `sw.ContextOperationServerVariables` context maps. ``` ctx := context.WithValue(context.Background(), msxsdk.ContextOperationServerIndices, map[string]int{ "{classname}Service.{nickname}": 2, }) ctx = context.WithValue(context.Background(), msxsdk.ContextOperationServerVariables, map[string]map[string]string{ "{classname}Service.{nickname}": { "port": "8443", }, }) ``` ## 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 Endpoints do not require authorization. ## Documentation for Utility Methods Due to the fact that model structure members are all pointers, this package contains a number of utility functions to easily obtain pointers to values of basic types. Each of these functions takes a value of the given basic type and returns a pointer to it: * `PtrBool` * `PtrInt` * `PtrInt32` * `PtrInt64` * `PtrFloat` * `PtrFloat32` * `PtrFloat64` * `PtrString` * `PtrTime` ## Author