You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: sdk/synapse/azure-analytics-synapse-artifacts/src/main/java/com/azure/analytics/synapse/artifacts/ArtifactsClientBuilder.java
+10-12Lines changed: 10 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -39,6 +39,7 @@
39
39
importjava.util.ArrayList;
40
40
importjava.util.List;
41
41
importjava.util.Map;
42
+
importjava.util.Objects;
42
43
importjava.util.stream.Collectors;
43
44
44
45
/** A builder for creating a new instance of the ArtifactsClient type. */
@@ -103,7 +104,7 @@ public final class ArtifactsClientBuilder
Copy file name to clipboardExpand all lines: sdk/synapse/azure-analytics-synapse-artifacts/src/main/java/com/azure/analytics/synapse/artifacts/BigDataPoolsClient.java
+15-15Lines changed: 15 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -33,59 +33,59 @@ public final class BigDataPoolsClient {
33
33
/**
34
34
* List Big Data Pools.
35
35
*
36
+
* @param context The context to associate with this operation.
37
+
* @throws IllegalArgumentException thrown if parameters fail the validation.
36
38
* @throws ErrorContractException thrown if the request is rejected by server.
37
39
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
38
-
* @return collection of Big Data pools.
40
+
* @return collection of Big Data pools along with {@link Response}.
Copy file name to clipboardExpand all lines: sdk/synapse/azure-analytics-synapse-artifacts/src/main/java/com/azure/analytics/synapse/artifacts/DataFlowClient.java
+36-36Lines changed: 36 additions & 36 deletions
Original file line number
Diff line number
Diff line change
@@ -31,6 +31,26 @@ public final class DataFlowClient {
31
31
this.serviceClient = serviceClient;
32
32
}
33
33
34
+
/**
35
+
* Creates or updates a data flow.
36
+
*
37
+
* @param dataFlowName The data flow name.
38
+
* @param dataFlow Data flow resource definition.
39
+
* @param ifMatch ETag of the data flow entity. Should only be specified for update, for which it should match
40
+
* existing entity or can be * for unconditional update.
41
+
* @param context The context to associate with this operation.
42
+
* @throws IllegalArgumentException thrown if parameters fail the validation.
43
+
* @throws CloudErrorException thrown if the request is rejected by server.
44
+
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
45
+
* @return data flow resource type along with {@link Response}.
0 commit comments