Interface InvokeServiceAsync
-
- All Implemented Interfaces:
public interface InvokeServiceAsync
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interfaceInvokeServiceAsync.WithRawResponseA view of InvokeServiceAsync that provides access to raw HTTP responses for each method.
-
Method Summary
-
-
Method Detail
-
withRawResponse
abstract InvokeServiceAsync.WithRawResponse withRawResponse()
Returns a view of this service that provides access to raw HTTP responses for each method.
-
withOptions
abstract InvokeServiceAsync withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
invokeAdHoc
CompletableFuture<AutomationInvokeResponse> invokeAdHoc(InvokeInvokeAdHocParams params)
Invoke an ad hoc automation run. This endpoint accepts a JSON payload with a series of automation steps. For information about what steps are available, checkout the ad hoc automation guide here.
-
invokeAdHoc
abstract CompletableFuture<AutomationInvokeResponse> invokeAdHoc(InvokeInvokeAdHocParams params, RequestOptions requestOptions)
-
invokeByTemplate
CompletableFuture<AutomationInvokeResponse> invokeByTemplate(String templateId, InvokeInvokeByTemplateParams params)
Invoke an automation run from an automation template.
-
invokeByTemplate
CompletableFuture<AutomationInvokeResponse> invokeByTemplate(String templateId, InvokeInvokeByTemplateParams params, RequestOptions requestOptions)
-
invokeByTemplate
CompletableFuture<AutomationInvokeResponse> invokeByTemplate(InvokeInvokeByTemplateParams params)
-
invokeByTemplate
abstract CompletableFuture<AutomationInvokeResponse> invokeByTemplate(InvokeInvokeByTemplateParams params, RequestOptions requestOptions)
-
-
-
-