Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AutoPR datafactoryv2/resource-manager/v2018_06_01] support dataset v2 split name #4614

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,28 @@
@JsonFlatten
public class AzureSqlDWTableDataset extends DatasetInner {
/**
* The table name of the Azure SQL Data Warehouse. Type: string (or
* Expression with resultType string).
* This property will be retired. Please consider using schema + table
* properties instead.
*/
@JsonProperty(value = "typeProperties.tableName")
private Object tableName;

/**
* Get the table name of the Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
* The schema name of the Azure SQL Data Warehouse. Type: string (or
* Expression with resultType string).
*/
@JsonProperty(value = "typeProperties.schema")
private Object azureSqlDWTableDatasetSchema;

/**
* The table name of the Azure SQL Data Warehouse. Type: string (or
* Expression with resultType string).
*/
@JsonProperty(value = "typeProperties.table")
private Object table;

/**
* Get this property will be retired. Please consider using schema + table properties instead.
*
* @return the tableName value
*/
Expand All @@ -38,7 +52,7 @@ public Object tableName() {
}

/**
* Set the table name of the Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
* Set this property will be retired. Please consider using schema + table properties instead.
*
* @param tableName the tableName value to set
* @return the AzureSqlDWTableDataset object itself.
Expand All @@ -48,4 +62,44 @@ public AzureSqlDWTableDataset withTableName(Object tableName) {
return this;
}

/**
* Get the schema name of the Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
*
* @return the azureSqlDWTableDatasetSchema value
*/
public Object azureSqlDWTableDatasetSchema() {
return this.azureSqlDWTableDatasetSchema;
}

/**
* Set the schema name of the Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
*
* @param azureSqlDWTableDatasetSchema the azureSqlDWTableDatasetSchema value to set
* @return the AzureSqlDWTableDataset object itself.
*/
public AzureSqlDWTableDataset withAzureSqlDWTableDatasetSchema(Object azureSqlDWTableDatasetSchema) {
this.azureSqlDWTableDatasetSchema = azureSqlDWTableDatasetSchema;
return this;
}

/**
* Get the table name of the Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
*
* @return the table value
*/
public Object table() {
return this.table;
}

/**
* Set the table name of the Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
*
* @param table the table value to set
* @return the AzureSqlDWTableDataset object itself.
*/
public AzureSqlDWTableDataset withTable(Object table) {
this.table = table;
return this;
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,28 @@
@JsonFlatten
public class AzureSqlTableDataset extends DatasetInner {
/**
* The table name of the Azure SQL database. Type: string (or Expression
* with resultType string).
* This property will be retired. Please consider using schema + table
* properties instead.
*/
@JsonProperty(value = "typeProperties.tableName")
private Object tableName;

/**
* Get the table name of the Azure SQL database. Type: string (or Expression with resultType string).
* The schema name of the Azure SQL database. Type: string (or Expression
* with resultType string).
*/
@JsonProperty(value = "typeProperties.schema")
private Object azureSqlTableDatasetSchema;

/**
* The table name of the Azure SQL database. Type: string (or Expression
* with resultType string).
*/
@JsonProperty(value = "typeProperties.table")
private Object table;

/**
* Get this property will be retired. Please consider using schema + table properties instead.
*
* @return the tableName value
*/
Expand All @@ -38,7 +52,7 @@ public Object tableName() {
}

/**
* Set the table name of the Azure SQL database. Type: string (or Expression with resultType string).
* Set this property will be retired. Please consider using schema + table properties instead.
*
* @param tableName the tableName value to set
* @return the AzureSqlTableDataset object itself.
Expand All @@ -48,4 +62,44 @@ public AzureSqlTableDataset withTableName(Object tableName) {
return this;
}

/**
* Get the schema name of the Azure SQL database. Type: string (or Expression with resultType string).
*
* @return the azureSqlTableDatasetSchema value
*/
public Object azureSqlTableDatasetSchema() {
return this.azureSqlTableDatasetSchema;
}

/**
* Set the schema name of the Azure SQL database. Type: string (or Expression with resultType string).
*
* @param azureSqlTableDatasetSchema the azureSqlTableDatasetSchema value to set
* @return the AzureSqlTableDataset object itself.
*/
public AzureSqlTableDataset withAzureSqlTableDatasetSchema(Object azureSqlTableDatasetSchema) {
this.azureSqlTableDatasetSchema = azureSqlTableDatasetSchema;
return this;
}

/**
* Get the table name of the Azure SQL database. Type: string (or Expression with resultType string).
*
* @return the table value
*/
public Object table() {
return this.table;
}

/**
* Set the table name of the Azure SQL database. Type: string (or Expression with resultType string).
*
* @param table the table value to set
* @return the AzureSqlTableDataset object itself.
*/
public AzureSqlTableDataset withTable(Object table) {
this.table = table;
return this;
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,28 @@
@JsonFlatten
public class DrillTableDataset extends DatasetInner {
/**
* The table name. Type: string (or Expression with resultType string).
* This property will be retired. Please consider using schema + table
* properties instead.
*/
@JsonProperty(value = "typeProperties.tableName")
private Object tableName;

/**
* Get the table name. Type: string (or Expression with resultType string).
* The table name of the Drill. Type: string (or Expression with resultType
* string).
*/
@JsonProperty(value = "typeProperties.table")
private Object table;

/**
* The schema name of the Drill. Type: string (or Expression with
* resultType string).
*/
@JsonProperty(value = "typeProperties.schema")
private Object drillTableDatasetSchema;

/**
* Get this property will be retired. Please consider using schema + table properties instead.
*
* @return the tableName value
*/
Expand All @@ -37,7 +52,7 @@ public Object tableName() {
}

/**
* Set the table name. Type: string (or Expression with resultType string).
* Set this property will be retired. Please consider using schema + table properties instead.
*
* @param tableName the tableName value to set
* @return the DrillTableDataset object itself.
Expand All @@ -47,4 +62,44 @@ public DrillTableDataset withTableName(Object tableName) {
return this;
}

/**
* Get the table name of the Drill. Type: string (or Expression with resultType string).
*
* @return the table value
*/
public Object table() {
return this.table;
}

/**
* Set the table name of the Drill. Type: string (or Expression with resultType string).
*
* @param table the table value to set
* @return the DrillTableDataset object itself.
*/
public DrillTableDataset withTable(Object table) {
this.table = table;
return this;
}

/**
* Get the schema name of the Drill. Type: string (or Expression with resultType string).
*
* @return the drillTableDatasetSchema value
*/
public Object drillTableDatasetSchema() {
return this.drillTableDatasetSchema;
}

/**
* Set the schema name of the Drill. Type: string (or Expression with resultType string).
*
* @param drillTableDatasetSchema the drillTableDatasetSchema value to set
* @return the DrillTableDataset object itself.
*/
public DrillTableDataset withDrillTableDatasetSchema(Object drillTableDatasetSchema) {
this.drillTableDatasetSchema = drillTableDatasetSchema;
return this;
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,28 @@
@JsonFlatten
public class GoogleBigQueryObjectDataset extends DatasetInner {
/**
* The table name. Type: string (or Expression with resultType string).
* This property will be retired. Please consider using database + table
* properties instead.
*/
@JsonProperty(value = "typeProperties.tableName")
private Object tableName;

/**
* Get the table name. Type: string (or Expression with resultType string).
* The table name of the Google BigQuery. Type: string (or Expression with
* resultType string).
*/
@JsonProperty(value = "typeProperties.table")
private Object table;

/**
* The database name of the Google BigQuery. Type: string (or Expression
* with resultType string).
*/
@JsonProperty(value = "typeProperties.dataset")
private Object dataset;

/**
* Get this property will be retired. Please consider using database + table properties instead.
*
* @return the tableName value
*/
Expand All @@ -37,7 +52,7 @@ public Object tableName() {
}

/**
* Set the table name. Type: string (or Expression with resultType string).
* Set this property will be retired. Please consider using database + table properties instead.
*
* @param tableName the tableName value to set
* @return the GoogleBigQueryObjectDataset object itself.
Expand All @@ -47,4 +62,44 @@ public GoogleBigQueryObjectDataset withTableName(Object tableName) {
return this;
}

/**
* Get the table name of the Google BigQuery. Type: string (or Expression with resultType string).
*
* @return the table value
*/
public Object table() {
return this.table;
}

/**
* Set the table name of the Google BigQuery. Type: string (or Expression with resultType string).
*
* @param table the table value to set
* @return the GoogleBigQueryObjectDataset object itself.
*/
public GoogleBigQueryObjectDataset withTable(Object table) {
this.table = table;
return this;
}

/**
* Get the database name of the Google BigQuery. Type: string (or Expression with resultType string).
*
* @return the dataset value
*/
public Object dataset() {
return this.dataset;
}

/**
* Set the database name of the Google BigQuery. Type: string (or Expression with resultType string).
*
* @param dataset the dataset value to set
* @return the GoogleBigQueryObjectDataset object itself.
*/
public GoogleBigQueryObjectDataset withDataset(Object dataset) {
this.dataset = dataset;
return this;
}

}
Loading