Skip to content

Commit

Permalink
Generated from 1609df341a42cc9ef4add29bc8c37b097e1a60f4
Browse files Browse the repository at this point in the history
add deleteFilesAfterCompletion to binary sources. add listAfter/listBefore to adls gen1 source
  • Loading branch information
SDK Automation committed Jun 1, 2020
1 parent ac9ec95 commit ca0b053
Show file tree
Hide file tree
Showing 9 changed files with 310 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,14 @@ public class AmazonS3ReadSettings extends StoreReadSettings {
@JsonProperty(value = "partitionRootPath")
private Object partitionRootPath;

/**
* Indicates whether the source files need to be deleted after copy
* completion. Default is false. Type: boolean (or Expression with
* resultType boolean).
*/
@JsonProperty(value = "deleteFilesAfterCompletion")
private Object deleteFilesAfterCompletion;

/**
* The start of file's modified datetime. Type: string (or Expression with
* resultType string).
Expand Down Expand Up @@ -221,6 +229,26 @@ public AmazonS3ReadSettings withPartitionRootPath(Object partitionRootPath) {
return this;
}

/**
* Get indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
*
* @return the deleteFilesAfterCompletion value
*/
public Object deleteFilesAfterCompletion() {
return this.deleteFilesAfterCompletion;
}

/**
* Set indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
*
* @param deleteFilesAfterCompletion the deleteFilesAfterCompletion value to set
* @return the AmazonS3ReadSettings object itself.
*/
public AmazonS3ReadSettings withDeleteFilesAfterCompletion(Object deleteFilesAfterCompletion) {
this.deleteFilesAfterCompletion = deleteFilesAfterCompletion;
return this;
}

/**
* Get the start of file's modified datetime. Type: string (or Expression with resultType string).
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,14 @@ public class AzureBlobFSReadSettings extends StoreReadSettings {
@JsonProperty(value = "partitionRootPath")
private Object partitionRootPath;

/**
* Indicates whether the source files need to be deleted after copy
* completion. Default is false. Type: boolean (or Expression with
* resultType boolean).
*/
@JsonProperty(value = "deleteFilesAfterCompletion")
private Object deleteFilesAfterCompletion;

/**
* The start of file's modified datetime. Type: string (or Expression with
* resultType string).
Expand Down Expand Up @@ -194,6 +202,26 @@ public AzureBlobFSReadSettings withPartitionRootPath(Object partitionRootPath) {
return this;
}

/**
* Get indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
*
* @return the deleteFilesAfterCompletion value
*/
public Object deleteFilesAfterCompletion() {
return this.deleteFilesAfterCompletion;
}

/**
* Set indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
*
* @param deleteFilesAfterCompletion the deleteFilesAfterCompletion value to set
* @return the AzureBlobFSReadSettings object itself.
*/
public AzureBlobFSReadSettings withDeleteFilesAfterCompletion(Object deleteFilesAfterCompletion) {
this.deleteFilesAfterCompletion = deleteFilesAfterCompletion;
return this;
}

/**
* Get the start of file's modified datetime. Type: string (or Expression with resultType string).
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,14 @@ public class AzureBlobStorageReadSettings extends StoreReadSettings {
@JsonProperty(value = "partitionRootPath")
private Object partitionRootPath;

/**
* Indicates whether the source files need to be deleted after copy
* completion. Default is false. Type: boolean (or Expression with
* resultType boolean).
*/
@JsonProperty(value = "deleteFilesAfterCompletion")
private Object deleteFilesAfterCompletion;

/**
* The start of file's modified datetime. Type: string (or Expression with
* resultType string).
Expand Down Expand Up @@ -221,6 +229,26 @@ public AzureBlobStorageReadSettings withPartitionRootPath(Object partitionRootPa
return this;
}

/**
* Get indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
*
* @return the deleteFilesAfterCompletion value
*/
public Object deleteFilesAfterCompletion() {
return this.deleteFilesAfterCompletion;
}

/**
* Set indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
*
* @param deleteFilesAfterCompletion the deleteFilesAfterCompletion value to set
* @return the AzureBlobStorageReadSettings object itself.
*/
public AzureBlobStorageReadSettings withDeleteFilesAfterCompletion(Object deleteFilesAfterCompletion) {
this.deleteFilesAfterCompletion = deleteFilesAfterCompletion;
return this;
}

/**
* Get the start of file's modified datetime. Type: string (or Expression with resultType string).
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,24 @@ public class AzureDataLakeStoreReadSettings extends StoreReadSettings {
@JsonProperty(value = "fileListPath")
private Object fileListPath;

/**
* 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).
*/
@JsonProperty(value = "listAfter")
private Object listAfter;

/**
* 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).
*/
@JsonProperty(value = "listBefore")
private Object listBefore;

/**
* Indicates whether to enable partition discovery.
*/
Expand All @@ -60,6 +78,14 @@ public class AzureDataLakeStoreReadSettings extends StoreReadSettings {
@JsonProperty(value = "partitionRootPath")
private Object partitionRootPath;

/**
* Indicates whether the source files need to be deleted after copy
* completion. Default is false. Type: boolean (or Expression with
* resultType boolean).
*/
@JsonProperty(value = "deleteFilesAfterCompletion")
private Object deleteFilesAfterCompletion;

/**
* The start of file's modified datetime. Type: string (or Expression with
* resultType string).
Expand Down Expand Up @@ -154,6 +180,46 @@ public AzureDataLakeStoreReadSettings withFileListPath(Object fileListPath) {
return this;
}

/**
* 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).
*
* @return the listAfter value
*/
public Object listAfter() {
return this.listAfter;
}

/**
* 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).
*
* @param listAfter the listAfter value to set
* @return the AzureDataLakeStoreReadSettings object itself.
*/
public AzureDataLakeStoreReadSettings withListAfter(Object listAfter) {
this.listAfter = listAfter;
return this;
}

/**
* 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).
*
* @return the listBefore value
*/
public Object listBefore() {
return this.listBefore;
}

/**
* 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).
*
* @param listBefore the listBefore value to set
* @return the AzureDataLakeStoreReadSettings object itself.
*/
public AzureDataLakeStoreReadSettings withListBefore(Object listBefore) {
this.listBefore = listBefore;
return this;
}

/**
* Get indicates whether to enable partition discovery.
*
Expand Down Expand Up @@ -194,6 +260,26 @@ public AzureDataLakeStoreReadSettings withPartitionRootPath(Object partitionRoot
return this;
}

/**
* Get indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
*
* @return the deleteFilesAfterCompletion value
*/
public Object deleteFilesAfterCompletion() {
return this.deleteFilesAfterCompletion;
}

/**
* Set indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
*
* @param deleteFilesAfterCompletion the deleteFilesAfterCompletion value to set
* @return the AzureDataLakeStoreReadSettings object itself.
*/
public AzureDataLakeStoreReadSettings withDeleteFilesAfterCompletion(Object deleteFilesAfterCompletion) {
this.deleteFilesAfterCompletion = deleteFilesAfterCompletion;
return this;
}

/**
* Get the start of file's modified datetime. Type: string (or Expression with resultType string).
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,14 @@ public class AzureFileStorageReadSettings extends StoreReadSettings {
@JsonProperty(value = "partitionRootPath")
private Object partitionRootPath;

/**
* Indicates whether the source files need to be deleted after copy
* completion. Default is false. Type: boolean (or Expression with
* resultType boolean).
*/
@JsonProperty(value = "deleteFilesAfterCompletion")
private Object deleteFilesAfterCompletion;

/**
* The start of file's modified datetime. Type: string (or Expression with
* resultType string).
Expand Down Expand Up @@ -221,6 +229,26 @@ public AzureFileStorageReadSettings withPartitionRootPath(Object partitionRootPa
return this;
}

/**
* Get indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
*
* @return the deleteFilesAfterCompletion value
*/
public Object deleteFilesAfterCompletion() {
return this.deleteFilesAfterCompletion;
}

/**
* Set indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
*
* @param deleteFilesAfterCompletion the deleteFilesAfterCompletion value to set
* @return the AzureFileStorageReadSettings object itself.
*/
public AzureFileStorageReadSettings withDeleteFilesAfterCompletion(Object deleteFilesAfterCompletion) {
this.deleteFilesAfterCompletion = deleteFilesAfterCompletion;
return this;
}

/**
* Get the start of file's modified datetime. Type: string (or Expression with resultType string).
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,14 @@ public class FileServerReadSettings extends StoreReadSettings {
@JsonProperty(value = "partitionRootPath")
private Object partitionRootPath;

/**
* Indicates whether the source files need to be deleted after copy
* completion. Default is false. Type: boolean (or Expression with
* resultType boolean).
*/
@JsonProperty(value = "deleteFilesAfterCompletion")
private Object deleteFilesAfterCompletion;

/**
* The start of file's modified datetime. Type: string (or Expression with
* resultType string).
Expand Down Expand Up @@ -202,6 +210,26 @@ public FileServerReadSettings withPartitionRootPath(Object partitionRootPath) {
return this;
}

/**
* Get indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
*
* @return the deleteFilesAfterCompletion value
*/
public Object deleteFilesAfterCompletion() {
return this.deleteFilesAfterCompletion;
}

/**
* Set indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
*
* @param deleteFilesAfterCompletion the deleteFilesAfterCompletion value to set
* @return the FileServerReadSettings object itself.
*/
public FileServerReadSettings withDeleteFilesAfterCompletion(Object deleteFilesAfterCompletion) {
this.deleteFilesAfterCompletion = deleteFilesAfterCompletion;
return this;
}

/**
* Get the start of file's modified datetime. Type: string (or Expression with resultType string).
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,14 @@ public class FtpReadSettings extends StoreReadSettings {
@JsonProperty(value = "partitionRootPath")
private Object partitionRootPath;

/**
* Indicates whether the source files need to be deleted after copy
* completion. Default is false. Type: boolean (or Expression with
* resultType boolean).
*/
@JsonProperty(value = "deleteFilesAfterCompletion")
private Object deleteFilesAfterCompletion;

/**
* Point to a text file that lists each file (relative path to the path
* configured in the dataset) that you want to copy. Type: string (or
Expand Down Expand Up @@ -166,6 +174,26 @@ public FtpReadSettings withPartitionRootPath(Object partitionRootPath) {
return this;
}

/**
* Get indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
*
* @return the deleteFilesAfterCompletion value
*/
public Object deleteFilesAfterCompletion() {
return this.deleteFilesAfterCompletion;
}

/**
* Set indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
*
* @param deleteFilesAfterCompletion the deleteFilesAfterCompletion value to set
* @return the FtpReadSettings object itself.
*/
public FtpReadSettings withDeleteFilesAfterCompletion(Object deleteFilesAfterCompletion) {
this.deleteFilesAfterCompletion = deleteFilesAfterCompletion;
return this;
}

/**
* Get point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
*
Expand Down
Loading

0 comments on commit ca0b053

Please sign in to comment.