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<ProjectSpendAlert> create(String projectId, SpendAlertCreateParams params)
Returns a raw HTTP response for
post /organization/projects/{project_id}/spend_alerts, but is otherwise the same as SpendAlertService.create.
-
create
@MustBeClosed() HttpResponseFor<ProjectSpendAlert> create(String projectId, SpendAlertCreateParams params, RequestOptions requestOptions)
-
create
@MustBeClosed() HttpResponseFor<ProjectSpendAlert> create(SpendAlertCreateParams params)
-
create
@MustBeClosed() abstract HttpResponseFor<ProjectSpendAlert> create(SpendAlertCreateParams params, RequestOptions requestOptions)
-
update
@MustBeClosed() HttpResponseFor<ProjectSpendAlert> update(String alertId, SpendAlertUpdateParams params)
Returns a raw HTTP response for
post /organization/projects/{project_id}/spend_alerts/{alert_id}, but is otherwise the same as SpendAlertService.update.
-
update
@MustBeClosed() HttpResponseFor<ProjectSpendAlert> update(String alertId, SpendAlertUpdateParams params, RequestOptions requestOptions)
-
update
@MustBeClosed() HttpResponseFor<ProjectSpendAlert> update(SpendAlertUpdateParams params)
-
update
@MustBeClosed() abstract HttpResponseFor<ProjectSpendAlert> update(SpendAlertUpdateParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<SpendAlertListPage> list(String projectId)
Returns a raw HTTP response for
get /organization/projects/{project_id}/spend_alerts, but is otherwise the same as SpendAlertService.list.
-
list
@MustBeClosed() HttpResponseFor<SpendAlertListPage> list(String projectId, SpendAlertListParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<SpendAlertListPage> list(String projectId, SpendAlertListParams params)
-
list
@MustBeClosed() abstract HttpResponseFor<SpendAlertListPage> list(SpendAlertListParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<SpendAlertListPage> list(SpendAlertListParams params)
-
list
@MustBeClosed() HttpResponseFor<SpendAlertListPage> list(String projectId, RequestOptions requestOptions)
-
delete
@MustBeClosed() HttpResponseFor<ProjectSpendAlertDeleted> delete(String alertId, SpendAlertDeleteParams params)
Returns a raw HTTP response for
delete /organization/projects/{project_id}/spend_alerts/{alert_id}, but is otherwise the same as SpendAlertService.delete.
-
delete
@MustBeClosed() HttpResponseFor<ProjectSpendAlertDeleted> delete(String alertId, SpendAlertDeleteParams params, RequestOptions requestOptions)
-
delete
@MustBeClosed() HttpResponseFor<ProjectSpendAlertDeleted> delete(SpendAlertDeleteParams params)
-
delete
@MustBeClosed() abstract HttpResponseFor<ProjectSpendAlertDeleted> delete(SpendAlertDeleteParams params, RequestOptions requestOptions)
-
-
-
-