public interface IDeviceConfigurationRequest extends IHttpRequest
| Modifier and Type | Method and Description |
|---|---|
void |
delete()
Delete this item from the service
|
void |
delete(ICallback<? super DeviceConfiguration> callback)
Delete this item from the service
|
IDeviceConfigurationRequest |
expand(java.lang.String value)
Sets the expand clause for the request
|
DeviceConfiguration |
get()
Gets the DeviceConfiguration from the service
|
void |
get(ICallback<? super DeviceConfiguration> callback)
Gets the DeviceConfiguration from the service
|
DeviceConfiguration |
patch(DeviceConfiguration sourceDeviceConfiguration)
Patches this DeviceConfiguration with a source
|
void |
patch(DeviceConfiguration sourceDeviceConfiguration,
ICallback<? super DeviceConfiguration> callback)
Patches this DeviceConfiguration with a source
|
DeviceConfiguration |
post(DeviceConfiguration newDeviceConfiguration)
Posts a DeviceConfiguration with a new object
|
void |
post(DeviceConfiguration newDeviceConfiguration,
ICallback<? super DeviceConfiguration> callback)
Posts a DeviceConfiguration with a new object
|
DeviceConfiguration |
put(DeviceConfiguration newDeviceConfiguration)
Posts a DeviceConfiguration with a new object
|
void |
put(DeviceConfiguration newDeviceConfiguration,
ICallback<? super DeviceConfiguration> callback)
Posts a DeviceConfiguration with a new object
|
IDeviceConfigurationRequest |
select(java.lang.String value)
Sets the select clause for the request
|
addHeader, getDelay, getHeaders, getHttpMethod, getHttpRequest, getHttpRequest, getHttpRequest, getMaxRedirects, getMaxRetries, getOptions, getRequestUrl, getShouldRedirect, getShouldRetry, getUseCaches, setDelay, setMaxRedirects, setMaxRetries, setShouldRedirect, setShouldRetry, setUseCaches, withHttpMethodvoid get(ICallback<? super DeviceConfiguration> callback)
callback - the callback to be called after success or failureDeviceConfiguration get() throws ClientException
ClientException - this exception occurs if the request was unable to complete for any reasonvoid delete(ICallback<? super DeviceConfiguration> callback)
callback - the callback when the deletion action has completedvoid delete()
throws ClientException
ClientException - if there was an exception during the delete operationvoid patch(DeviceConfiguration sourceDeviceConfiguration, ICallback<? super DeviceConfiguration> callback)
sourceDeviceConfiguration - the source object with updatescallback - the callback to be called after success or failureDeviceConfiguration patch(DeviceConfiguration sourceDeviceConfiguration) throws ClientException
sourceDeviceConfiguration - the source object with updatesClientException - this exception occurs if the request was unable to complete for any reasonvoid post(DeviceConfiguration newDeviceConfiguration, ICallback<? super DeviceConfiguration> callback)
newDeviceConfiguration - the new object to createcallback - the callback to be called after success or failureDeviceConfiguration post(DeviceConfiguration newDeviceConfiguration) throws ClientException
newDeviceConfiguration - the new object to createClientException - this exception occurs if the request was unable to complete for any reasonvoid put(DeviceConfiguration newDeviceConfiguration, ICallback<? super DeviceConfiguration> callback)
newDeviceConfiguration - the object to create/updatecallback - the callback to be called after success or failureDeviceConfiguration put(DeviceConfiguration newDeviceConfiguration) throws ClientException
newDeviceConfiguration - the object to create/updateClientException - this exception occurs if the request was unable to complete for any reasonIDeviceConfigurationRequest select(java.lang.String value)
value - the select clauseIDeviceConfigurationRequest expand(java.lang.String value)
value - the expand clause