Categorygithub.com/CiscoDevNet/go-msx-sdk
modulepackage
1.0.11
Repository: https://github.com/ciscodevnet/go-msx-sdk.git
Documentation: pkg.go.dev

# README

Go API client for msxsdk

MSX SDK client.

Overview

This API client was generated by the OpenAPI Generator project. By using the OpenAPI-spec from a remote server, you can easily generate an API client.

  • API version: 1.0.9
  • Package version: 1.0.9
  • Build package: org.openapitools.codegen.languages.GoClientCodegen

Installation

Install the following dependencies:

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:

import sw "./msxsdk"

To use a proxy, set the environment variable HTTP_PROXY:

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.

ctx := context.WithValue(context.Background(), sw.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.

ctx := context.WithValue(context.Background(), sw.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 identifield 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(), sw.ContextOperationServerIndices, map[string]int{
	"{classname}Service.{nickname}": 2,
})
ctx = context.WithValue(context.Background(), sw.ContextOperationServerVariables, map[string]map[string]string{
	"{classname}Service.{nickname}": {
		"port": "8443",
	},
})

Documentation for API Endpoints

All URIs are relative to http://localhost

ClassMethodHTTP requestDescription
AuditingGenericEventsApiCreateGenericEventPost /auditing/api/v8/genericeventsCreate Generic Event
BillingCyclesApiAddBillingCyclePost /billing/api/v8/cyclesAdd a billing cycle.
BillingCyclesApiDeleteBillingCycleDelete /billing/api/v8/cycles/{id}Delete a billing cycle.
BillingCyclesApiGetBillingCycleGet /billing/api/v8/cycles/{id}Get a billing cycle.
BillingCyclesApiGetBillingCyclesPageGet /billing/api/v8/cyclesRetrieve a page of billing cycles.
BillingCyclesApiProcessBillingCyclePost /billing/api/v8/cycles/processProcess a billing cycle.
BillingCyclesApiUpdateBillingCyclePut /billing/api/v8/cycles/{id}Update billing cycle for an event type and tenant.
BillingEventsApiGetCostSummaryGet /billing/api/v8/events/costsRetrieve a summary for tenant cost.
BillingEventsApiGetEventGet /billing/api/v8/events/{id}Get an Event.
BillingEventsApiGetEventsPageGet /billing/api/v8/eventsRetrieve a page of events for tenant.
BillingPricesApiAddPricePost /billing/api/v8/pricesAdd price for tenant and event type.
BillingPricesApiDeletePriceDelete /billing/api/v8/prices/{id}Delete a price.
BillingPricesApiGetPriceGet /billing/api/v8/prices/{id}Get a price.
BillingPricesApiGetPricesPageGet /billing/api/v8/pricesRetrieve a page of prices.
BillingPricesApiUpdatePricePut /billing/api/v8/prices/{id}Update price for an event type and tenant.
DeviceTemplatesApiCreateDeviceTemplatePost /manage/api/v8/devicetemplatesCreates a device template.
DeviceTemplatesApiCreateDeviceTemplateVersionPost /manage/api/v8/devicetemplates/versionsCreates a new version of an existing device template.
DeviceTemplatesApiDeleteDeviceTemplateDelete /manage/api/v8/devicetemplates/{id}Deletes a device template.
DeviceTemplatesApiGetDeviceTemplateGet /manage/api/v8/devicetemplates/{id}Returns a device template.
DeviceTemplatesApiGetDeviceTemplatesListGet /manage/api/v8/devicetemplates/listReturns a list of device templates.
DeviceTemplatesApiScanDeviceTemplateParametersPost /manage/api/v8/devicetemplates/parameters/scanAPI to scan parameters from the device template XML.
DeviceTemplatesApiUpdateDeviceTemplateAccessPut /manage/api/v8/devicetemplates/{id}/accessUpdates device template access.
DevicesApiAttachDeviceTemplatesPost /manage/api/v8/devices/{id}/templatesAttaches one or more device templates to a device instance.
DevicesApiBatchAttachDeviceTemplatesPost /manage/api/v8/devices/templates/attachAttaches one or more device templates to a batch of device instances.
DevicesApiCreateDevicePost /manage/api/v8/devicesCreates a device.
DevicesApiDeleteDeviceDelete /manage/api/v8/devices/{id}Deletes a device.
DevicesApiDetachDeviceTemplateDelete /manage/api/v8/devices/{id}/templates/{templateId}Detaches a template from a device.
DevicesApiDetachDeviceTemplatesDelete /manage/api/v8/devices/{id}/templatesDetach device templates that are already attached to a device.
DevicesApiGetDeviceGet /manage/api/v8/devices/{id}Returns a device.
DevicesApiGetDeviceConfigGet /manage/api/v8/devices/{id}/configReturns the running configuration for a device.
DevicesApiGetDeviceTemplateHistoryGet /manage/api/v8/devices/{id}/templatesReturns device template history.
DevicesApiGetDevicesPageGet /manage/api/v8/devicesReturns a page of devices.
DevicesApiPatchDevicePatch /manage/api/v8/devices/{id}Update a device.
DevicesApiRedeployDevicePost /manage/api/v8/devices/{id}/redeployDedeploys a device.
DevicesApiUpdateDevicePut /manage/api/v8/devices/{id}Update a device.
DevicesApiUpdateDeviceTemplatesPut /manage/api/v8/devices/{id}/templatesUpdate device templates that are already attached to a device.
HealthApiGetDevicesHealthListGet /monitor/api/v8/health/devices/list
HealthApiGetServicesHealthListGet /monitor/api/v8/health/services/list
IncidentChangeRequestsApiCreateChangeRequestPost /incident/api/v8/changerequestsCreate a change request.
IncidentChangeRequestsApiDeleteChangeRequestDelete /incident/api/v8/changerequests/{id}Deletes a change request.
IncidentChangeRequestsApiGetChangeRequestGet /incident/api/v8/changerequests/{id}Returns a change request.
IncidentChangeRequestsApiGetChangeRequestsPageGet /incident/api/v8/changerequestsReturns a filtered list of change requests.
IncidentChangeRequestsApiUpdateChangeRequestPut /incident/api/v8/changerequests/{id}Updates a change request.
IncidentConfigurationsApiCreateServiceNowConfigurationPost /incident/api/v8/configurationsCreates a ServiceNow configuration.
IncidentConfigurationsApiDeleteServiceNowConfigurationDelete /incident/api/v8/configurations/{id}Deletes a ServiceNow configuration.
IncidentConfigurationsApiGetConfigurationGet /incident/api/v1/configAPI to get configuration of encloud service.
IncidentConfigurationsApiGetServiceNowConfigurationGet /incident/api/v8/configurations/{id}Returns a ServiceNow configuration.
IncidentConfigurationsApiGetServiceNowConfigurationsPageGet /incident/api/v8/configurationsReturns a ServiceNow configurations.
IncidentConfigurationsApiPatchConfigurationPatch /incident/api/v1/configAPI to patch configure encloud service
IncidentConfigurationsApiUpdateConfigurationPut /incident/api/v1/configAPI to configure encloud service.
IncidentsApiCancelIncidentPatch /incident/api/v1/incidents/{id}/cancelCancels an incident.
IncidentsApiCreateIncidentPost /incident/api/v1/incidentsCreate a new Incident.
IncidentsApiDeleteIncidentDelete /incident/api/v1/incidents/{id}Deletes an incident.
IncidentsApiGetIncidentGet /incident/api/v1/incidents/{id}Get incident details.
IncidentsApiGetIncidentsGet /incident/api/v1/incidentsGet Incidents by filter.
IncidentsApiUpdateIncidentPut /incident/api/v1/incidents/{id}Updates an incident.
LicensingAccountsApiGetUserAccountsListGet /licensing/api/v8/accounts/smart/listReturns a filtered page of smart accounts.
LicensingConfigurationsApiCreateSmartAccountConfigurationPost /licensing/api/v8/configurationCreates a smart account configuration.
LicensingConfigurationsApiGetSmartAccountConfigurationGet /licensing/api/v8/configurationReturns a smart account configuration.
LicensingConfigurationsApiUpdateSmartAccountConfigurationPut /licensing/api/v8/configurationUpdates a smart account configuration.
LicensingLicensesApiGetLicensesListGet /licensing/api/v8/licensing/api/v8/licenses/listReturns a filtered list of licenses.
OffersApiCreateOfferPost /consume/api/v8/offersCreates a product offer.
OffersApiDeleteOfferDelete /consume/api/v8/offers/{id}Deletes a product offer
OffersApiGetOfferGet /consume/api/v8/offers/{id}Returns a product offer.
OffersApiGetOfferAssignmentsListGet /consume/api/v8/offers/{id}/assignments/listReturns a list of tenant assignments for a product offer.
OffersApiGetOffersCountGet /consume/api/v8/offers/countReturns the number of product offers.
OffersApiGetOffersPageGet /consume/api/v8/offersReturns a page of product offers.
OffersApiUpdateOfferPut /consume/api/v8/offers/{id}Updates a product offer.
OffersApiUpdateOfferAssignmentsPut /consume/api/v8/offers/{id}/assignmentsUpdates the tenant assignemnts for a product offer.
ProductsApiCreateProductPost /consume/api/v8/productsCreates a product.
ProductsApiDeleteProductDelete /consume/api/v8/products/{id}Deletes a product.
ProductsApiGetProductGet /consume/api/v8/products/{id}Returns a product.
ProductsApiGetProductAssignmentsListGet /consume/api/v8/products/{id}/assignments/listReturns a list of tenant assignments for a product .
ProductsApiGetProductsCountGet /consume/api/v8/products/countReturns the number of products.
ProductsApiGetProductsPageGet /consume/api/v8/productsReturns a page of products.
ProductsApiUpdateProductPut /consume/api/v8/products/{id}Updates a product.
ProductsApiUpdateProductAssignmentsPut /consume/api/v8/products/{id}/assignmentsUpdates the tenant assignments for a product.
RegistrationApiDeleteRegisteredProductVersionDelete /vulnerability/api/v8/vulnerabilities/registrations/{id}Delete a registration.
RegistrationApiGetRegisteredProductVersionPageGet /vulnerability/api/v8/vulnerabilities/registrationsReturns a filtered page of registered products / versions.
RegistrationApiRegisterProductVersionPost /vulnerability/api/v8/vulnerabilities/registrationsRegister a product / verison combination for vulnerability inspection.
RolesApiGetRoleByNameGet /idm/api/v8/roles/name/{name}Returns a role by name.
RolesApiGetRolesListGet /idm/api/v8/roles/listReturns a list of roles.
SecurityApiGetAccessTokenPost /idm/v2/tokenReturns an access token.
ServicesApiDeleteServiceDelete /manage/api/v8/services/{id}Deletes a service.
ServicesApiGetServiceGet /manage/api/v8/services/{id}Returns a service.
ServicesApiGetServicesPageGet /manage/api/v8/servicesReturns a page of services.
ServicesApiSubmitOrderPost /manage/api/v8/servicesSubmits an order.
ServicesApiUpdateOrderPut /manage/api/v8/servicesUpdates an order.
ServicesApiUpdateServicePut /manage/api/v8/services/{id}Updates a service.
SitesApiAddDevicesToSitePost /manage/api/v8/sites/{id}/devices/addAdd devices to a site.
SitesApiAddServicesToSitePost /manage/api/v8/sites/{id}/services/addAdd services to a site.
SitesApiCreateSitePost /manage/api/v8/sitesCreates a new site.
SitesApiDeleteSiteDelete /manage/api/v8/sites/{id}Deletes a site.
SitesApiGetSiteGet /manage/api/v8/sites/{id}Returns a site.
SitesApiGetSitesPageGet /manage/api/v8/sitesReturns a page of Sites. Only one filter is supported at a time.
SitesApiRemoveDevicesFromSitePost /manage/api/v8/sites/{id}/devices/removeRemoves devices from a site.
SitesApiRemoveServicesFromSitePost /manage/api/v8/sites/{id}/services/removeRemove services from a site.
SitesApiUpdateSitePut /manage/api/v8/sites/{id}Updates a site.
TemplateApplicationsApiApplyTemplatePost /template/api/v8/templates/{id}/applicationsApplies a template to a target.
TemplateApplicationsApiDeleteTemplateApplicationDelete /template/api/v8/templates/applications/{id}Deletes a template application.
TemplateApplicationsApiGetTemplateApplicationGet /template/api/v8/templates/applications/{id}Gets a template application.
TemplateApplicationsApiGetTemplateApplicationHistoryGet /template/api/v8/templates/applications/{id}/historyGets a template application history.
TemplateApplicationsApiGetTemplateApplicationsPageGet /template/api/v8/templates/applicationsGet a page of template applications.
TemplateApplicationsApiUpdateApplicationStatusPatch /template/api/v8/templates/applications/{id}Updates an application status.
TemplateAssignmentsApiBatchAssignTemplatePost /template/api/v8/templates/{id}/assignments/addAssigns a template to one or more tenants.
TemplateAssignmentsApiBatchUnassignTemplatePost /template/api/v8/templates/{id}/assignments/removeUnassigns a template from one or more tenants.
TemplateAssignmentsApiGetAssignmentGet /template/api/v8/templates/assignments/{id}Gets a template assignment.
TemplateAssignmentsApiGetAssignmentHistoryGet /template/api/v8/templates/assignments/{id}/historyGets a template assignment history.
TemplateAssignmentsApiGetTemplateAssignmentsPageGet /template/api/v8/templates/assignmentsReturns a page of template assignments.
TemplateAssignmentsApiUpdateAssignmentStatusPatch /template/api/v8/templates/assignments/{id}Updates a template assignment status.
TemplatesApiDeleteTemplateDelete /template/api/v8/templates/{id}Deletes a template.
TemplatesApiGetTemplateGet /template/api/v8/templates/{id}Returns a template by id.
TemplatesApiGetTemplateHistoryGet /template/api/v8/templates/{id}/historyReturns a template history by id.
TemplatesApiGetTemplatesPageGet /template/api/v8/templatesReturns a page of templates.
TemplatesApiImportTemplatePost /template/api/v8/templatesImports a template.
TemplatesApiUpdateTemplateStatusPatch /template/api/v8/templates/{id}Updates a template status.
TenantsApiCreateTenantPost /idm/api/v8/tenantsCreates a new tenant.
TenantsApiDeleteTenantDelete /idm/api/v8/tenants/{id}Deletes a tenant by id.
TenantsApiGetTenantGet /idm/api/v8/tenants/{id}Returns a tenant by id.
TenantsApiGetTenantsListGet /idm/api/v8/tenants/listReturns a list of tenants.
TenantsApiGetTenantsPageGet /idm/api/v8/tenantsReturns a page of tenants.
TenantsApiUpdateTenantPut /idm/api/v8/tenants/{id}Updates a tenant by id.
UsersApiCreateUserPost /idm/api/v8/usersCreates a new user.
UsersApiDeleteUserDelete /idm/api/v8/users/{id}Deletes a user by id.
UsersApiGetCurrentUserGet /idm/api/v8/users/currentReturns the current user.
UsersApiGetUserGet /idm/api/v8/users/{id}Returns an existing user.
UsersApiGetUsersPageGet /idm/api/v8/usersReturns a page of users.
UsersApiUpdateUserPut /idm/api/v8/users/{id}Updates an existing user.
UsersApiUpdateUserPasswordPut /idm/api/v8/users/updatepasswordUpdate a user password.
ValidationApiGetValidateProductVersionPageGet /vulnerability/api/v8/vulnerabilities/validationsReturns a filtered page of validations.
ValidationApiValidateProductVersionPost /vulnerability/api/v8/vulnerabilities/validationsValidate registered product / verison combinations for vulnerabilities.
VulnerabilitiesApiGetIngestVulnerabilitiesTasksPageGet /vulnerability/api/v8/vulnerabilities/ingestsReturns a filtered page of ingest tasks.
VulnerabilitiesApiGetVulnerabilitiesPageGet /vulnerability/api/v8/vulnerabilitiesReturns a filtered page of vulnerabilities.
VulnerabilitiesApiIngestVulnerabilitiesPost /vulnerability/api/v8/vulnerabilities/ingestsIngests a CVE JSON feed into the Vulnerability Service datastore.
WorkflowCategoriesApiCreateWorkflowCategoryPost /workflow/api/v8/categoriesCreates a new workflow category.
WorkflowCategoriesApiDeleteWorkflowCategoryDelete /workflow/api/v8/categories/{id}Deletes a workflow category.
WorkflowCategoriesApiGetWorkflowCategoriesListGet /workflow/api/v8/categories/listReturns a list of workflow categories.
WorkflowCategoriesApiGetWorkflowCategoryGet /workflow/api/v8/categories/{id}Returns a workflow category.
WorkflowCategoriesApiUpdateWorkflowCategoryPut /workflow/api/v8/categories/{id}Updates a workflow category.
WorkflowEventsApiCreateWorkflowEventPost /workflow/api/v8/eventsCreates a new workflow event.
WorkflowEventsApiDeleteWorkflowEventDelete /workflow/api/v8/events/{id}Deletes a workflow event.
WorkflowEventsApiGetWorkflowEventGet /workflow/api/v8/events/{id}Returns a workflow event.
WorkflowEventsApiGetWorkflowEventsListGet /workflow/api/v8/events/listReturns a list of workflow events.
WorkflowEventsApiUpdateWorkflowEventPut /workflow/api/v8/events/{id}Updates a workflow event.
WorkflowInstancesApiCancelWorkflowInstancePost /workflow/api/v8/workflows/instances/{id}/cancelCancels a workflow instance.
WorkflowInstancesApiDeleteWorkflowInstanceDelete /workflow/api/v8/workflows/instances/{id}Deletes a workflow instance.
WorkflowInstancesApiGetWorkflowInstanceGet /workflow/api/v8/workflows/instances/{id}Returns a workflow instance.
WorkflowInstancesApiGetWorkflowInstanceActionGet /workflow/api/v8/workflows/instances/{id}/actions/{actionId}Returns a workflow instance action.
WorkflowInstancesApiGetWorkflowInstancesListGet /workflow/api/v8/workflows/{id}/instances/listReturns a list of workflow instances.
WorkflowSchemasApiGetWorkflowSchemaGet /workflow/api/v8/schemas/{id}Returns a workflow schema.
WorkflowSchemasApiGetWorkflowSchemasListGet /workflow/api/v8/schemas/listReturns a list of workflow schemas.
WorkflowTargetsApiCreateWorkflowTargetPost /workflow/api/v8/targetsCreates a new workflow target.
WorkflowTargetsApiDeleteWorkflowTargetDelete /workflow/api/v8/targets/{id}Deletes a workflow target.
WorkflowTargetsApiGetWorkflowTargetGet /workflow/api/v8/targets/{id}Returns a workflow target.
WorkflowTargetsApiGetWorkflowTargetsListGet /workflow/api/v8/targets/listReturns a list of workflow targets.
WorkflowTargetsApiUpdateWorkflowTargetPut /workflow/api/v8/targets/{id}Updates a workflow target.
WorkflowsApiDeleteWorkflowDelete /workflow/api/v8/workflows/{id}Delete a workflow.
WorkflowsApiExportWorkflowGet /workflow/api/v8/workflows/{id}/exportExports a workflow.
WorkflowsApiGetWorkflowGet /workflow/api/v8/workflows/{id}Returns a workflow.
WorkflowsApiGetWorkflowStartConfigGet /workflow/api/v8/workflows/{id}/startconfigReturns a workflow start config.
WorkflowsApiGetWorkflowsListGet /workflow/api/v8/workflows/listReturns a list of workflows.
WorkflowsApiImportWorkflowPost /workflow/api/v8/workflowsImports a workflow.
WorkflowsApiStartWorkflowPost /workflow/api/v8/workflows/{id}/startStarts a workflow.
WorkflowsApiUpdateWorkflowPut /workflow/api/v8/workflows/{id}Updates a workflow.
WorkflowsApiValidateWorkflowPost /workflow/api/v8/workflows/{id}/validateValidates a workflow.

Documentation For Models

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

# Functions

CacheExpires helper function to determine remaining time before repeating a request.
NewAccessToken instantiates a new AccessToken object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAccessTokenWithDefaults instantiates a new AccessToken object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAPIClient creates a new API client.
NewAPIResponse returns a new APIResonse object.
NewAPIResponseWithError returns a new APIResponse object with the provided error message.
NewBillingCostsReport instantiates a new BillingCostsReport object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBillingCostsReportWithDefaults instantiates a new BillingCostsReport object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBillingCycle instantiates a new BillingCycle object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBillingCycleAllOf instantiates a new BillingCycleAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBillingCycleAllOfWithDefaults instantiates a new BillingCycleAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBillingCycleCreate instantiates a new BillingCycleCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBillingCycleCreateWithDefaults instantiates a new BillingCycleCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBillingCycleProcess instantiates a new BillingCycleProcess object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBillingCycleProcessAccepted instantiates a new BillingCycleProcessAccepted object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBillingCycleProcessAcceptedWithDefaults instantiates a new BillingCycleProcessAccepted object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBillingCycleProcessWithDefaults instantiates a new BillingCycleProcess object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBillingCyclesPage instantiates a new BillingCyclesPage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBillingCyclesPageAllOf instantiates a new BillingCyclesPageAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBillingCyclesPageAllOfWithDefaults instantiates a new BillingCyclesPageAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBillingCyclesPageWithDefaults instantiates a new BillingCyclesPage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBillingCycleUpdate instantiates a new BillingCycleUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBillingCycleUpdateWithDefaults instantiates a new BillingCycleUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBillingCycleWithDefaults instantiates a new BillingCycle object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBillingEvent instantiates a new BillingEvent object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBillingEventAllOf instantiates a new BillingEventAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBillingEventAllOfWithDefaults instantiates a new BillingEventAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBillingEventCreate instantiates a new BillingEventCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBillingEventCreateWithDefaults instantiates a new BillingEventCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBillingEventsPage instantiates a new BillingEventsPage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBillingEventsPageAllOf instantiates a new BillingEventsPageAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBillingEventsPageAllOfWithDefaults instantiates a new BillingEventsPageAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBillingEventsPageWithDefaults instantiates a new BillingEventsPage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBillingEventUpdate instantiates a new BillingEventUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBillingEventUpdateWithDefaults instantiates a new BillingEventUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBillingEventWithDefaults instantiates a new BillingEvent object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBillingPrice instantiates a new BillingPrice object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBillingPriceAllOf instantiates a new BillingPriceAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBillingPriceAllOfWithDefaults instantiates a new BillingPriceAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBillingPriceCreate instantiates a new BillingPriceCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBillingPriceCreateWithDefaults instantiates a new BillingPriceCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBillingPricesPage instantiates a new BillingPricesPage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBillingPricesPageAllOf instantiates a new BillingPricesPageAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBillingPricesPageAllOfWithDefaults instantiates a new BillingPricesPageAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBillingPricesPageWithDefaults instantiates a new BillingPricesPage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBillingPriceUpdate instantiates a new BillingPriceUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBillingPriceUpdateWithDefaults instantiates a new BillingPriceUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBillingPriceWithDefaults instantiates a new BillingPrice object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCatalogAssignment instantiates a new CatalogAssignment object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCatalogAssignmentWithDefaults instantiates a new CatalogAssignment object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewChangeRequest instantiates a new ChangeRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewChangeRequestAllOf instantiates a new ChangeRequestAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewChangeRequestAllOfWithDefaults instantiates a new ChangeRequestAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewChangeRequestCreate instantiates a new ChangeRequestCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewChangeRequestCreateWithDefaults instantiates a new ChangeRequestCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewChangeRequestsPage instantiates a new ChangeRequestsPage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewChangeRequestsPageAllOf instantiates a new ChangeRequestsPageAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewChangeRequestsPageAllOfWithDefaults instantiates a new ChangeRequestsPageAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewChangeRequestsPageWithDefaults instantiates a new ChangeRequestsPage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewChangeRequestSummary instantiates a new ChangeRequestSummary object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewChangeRequestSummaryWithDefaults instantiates a new ChangeRequestSummary object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewChangeRequestUpdate instantiates a new ChangeRequestUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewChangeRequestUpdateWithDefaults instantiates a new ChangeRequestUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewChangeRequestWithDefaults instantiates a new ChangeRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConfiguration returns a new Configuration object.
NewCostSummary instantiates a new CostSummary object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCostSummaryWithDefaults instantiates a new CostSummary object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDevice instantiates a new Device object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeviceAllOf instantiates a new DeviceAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeviceAllOfWithDefaults instantiates a new DeviceAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeviceCreate instantiates a new DeviceCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeviceCreateAllOf instantiates a new DeviceCreateAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeviceCreateAllOfWithDefaults instantiates a new DeviceCreateAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeviceCreateWithDefaults instantiates a new DeviceCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDevicePatch instantiates a new DevicePatch object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDevicePatchWithDefaults instantiates a new DevicePatch object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDevicesPage instantiates a new DevicesPage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDevicesPageAllOf instantiates a new DevicesPageAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDevicesPageAllOfWithDefaults instantiates a new DevicesPageAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDevicesPageWithDefaults instantiates a new DevicesPage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeviceSummary instantiates a new DeviceSummary object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeviceSummaryWithDefaults instantiates a new DeviceSummary object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeviceTemplate instantiates a new DeviceTemplate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeviceTemplateAccess instantiates a new DeviceTemplateAccess object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeviceTemplateAccessResponse instantiates a new DeviceTemplateAccessResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeviceTemplateAccessResponseWithDefaults instantiates a new DeviceTemplateAccessResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeviceTemplateAccessWithDefaults instantiates a new DeviceTemplateAccess object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeviceTemplateAttachRequest instantiates a new DeviceTemplateAttachRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeviceTemplateAttachRequestWithDefaults instantiates a new DeviceTemplateAttachRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeviceTemplateBatchAttachRequest instantiates a new DeviceTemplateBatchAttachRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeviceTemplateBatchAttachRequestWithDefaults instantiates a new DeviceTemplateBatchAttachRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeviceTemplateCreate instantiates a new DeviceTemplateCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeviceTemplateCreateWithDefaults instantiates a new DeviceTemplateCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeviceTemplateDetails instantiates a new DeviceTemplateDetails object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeviceTemplateDetailsWithDefaults instantiates a new DeviceTemplateDetails object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeviceTemplateHistory instantiates a new DeviceTemplateHistory object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeviceTemplateHistorySummary instantiates a new DeviceTemplateHistorySummary object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeviceTemplateHistorySummaryWithDefaults instantiates a new DeviceTemplateHistorySummary object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeviceTemplateHistoryWithDefaults instantiates a new DeviceTemplateHistory object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeviceTemplateUpdateDetails instantiates a new DeviceTemplateUpdateDetails object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeviceTemplateUpdateDetailsWithDefaults instantiates a new DeviceTemplateUpdateDetails object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeviceTemplateUpdateRequest instantiates a new DeviceTemplateUpdateRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeviceTemplateUpdateRequestWithDefaults instantiates a new DeviceTemplateUpdateRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeviceTemplateVersionCreate instantiates a new DeviceTemplateVersionCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeviceTemplateVersionCreateWithDefaults instantiates a new DeviceTemplateVersionCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeviceTemplateWithDefaults instantiates a new DeviceTemplate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeviceUpdate instantiates a new DeviceUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeviceUpdateAllOf instantiates a new DeviceUpdateAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeviceUpdateAllOfWithDefaults instantiates a new DeviceUpdateAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeviceUpdateWithDefaults instantiates a new DeviceUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeviceWithDefaults instantiates a new Device object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewError instantiates a new Error object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewErrorWithDefaults instantiates a new Error object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGenericEvent instantiates a new GenericEvent object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGenericEventAllOf instantiates a new GenericEventAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGenericEventAllOfWithDefaults instantiates a new GenericEventAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGenericEventCreate instantiates a new GenericEventCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGenericEventCreateWithDefaults instantiates a new GenericEventCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGenericEventSecurity instantiates a new GenericEventSecurity object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGenericEventSecurityWithDefaults instantiates a new GenericEventSecurity object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGenericEventTrace instantiates a new GenericEventTrace object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGenericEventTraceWithDefaults instantiates a new GenericEventTrace object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGenericEventWithDefaults instantiates a new GenericEvent object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIncident instantiates a new Incident object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIncidentAllOf instantiates a new IncidentAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIncidentAllOfWithDefaults instantiates a new IncidentAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIncidentCancel instantiates a new IncidentCancel object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIncidentCancelWithDefaults instantiates a new IncidentCancel object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIncidentConfig instantiates a new IncidentConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIncidentConfigPatch instantiates a new IncidentConfigPatch object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIncidentConfigPatchWithDefaults instantiates a new IncidentConfigPatch object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIncidentConfigUpdate instantiates a new IncidentConfigUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIncidentConfigUpdateWithDefaults instantiates a new IncidentConfigUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIncidentConfigWithDefaults instantiates a new IncidentConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIncidentCreate instantiates a new IncidentCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIncidentCreateWithDefaults instantiates a new IncidentCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIncidentsPage instantiates a new IncidentsPage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIncidentsPageAllOf instantiates a new IncidentsPageAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIncidentsPageAllOfWithDefaults instantiates a new IncidentsPageAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIncidentsPageWithDefaults instantiates a new IncidentsPage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIncidentUpdate instantiates a new IncidentUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIncidentUpdateWithDefaults instantiates a new IncidentUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIncidentWithDefaults instantiates a new Incident object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLegacyAbsoluteConfig instantiates a new LegacyAbsoluteConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLegacyAbsoluteConfigWithDefaults instantiates a new LegacyAbsoluteConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLegacyAddress instantiates a new LegacyAddress object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLegacyAddressWithDefaults instantiates a new LegacyAddress object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLegacyNsoResponseTypes instantiates a new LegacyNsoResponseTypes object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLegacyNsoResponseTypesWithDefaults instantiates a new LegacyNsoResponseTypes object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLegacyRelativeConfig instantiates a new LegacyRelativeConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLegacyRelativeConfigWithDefaults instantiates a new LegacyRelativeConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLegacyScheduleConfig instantiates a new LegacyScheduleConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLegacyScheduleConfigWithDefaults instantiates a new LegacyScheduleConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLegacyServiceOrder instantiates a new LegacyServiceOrder object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLegacyServiceOrderDetail instantiates a new LegacyServiceOrderDetail object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLegacyServiceOrderDetailWithDefaults instantiates a new LegacyServiceOrderDetail object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLegacyServiceOrderResponse instantiates a new LegacyServiceOrderResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLegacyServiceOrderResponseWithDefaults instantiates a new LegacyServiceOrderResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLegacyServiceOrderWithDefaults instantiates a new LegacyServiceOrder object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLegacySite instantiates a new LegacySite object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLegacySiteDevice instantiates a new LegacySiteDevice object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLegacySiteDeviceOnboard instantiates a new LegacySiteDeviceOnboard object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLegacySiteDeviceOnboardWithDefaults instantiates a new LegacySiteDeviceOnboard object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLegacySiteDeviceWithDefaults instantiates a new LegacySiteDevice object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLegacySiteWithDefaults instantiates a new LegacySite object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLegacySubscriptionDetail instantiates a new LegacySubscriptionDetail object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLegacySubscriptionDetailWithDefaults instantiates a new LegacySubscriptionDetail object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLicenseDetails instantiates a new LicenseDetails object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLicenseDetailsWithDefaults instantiates a new LicenseDetails object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLicenseSummary instantiates a new LicenseSummary object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLicenseSummaryWithDefaults instantiates a new LicenseSummary object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewManageChangeRequestPending instantiates a new ManageChangeRequestPending object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewManageChangeRequestPendingWithDefaults instantiates a new ManageChangeRequestPending object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNameValue instantiates a new NameValue object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNameValueWithDefaults instantiates a new NameValue object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNSOConfigDataXPath instantiates a new NSOConfigDataXPath object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNSOConfigDataXPathWithDefaults instantiates a new NSOConfigDataXPath object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
NewOffer instantiates a new Offer object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOfferAllOf instantiates a new OfferAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOfferAllOfWithDefaults instantiates a new OfferAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewOfferCreate instantiates a new OfferCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOfferCreateWithDefaults instantiates a new OfferCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewOffersPage instantiates a new OffersPage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOffersPageAllOf instantiates a new OffersPageAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOffersPageAllOfWithDefaults instantiates a new OffersPageAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewOffersPageWithDefaults instantiates a new OffersPage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewOfferUpdate instantiates a new OfferUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOfferUpdateWithDefaults instantiates a new OfferUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewOfferWithDefaults instantiates a new Offer object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPageHeader instantiates a new PageHeader object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPageHeaderWithDefaults instantiates a new PageHeader object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewProduct instantiates a new Product object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewProductAllOf instantiates a new ProductAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewProductAllOfWithDefaults instantiates a new ProductAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewProductCreate instantiates a new ProductCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewProductCreateWithDefaults instantiates a new ProductCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewProductsPage instantiates a new ProductsPage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewProductsPageAllOf instantiates a new ProductsPageAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewProductsPageAllOfWithDefaults instantiates a new ProductsPageAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewProductsPageWithDefaults instantiates a new ProductsPage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewProductUpdate instantiates a new ProductUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewProductUpdateWithDefaults instantiates a new ProductUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewProductWithDefaults instantiates a new Product object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewResourceHealth instantiates a new ResourceHealth object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewResourceHealthWithDefaults instantiates a new ResourceHealth object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRole instantiates a new Role object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRoleWithDefaults instantiates a new Role object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewService instantiates a new Service object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewServiceAllOf instantiates a new ServiceAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewServiceAllOfWithDefaults instantiates a new ServiceAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewServiceElement instantiates a new ServiceElement object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewServiceElementPrice instantiates a new ServiceElementPrice object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewServiceElementPriceWithDefaults instantiates a new ServiceElementPrice object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewServiceElementWithDefaults instantiates a new ServiceElement object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewServiceNowConfiguration instantiates a new ServiceNowConfiguration object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewServiceNowConfigurationCreate instantiates a new ServiceNowConfigurationCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewServiceNowConfigurationCreateWithDefaults instantiates a new ServiceNowConfigurationCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewServiceNowConfigurationRequest instantiates a new ServiceNowConfigurationRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewServiceNowConfigurationRequestWithDefaults instantiates a new ServiceNowConfigurationRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewServiceNowConfigurationsPage instantiates a new ServiceNowConfigurationsPage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewServiceNowConfigurationsPageAllOf instantiates a new ServiceNowConfigurationsPageAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewServiceNowConfigurationsPageAllOfWithDefaults instantiates a new ServiceNowConfigurationsPageAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewServiceNowConfigurationsPageWithDefaults instantiates a new ServiceNowConfigurationsPage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewServiceNowConfigurationWithDefaults instantiates a new ServiceNowConfiguration object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewServiceSLMUIConfig instantiates a new ServiceSLMUIConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewServiceSLMUIConfigWithDefaults instantiates a new ServiceSLMUIConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewServicesPage instantiates a new ServicesPage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewServicesPageAllOf instantiates a new ServicesPageAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewServicesPageAllOfWithDefaults instantiates a new ServicesPageAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewServicesPageWithDefaults instantiates a new ServicesPage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewServiceUIConfig instantiates a new ServiceUIConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewServiceUIConfigWithDefaults instantiates a new ServiceUIConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewServiceUILink instantiates a new ServiceUILink object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewServiceUILinkWithDefaults instantiates a new ServiceUILink object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewServiceUIResource instantiates a new ServiceUIResource object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewServiceUIResourceWithDefaults instantiates a new ServiceUIResource object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewServiceUpdate instantiates a new ServiceUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewServiceUpdateWithDefaults instantiates a new ServiceUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewServiceWithDefaults instantiates a new Service object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSite instantiates a new Site object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSiteAddress instantiates a new SiteAddress object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSiteAddressWithDefaults instantiates a new SiteAddress object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSiteContact instantiates a new SiteContact object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSiteContactWithDefaults instantiates a new SiteContact object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSiteCreate instantiates a new SiteCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSiteCreateAllOf instantiates a new SiteCreateAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSiteCreateAllOfWithDefaults instantiates a new SiteCreateAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSiteCreateWithDefaults instantiates a new SiteCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSiteLocation instantiates a new SiteLocation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSiteLocationWithDefaults instantiates a new SiteLocation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSitesPage instantiates a new SitesPage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSitesPageAllOf instantiates a new SitesPageAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSitesPageAllOfWithDefaults instantiates a new SitesPageAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSitesPageWithDefaults instantiates a new SitesPage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSiteStatus instantiates a new SiteStatus object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSiteStatusWithDefaults instantiates a new SiteStatus object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSiteUpdate instantiates a new SiteUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSiteUpdateWithDefaults instantiates a new SiteUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSiteWithDefaults instantiates a new Site object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSmartAccountConfiguration instantiates a new SmartAccountConfiguration object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSmartAccountConfigurationCreate instantiates a new SmartAccountConfigurationCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSmartAccountConfigurationCreateWithDefaults instantiates a new SmartAccountConfigurationCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSmartAccountConfigurationUpdate instantiates a new SmartAccountConfigurationUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSmartAccountConfigurationUpdateWithDefaults instantiates a new SmartAccountConfigurationUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSmartAccountConfigurationWithDefaults instantiates a new SmartAccountConfiguration object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSmartAccountUser instantiates a new SmartAccountUser object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSmartAccountUserRole instantiates a new SmartAccountUserRole object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSmartAccountUserRoleWithDefaults instantiates a new SmartAccountUserRole object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSmartAccountUserWithDefaults instantiates a new SmartAccountUser object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSmartUserAccounts instantiates a new SmartUserAccounts object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSmartUserAccountsAllOf instantiates a new SmartUserAccountsAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSmartUserAccountsAllOfWithDefaults instantiates a new SmartUserAccountsAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSmartUserAccountsWithDefaults instantiates a new SmartUserAccounts object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStartWorkflowResponse instantiates a new StartWorkflowResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStartWorkflowResponseWithDefaults instantiates a new StartWorkflowResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTemplate instantiates a new Template object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTemplateApplication instantiates a new TemplateApplication object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTemplateApplicationAllOf instantiates a new TemplateApplicationAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTemplateApplicationAllOfWithDefaults instantiates a new TemplateApplicationAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTemplateApplicationCreate instantiates a new TemplateApplicationCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTemplateApplicationCreateWithDefaults instantiates a new TemplateApplicationCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTemplateApplicationsPage instantiates a new TemplateApplicationsPage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTemplateApplicationsPageAllOf instantiates a new TemplateApplicationsPageAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTemplateApplicationsPageAllOfWithDefaults instantiates a new TemplateApplicationsPageAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTemplateApplicationsPageWithDefaults instantiates a new TemplateApplicationsPage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTemplateApplicationStatusPatch instantiates a new TemplateApplicationStatusPatch object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTemplateApplicationStatusPatchWithDefaults instantiates a new TemplateApplicationStatusPatch object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTemplateApplicationWithDefaults instantiates a new TemplateApplication object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTemplateAssignment instantiates a new TemplateAssignment object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTemplateAssignmentAllOf instantiates a new TemplateAssignmentAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTemplateAssignmentAllOfWithDefaults instantiates a new TemplateAssignmentAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTemplateAssignmentResponse instantiates a new TemplateAssignmentResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTemplateAssignmentResponseAllOf instantiates a new TemplateAssignmentResponseAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTemplateAssignmentResponseAllOfWithDefaults instantiates a new TemplateAssignmentResponseAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTemplateAssignmentResponseWithDefaults instantiates a new TemplateAssignmentResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTemplateAssignmentsPage instantiates a new TemplateAssignmentsPage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTemplateAssignmentsPageAllOf instantiates a new TemplateAssignmentsPageAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTemplateAssignmentsPageAllOfWithDefaults instantiates a new TemplateAssignmentsPageAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTemplateAssignmentsPageWithDefaults instantiates a new TemplateAssignmentsPage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTemplateAssignmentStatusPatch instantiates a new TemplateAssignmentStatusPatch object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTemplateAssignmentStatusPatchWithDefaults instantiates a new TemplateAssignmentStatusPatch object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTemplateAssignmentWithDefaults instantiates a new TemplateAssignment object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTemplateCreate instantiates a new TemplateCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTemplateCreateWithDefaults instantiates a new TemplateCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTemplateParameterValidator instantiates a new TemplateParameterValidator object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTemplateParameterValidatorWithDefaults instantiates a new TemplateParameterValidator object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTemplatePatch instantiates a new TemplatePatch object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTemplatePatchWithDefaults instantiates a new TemplatePatch object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTemplatesPage instantiates a new TemplatesPage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTemplatesPageAllOf instantiates a new TemplatesPageAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTemplatesPageAllOfWithDefaults instantiates a new TemplatesPageAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTemplatesPageWithDefaults instantiates a new TemplatesPage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTemplateStatusMeta instantiates a new TemplateStatusMeta object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTemplateStatusMetaWithDefaults instantiates a new TemplateStatusMeta object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTemplateWithDefaults instantiates a new Template object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTenant instantiates a new Tenant object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTenantAllOf instantiates a new TenantAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTenantAllOfWithDefaults instantiates a new TenantAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTenantCreate instantiates a new TenantCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTenantCreateAllOf instantiates a new TenantCreateAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTenantCreateAllOfWithDefaults instantiates a new TenantCreateAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTenantCreateWithDefaults instantiates a new TenantCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTenantsPage instantiates a new TenantsPage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTenantsPageAllOf instantiates a new TenantsPageAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTenantsPageAllOfWithDefaults instantiates a new TenantsPageAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTenantsPageWithDefaults instantiates a new TenantsPage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTenantUpdate instantiates a new TenantUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTenantUpdateWithDefaults instantiates a new TenantUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTenantWithDefaults instantiates a new Tenant object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdatePassword instantiates a new UpdatePassword object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdatePasswordWithDefaults instantiates a new UpdatePassword object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUser instantiates a new User object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUserAllOf instantiates a new UserAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUserAllOfWithDefaults instantiates a new UserAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUserCreate instantiates a new UserCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUserCreateAllOf instantiates a new UserCreateAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUserCreateAllOfWithDefaults instantiates a new UserCreateAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUserCreateWithDefaults instantiates a new UserCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUsersPage instantiates a new UsersPage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUsersPageAllOf instantiates a new UsersPageAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUsersPageAllOfWithDefaults instantiates a new UsersPageAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUsersPageWithDefaults instantiates a new UsersPage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUserUpdate instantiates a new UserUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUserUpdateWithDefaults instantiates a new UserUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUserWithDefaults instantiates a new User object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewValidateWorkflowResponse instantiates a new ValidateWorkflowResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewValidateWorkflowResponseWithDefaults instantiates a new ValidateWorkflowResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewVulnerabilitiesPage instantiates a new VulnerabilitiesPage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewVulnerabilitiesPageAllOf instantiates a new VulnerabilitiesPageAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewVulnerabilitiesPageAllOfWithDefaults instantiates a new VulnerabilitiesPageAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewVulnerabilitiesPageWithDefaults instantiates a new VulnerabilitiesPage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewVulnerabilitiesRegistrationPage instantiates a new VulnerabilitiesRegistrationPage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewVulnerabilitiesRegistrationPageAllOf instantiates a new VulnerabilitiesRegistrationPageAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewVulnerabilitiesRegistrationPageAllOfWithDefaults instantiates a new VulnerabilitiesRegistrationPageAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewVulnerabilitiesRegistrationPageWithDefaults instantiates a new VulnerabilitiesRegistrationPage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewVulnerability instantiates a new Vulnerability object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewVulnerabilityFeed instantiates a new VulnerabilityFeed object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewVulnerabilityFeedWithDefaults instantiates a new VulnerabilityFeed object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewVulnerabilityIngestion instantiates a new VulnerabilityIngestion object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewVulnerabilityIngestionWithDefaults instantiates a new VulnerabilityIngestion object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewVulnerabilityIngestPage instantiates a new VulnerabilityIngestPage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewVulnerabilityIngestPageAllOf instantiates a new VulnerabilityIngestPageAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewVulnerabilityIngestPageAllOfWithDefaults instantiates a new VulnerabilityIngestPageAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewVulnerabilityIngestPageWithDefaults instantiates a new VulnerabilityIngestPage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewVulnerabilityRegistration instantiates a new VulnerabilityRegistration object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewVulnerabilityRegistrationAllOf instantiates a new VulnerabilityRegistrationAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewVulnerabilityRegistrationAllOfWithDefaults instantiates a new VulnerabilityRegistrationAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewVulnerabilityRegistrationCreate instantiates a new VulnerabilityRegistrationCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewVulnerabilityRegistrationCreateWithDefaults instantiates a new VulnerabilityRegistrationCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewVulnerabilityRegistrationWithDefaults instantiates a new VulnerabilityRegistration object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewVulnerabilityValidation instantiates a new VulnerabilityValidation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewVulnerabilityValidationPage instantiates a new VulnerabilityValidationPage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewVulnerabilityValidationPageAllOf instantiates a new VulnerabilityValidationPageAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewVulnerabilityValidationPageAllOfWithDefaults instantiates a new VulnerabilityValidationPageAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewVulnerabilityValidationPageWithDefaults instantiates a new VulnerabilityValidationPage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewVulnerabilityValidationWithDefaults instantiates a new VulnerabilityValidation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewVulnerabilityWithDefaults instantiates a new Vulnerability object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewWorkflow instantiates a new Workflow object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWorkflowAccessMeta instantiates a new WorkflowAccessMeta object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWorkflowAccessMetaType instantiates a new WorkflowAccessMetaType object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWorkflowAccessMetaTypeWithDefaults instantiates a new WorkflowAccessMetaType object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewWorkflowAccessMetaWithDefaults instantiates a new WorkflowAccessMeta object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewWorkflowAction instantiates a new WorkflowAction object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWorkflowActionBlock instantiates a new WorkflowActionBlock object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWorkflowActionBlockWithDefaults instantiates a new WorkflowActionBlock object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewWorkflowActionWithDefaults instantiates a new WorkflowAction object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewWorkflowAllOf instantiates a new WorkflowAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWorkflowAllOfWithDefaults instantiates a new WorkflowAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewWorkflowCategory instantiates a new WorkflowCategory object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWorkflowCategoryAllOf instantiates a new WorkflowCategoryAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWorkflowCategoryAllOfWithDefaults instantiates a new WorkflowCategoryAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewWorkflowCategoryCreate instantiates a new WorkflowCategoryCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWorkflowCategoryCreateWithDefaults instantiates a new WorkflowCategoryCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewWorkflowCategoryUpdate instantiates a new WorkflowCategoryUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWorkflowCategoryUpdateWithDefaults instantiates a new WorkflowCategoryUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewWorkflowCategoryWithDefaults instantiates a new WorkflowCategory object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewWorkflowDefAccessMeta instantiates a new WorkflowDefAccessMeta object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWorkflowDefAccessMetaWithDefaults instantiates a new WorkflowDefAccessMeta object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewWorkflowEvent instantiates a new WorkflowEvent object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWorkflowEventAllOf instantiates a new WorkflowEventAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWorkflowEventAllOfWithDefaults instantiates a new WorkflowEventAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewWorkflowEventCreate instantiates a new WorkflowEventCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWorkflowEventCreateWithDefaults instantiates a new WorkflowEventCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewWorkflowEventUpdate instantiates a new WorkflowEventUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWorkflowEventUpdateWithDefaults instantiates a new WorkflowEventUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewWorkflowEventWithDefaults instantiates a new WorkflowEvent object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewWorkflowFooter instantiates a new WorkflowFooter object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWorkflowFooterWithDefaults instantiates a new WorkflowFooter object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewWorkflowInstance instantiates a new WorkflowInstance object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWorkflowInstanceAllOf instantiates a new WorkflowInstanceAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWorkflowInstanceAllOfWithDefaults instantiates a new WorkflowInstanceAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewWorkflowInstanceDeleteResponse instantiates a new WorkflowInstanceDeleteResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWorkflowInstanceDeleteResponseWithDefaults instantiates a new WorkflowInstanceDeleteResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewWorkflowInstanceWithDefaults instantiates a new WorkflowInstance object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewWorkflowMapping instantiates a new WorkflowMapping object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWorkflowMappingWithDefaults instantiates a new WorkflowMapping object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewWorkflowMetadata instantiates a new WorkflowMetadata object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWorkflowMetadataGitInfo instantiates a new WorkflowMetadataGitInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWorkflowMetadataGitInfoWithDefaults instantiates a new WorkflowMetadataGitInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewWorkflowMetadataWithDefaults instantiates a new WorkflowMetadata object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewWorkflowSchema instantiates a new WorkflowSchema object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWorkflowSchemaAllOf instantiates a new WorkflowSchemaAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWorkflowSchemaAllOfWithDefaults instantiates a new WorkflowSchemaAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewWorkflowSchemaByTypeResponse instantiates a new WorkflowSchemaByTypeResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWorkflowSchemaByTypeResponseWithDefaults instantiates a new WorkflowSchemaByTypeResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewWorkflowSchemaWithDefaults instantiates a new WorkflowSchema object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewWorkflowStartConfig instantiates a new WorkflowStartConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWorkflowStartConfigWithDefaults instantiates a new WorkflowStartConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewWorkflowTarget instantiates a new WorkflowTarget object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWorkflowTargetAllOf instantiates a new WorkflowTargetAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWorkflowTargetAllOfWithDefaults instantiates a new WorkflowTargetAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewWorkflowTargetCreate instantiates a new WorkflowTargetCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWorkflowTargetCreateWithDefaults instantiates a new WorkflowTargetCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewWorkflowTargetUpdate instantiates a new WorkflowTargetUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWorkflowTargetUpdateWithDefaults instantiates a new WorkflowTargetUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewWorkflowTargetWithDefaults instantiates a new WorkflowTarget object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewWorkflowVariable instantiates a new WorkflowVariable object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWorkflowVariableAllOf instantiates a new WorkflowVariableAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWorkflowVariableAllOfWithDefaults instantiates a new WorkflowVariableAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewWorkflowVariableWithDefaults instantiates a new WorkflowVariable object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewWorkflowWithDefaults instantiates a new Workflow object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
PtrBool is a helper routine that returns a pointer to given boolean value.
PtrFloat32 is a helper routine that returns a pointer to given float value.
PtrFloat64 is a helper routine that returns a pointer to given float value.
PtrInt is a helper routine that returns a pointer to given integer value.
PtrInt32 is a helper routine that returns a pointer to given integer value.
PtrInt64 is a helper routine that returns a pointer to given integer value.
PtrString is a helper routine that returns a pointer to given string value.
PtrTime is helper routine that returns a pointer to given Time value.

# Constants

List of DeviceComplianceState.
List of DeviceComplianceState.
List of DeviceComplianceState.
List of DeviceComplianceState.
List of DeviceVulnerabilityState.
List of DeviceVulnerabilityState.
List of DeviceVulnerabilityState.
List of DeviceVulnerabilityState.
List of GenericEventSeverity.
List of GenericEventSeverity.
List of GenericEventSeverity.
List of GenericEventSeverity.
List of GenericEventSeverity.
List of ResourceStatus.
List of ResourceStatus.
List of ResourceStatus.
List of ResourceType.
List of ResourceType.
List of SmartAccountType.
List of SmartAccountType.
List of TemplateStatus.
List of TemplateStatus.
List of TemplateStatus.
List of TemplateStatus.
List of TemplateStatus.
List of TemplateStatus.
List of VulnerabilitySeverity.
List of VulnerabilitySeverity.
List of VulnerabilitySeverity.
List of VulnerabilitySeverity.
List of VulnerabilitySeverity.

# Variables

ContextAccessToken takes a string oauth2 access token as authentication for the request.
ContextAPIKeys takes a string apikey as authentication for the request.
ContextBasicAuth takes BasicAuth as authentication for the request.
ContextHttpSignatureAuth takes HttpSignatureAuth as authentication for the request.
ContextOAuth2 takes an oauth2.TokenSource as authentication for the request.
ContextOperationServerIndices uses a server configuration from the index mapping.
ContextOperationServerVariables overrides a server configuration variables using operation specific values.
ContextServerIndex uses a server configuration from the index.
ContextServerVariables overrides a server configuration variables.

# Structs

AccessToken struct for AccessToken.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
APIClient manages communication with the MSX SDK API v1.0.9 In most cases there should be only one, shared, APIClient.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
APIKey provides API key based authentication to a request passed via context using ContextAPIKey.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
APIResponse stores the API response returned by the server.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
BasicAuth provides basic http authentication to a request passed via context using ContextBasicAuth.
BillingCostsReport struct for BillingCostsReport.
BillingCycle struct for BillingCycle.
BillingCycleAllOf struct for BillingCycleAllOf.
BillingCycleCreate struct for BillingCycleCreate.
BillingCycleProcess struct for BillingCycleProcess.
BillingCycleProcessAccepted struct for BillingCycleProcessAccepted.
BillingCyclesPage struct for BillingCyclesPage.
BillingCyclesPageAllOf struct for BillingCyclesPageAllOf.
BillingCycleUpdate struct for BillingCycleUpdate.
BillingEvent struct for BillingEvent.
BillingEventAllOf struct for BillingEventAllOf.
BillingEventCreate struct for BillingEventCreate.
BillingEventsPage struct for BillingEventsPage.
BillingEventsPageAllOf struct for BillingEventsPageAllOf.
BillingEventUpdate struct for BillingEventUpdate.
BillingPrice struct for BillingPrice.
BillingPriceAllOf struct for BillingPriceAllOf.
BillingPriceCreate struct for BillingPriceCreate.
BillingPricesPage struct for BillingPricesPage.
BillingPricesPageAllOf struct for BillingPricesPageAllOf.
BillingPriceUpdate struct for BillingPriceUpdate.
CatalogAssignment struct for CatalogAssignment.
ChangeRequest struct for ChangeRequest.
ChangeRequestAllOf struct for ChangeRequestAllOf.
ChangeRequestCreate struct for ChangeRequestCreate.
ChangeRequestsPage struct for ChangeRequestsPage.
ChangeRequestsPageAllOf struct for ChangeRequestsPageAllOf.
ChangeRequestSummary struct for ChangeRequestSummary.
ChangeRequestUpdate struct for ChangeRequestUpdate.
Configuration stores the configuration of the API client.
CostSummary struct for CostSummary.
Device struct for Device.
DeviceAllOf struct for DeviceAllOf.
DeviceCreate struct for DeviceCreate.
DeviceCreateAllOf struct for DeviceCreateAllOf.
DevicePatch struct for DevicePatch.
DevicesPage struct for DevicesPage.
DevicesPageAllOf struct for DevicesPageAllOf.
DeviceSummary struct for DeviceSummary.
DeviceTemplate struct for DeviceTemplate.
DeviceTemplateAccess struct for DeviceTemplateAccess.
DeviceTemplateAccessResponse struct for DeviceTemplateAccessResponse.
DeviceTemplateAttachRequest struct for DeviceTemplateAttachRequest.
DeviceTemplateBatchAttachRequest struct for DeviceTemplateBatchAttachRequest.
DeviceTemplateCreate struct for DeviceTemplateCreate.
DeviceTemplateDetails struct for DeviceTemplateDetails.
DeviceTemplateHistory struct for DeviceTemplateHistory.
DeviceTemplateHistorySummary struct for DeviceTemplateHistorySummary.
DeviceTemplateUpdateDetails struct for DeviceTemplateUpdateDetails.
DeviceTemplateUpdateRequest struct for DeviceTemplateUpdateRequest.
DeviceTemplateVersionCreate struct for DeviceTemplateVersionCreate.
DeviceUpdate struct for DeviceUpdate.
DeviceUpdateAllOf struct for DeviceUpdateAllOf.
Error struct for Error.
GenericEvent struct for GenericEvent.
GenericEventAllOf struct for GenericEventAllOf.
GenericEventCreate struct for GenericEventCreate.
GenericEventSecurity struct for GenericEventSecurity.
GenericEventTrace struct for GenericEventTrace.
GenericOpenAPIError Provides access to the body, error and model on returned errors.
Incident struct for Incident.
IncidentAllOf struct for IncidentAllOf.
IncidentCancel struct for IncidentCancel.
IncidentConfig struct for IncidentConfig.
IncidentConfigPatch struct for IncidentConfigPatch.
IncidentConfigUpdate struct for IncidentConfigUpdate.
IncidentCreate struct for IncidentCreate.
IncidentsPage struct for IncidentsPage.
IncidentsPageAllOf struct for IncidentsPageAllOf.
IncidentUpdate struct for IncidentUpdate.
LegacyAbsoluteConfig struct for LegacyAbsoluteConfig.
LegacyAddress struct for LegacyAddress.
LegacyNsoResponseTypes struct for LegacyNsoResponseTypes.
LegacyRelativeConfig struct for LegacyRelativeConfig.
LegacyScheduleConfig struct for LegacyScheduleConfig.
LegacyServiceOrder struct for LegacyServiceOrder.
LegacyServiceOrderDetail struct for LegacyServiceOrderDetail.
LegacyServiceOrderResponse struct for LegacyServiceOrderResponse.
LegacySite struct for LegacySite.
LegacySiteDevice struct for LegacySiteDevice.
LegacySiteDeviceOnboard struct for LegacySiteDeviceOnboard.
LegacySubscriptionDetail struct for LegacySubscriptionDetail.
LicenseDetails struct for LicenseDetails.
LicenseSummary struct for LicenseSummary.
ManageChangeRequestPending struct for ManageChangeRequestPending.
NameValue struct for NameValue.
NSOConfigDataXPath struct for NSOConfigDataXPath.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Offer struct for Offer.
OfferAllOf struct for OfferAllOf.
OfferCreate struct for OfferCreate.
OffersPage struct for OffersPage.
OffersPageAllOf struct for OffersPageAllOf.
OfferUpdate struct for OfferUpdate.
PageHeader struct for PageHeader.
Product struct for Product.
ProductAllOf struct for ProductAllOf.
ProductCreate struct for ProductCreate.
ProductsPage struct for ProductsPage.
ProductsPageAllOf struct for ProductsPageAllOf.
ProductUpdate struct for ProductUpdate.
ResourceHealth struct for ResourceHealth.
Role struct for Role.
ServerConfiguration stores the information about a server.
ServerVariable stores the information about a server variable.
Service struct for Service.
ServiceAllOf struct for ServiceAllOf.
ServiceElement struct for ServiceElement.
ServiceElementPrice struct for ServiceElementPrice.
ServiceNowConfiguration struct for ServiceNowConfiguration.
ServiceNowConfigurationCreate struct for ServiceNowConfigurationCreate.
ServiceNowConfigurationRequest struct for ServiceNowConfigurationRequest.
ServiceNowConfigurationsPage struct for ServiceNowConfigurationsPage.
ServiceNowConfigurationsPageAllOf struct for ServiceNowConfigurationsPageAllOf.
ServiceSLMUIConfig struct for ServiceSLMUIConfig.
ServicesPage struct for ServicesPage.
ServicesPageAllOf struct for ServicesPageAllOf.
ServiceUIConfig struct for ServiceUIConfig.
ServiceUILink struct for ServiceUILink.
ServiceUIResource struct for ServiceUIResource.
ServiceUpdate struct for ServiceUpdate.
Site struct for Site.
SiteAddress struct for SiteAddress.
SiteContact struct for SiteContact.
SiteCreate struct for SiteCreate.
SiteCreateAllOf struct for SiteCreateAllOf.
SiteLocation struct for SiteLocation.
SitesPage struct for SitesPage.
SitesPageAllOf struct for SitesPageAllOf.
SiteStatus struct for SiteStatus.
SiteUpdate struct for SiteUpdate.
SmartAccountConfiguration struct for SmartAccountConfiguration.
SmartAccountConfigurationCreate struct for SmartAccountConfigurationCreate.
SmartAccountConfigurationUpdate struct for SmartAccountConfigurationUpdate.
SmartAccountUser struct for SmartAccountUser.
SmartAccountUserRole struct for SmartAccountUserRole.
SmartUserAccounts struct for SmartUserAccounts.
SmartUserAccountsAllOf struct for SmartUserAccountsAllOf.
StartWorkflowResponse struct for StartWorkflowResponse.
Template struct for Template.
TemplateApplication struct for TemplateApplication.
TemplateApplicationAllOf struct for TemplateApplicationAllOf.
TemplateApplicationCreate struct for TemplateApplicationCreate.
TemplateApplicationsPage struct for TemplateApplicationsPage.
TemplateApplicationsPageAllOf struct for TemplateApplicationsPageAllOf.
TemplateApplicationStatusPatch struct for TemplateApplicationStatusPatch.
TemplateAssignment struct for TemplateAssignment.
TemplateAssignmentAllOf struct for TemplateAssignmentAllOf.
TemplateAssignmentResponse struct for TemplateAssignmentResponse.
TemplateAssignmentResponseAllOf struct for TemplateAssignmentResponseAllOf.
TemplateAssignmentsPage struct for TemplateAssignmentsPage.
TemplateAssignmentsPageAllOf struct for TemplateAssignmentsPageAllOf.
TemplateAssignmentStatusPatch struct for TemplateAssignmentStatusPatch.
TemplateCreate struct for TemplateCreate.
TemplateParameterValidator It's metadata about a parameter for use in the UI.
TemplatePatch struct for TemplatePatch.
TemplatesPage struct for TemplatesPage.
TemplatesPageAllOf struct for TemplatesPageAllOf.
TemplateStatusMeta struct for TemplateStatusMeta.
Tenant struct for Tenant.
TenantAllOf struct for TenantAllOf.
TenantCreate struct for TenantCreate.
TenantCreateAllOf struct for TenantCreateAllOf.
TenantsPage struct for TenantsPage.
TenantsPageAllOf struct for TenantsPageAllOf.
TenantUpdate struct for TenantUpdate.
UpdatePassword struct for UpdatePassword.
User struct for User.
UserAllOf struct for UserAllOf.
UserCreate struct for UserCreate.
UserCreateAllOf struct for UserCreateAllOf.
UsersPage struct for UsersPage.
UsersPageAllOf struct for UsersPageAllOf.
UserUpdate struct for UserUpdate.
ValidateWorkflowResponse struct for ValidateWorkflowResponse.
VulnerabilitiesPage struct for VulnerabilitiesPage.
VulnerabilitiesPageAllOf struct for VulnerabilitiesPageAllOf.
VulnerabilitiesRegistrationPage struct for VulnerabilitiesRegistrationPage.
VulnerabilitiesRegistrationPageAllOf struct for VulnerabilitiesRegistrationPageAllOf.
Vulnerability struct for Vulnerability.
VulnerabilityFeed Details of an NVD advisory feed.
VulnerabilityIngestion Execution of vulnerability ingestion task.
VulnerabilityIngestPage struct for VulnerabilityIngestPage.
VulnerabilityIngestPageAllOf struct for VulnerabilityIngestPageAllOf.
VulnerabilityRegistration struct for VulnerabilityRegistration.
VulnerabilityRegistrationAllOf struct for VulnerabilityRegistrationAllOf.
VulnerabilityRegistrationCreate Registration for vulnerability inspection.
VulnerabilityValidation Execution of vulnerability validation task.
VulnerabilityValidationPage struct for VulnerabilityValidationPage.
VulnerabilityValidationPageAllOf struct for VulnerabilityValidationPageAllOf.
Workflow struct for Workflow.
WorkflowAccessMeta struct for WorkflowAccessMeta.
WorkflowAccessMetaType struct for WorkflowAccessMetaType.
WorkflowAction struct for WorkflowAction.
WorkflowActionBlock struct for WorkflowActionBlock.
WorkflowAllOf struct for WorkflowAllOf.
WorkflowCategory struct for WorkflowCategory.
WorkflowCategoryAllOf struct for WorkflowCategoryAllOf.
WorkflowCategoryCreate struct for WorkflowCategoryCreate.
WorkflowCategoryUpdate struct for WorkflowCategoryUpdate.
WorkflowDefAccessMeta struct for WorkflowDefAccessMeta.
WorkflowEvent struct for WorkflowEvent.
WorkflowEventAllOf struct for WorkflowEventAllOf.
WorkflowEventCreate struct for WorkflowEventCreate.
WorkflowEventUpdate struct for WorkflowEventUpdate.
WorkflowFooter struct for WorkflowFooter.
WorkflowInstance struct for WorkflowInstance.
WorkflowInstanceAllOf struct for WorkflowInstanceAllOf.
WorkflowInstanceDeleteResponse struct for WorkflowInstanceDeleteResponse.
WorkflowMapping struct for WorkflowMapping.
WorkflowMetadata struct for WorkflowMetadata.
WorkflowMetadataGitInfo struct for WorkflowMetadataGitInfo.
WorkflowSchema struct for WorkflowSchema.
WorkflowSchemaAllOf struct for WorkflowSchemaAllOf.
WorkflowSchemaByTypeResponse struct for WorkflowSchemaByTypeResponse.
WorkflowStartConfig struct for WorkflowStartConfig.
WorkflowTarget struct for WorkflowTarget.
WorkflowTargetAllOf struct for WorkflowTargetAllOf.
WorkflowTargetCreate struct for WorkflowTargetCreate.
WorkflowTargetUpdate struct for WorkflowTargetUpdate.
WorkflowVariable struct for WorkflowVariable.
WorkflowVariableAllOf struct for WorkflowVariableAllOf.

# Type aliases

AuditingGenericEventsApiService AuditingGenericEventsApi service.
BillingCyclesApiService BillingCyclesApi service.
BillingEventsApiService BillingEventsApi service.
BillingPricesApiService BillingPricesApi service.
DeviceComplianceState the model 'DeviceComplianceState'.
DevicesApiService DevicesApi service.
DeviceTemplatesApiService DeviceTemplatesApi service.
DeviceVulnerabilityState the model 'DeviceVulnerabilityState'.
GenericEventSeverity the model 'GenericEventSeverity'.
HealthApiService HealthApi service.
IncidentChangeRequestsApiService IncidentChangeRequestsApi service.
IncidentConfigurationsApiService IncidentConfigurationsApi service.
IncidentsApiService IncidentsApi service.
LicensingAccountsApiService LicensingAccountsApi service.
LicensingConfigurationsApiService LicensingConfigurationsApi service.
LicensingLicensesApiService LicensingLicensesApi service.
OffersApiService OffersApi service.
ProductsApiService ProductsApi service.
RegistrationApiService RegistrationApi service.
ResourceStatus the model 'ResourceStatus'.
ResourceType the model 'ResourceType'.
RolesApiService RolesApi service.
SecurityApiService SecurityApi service.
ServerConfigurations stores multiple ServerConfiguration items.
ServicesApiService ServicesApi service.
SitesApiService SitesApi service.
SmartAccountType Smart Account Types.
TemplateApplicationsApiService TemplateApplicationsApi service.
TemplateAssignmentsApiService TemplateAssignmentsApi service.
TemplatesApiService TemplatesApi service.
TemplateStatus the model 'TemplateStatus'.
TenantsApiService TenantsApi service.
UsersApiService UsersApi service.
ValidationApiService ValidationApi service.
VulnerabilitiesApiService VulnerabilitiesApi service.
VulnerabilitySeverity PSIRT vulnerability severity rating (https://nvd.nist.gov/vuln-metrics/cvss).
WorkflowCategoriesApiService WorkflowCategoriesApi service.
WorkflowEventsApiService WorkflowEventsApi service.
WorkflowInstancesApiService WorkflowInstancesApi service.
WorkflowsApiService WorkflowsApi service.
WorkflowSchemasApiService WorkflowSchemasApi service.
WorkflowTargetsApiService WorkflowTargetsApi service.