Interface DataFlowsClient
-
public interface DataFlowsClient
An instance of this class provides access to all the operations defined in DataFlowsClient.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DataFlowResourceInner
createOrUpdate(String resourceGroupName, String factoryName, String dataFlowName, DataFlowResourceInner dataFlow)
Creates or updates a data flow.com.azure.core.http.rest.Response<DataFlowResourceInner>
createOrUpdateWithResponse(String resourceGroupName, String factoryName, String dataFlowName, DataFlowResourceInner dataFlow, String ifMatch, com.azure.core.util.Context context)
Creates or updates a data flow.void
delete(String resourceGroupName, String factoryName, String dataFlowName)
Deletes a data flow.com.azure.core.http.rest.Response<Void>
deleteWithResponse(String resourceGroupName, String factoryName, String dataFlowName, com.azure.core.util.Context context)
Deletes a data flow.DataFlowResourceInner
get(String resourceGroupName, String factoryName, String dataFlowName)
Gets a data flow.com.azure.core.http.rest.Response<DataFlowResourceInner>
getWithResponse(String resourceGroupName, String factoryName, String dataFlowName, String ifNoneMatch, com.azure.core.util.Context context)
Gets a data flow.com.azure.core.http.rest.PagedIterable<DataFlowResourceInner>
listByFactory(String resourceGroupName, String factoryName)
Lists data flows.com.azure.core.http.rest.PagedIterable<DataFlowResourceInner>
listByFactory(String resourceGroupName, String factoryName, com.azure.core.util.Context context)
Lists data flows.
-
-
-
Method Detail
-
createOrUpdate
DataFlowResourceInner createOrUpdate(String resourceGroupName, String factoryName, String dataFlowName, DataFlowResourceInner dataFlow)
Creates or updates a data flow.- Parameters:
resourceGroupName
- The resource group name.factoryName
- The factory name.dataFlowName
- The data flow name.dataFlow
- Data flow resource definition.- Returns:
- data flow resource type.
- Throws:
IllegalArgumentException
- thrown if parameters fail the validation.com.azure.core.management.exception.ManagementException
- thrown if the request is rejected by server.RuntimeException
- all other wrapped checked exceptions if the request fails to be sent.
-
createOrUpdateWithResponse
com.azure.core.http.rest.Response<DataFlowResourceInner> createOrUpdateWithResponse(String resourceGroupName, String factoryName, String dataFlowName, DataFlowResourceInner dataFlow, String ifMatch, com.azure.core.util.Context context)
Creates or updates a data flow.- Parameters:
resourceGroupName
- The resource group name.factoryName
- The factory name.dataFlowName
- The data flow name.dataFlow
- Data flow resource definition.ifMatch
- ETag of the data flow entity. Should only be specified for update, for which it should match existing entity or can be * for unconditional update.context
- The context to associate with this operation.- Returns:
- data flow resource type along with
Response
. - Throws:
IllegalArgumentException
- thrown if parameters fail the validation.com.azure.core.management.exception.ManagementException
- thrown if the request is rejected by server.RuntimeException
- all other wrapped checked exceptions if the request fails to be sent.
-
get
DataFlowResourceInner get(String resourceGroupName, String factoryName, String dataFlowName)
Gets a data flow.- Parameters:
resourceGroupName
- The resource group name.factoryName
- The factory name.dataFlowName
- The data flow name.- Returns:
- a data flow.
- Throws:
IllegalArgumentException
- thrown if parameters fail the validation.com.azure.core.management.exception.ManagementException
- thrown if the request is rejected by server.RuntimeException
- all other wrapped checked exceptions if the request fails to be sent.
-
getWithResponse
com.azure.core.http.rest.Response<DataFlowResourceInner> getWithResponse(String resourceGroupName, String factoryName, String dataFlowName, String ifNoneMatch, com.azure.core.util.Context context)
Gets a data flow.- Parameters:
resourceGroupName
- The resource group name.factoryName
- The factory name.dataFlowName
- The data flow name.ifNoneMatch
- ETag of the data flow entity. Should only be specified for get. If the ETag matches the existing entity tag, or if * was provided, then no content will be returned.context
- The context to associate with this operation.- Returns:
- a data flow along with
Response
. - Throws:
IllegalArgumentException
- thrown if parameters fail the validation.com.azure.core.management.exception.ManagementException
- thrown if the request is rejected by server.RuntimeException
- all other wrapped checked exceptions if the request fails to be sent.
-
delete
void delete(String resourceGroupName, String factoryName, String dataFlowName)
Deletes a data flow.- Parameters:
resourceGroupName
- The resource group name.factoryName
- The factory name.dataFlowName
- The data flow name.- Throws:
IllegalArgumentException
- thrown if parameters fail the validation.com.azure.core.management.exception.ManagementException
- thrown if the request is rejected by server.RuntimeException
- all other wrapped checked exceptions if the request fails to be sent.
-
deleteWithResponse
com.azure.core.http.rest.Response<Void> deleteWithResponse(String resourceGroupName, String factoryName, String dataFlowName, com.azure.core.util.Context context)
Deletes a data flow.- Parameters:
resourceGroupName
- The resource group name.factoryName
- The factory name.dataFlowName
- The data flow name.context
- The context to associate with this operation.- Returns:
- the
Response
. - Throws:
IllegalArgumentException
- thrown if parameters fail the validation.com.azure.core.management.exception.ManagementException
- thrown if the request is rejected by server.RuntimeException
- all other wrapped checked exceptions if the request fails to be sent.
-
listByFactory
com.azure.core.http.rest.PagedIterable<DataFlowResourceInner> listByFactory(String resourceGroupName, String factoryName)
Lists data flows.- Parameters:
resourceGroupName
- The resource group name.factoryName
- The factory name.- Returns:
- a list of data flow resources as paginated response with
PagedIterable
. - Throws:
IllegalArgumentException
- thrown if parameters fail the validation.com.azure.core.management.exception.ManagementException
- thrown if the request is rejected by server.RuntimeException
- all other wrapped checked exceptions if the request fails to be sent.
-
listByFactory
com.azure.core.http.rest.PagedIterable<DataFlowResourceInner> listByFactory(String resourceGroupName, String factoryName, com.azure.core.util.Context context)
Lists data flows.- Parameters:
resourceGroupName
- The resource group name.factoryName
- The factory name.context
- The context to associate with this operation.- Returns:
- a list of data flow resources as paginated response with
PagedIterable
. - Throws:
IllegalArgumentException
- thrown if parameters fail the validation.com.azure.core.management.exception.ManagementException
- thrown if the request is rejected by server.RuntimeException
- all other wrapped checked exceptions if the request fails to be sent.
-
-