public interface ITeamsTabRequest extends IHttpRequest
| Modifier and Type | Method and Description |
|---|---|
void |
delete()
Delete this item from the service
|
void |
delete(ICallback<? super TeamsTab> callback)
Delete this item from the service
|
ITeamsTabRequest |
expand(java.lang.String value)
Sets the expand clause for the request
|
TeamsTab |
get()
Gets the TeamsTab from the service
|
void |
get(ICallback<? super TeamsTab> callback)
Gets the TeamsTab from the service
|
TeamsTab |
patch(TeamsTab sourceTeamsTab)
Patches this TeamsTab with a source
|
void |
patch(TeamsTab sourceTeamsTab,
ICallback<? super TeamsTab> callback)
Patches this TeamsTab with a source
|
TeamsTab |
post(TeamsTab newTeamsTab)
Posts a TeamsTab with a new object
|
void |
post(TeamsTab newTeamsTab,
ICallback<? super TeamsTab> callback)
Posts a TeamsTab with a new object
|
TeamsTab |
put(TeamsTab newTeamsTab)
Posts a TeamsTab with a new object
|
void |
put(TeamsTab newTeamsTab,
ICallback<? super TeamsTab> callback)
Posts a TeamsTab with a new object
|
ITeamsTabRequest |
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 TeamsTab> callback)
callback - the callback to be called after success or failureTeamsTab get() throws ClientException
ClientException - this exception occurs if the request was unable to complete for any reasonvoid delete(ICallback<? super TeamsTab> callback)
callback - the callback when the deletion action has completedvoid delete()
throws ClientException
ClientException - if there was an exception during the delete operationvoid patch(TeamsTab sourceTeamsTab, ICallback<? super TeamsTab> callback)
sourceTeamsTab - the source object with updatescallback - the callback to be called after success or failureTeamsTab patch(TeamsTab sourceTeamsTab) throws ClientException
sourceTeamsTab - the source object with updatesClientException - this exception occurs if the request was unable to complete for any reasonvoid post(TeamsTab newTeamsTab, ICallback<? super TeamsTab> callback)
newTeamsTab - the new object to createcallback - the callback to be called after success or failureTeamsTab post(TeamsTab newTeamsTab) throws ClientException
newTeamsTab - the new object to createClientException - this exception occurs if the request was unable to complete for any reasonvoid put(TeamsTab newTeamsTab, ICallback<? super TeamsTab> callback)
newTeamsTab - the object to create/updatecallback - the callback to be called after success or failureTeamsTab put(TeamsTab newTeamsTab) throws ClientException
newTeamsTab - the object to create/updateClientException - this exception occurs if the request was unable to complete for any reasonITeamsTabRequest select(java.lang.String value)
value - the select clauseITeamsTabRequest expand(java.lang.String value)
value - the expand clause