Interface SpendAlertService.WithRawResponse
-
- All Implemented Interfaces:
public interface SpendAlertService.WithRawResponseA view of SpendAlertService that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract SpendAlertService.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
create
@MustBeClosed() HttpResponseFor<OrganizationSpendAlert> create(SpendAlertCreateParams params)
Returns a raw HTTP response for
post /organization/spend_alerts, but is otherwise the same as SpendAlertService.create.
-
create
@MustBeClosed() abstract HttpResponseFor<OrganizationSpendAlert> create(SpendAlertCreateParams params, RequestOptions requestOptions)
-
update
@MustBeClosed() HttpResponseFor<OrganizationSpendAlert> update(String alertId, SpendAlertUpdateParams params)
Returns a raw HTTP response for
post /organization/spend_alerts/{alert_id}, but is otherwise the same as SpendAlertService.update.
-
update
@MustBeClosed() HttpResponseFor<OrganizationSpendAlert> update(String alertId, SpendAlertUpdateParams params, RequestOptions requestOptions)
-
update
@MustBeClosed() HttpResponseFor<OrganizationSpendAlert> update(SpendAlertUpdateParams params)
-
update
@MustBeClosed() abstract HttpResponseFor<OrganizationSpendAlert> update(SpendAlertUpdateParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<SpendAlertListPage> list()
Returns a raw HTTP response for
get /organization/spend_alerts, but is otherwise the same as SpendAlertService.list.
-
list
@MustBeClosed() abstract HttpResponseFor<SpendAlertListPage> list(SpendAlertListParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<SpendAlertListPage> list(SpendAlertListParams params)
-
list
@MustBeClosed() HttpResponseFor<SpendAlertListPage> list(RequestOptions requestOptions)
-
delete
@MustBeClosed() HttpResponseFor<OrganizationSpendAlertDeleted> delete(String alertId)
Returns a raw HTTP response for
delete /organization/spend_alerts/{alert_id}, but is otherwise the same as SpendAlertService.delete.
-
delete
@MustBeClosed() HttpResponseFor<OrganizationSpendAlertDeleted> delete(String alertId, SpendAlertDeleteParams params, RequestOptions requestOptions)
-
delete
@MustBeClosed() HttpResponseFor<OrganizationSpendAlertDeleted> delete(String alertId, SpendAlertDeleteParams params)
-
delete
@MustBeClosed() abstract HttpResponseFor<OrganizationSpendAlertDeleted> delete(SpendAlertDeleteParams params, RequestOptions requestOptions)
-
delete
@MustBeClosed() HttpResponseFor<OrganizationSpendAlertDeleted> delete(SpendAlertDeleteParams params)
-
delete
@MustBeClosed() HttpResponseFor<OrganizationSpendAlertDeleted> delete(String alertId, RequestOptions requestOptions)
-
-
-
-