Skip to content

Commit 31c2451

Browse files
author
SDK Automation
committed
Update from master
1 parent 27c2514 commit 31c2451

File tree

64 files changed

+3288
-203
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+3288
-203
lines changed

sdk/datafactory/mgmt-v2018_06_01/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@
1111
<parent>
1212
<groupId>com.microsoft.azure</groupId>
1313
<artifactId>azure-arm-parent</artifactId>
14-
<version>1.3.0</version>
15-
<relativePath>../../parents/azure-arm-parent</relativePath>
14+
<version>1.1.0</version>
15+
<relativePath>../../../pom.management.xml</relativePath>
1616
</parent>
1717
<artifactId>azure-mgmt-datafactory</artifactId>
18-
<version>1.0.0-beta-1</version>
18+
<version>1.0.0-beta</version>
1919
<packaging>jar</packaging>
2020
<name>Microsoft Azure SDK for DataFactory Management</name>
2121
<description>This package contains Microsoft DataFactory Management SDK.</description>

sdk/datafactory/mgmt-v2018_06_01/src/main/java/com/microsoft/azure/management/datafactory/v2018_06_01/AmazonS3ReadSettings.java

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,21 @@ public class AmazonS3ReadSettings extends StoreReadSettings {
6060
@JsonProperty(value = "enablePartitionDiscovery")
6161
private Boolean enablePartitionDiscovery;
6262

63+
/**
64+
* Specify the root path where partition discovery starts from. Type:
65+
* string (or Expression with resultType string).
66+
*/
67+
@JsonProperty(value = "partitionRootPath")
68+
private Object partitionRootPath;
69+
70+
/**
71+
* Indicates whether the source files need to be deleted after copy
72+
* completion. Default is false. Type: boolean (or Expression with
73+
* resultType boolean).
74+
*/
75+
@JsonProperty(value = "deleteFilesAfterCompletion")
76+
private Object deleteFilesAfterCompletion;
77+
6378
/**
6479
* The start of file's modified datetime. Type: string (or Expression with
6580
* resultType string).
@@ -194,6 +209,46 @@ public AmazonS3ReadSettings withEnablePartitionDiscovery(Boolean enablePartition
194209
return this;
195210
}
196211

212+
/**
213+
* Get specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
214+
*
215+
* @return the partitionRootPath value
216+
*/
217+
public Object partitionRootPath() {
218+
return this.partitionRootPath;
219+
}
220+
221+
/**
222+
* Set specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
223+
*
224+
* @param partitionRootPath the partitionRootPath value to set
225+
* @return the AmazonS3ReadSettings object itself.
226+
*/
227+
public AmazonS3ReadSettings withPartitionRootPath(Object partitionRootPath) {
228+
this.partitionRootPath = partitionRootPath;
229+
return this;
230+
}
231+
232+
/**
233+
* Get indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
234+
*
235+
* @return the deleteFilesAfterCompletion value
236+
*/
237+
public Object deleteFilesAfterCompletion() {
238+
return this.deleteFilesAfterCompletion;
239+
}
240+
241+
/**
242+
* Set indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
243+
*
244+
* @param deleteFilesAfterCompletion the deleteFilesAfterCompletion value to set
245+
* @return the AmazonS3ReadSettings object itself.
246+
*/
247+
public AmazonS3ReadSettings withDeleteFilesAfterCompletion(Object deleteFilesAfterCompletion) {
248+
this.deleteFilesAfterCompletion = deleteFilesAfterCompletion;
249+
return this;
250+
}
251+
197252
/**
198253
* Get the start of file's modified datetime. Type: string (or Expression with resultType string).
199254
*

sdk/datafactory/mgmt-v2018_06_01/src/main/java/com/microsoft/azure/management/datafactory/v2018_06_01/AzureBlobFSReadSettings.java

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,21 @@ public class AzureBlobFSReadSettings extends StoreReadSettings {
5353
@JsonProperty(value = "enablePartitionDiscovery")
5454
private Boolean enablePartitionDiscovery;
5555

56+
/**
57+
* Specify the root path where partition discovery starts from. Type:
58+
* string (or Expression with resultType string).
59+
*/
60+
@JsonProperty(value = "partitionRootPath")
61+
private Object partitionRootPath;
62+
63+
/**
64+
* Indicates whether the source files need to be deleted after copy
65+
* completion. Default is false. Type: boolean (or Expression with
66+
* resultType boolean).
67+
*/
68+
@JsonProperty(value = "deleteFilesAfterCompletion")
69+
private Object deleteFilesAfterCompletion;
70+
5671
/**
5772
* The start of file's modified datetime. Type: string (or Expression with
5873
* resultType string).
@@ -167,6 +182,46 @@ public AzureBlobFSReadSettings withEnablePartitionDiscovery(Boolean enablePartit
167182
return this;
168183
}
169184

185+
/**
186+
* Get specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
187+
*
188+
* @return the partitionRootPath value
189+
*/
190+
public Object partitionRootPath() {
191+
return this.partitionRootPath;
192+
}
193+
194+
/**
195+
* Set specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
196+
*
197+
* @param partitionRootPath the partitionRootPath value to set
198+
* @return the AzureBlobFSReadSettings object itself.
199+
*/
200+
public AzureBlobFSReadSettings withPartitionRootPath(Object partitionRootPath) {
201+
this.partitionRootPath = partitionRootPath;
202+
return this;
203+
}
204+
205+
/**
206+
* Get indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
207+
*
208+
* @return the deleteFilesAfterCompletion value
209+
*/
210+
public Object deleteFilesAfterCompletion() {
211+
return this.deleteFilesAfterCompletion;
212+
}
213+
214+
/**
215+
* Set indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
216+
*
217+
* @param deleteFilesAfterCompletion the deleteFilesAfterCompletion value to set
218+
* @return the AzureBlobFSReadSettings object itself.
219+
*/
220+
public AzureBlobFSReadSettings withDeleteFilesAfterCompletion(Object deleteFilesAfterCompletion) {
221+
this.deleteFilesAfterCompletion = deleteFilesAfterCompletion;
222+
return this;
223+
}
224+
170225
/**
171226
* Get the start of file's modified datetime. Type: string (or Expression with resultType string).
172227
*

sdk/datafactory/mgmt-v2018_06_01/src/main/java/com/microsoft/azure/management/datafactory/v2018_06_01/AzureBlobStorageReadSettings.java

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,21 @@ public class AzureBlobStorageReadSettings extends StoreReadSettings {
6060
@JsonProperty(value = "enablePartitionDiscovery")
6161
private Boolean enablePartitionDiscovery;
6262

63+
/**
64+
* Specify the root path where partition discovery starts from. Type:
65+
* string (or Expression with resultType string).
66+
*/
67+
@JsonProperty(value = "partitionRootPath")
68+
private Object partitionRootPath;
69+
70+
/**
71+
* Indicates whether the source files need to be deleted after copy
72+
* completion. Default is false. Type: boolean (or Expression with
73+
* resultType boolean).
74+
*/
75+
@JsonProperty(value = "deleteFilesAfterCompletion")
76+
private Object deleteFilesAfterCompletion;
77+
6378
/**
6479
* The start of file's modified datetime. Type: string (or Expression with
6580
* resultType string).
@@ -194,6 +209,46 @@ public AzureBlobStorageReadSettings withEnablePartitionDiscovery(Boolean enableP
194209
return this;
195210
}
196211

212+
/**
213+
* Get specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
214+
*
215+
* @return the partitionRootPath value
216+
*/
217+
public Object partitionRootPath() {
218+
return this.partitionRootPath;
219+
}
220+
221+
/**
222+
* Set specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
223+
*
224+
* @param partitionRootPath the partitionRootPath value to set
225+
* @return the AzureBlobStorageReadSettings object itself.
226+
*/
227+
public AzureBlobStorageReadSettings withPartitionRootPath(Object partitionRootPath) {
228+
this.partitionRootPath = partitionRootPath;
229+
return this;
230+
}
231+
232+
/**
233+
* Get indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
234+
*
235+
* @return the deleteFilesAfterCompletion value
236+
*/
237+
public Object deleteFilesAfterCompletion() {
238+
return this.deleteFilesAfterCompletion;
239+
}
240+
241+
/**
242+
* Set indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
243+
*
244+
* @param deleteFilesAfterCompletion the deleteFilesAfterCompletion value to set
245+
* @return the AzureBlobStorageReadSettings object itself.
246+
*/
247+
public AzureBlobStorageReadSettings withDeleteFilesAfterCompletion(Object deleteFilesAfterCompletion) {
248+
this.deleteFilesAfterCompletion = deleteFilesAfterCompletion;
249+
return this;
250+
}
251+
197252
/**
198253
* Get the start of file's modified datetime. Type: string (or Expression with resultType string).
199254
*

sdk/datafactory/mgmt-v2018_06_01/src/main/java/com/microsoft/azure/management/datafactory/v2018_06_01/AzureDataLakeStoreReadSettings.java

Lines changed: 113 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,45 @@ public class AzureDataLakeStoreReadSettings extends StoreReadSettings {
4747
@JsonProperty(value = "fileListPath")
4848
private Object fileListPath;
4949

50+
/**
51+
* Lists files after the value (exclusive) based on file/folder names’
52+
* lexicographical order. Applies under the folderPath in data set, and
53+
* filter files/sub-folders under the folderPath. Type: string (or
54+
* Expression with resultType string).
55+
*/
56+
@JsonProperty(value = "listAfter")
57+
private Object listAfter;
58+
59+
/**
60+
* Lists files before the value (inclusive) based on file/folder names’
61+
* lexicographical order. Applies under the folderPath in data set, and
62+
* filter files/sub-folders under the folderPath. Type: string (or
63+
* Expression with resultType string).
64+
*/
65+
@JsonProperty(value = "listBefore")
66+
private Object listBefore;
67+
5068
/**
5169
* Indicates whether to enable partition discovery.
5270
*/
5371
@JsonProperty(value = "enablePartitionDiscovery")
5472
private Boolean enablePartitionDiscovery;
5573

74+
/**
75+
* Specify the root path where partition discovery starts from. Type:
76+
* string (or Expression with resultType string).
77+
*/
78+
@JsonProperty(value = "partitionRootPath")
79+
private Object partitionRootPath;
80+
81+
/**
82+
* Indicates whether the source files need to be deleted after copy
83+
* completion. Default is false. Type: boolean (or Expression with
84+
* resultType boolean).
85+
*/
86+
@JsonProperty(value = "deleteFilesAfterCompletion")
87+
private Object deleteFilesAfterCompletion;
88+
5689
/**
5790
* The start of file's modified datetime. Type: string (or Expression with
5891
* resultType string).
@@ -147,6 +180,46 @@ public AzureDataLakeStoreReadSettings withFileListPath(Object fileListPath) {
147180
return this;
148181
}
149182

183+
/**
184+
* Get lists files after the value (exclusive) based on file/folder names’ lexicographical order. Applies under the folderPath in data set, and filter files/sub-folders under the folderPath. Type: string (or Expression with resultType string).
185+
*
186+
* @return the listAfter value
187+
*/
188+
public Object listAfter() {
189+
return this.listAfter;
190+
}
191+
192+
/**
193+
* Set lists files after the value (exclusive) based on file/folder names’ lexicographical order. Applies under the folderPath in data set, and filter files/sub-folders under the folderPath. Type: string (or Expression with resultType string).
194+
*
195+
* @param listAfter the listAfter value to set
196+
* @return the AzureDataLakeStoreReadSettings object itself.
197+
*/
198+
public AzureDataLakeStoreReadSettings withListAfter(Object listAfter) {
199+
this.listAfter = listAfter;
200+
return this;
201+
}
202+
203+
/**
204+
* Get lists files before the value (inclusive) based on file/folder names’ lexicographical order. Applies under the folderPath in data set, and filter files/sub-folders under the folderPath. Type: string (or Expression with resultType string).
205+
*
206+
* @return the listBefore value
207+
*/
208+
public Object listBefore() {
209+
return this.listBefore;
210+
}
211+
212+
/**
213+
* Set lists files before the value (inclusive) based on file/folder names’ lexicographical order. Applies under the folderPath in data set, and filter files/sub-folders under the folderPath. Type: string (or Expression with resultType string).
214+
*
215+
* @param listBefore the listBefore value to set
216+
* @return the AzureDataLakeStoreReadSettings object itself.
217+
*/
218+
public AzureDataLakeStoreReadSettings withListBefore(Object listBefore) {
219+
this.listBefore = listBefore;
220+
return this;
221+
}
222+
150223
/**
151224
* Get indicates whether to enable partition discovery.
152225
*
@@ -167,6 +240,46 @@ public AzureDataLakeStoreReadSettings withEnablePartitionDiscovery(Boolean enabl
167240
return this;
168241
}
169242

243+
/**
244+
* Get specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
245+
*
246+
* @return the partitionRootPath value
247+
*/
248+
public Object partitionRootPath() {
249+
return this.partitionRootPath;
250+
}
251+
252+
/**
253+
* Set specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
254+
*
255+
* @param partitionRootPath the partitionRootPath value to set
256+
* @return the AzureDataLakeStoreReadSettings object itself.
257+
*/
258+
public AzureDataLakeStoreReadSettings withPartitionRootPath(Object partitionRootPath) {
259+
this.partitionRootPath = partitionRootPath;
260+
return this;
261+
}
262+
263+
/**
264+
* Get indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
265+
*
266+
* @return the deleteFilesAfterCompletion value
267+
*/
268+
public Object deleteFilesAfterCompletion() {
269+
return this.deleteFilesAfterCompletion;
270+
}
271+
272+
/**
273+
* Set indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
274+
*
275+
* @param deleteFilesAfterCompletion the deleteFilesAfterCompletion value to set
276+
* @return the AzureDataLakeStoreReadSettings object itself.
277+
*/
278+
public AzureDataLakeStoreReadSettings withDeleteFilesAfterCompletion(Object deleteFilesAfterCompletion) {
279+
this.deleteFilesAfterCompletion = deleteFilesAfterCompletion;
280+
return this;
281+
}
282+
170283
/**
171284
* Get the start of file's modified datetime. Type: string (or Expression with resultType string).
172285
*

0 commit comments

Comments
 (0)