Interface SpanIframeServiceAsync
-
- All Implemented Interfaces:
public interface SpanIframeServiceAsync
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interfaceSpanIframeServiceAsync.WithRawResponseA view of SpanIframeServiceAsync that provides access to raw HTTP responses for each method.
-
Method Summary
-
-
Method Detail
-
withRawResponse
abstract SpanIframeServiceAsync.WithRawResponse withRawResponse()
Returns a view of this service that provides access to raw HTTP responses for each method.
-
create
CompletableFuture<SpanIFrame> create(SpanIframeCreateParams params)
Create a new span_iframe. If there is an existing span_iframe with the same name as the one specified in the request, will return the existing span_iframe unmodified
-
create
abstract CompletableFuture<SpanIFrame> create(SpanIframeCreateParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<SpanIFrame> retrieve(SpanIframeRetrieveParams params)
Get a span_iframe object by its id
-
retrieve
abstract CompletableFuture<SpanIFrame> retrieve(SpanIframeRetrieveParams params, RequestOptions requestOptions)
-
update
CompletableFuture<SpanIFrame> update(SpanIframeUpdateParams params)
Partially update a span_iframe object. Specify the fields to update in the payload. Any object-type fields will be deep-merged with existing content. Currently we do not support removing fields or setting them to null.
-
update
abstract CompletableFuture<SpanIFrame> update(SpanIframeUpdateParams params, RequestOptions requestOptions)
-
list
CompletableFuture<SpanIframeListPageAsync> list()
List out all span_iframes. The span_iframes are sorted by creation date, with the most recently-created span_iframes coming first
-
list
abstract CompletableFuture<SpanIframeListPageAsync> list(SpanIframeListParams params, RequestOptions requestOptions)
-
list
CompletableFuture<SpanIframeListPageAsync> list(SpanIframeListParams params)
-
list
CompletableFuture<SpanIframeListPageAsync> list(RequestOptions requestOptions)
-
delete
CompletableFuture<SpanIFrame> delete(SpanIframeDeleteParams params)
Delete a span_iframe object by its id
-
delete
abstract CompletableFuture<SpanIFrame> delete(SpanIframeDeleteParams params, RequestOptions requestOptions)
-
replace
CompletableFuture<SpanIFrame> replace(SpanIframeReplaceParams params)
Create or replace span_iframe. If there is an existing span_iframe with the same name as the one specified in the request, will replace the existing span_iframe with the provided fields
-
replace
abstract CompletableFuture<SpanIFrame> replace(SpanIframeReplaceParams params, RequestOptions requestOptions)
-
-
-
-