v4.0 Devices API
TrueSight Network Automation REST API – DeviceService
The base URL for the API is:
devices
{{status subtle="false" colour="Blue" title="GET"/}}
/v4.0/devices
Click here to expand...
Description
Retrieves devices, matching any filter criteria or view, with the returned result being abbreviated or partially-detailed devices. May filter by filterable device dynamic fields by including query parameters in the form 'filter.dynamicFieldName=value'
Parameters
Name | Located in | Description | Default | Schema |
---|---|---|---|---|
orderBy | query | Sort by the specified attribute (name, realm, address, lastSnapshotStatus, lastSnapshotTimestamp, model, osImage, vendorName, or a listable device dynamic field name) in the specified order (prefix with a '+' for ascending or a '-' for descending) | string | |
offset | query | Return the specified page number | 1 | integer |
limit | query | Define the number of rows in a page or the maximum number of devices to return | 25 | integer |
filter.name | query | Filter for devices matching this name, asterisk wildcards allowed | string | |
filter.realm | query | Filter for devices that belong to this realm, either by exact name or by database key | string | |
filter.address | query | Filter for devices matching this address, asterisk wildcards allowed | string | |
filter.vendor | query | Filter for devices from this vendor, by GUID | string | |
filter.deviceType | query | Filter for devices of this device type, by GUID | string | |
filter.model | query | Filter for devices matching this model, asterisk wildcards allowed | string | |
filter.osImage | query | Filter for devices matching this operating system name, asterisk wildcards allowed | string | |
filter.online | query | Filter for devices that are online or offline | boolean | |
filter.action | query | Filter for devices where the user is allowed to perform this action, by action GUID | string | |
view | query | Filter for devices per the named private or shared view; any input filter.* or orderBy parameters override those settings in the view | string | |
Authorization | header | Authorization token formatted as 'Bearer [token]' | string * |
Responses
Code | Description | Schema |
---|---|---|
200 | successful operation | |
401 | Unauthorized: Failed to provide a suitable Authorization header or accessToken cookie, or the specified user is not logged in | |
403 | Forbidden: Not allowed to access devices | |
404 | Not found: No matching view found | |
500 | Internal server error: Unexpected exception occurred |
{{status subtle="false" colour="Green" title="POST"/}}
/v4.0/devices
Click here to expand...
Parameters
Name | Located in | Description | Default | Schema |
---|---|---|---|---|
body | body | Complete attributes of the new device | ||
Authorization | header | Authorization token formatted as 'Bearer [token]' | string * |
Responses
Code | Description | Schema |
---|---|---|
201 | Created: New device successfully added | |
400 | Bad request: Input device DTO is missing or new device is invalid | |
401 | Unauthorized: Failed to provide a suitable Authorization header or accessToken cookie, or the specified user is not logged in | |
403 | Forbidden: Not allowed to add a new device | |
500 | Internal server error: Unexpected exception occurred |
{{status subtle="false" colour="Green" title="POST"/}}
/v4.0/devices/filtered
Click here to expand...
Description
Retrieves devices, matching any filter criteria passed in the request body, with the returned result being abbreviated or partially-detailed devices.
Parameters
Name | Located in | Description | Default | Schema |
---|---|---|---|---|
body | body | Filter for devices matching the various criteria specified in the DeviceFilterDTO; when null, no filtering occurs | ||
orderBy | query | Sort by the specified attribute (name, realm, address, lastSnapshotStatus, lastSnapshotTimestamp, model, osImage, vendorName, or a listable device dynamic field name) in the specified order (prefix with a '+' for ascending or a '-' for descending) | "+name" | string |
offset | query | Return the specified page number | 1 | integer |
limit | query | Define the number of rows in a page or the maximum number of devices to return | 25 | integer |
Authorization | header | Authorization token formatted as 'Bearer [token]' | string * |
Responses
Code | Description | Schema |
---|---|---|
200 | successful operation | |
400 | Bad request: Input device filter contains invalid selections | |
401 | Unauthorized: Failed to provide a suitable Authorization header or accessToken cookie, or the specified user is not logged in | |
403 | Forbidden: Not allowed to access devices | |
500 | Internal server error: Unexpected exception occurred |
{{status subtle="false" colour="Yellow" title="PUT"/}}
/v4.0/devices/multiple_device_updates
Click here to expand...
Description
Modifies the specified static and dynamic fields in the selected devices; the response reports which devices are successfully updated and which are not updated due to some validation error; note there are no partial updates; any one device either has all the changes applied to it or none of them
Parameters
Name | Located in | Description | Default | Schema |
---|---|---|---|---|
body | body | What changes to make and to which devices | ||
Authorization | header | Authorization token formatted as 'Bearer [token]' | string * |
Responses
Code | Description | Schema |
---|---|---|
200 | successful operation | |
400 | Bad request: Input DTO is missing or invalid | |
401 | Unauthorized: Failed to provide a suitable Authorization header or accessToken cookie, or the specified user is not logged in | |
403 | Forbidden: Not allowed to access devices, or not allowed to modify all of the selected devices | |
500 | Internal server error: Unexpected exception occurred |
{{status subtle="false" colour="Blue" title="GET"/}}
/v4.0/devices/{nameOrKey}
Click here to expand...
Parameters
Name | Located in | Description | Default | Schema |
---|---|---|---|---|
nameOrKey | path | Name or database key of the device of interest | string * | |
Authorization | header | Authorization token formatted as 'Bearer [token]' | string * |
Responses
Code | Description | Schema |
---|---|---|
200 | successful operation | |
401 | Unauthorized: Failed to provide a suitable Authorization header or accessToken cookie, or the specified user is not logged in | |
403 | Forbidden: Not allowed to access devices | |
404 | Not found: No single matching accessible device found | |
500 | Internal server error: Unexpected exception occurred |
{{status subtle="false" colour="Yellow" title="PUT"/}}
/v4.0/devices/{nameOrKey}
Click here to expand...
Parameters
Name | Located in | Description | Default | Schema |
---|---|---|---|---|
nameOrKey | path | Name or database key of the device of interest | string * | |
body | body | Complete new attribute values for the device; anything left out will be considered to be null and will be nulled out in the device; any required dynamic fields missing or null in the input will revert to default values | ||
Authorization | header | Authorization token formatted as 'Bearer [token]' | string * |
Responses
Code | Description | Schema |
---|---|---|
200 | successful operation | |
400 | Bad request: Input device DTO is missing or modified device is invalid | |
401 | Unauthorized: Failed to provide a suitable Authorization header or accessToken cookie, or the specified user is not logged in | |
403 | Forbidden: Not allowed to modify the device | |
404 | Not found: No single matching accessible device found | |
500 | Internal server error: Unexpected exception occurred |
{{status subtle="false" colour="Red" title="DELETE"/}}
/v4.0/devices/{nameOrKey}
Click here to expand...
Parameters
Name | Located in | Description | Default | Schema |
---|---|---|---|---|
nameOrKey | path | Name or database key of the device of interest | string * | |
clearReferences | query | When true, will attempt to clear references to the device that would normally prevent it from being deleted. Not every reference can be cleared, so this call can still fail. | false | boolean |
Authorization | header | Authorization token formatted as 'Bearer [token]' | string * |
Responses
Code | Description | Schema |
---|---|---|
200 | successful operation | string |
400 | Bad request: device is currently in use | |
401 | Unauthorized: Failed to provide a suitable Authorization header or accessToken cookie, or the specified user is not logged in | |
403 | Forbidden: Not allowed to delete the device | |
404 | Not found: No single matching accessible device found | |
500 | Internal server error: Unexpected exception occurred |
{{status subtle="false" colour="Yellow" title="PATCH"/}}
/v4.0/devices/{nameOrKey}
Click here to expand...
Parameters
Name | Located in | Description | Default | Schema |
---|---|---|---|---|
nameOrKey | path | Name or database key of the device of interest | string * | |
body | body | New attribute values for the device, in JSON Patch format | ||
Authorization | header | Authorization token formatted as 'Bearer [token]' | string * |
Responses
Code | Description | Schema |
---|---|---|
200 | successful operation | |
400 | Bad request: Input JSON patch information is missing or modified device is invalid | |
401 | Unauthorized: Failed to provide a suitable Authorization header or accessToken cookie, or the specified user is not logged in | |
403 | Forbidden: Not allowed to modify the device | |
404 | Not found: No single matching accessible device found | |
500 | Internal server error: Unexpected exception occurred |
{{status subtle="false" colour="Blue" title="GET"/}}
/v4.0/devices/{nameOrKey}/available_trails
Click here to expand...
Parameters
Name | Located in | Description | Default | Schema |
---|---|---|---|---|
nameOrKey | path | Name or database key of the device of interest | string * | |
context | query | Which configuration trails are of interest (existingConfigurations, mergeable, restorable, targetAssignable); existingConfigurations retrieves the trails of configurations currently present in the device; mergeable retrieves the trails that can be deployed in a Deploy To Active action; restorable retrieves the trails that can be deployed in a Deploy To Stored action; targetAssignable retrieves the trails that can be assigned to the target configuration; when null, retrieves the configuration trails supported by the device type | string | |
Authorization | header | Authorization token formatted as 'Bearer [token]' | string * |
Responses
Code | Description | Schema |
---|---|---|
200 | successful operation | |
401 | Unauthorized: Failed to provide a suitable Authorization header or accessToken cookie, or the specified user is not logged in | |
404 | Not found: No single matching accessible device found | |
500 | Internal server error: Unexpected exception occurred |
{{status subtle="false" colour="Blue" title="GET"/}}
/v4.0/devices/{nameOrKey}/configurations/{cfgKey}
Click here to expand...
Parameters
Name | Located in | Description | Default | Schema |
---|---|---|---|---|
nameOrKey | path | Name or database key of the device of interest | string * | |
cfgKey | path | Database key of the configuration of interest | string * | |
Authorization | header | Authorization token formatted as 'Bearer [token]' | string * |
Responses
Code | Description | Schema |
---|---|---|
200 | successful operation | |
401 | Unauthorized: Failed to provide a suitable Authorization header or accessToken cookie, or the specified user is not logged in | |
403 | Forbidden: Not allowed to access devices | |
404 | Not found: No single matching accessible device or configuration found | |
500 | Internal server error: Unexpected exception occurred |
{{status subtle="false" colour="Yellow" title="PUT"/}}
/v4.0/devices/{nameOrKey}/configurations/{cfgKey}/annotation
Click here to expand...
Parameters
Name | Located in | Description | Default | Schema |
---|---|---|---|---|
nameOrKey | path | Name or database key of the device whose configuration is to be modified | string * | |
cfgKey | path | Database key of the configuration of interest | string * | |
annotation | query | Annotation for the configuration | string | |
Authorization | header | Authorization token formatted as 'Bearer [token]' | string * |
Responses
Code | Description | Schema |
---|---|---|
400 | Bad request: Modified configuration is invalid | |
401 | Unauthorized: Failed to provide a suitable Authorization header or accessToken cookie, or the specified user is not logged in | |
403 | Forbidden: Not allowed to modify the configuration | |
404 | Not found: No single matching accessible device or configuration found | |
500 | Internal server error: Unexpected exception occurred |
{{status subtle="false" colour="Blue" title="GET"/}}
/v4.0/devices/{nameOrKey}/configurations/{cfgKey}/binaryData
Click here to expand...
Parameters
Name | Located in | Description | Default | Schema |
---|---|---|---|---|
nameOrKey | path | Name or database key of the device of interest | string * | |
cfgKey | path | Database key of the configuration of interest | string * | |
Authorization | header | Authorization token formatted as 'Bearer [token]' | string * |
Responses
Code | Description | Schema |
---|---|---|
200 | OK: Request completed successfully | |
401 | Unauthorized: Failed to provide a suitable Authorization header or accessToken cookie, or the specified user is not logged in | |
403 | Forbidden: Not allowed to access devices | |
404 | Not found: No single matching accessible device or configuration found, or the configuration has no binary data (has only ascii data), or the binary data is missing from the database | |
500 | Internal server error: Unexpected exception occurred |
{{status subtle="false" colour="Blue" title="GET"/}}
/v4.0/devices/{nameOrKey}/configurations/{cfgKey}/data
Click here to expand...
Parameters
Name | Located in | Description | Default | Schema |
---|---|---|---|---|
nameOrKey | path | Name or database key of the device of interest | string * | |
cfgKey | path | Database key of the configuration of interest | string * | |
Authorization | header | Authorization token formatted as 'Bearer [token]' | string * |
Responses
Code | Description | Schema |
---|---|---|
200 | successful operation | string |
401 | Unauthorized: Failed to provide a suitable Authorization header or accessToken cookie, or the specified user is not logged in | |
403 | Forbidden: Not allowed to access devices | |
404 | Not found: No single matching accessible device or configuration found, or the configuration has no ASCII data | |
500 | Internal server error: Unexpected exception occurred |
{{status subtle="false" colour="Green" title="POST"/}}
/v4.0/devices/{nameOrKey}/configurations/{cfgKey}/emailed_file
Click here to expand...
Description
Exports and then emails a device configuration; any sensitive configuration data is masked if you are not granted the "Access Sensitive Data" system right
Parameters
Name | Located in | Description | Default | Schema |
---|---|---|---|---|
nameOrKey | path | Name or database key of the device of interest | string * | |
cfgKey | path | Database key of the configuration of interest | string * | |
body | body | Parameters for exporting and emailing the configuration | ||
hideLineNumbers | query | Whether or not to hide the line numbers in the configuration; when false, a line number appears with each configuration line; when true, only the configuration lines appear, with no line numbers | boolean | |
Authorization | header | Authorization token formatted as 'Bearer [token]' | string * |
Responses
Code | Description | Schema |
---|---|---|
200 | OK: Exported device configuration file successfully emailed | |
400 | Bad request: Input email parameters are missing or invalid | |
401 | Unauthorized: Failed to provide a suitable Authorization header or accessToken cookie, or the specified user is not logged in | |
404 | Not found: No single matching accessible device or configuration found | |
500 | Internal server error: Unexpected exception occurred |
{{status subtle="false" colour="Green" title="POST"/}}
/v4.0/devices/{nameOrKey}/configurations/{cfgKey}/exported_file
Click here to expand...
Description
Exports a device configuration; any sensitive configuration data is masked if you are not granted the "Access Sensitive Data" system right
Parameters
Name | Located in | Description | Default | Schema |
---|---|---|---|---|
nameOrKey | path | Name or database key of the device of interest | string * | |
cfgKey | path | Database key of the configuration of interest | string * | |
body | body | Parameters for exporting the configuration | ||
hideLineNumbers | query | Whether or not to hide the line numbers in the configuration; when false, a line number appears with each configuration line; when true, only the configuration lines appear, with no line numbers | boolean | |
Authorization | header | Authorization token formatted as 'Bearer [token]' | string * |
Responses
Code | Description | Schema |
---|---|---|
400 | Bad request: Input export parameters are missing or invalid | |
401 | Unauthorized: Failed to provide a suitable Authorization header or accessToken cookie, or the specified user is not logged in | |
404 | Not found: No single matching accessible device or configuration found | |
500 | Internal server error: Unexpected exception occurred |
{{status subtle="false" colour="Blue" title="GET"/}}
/v4.0/devices/{nameOrKey}/configurations/{trailGuid}
Click here to expand...
Parameters
Name | Located in | Description | Default | Schema |
---|---|---|---|---|
nameOrKey | path | Name or database key of the device of interest | string * | |
trailGuid | path | The GUID of the configuration trail of interest | string * | |
Authorization | header | Authorization token formatted as 'Bearer [token]' | string * |
Responses
Code | Description | Schema |
---|---|---|
200 | successful operation | |
400 | Bad request: Input trail GUID is invalid | |
401 | Unauthorized: Failed to provide a suitable Authorization header or accessToken cookie, or the specified user is not logged in | |
403 | Forbidden: Not allowed to access devices | |
404 | Not found: No single matching accessible device found | |
500 | Internal server error: Unexpected exception occurred |
{{status subtle="false" colour="Yellow" title="PUT"/}}
/v4.0/devices/{nameOrKey}/current_configuration/{trailGuid}
Click here to expand...
Parameters
Name | Located in | Description | Default | Schema |
---|---|---|---|---|
nameOrKey | path | Name or database key of the device of interest | string * | |
trailGuid | path | The GUID of the configuration trail "Device End of Life" | string * | |
body | body | Complete new configuration of configuration trail "Device End of Life"; | string | |
Authorization | header | Authorization token formatted as 'Bearer [token]' | string * |
Responses
Code | Description | Schema |
---|---|---|
200 | successful operation | |
400 | Bad request: Input device DTO is missing or modified device is invalid | |
401 | Unauthorized: Failed to provide a suitable Authorization header or accessToken cookie, or the specified user is not logged in | |
403 | Forbidden: Not allowed to modify the device | |
404 | Not found: No single matching accessible device found | |
500 | Internal server error: Unexpected exception occurred |
{{status subtle="false" colour="Blue" title="GET"/}}
/v4.0/devices/{nameOrKey}/current_configurations
Click here to expand...
Parameters
Name | Located in | Description | Default | Schema |
---|---|---|---|---|
nameOrKey | path | Name or database key of the device of interest | string * | |
Authorization | header | Authorization token formatted as 'Bearer [token]' | string * |
Responses
Code | Description | Schema |
---|---|---|
200 | successful operation | |
401 | Unauthorized: Failed to provide a suitable Authorization header or accessToken cookie, or the specified user is not logged in | |
403 | Forbidden: Not allowed to access devices | |
404 | Not found: No single matching accessible device found | |
500 | Internal server error: Unexpected exception occurred |
{{status subtle="false" colour="Blue" title="GET"/}}
/v4.0/devices/{nameOrKey}/hardware_inventory/{hwKey}
Click here to expand...
Parameters
Name | Located in | Description | Default | Schema |
---|---|---|---|---|
nameOrKey | path | Name or database key of the device of interest | string * | |
hwKey | path | Database key of the hardware inventory of interest | string * | |
Authorization | header | Authorization token formatted as 'Bearer [token]' | string * |
Responses
Code | Description | Schema |
---|---|---|
200 | successful operation | |
401 | Unauthorized: Failed to provide a suitable Authorization header or accessToken cookie, or the specified user is not logged in | |
403 | Forbidden: Not allowed to access devices | |
404 | Not found: No single matching accessible device or hardware inventory found | |
500 | Internal server error: Unexpected exception occurred |
{{status subtle="false" colour="Blue" title="GET"/}}
/v4.0/devices/{nameOrKey}/status
Click here to expand...
Parameters
Name | Located in | Description | Default | Schema |
---|---|---|---|---|
nameOrKey | path | Name or database key of the device of interest | string * | |
Authorization | header | Authorization token formatted as 'Bearer [token]' | string * |
Responses
Code | Description | Schema |
---|---|---|
200 | successful operation | |
401 | Unauthorized: Failed to provide a suitable Authorization header or accessToken cookie, or the specified user is not logged in | |
403 | Forbidden: Not allowed to access devices | |
404 | Not found: No single matching accessible device found | |
500 | Internal server error: Unexpected exception occurred |
{{status subtle="false" colour="Blue" title="GET"/}}
/v4.0/devices/{nameOrKey}/status/{actionGuid}/transcript
Click here to expand...
Description
Retrieves the latest device action execution transcript for the specified type of action; any sensitive configuration data is masked if you are not granted the "Access Sensitive Data" system right; use an Accept header to choose the format of the response, which defaults to text/plain; since the system maintains its transcripts as XML strings, the raw XML is returned as text/plain should the XML be malformed in some way
Parameters
Name | Located in | Description | Default | Schema |
---|---|---|---|---|
nameOrKey | path | Name or database key of the device of interest | string * | |
actionGuid | path | The GUID of the device action of interest | string * | |
Authorization | header | Authorization token formatted as 'Bearer [token]' | string * |
Responses
Code | Description | Schema |
---|---|---|
200 | successful operation | |
400 | Bad request: Input action GUID is invalid | |
401 | Unauthorized: Failed to provide a suitable Authorization header or accessToken cookie, or the specified user is not logged in | |
403 | Forbidden: Not allowed to access devices or transcripts | |
404 | Not found: No single matching accessible device found, or device has no transcript for the specified action, or no action found matching the input actionGuid | |
500 | Internal server error: Unexpected exception occurred |
{{status subtle="false" colour="Green" title="POST"/}}
/v4.0/devices/{nameOrKey}/status/{actionGuid}/transcript/emailed_file
Click here to expand...
Description
Exports and then emails the latest device action execution transcript for the specified type of action; any sensitive configuration data exposed in the transcript is masked if you are not granted the "Access Sensitive Data" system right
Parameters
Name | Located in | Description | Default | Schema |
---|---|---|---|---|
nameOrKey | path | Name or database key of the device of interest | string * | |
actionGuid | path | The GUID of the device action of interest | string * | |
body | body | Parameters for emailing the device transcript | ||
Authorization | header | Authorization token formatted as 'Bearer [token]' | string * |
Responses
Code | Description | Schema |
---|---|---|
200 | OK: Exported device transcript file successfully emailed | |
400 | Bad request: Input action GUID is invalid or input email parameters are missing or invalid | |
401 | Unauthorized: Failed to provide a suitable Authorization header or accessToken cookie, or the specified user is not logged in | |
403 | Forbidden: Not allowed to access devices or transcripts | |
404 | Not found: No single matching accessible device found | |
500 | Internal server error: Unexpected exception occurred |
{{status subtle="false" colour="Green" title="POST"/}}
/v4.0/devices/{nameOrKey}/status/{actionGuid}/transcript/exported_file
Click here to expand...
Description
Exports the latest device action execution transcript for the specified type of action; any sensitive configuration data exposed in the transcript is masked if you are not granted the "Access Sensitive Data" system right
Parameters
Name | Located in | Description | Default | Schema |
---|---|---|---|---|
nameOrKey | path | Name or database key of the device of interest | string * | |
actionGuid | path | The GUID of the device action of interest | string * | |
body | body | Parameters for exporting the device transcript | ||
Authorization | header | Authorization token formatted as 'Bearer [token]' | string * |
Responses
Code | Description | Schema |
---|---|---|
400 | Bad request: Input action GUID is invalid or input export parameters are missing or invalid | |
401 | Unauthorized: Failed to provide a suitable Authorization header or accessToken cookie, or the specified user is not logged in | |
403 | Forbidden: Not allowed to access devices or transcripts | |
404 | Not found: No single matching accessible device found | |
500 | Internal server error: Unexpected exception occurred |
{{status subtle="false" colour="Blue" title="GET"/}}
/v4.0/devices/{nameOrKey}/target_configuration
Click here to expand...
Parameters
Name | Located in | Description | Default | Schema |
---|---|---|---|---|
nameOrKey | path | Name or database key of the device of interest | string * | |
Authorization | header | Authorization token formatted as 'Bearer [token]' | string * |
Responses
Code | Description | Schema |
---|---|---|
200 | successful operation | |
401 | Unauthorized: Failed to provide a suitable Authorization header or accessToken cookie, or the specified user is not logged in | |
403 | Forbidden: Not allowed to access device target configurations | |
404 | Not found: No single matching accessible device found or the device has no target configuration | |
500 | Internal server error: Unexpected exception occurred |
{{status subtle="false" colour="Yellow" title="PUT"/}}
/v4.0/devices/{nameOrKey}/target_configuration
Click here to expand...
Parameters
Name | Located in | Description | Default | Schema |
---|---|---|---|---|
nameOrKey | path | Name or database key of the device whose target configuration is to be modified | string * | |
body | body | Complete new attribute values for the target configuration; anything left out will be considered to be null and will be nulled out in the target configuration | ||
Authorization | header | Authorization token formatted as 'Bearer [token]' | string * |
Responses
Code | Description | Schema |
---|---|---|
200 | successful operation | |
400 | Bad request: Input target configuration DTO is missing or modified target configuration is invalid | |
401 | Unauthorized: Failed to provide a suitable Authorization header or accessToken cookie, or the specified user is not logged in | |
403 | Forbidden: Not allowed to modify the target configuration | |
404 | Not found: No single matching accessible device found or the device has no target configuration | |
500 | Internal server error: Unexpected exception occurred |
{{status subtle="false" colour="Blue" title="GET"/}}
/v4.0/devices/{nameOrKey}/trusted_configurations
Click here to expand...
Parameters
Name | Located in | Description | Default | Schema |
---|---|---|---|---|
nameOrKey | path | Name or database key of the device of interest | string * | |
Authorization | header | Authorization token formatted as 'Bearer [token]' | string * |
Responses
Code | Description | Schema |
---|---|---|
200 | successful operation | |
401 | Unauthorized: Failed to provide a suitable Authorization header or accessToken cookie, or the specified user is not logged in | |
403 | Forbidden: Not allowed to access devices | |
404 | Not found: No single matching accessible device found | |
500 | Internal server error: Unexpected exception occurred |
Object Definitions
Object | Schema |
---|---|
AbbreviatedConfigurationDTO | Click here to expand...{ |
AbbreviatedDeviceDTO | Click here to expand...{ |
ActionStatusDTO | Click here to expand...{ |
ActiveConfigurationTrailDTO | Click here to expand...{ |
ComboGroupFilterDTO | Click here to expand...{ |
ComplianceStatusDTO | Click here to expand...{ |
ComponentFilterDTO | Click here to expand...Subclasses: { |
ComponentId | Click here to expand...{ |
ConfigurationDTO | Click here to expand...{ |
DeviceDTO | Click here to expand...{ created: date-time externalId: string |
DeviceDynamicFieldEditDTO | Click here to expand...{ |
DeviceFilterDTO | Click here to expand...{ |
DeviceInterfaceDTO | Click here to expand...{ |
DeviceMultiEditDTO | Click here to expand...{ |
DeviceMultiEditResultDTO | Click here to expand...{ |
DeviceResultFilterDTO | Click here to expand...{ |
DeviceStaticFieldEditDTO | Click here to expand...{ |
DeviceStatusDTO | Click here to expand...{ |
DynamicFieldFilterDTO | Click here to expand...{ |
DynamicFieldValueDTO | Click here to expand...{ |
EmailParametersDTO | Click here to expand...Subclasses: { |
EntityDTO | Click here to expand...{ |
EventEmailParametersDTO | Click here to expand...Discriminator: "@class" : "com.bmc.bcan.rest.services.v4_0.EventService$EventEmailParametersDTO" { |
EventExportParametersDTO | Click here to expand...Discriminator: "@class" : "com.bmc.bcan.rest.services.v4_0.EventService$EventExportParametersDTO" { |
EventFilterDTO | Click here to expand...{ |
ExportParametersDTO | Click here to expand...Subclasses: { |
FailedRuleDTO | Click here to expand...{ |
GroupFilterDTO | Click here to expand...{ |
HardwareInventoryDTO | Click here to expand...{ |
IOSHardwareInventoryFilterDTO | Click here to expand...{ |
JobEmailParametersDTO | Click here to expand...Discriminator: "@class" : "com.bmc.bcan.rest.services.v4_0.JobService$JobEmailParametersDTO" { |
JobExportParametersDTO | Click here to expand...Discriminator: "@class" : "com.bmc.bcan.rest.services.v4_0.JobService$JobExportParametersDTO" { |
JobFilterDTO | Click here to expand...{ |
JsonPatch | Click here to expand...[ |
JsonPatch.OneOperation | Click here to expand... |
JsonPatch.Pointer | Click here to expand...string |
JsonPatch.Add | Click here to expand...{ |
JsonPatch.Remove | Click here to expand...{ |
JsonPatch.Replace | Click here to expand...{ |
JsonPatch.Move | Click here to expand...{ |
JsonPatch.Copy | Click here to expand...{ |
JsonPatch.Test | Click here to expand...{ |
OsImageFilterDTO | Click here to expand...{ |
OsImageLoadHistoryDTO | Click here to expand...{ |
OsImageReleaseDTO | Click here to expand...{ |
PassedRuleDTO | Click here to expand...{ |
PredefinedJobFilterDTO | Click here to expand...{ |
RuleFilterDTO | Click here to expand...{ |
RuleSetFilterDTO | Click here to expand...{ |
StorageDTO | Click here to expand...{ |
TableOrientedInventoryValueDTO | Click here to expand...{ |
TargetConfigurationDTO | Click here to expand...{ |
TemplateFilterDTO | Click here to expand...{ |
TimePeriodDTO | Click here to expand...{ |
TranscriptSectionDTO | Click here to expand...{ |