Interface EndpointSettings
-
- All Known Implementing Classes:
EndpointSettingsImpl
public interface EndpointSettingsAn instance of this class provides access to all the operations defined in EndpointSettings.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceEndpointSettings.EndpointSettingsUpdateSettingsDefinitionThe entirety of updateSettings definition.static interfaceEndpointSettings.EndpointSettingsUpdateSettingsDefinitionStagesGrouping of updateSettings definition stages.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EndpointSettingsDTOgetSettings()Gets endpoint settings for an endpoint.rx.Observable<EndpointSettingsDTO>getSettingsAsync()Gets endpoint settings for an endpoint.EndpointSettings.EndpointSettingsUpdateSettingsDefinitionStages.WithExecuteupdateSettings()Updates endpoint settings for an endpoint.voidupdateSettings(UpdateSettingsOptionalParameter updateSettingsOptionalParameter)Updates endpoint settings for an endpoint.rx.Observable<Void>updateSettingsAsync(UpdateSettingsOptionalParameter updateSettingsOptionalParameter)Updates endpoint settings for an endpoint.
-
-
-
Method Detail
-
getSettings
EndpointSettingsDTO getSettings()
Gets endpoint settings for an endpoint.- Returns:
- the EndpointSettingsDTO object if successful.
- Throws:
IllegalArgumentException- thrown if parameters fail the validationErrorResponseException- thrown if the request is rejected by serverRuntimeException- all other wrapped checked exceptions if the request fails to be sent
-
getSettingsAsync
rx.Observable<EndpointSettingsDTO> getSettingsAsync()
Gets endpoint settings for an endpoint.- Returns:
- the observable to the EndpointSettingsDTO object
- Throws:
IllegalArgumentException- thrown if parameters fail the validation
-
updateSettings
void updateSettings(UpdateSettingsOptionalParameter updateSettingsOptionalParameter)
Updates endpoint settings for an endpoint.- Parameters:
updateSettingsOptionalParameter- the object representing the optional parameters to be set before calling this API- Throws:
IllegalArgumentException- thrown if parameters fail the validationErrorResponseException- thrown if the request is rejected by serverRuntimeException- all other wrapped checked exceptions if the request fails to be sent
-
updateSettingsAsync
rx.Observable<Void> updateSettingsAsync(UpdateSettingsOptionalParameter updateSettingsOptionalParameter)
Updates endpoint settings for an endpoint.- Parameters:
updateSettingsOptionalParameter- the object representing the optional parameters to be set before calling this API- Returns:
- a representation of the deferred computation of this call if successful.
- Throws:
IllegalArgumentException- thrown if parameters fail the validation
-
updateSettings
EndpointSettings.EndpointSettingsUpdateSettingsDefinitionStages.WithExecute updateSettings()
Updates endpoint settings for an endpoint.- Returns:
- the first stage of the updateSettings call
-
-