Interface SpanIframeService
-
- All Implemented Interfaces:
public interface SpanIframeService
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interfaceSpanIframeService.WithRawResponseA view of SpanIframeService that provides access to raw HTTP responses for each method.
-
Method Summary
-
-
Method Detail
-
withRawResponse
abstract SpanIframeService.WithRawResponse withRawResponse()
Returns a view of this service that provides access to raw HTTP responses for each method.
-
create
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 SpanIFrame create(SpanIframeCreateParams params, RequestOptions requestOptions)
-
retrieve
SpanIFrame retrieve(SpanIframeRetrieveParams params)
Get a span_iframe object by its id
-
retrieve
abstract SpanIFrame retrieve(SpanIframeRetrieveParams params, RequestOptions requestOptions)
-
update
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 SpanIFrame update(SpanIframeUpdateParams params, RequestOptions requestOptions)
-
list
SpanIframeListPage 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 SpanIframeListPage list(SpanIframeListParams params, RequestOptions requestOptions)
-
list
SpanIframeListPage list(SpanIframeListParams params)
-
list
SpanIframeListPage list(RequestOptions requestOptions)
-
delete
SpanIFrame delete(SpanIframeDeleteParams params)
Delete a span_iframe object by its id
-
delete
abstract SpanIFrame delete(SpanIframeDeleteParams params, RequestOptions requestOptions)
-
replace
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 SpanIFrame replace(SpanIframeReplaceParams params, RequestOptions requestOptions)
-
-
-
-