WorkflowsClient Class

  • java.lang.Object
    • com.azure.analytics.purview.workflow.WorkflowsClient

public final class WorkflowsClient

Initializes a new instance of the synchronous PurviewWorkflowClient type.

Method Summary

Modifier and Type Method and Description
PagedIterable<BinaryData> list(RequestOptions requestOptions)

List all workflows.

Methods inherited from java.lang.Object

Method Details

list

public PagedIterable<BinaryData> list(RequestOptions requestOptions)

List all workflows.

Response Body Schema

{
     id: String (Required)
     triggers (Required): [
          (Required){
             type: String(when_term_creation_is_requested/when_term_deletion_is_requested/when_term_update_is_requested/when_terms_import_is_requested/when_data_access_grant_is_requested/when_asset_update_is_requested) (Required)
             underGlossaryHierarchy: String (Optional)
             underCollection: String (Optional)
             underGlossary: String (Optional)
         }
     ]
     createdTime: OffsetDateTime (Optional)
     createdBy: String (Optional)
     lastUpdateTime: OffsetDateTime (Optional)
     updatedBy: String (Optional)
     name: String (Required)
     isEnabled: boolean (Required)
     description: String (Required)
 }

Parameters:

requestOptions - The options to configure the HTTP request before HTTP client sends it.

Returns:

the workflow list as paginated response with PagedIterable<T>.

Applies to