diff --git a/datafactoryv2/resource-manager/v2018_06_01/src/main/java/com/microsoft/azure/management/datafactoryv2/v2018_06_01/AzureSqlDWTableDataset.java b/datafactoryv2/resource-manager/v2018_06_01/src/main/java/com/microsoft/azure/management/datafactoryv2/v2018_06_01/AzureSqlDWTableDataset.java index 92113016d5a43..5dcaff0d91fe0 100644 --- a/datafactoryv2/resource-manager/v2018_06_01/src/main/java/com/microsoft/azure/management/datafactoryv2/v2018_06_01/AzureSqlDWTableDataset.java +++ b/datafactoryv2/resource-manager/v2018_06_01/src/main/java/com/microsoft/azure/management/datafactoryv2/v2018_06_01/AzureSqlDWTableDataset.java @@ -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 */ @@ -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. @@ -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; + } + } diff --git a/datafactoryv2/resource-manager/v2018_06_01/src/main/java/com/microsoft/azure/management/datafactoryv2/v2018_06_01/AzureSqlTableDataset.java b/datafactoryv2/resource-manager/v2018_06_01/src/main/java/com/microsoft/azure/management/datafactoryv2/v2018_06_01/AzureSqlTableDataset.java index a9ddd4150a302..aaadb2bb93e18 100644 --- a/datafactoryv2/resource-manager/v2018_06_01/src/main/java/com/microsoft/azure/management/datafactoryv2/v2018_06_01/AzureSqlTableDataset.java +++ b/datafactoryv2/resource-manager/v2018_06_01/src/main/java/com/microsoft/azure/management/datafactoryv2/v2018_06_01/AzureSqlTableDataset.java @@ -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 */ @@ -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. @@ -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; + } + } diff --git a/datafactoryv2/resource-manager/v2018_06_01/src/main/java/com/microsoft/azure/management/datafactoryv2/v2018_06_01/DrillTableDataset.java b/datafactoryv2/resource-manager/v2018_06_01/src/main/java/com/microsoft/azure/management/datafactoryv2/v2018_06_01/DrillTableDataset.java index ed9e79391cc8d..29c42d2215cf2 100644 --- a/datafactoryv2/resource-manager/v2018_06_01/src/main/java/com/microsoft/azure/management/datafactoryv2/v2018_06_01/DrillTableDataset.java +++ b/datafactoryv2/resource-manager/v2018_06_01/src/main/java/com/microsoft/azure/management/datafactoryv2/v2018_06_01/DrillTableDataset.java @@ -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 */ @@ -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. @@ -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; + } + } diff --git a/datafactoryv2/resource-manager/v2018_06_01/src/main/java/com/microsoft/azure/management/datafactoryv2/v2018_06_01/GoogleBigQueryObjectDataset.java b/datafactoryv2/resource-manager/v2018_06_01/src/main/java/com/microsoft/azure/management/datafactoryv2/v2018_06_01/GoogleBigQueryObjectDataset.java index d91d35398d8d8..df812a29ed344 100644 --- a/datafactoryv2/resource-manager/v2018_06_01/src/main/java/com/microsoft/azure/management/datafactoryv2/v2018_06_01/GoogleBigQueryObjectDataset.java +++ b/datafactoryv2/resource-manager/v2018_06_01/src/main/java/com/microsoft/azure/management/datafactoryv2/v2018_06_01/GoogleBigQueryObjectDataset.java @@ -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 */ @@ -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. @@ -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; + } + } diff --git a/datafactoryv2/resource-manager/v2018_06_01/src/main/java/com/microsoft/azure/management/datafactoryv2/v2018_06_01/GreenplumTableDataset.java b/datafactoryv2/resource-manager/v2018_06_01/src/main/java/com/microsoft/azure/management/datafactoryv2/v2018_06_01/GreenplumTableDataset.java index ba0ed3d042fff..da71ccb734376 100644 --- a/datafactoryv2/resource-manager/v2018_06_01/src/main/java/com/microsoft/azure/management/datafactoryv2/v2018_06_01/GreenplumTableDataset.java +++ b/datafactoryv2/resource-manager/v2018_06_01/src/main/java/com/microsoft/azure/management/datafactoryv2/v2018_06_01/GreenplumTableDataset.java @@ -22,13 +22,28 @@ @JsonFlatten public class GreenplumTableDataset 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 Greenplum. Type: string (or Expression with resultType + * string). + */ + @JsonProperty(value = "typeProperties.table") + private Object table; + + /** + * The schema name of Greenplum. Type: string (or Expression with + * resultType string). + */ + @JsonProperty(value = "typeProperties.schema") + private Object greenplumTableDatasetSchema; + + /** + * Get this property will be retired. Please consider using schema + table properties instead. * * @return the tableName value */ @@ -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 GreenplumTableDataset object itself. @@ -47,4 +62,44 @@ public GreenplumTableDataset withTableName(Object tableName) { return this; } + /** + * Get the table name of Greenplum. Type: string (or Expression with resultType string). + * + * @return the table value + */ + public Object table() { + return this.table; + } + + /** + * Set the table name of Greenplum. Type: string (or Expression with resultType string). + * + * @param table the table value to set + * @return the GreenplumTableDataset object itself. + */ + public GreenplumTableDataset withTable(Object table) { + this.table = table; + return this; + } + + /** + * Get the schema name of Greenplum. Type: string (or Expression with resultType string). + * + * @return the greenplumTableDatasetSchema value + */ + public Object greenplumTableDatasetSchema() { + return this.greenplumTableDatasetSchema; + } + + /** + * Set the schema name of Greenplum. Type: string (or Expression with resultType string). + * + * @param greenplumTableDatasetSchema the greenplumTableDatasetSchema value to set + * @return the GreenplumTableDataset object itself. + */ + public GreenplumTableDataset withGreenplumTableDatasetSchema(Object greenplumTableDatasetSchema) { + this.greenplumTableDatasetSchema = greenplumTableDatasetSchema; + return this; + } + } diff --git a/datafactoryv2/resource-manager/v2018_06_01/src/main/java/com/microsoft/azure/management/datafactoryv2/v2018_06_01/HiveObjectDataset.java b/datafactoryv2/resource-manager/v2018_06_01/src/main/java/com/microsoft/azure/management/datafactoryv2/v2018_06_01/HiveObjectDataset.java index 2f65f6c00a729..2be2c61ee4e45 100644 --- a/datafactoryv2/resource-manager/v2018_06_01/src/main/java/com/microsoft/azure/management/datafactoryv2/v2018_06_01/HiveObjectDataset.java +++ b/datafactoryv2/resource-manager/v2018_06_01/src/main/java/com/microsoft/azure/management/datafactoryv2/v2018_06_01/HiveObjectDataset.java @@ -22,13 +22,28 @@ @JsonFlatten public class HiveObjectDataset 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 Hive. Type: string (or Expression with resultType + * string). + */ + @JsonProperty(value = "typeProperties.table") + private Object table; + + /** + * The schema name of the Hive. Type: string (or Expression with resultType + * string). + */ + @JsonProperty(value = "typeProperties.schema") + private Object hiveObjectDatasetSchema; + + /** + * Get this property will be retired. Please consider using schema + table properties instead. * * @return the tableName value */ @@ -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 HiveObjectDataset object itself. @@ -47,4 +62,44 @@ public HiveObjectDataset withTableName(Object tableName) { return this; } + /** + * Get the table name of the Hive. Type: string (or Expression with resultType string). + * + * @return the table value + */ + public Object table() { + return this.table; + } + + /** + * Set the table name of the Hive. Type: string (or Expression with resultType string). + * + * @param table the table value to set + * @return the HiveObjectDataset object itself. + */ + public HiveObjectDataset withTable(Object table) { + this.table = table; + return this; + } + + /** + * Get the schema name of the Hive. Type: string (or Expression with resultType string). + * + * @return the hiveObjectDatasetSchema value + */ + public Object hiveObjectDatasetSchema() { + return this.hiveObjectDatasetSchema; + } + + /** + * Set the schema name of the Hive. Type: string (or Expression with resultType string). + * + * @param hiveObjectDatasetSchema the hiveObjectDatasetSchema value to set + * @return the HiveObjectDataset object itself. + */ + public HiveObjectDataset withHiveObjectDatasetSchema(Object hiveObjectDatasetSchema) { + this.hiveObjectDatasetSchema = hiveObjectDatasetSchema; + return this; + } + } diff --git a/datafactoryv2/resource-manager/v2018_06_01/src/main/java/com/microsoft/azure/management/datafactoryv2/v2018_06_01/ImpalaObjectDataset.java b/datafactoryv2/resource-manager/v2018_06_01/src/main/java/com/microsoft/azure/management/datafactoryv2/v2018_06_01/ImpalaObjectDataset.java index 51c4c5b8de60a..bb66187f8899e 100644 --- a/datafactoryv2/resource-manager/v2018_06_01/src/main/java/com/microsoft/azure/management/datafactoryv2/v2018_06_01/ImpalaObjectDataset.java +++ b/datafactoryv2/resource-manager/v2018_06_01/src/main/java/com/microsoft/azure/management/datafactoryv2/v2018_06_01/ImpalaObjectDataset.java @@ -22,13 +22,28 @@ @JsonFlatten public class ImpalaObjectDataset 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 Impala. Type: string (or Expression with + * resultType string). + */ + @JsonProperty(value = "typeProperties.table") + private Object table; + + /** + * The schema name of the Impala. Type: string (or Expression with + * resultType string). + */ + @JsonProperty(value = "typeProperties.schema") + private Object impalaObjectDatasetSchema; + + /** + * Get this property will be retired. Please consider using schema + table properties instead. * * @return the tableName value */ @@ -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 ImpalaObjectDataset object itself. @@ -47,4 +62,44 @@ public ImpalaObjectDataset withTableName(Object tableName) { return this; } + /** + * Get the table name of the Impala. Type: string (or Expression with resultType string). + * + * @return the table value + */ + public Object table() { + return this.table; + } + + /** + * Set the table name of the Impala. Type: string (or Expression with resultType string). + * + * @param table the table value to set + * @return the ImpalaObjectDataset object itself. + */ + public ImpalaObjectDataset withTable(Object table) { + this.table = table; + return this; + } + + /** + * Get the schema name of the Impala. Type: string (or Expression with resultType string). + * + * @return the impalaObjectDatasetSchema value + */ + public Object impalaObjectDatasetSchema() { + return this.impalaObjectDatasetSchema; + } + + /** + * Set the schema name of the Impala. Type: string (or Expression with resultType string). + * + * @param impalaObjectDatasetSchema the impalaObjectDatasetSchema value to set + * @return the ImpalaObjectDataset object itself. + */ + public ImpalaObjectDataset withImpalaObjectDatasetSchema(Object impalaObjectDatasetSchema) { + this.impalaObjectDatasetSchema = impalaObjectDatasetSchema; + return this; + } + } diff --git a/datafactoryv2/resource-manager/v2018_06_01/src/main/java/com/microsoft/azure/management/datafactoryv2/v2018_06_01/OracleTableDataset.java b/datafactoryv2/resource-manager/v2018_06_01/src/main/java/com/microsoft/azure/management/datafactoryv2/v2018_06_01/OracleTableDataset.java index ad9f46d875d8b..a81381b485ef7 100644 --- a/datafactoryv2/resource-manager/v2018_06_01/src/main/java/com/microsoft/azure/management/datafactoryv2/v2018_06_01/OracleTableDataset.java +++ b/datafactoryv2/resource-manager/v2018_06_01/src/main/java/com/microsoft/azure/management/datafactoryv2/v2018_06_01/OracleTableDataset.java @@ -22,14 +22,28 @@ @JsonFlatten public class OracleTableDataset extends DatasetInner { /** - * The table name of the on-premises Oracle 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 on-premises Oracle database. Type: string (or Expression with resultType string). + * The schema name of the on-premises Oracle database. Type: string (or + * Expression with resultType string). + */ + @JsonProperty(value = "typeProperties.schema") + private Object oracleTableDatasetSchema; + + /** + * The table name of the on-premises Oracle 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 */ @@ -38,7 +52,7 @@ public Object tableName() { } /** - * Set the table name of the on-premises Oracle 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 OracleTableDataset object itself. @@ -48,4 +62,44 @@ public OracleTableDataset withTableName(Object tableName) { return this; } + /** + * Get the schema name of the on-premises Oracle database. Type: string (or Expression with resultType string). + * + * @return the oracleTableDatasetSchema value + */ + public Object oracleTableDatasetSchema() { + return this.oracleTableDatasetSchema; + } + + /** + * Set the schema name of the on-premises Oracle database. Type: string (or Expression with resultType string). + * + * @param oracleTableDatasetSchema the oracleTableDatasetSchema value to set + * @return the OracleTableDataset object itself. + */ + public OracleTableDataset withOracleTableDatasetSchema(Object oracleTableDatasetSchema) { + this.oracleTableDatasetSchema = oracleTableDatasetSchema; + return this; + } + + /** + * Get the table name of the on-premises Oracle database. Type: string (or Expression with resultType string). + * + * @return the table value + */ + public Object table() { + return this.table; + } + + /** + * Set the table name of the on-premises Oracle database. Type: string (or Expression with resultType string). + * + * @param table the table value to set + * @return the OracleTableDataset object itself. + */ + public OracleTableDataset withTable(Object table) { + this.table = table; + return this; + } + } diff --git a/datafactoryv2/resource-manager/v2018_06_01/src/main/java/com/microsoft/azure/management/datafactoryv2/v2018_06_01/PhoenixObjectDataset.java b/datafactoryv2/resource-manager/v2018_06_01/src/main/java/com/microsoft/azure/management/datafactoryv2/v2018_06_01/PhoenixObjectDataset.java index cbdf6e2588b15..017e83d23e3ce 100644 --- a/datafactoryv2/resource-manager/v2018_06_01/src/main/java/com/microsoft/azure/management/datafactoryv2/v2018_06_01/PhoenixObjectDataset.java +++ b/datafactoryv2/resource-manager/v2018_06_01/src/main/java/com/microsoft/azure/management/datafactoryv2/v2018_06_01/PhoenixObjectDataset.java @@ -22,13 +22,28 @@ @JsonFlatten public class PhoenixObjectDataset 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 Phoenix. Type: string (or Expression with + * resultType string). + */ + @JsonProperty(value = "typeProperties.table") + private Object table; + + /** + * The schema name of the Phoenix. Type: string (or Expression with + * resultType string). + */ + @JsonProperty(value = "typeProperties.schema") + private Object phoenixObjectDatasetSchema; + + /** + * Get this property will be retired. Please consider using schema + table properties instead. * * @return the tableName value */ @@ -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 PhoenixObjectDataset object itself. @@ -47,4 +62,44 @@ public PhoenixObjectDataset withTableName(Object tableName) { return this; } + /** + * Get the table name of the Phoenix. Type: string (or Expression with resultType string). + * + * @return the table value + */ + public Object table() { + return this.table; + } + + /** + * Set the table name of the Phoenix. Type: string (or Expression with resultType string). + * + * @param table the table value to set + * @return the PhoenixObjectDataset object itself. + */ + public PhoenixObjectDataset withTable(Object table) { + this.table = table; + return this; + } + + /** + * Get the schema name of the Phoenix. Type: string (or Expression with resultType string). + * + * @return the phoenixObjectDatasetSchema value + */ + public Object phoenixObjectDatasetSchema() { + return this.phoenixObjectDatasetSchema; + } + + /** + * Set the schema name of the Phoenix. Type: string (or Expression with resultType string). + * + * @param phoenixObjectDatasetSchema the phoenixObjectDatasetSchema value to set + * @return the PhoenixObjectDataset object itself. + */ + public PhoenixObjectDataset withPhoenixObjectDatasetSchema(Object phoenixObjectDatasetSchema) { + this.phoenixObjectDatasetSchema = phoenixObjectDatasetSchema; + return this; + } + } diff --git a/datafactoryv2/resource-manager/v2018_06_01/src/main/java/com/microsoft/azure/management/datafactoryv2/v2018_06_01/PrestoObjectDataset.java b/datafactoryv2/resource-manager/v2018_06_01/src/main/java/com/microsoft/azure/management/datafactoryv2/v2018_06_01/PrestoObjectDataset.java index a89d61289eea9..1e228ad14c80c 100644 --- a/datafactoryv2/resource-manager/v2018_06_01/src/main/java/com/microsoft/azure/management/datafactoryv2/v2018_06_01/PrestoObjectDataset.java +++ b/datafactoryv2/resource-manager/v2018_06_01/src/main/java/com/microsoft/azure/management/datafactoryv2/v2018_06_01/PrestoObjectDataset.java @@ -22,13 +22,28 @@ @JsonFlatten public class PrestoObjectDataset 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 Presto. Type: string (or Expression with + * resultType string). + */ + @JsonProperty(value = "typeProperties.table") + private Object table; + + /** + * The schema name of the Presto. Type: string (or Expression with + * resultType string). + */ + @JsonProperty(value = "typeProperties.schema") + private Object prestoObjectDatasetSchema; + + /** + * Get this property will be retired. Please consider using schema + table properties instead. * * @return the tableName value */ @@ -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 PrestoObjectDataset object itself. @@ -47,4 +62,44 @@ public PrestoObjectDataset withTableName(Object tableName) { return this; } + /** + * Get the table name of the Presto. Type: string (or Expression with resultType string). + * + * @return the table value + */ + public Object table() { + return this.table; + } + + /** + * Set the table name of the Presto. Type: string (or Expression with resultType string). + * + * @param table the table value to set + * @return the PrestoObjectDataset object itself. + */ + public PrestoObjectDataset withTable(Object table) { + this.table = table; + return this; + } + + /** + * Get the schema name of the Presto. Type: string (or Expression with resultType string). + * + * @return the prestoObjectDatasetSchema value + */ + public Object prestoObjectDatasetSchema() { + return this.prestoObjectDatasetSchema; + } + + /** + * Set the schema name of the Presto. Type: string (or Expression with resultType string). + * + * @param prestoObjectDatasetSchema the prestoObjectDatasetSchema value to set + * @return the PrestoObjectDataset object itself. + */ + public PrestoObjectDataset withPrestoObjectDatasetSchema(Object prestoObjectDatasetSchema) { + this.prestoObjectDatasetSchema = prestoObjectDatasetSchema; + return this; + } + } diff --git a/datafactoryv2/resource-manager/v2018_06_01/src/main/java/com/microsoft/azure/management/datafactoryv2/v2018_06_01/SparkObjectDataset.java b/datafactoryv2/resource-manager/v2018_06_01/src/main/java/com/microsoft/azure/management/datafactoryv2/v2018_06_01/SparkObjectDataset.java index 619e89aa69a8e..4cc08a522d4e0 100644 --- a/datafactoryv2/resource-manager/v2018_06_01/src/main/java/com/microsoft/azure/management/datafactoryv2/v2018_06_01/SparkObjectDataset.java +++ b/datafactoryv2/resource-manager/v2018_06_01/src/main/java/com/microsoft/azure/management/datafactoryv2/v2018_06_01/SparkObjectDataset.java @@ -22,13 +22,28 @@ @JsonFlatten public class SparkObjectDataset 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 Spark. Type: string (or Expression with resultType + * string). + */ + @JsonProperty(value = "typeProperties.table") + private Object table; + + /** + * The schema name of the Spark. Type: string (or Expression with + * resultType string). + */ + @JsonProperty(value = "typeProperties.schema") + private Object sparkObjectDatasetSchema; + + /** + * Get this property will be retired. Please consider using schema + table properties instead. * * @return the tableName value */ @@ -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 SparkObjectDataset object itself. @@ -47,4 +62,44 @@ public SparkObjectDataset withTableName(Object tableName) { return this; } + /** + * Get the table name of the Spark. Type: string (or Expression with resultType string). + * + * @return the table value + */ + public Object table() { + return this.table; + } + + /** + * Set the table name of the Spark. Type: string (or Expression with resultType string). + * + * @param table the table value to set + * @return the SparkObjectDataset object itself. + */ + public SparkObjectDataset withTable(Object table) { + this.table = table; + return this; + } + + /** + * Get the schema name of the Spark. Type: string (or Expression with resultType string). + * + * @return the sparkObjectDatasetSchema value + */ + public Object sparkObjectDatasetSchema() { + return this.sparkObjectDatasetSchema; + } + + /** + * Set the schema name of the Spark. Type: string (or Expression with resultType string). + * + * @param sparkObjectDatasetSchema the sparkObjectDatasetSchema value to set + * @return the SparkObjectDataset object itself. + */ + public SparkObjectDataset withSparkObjectDatasetSchema(Object sparkObjectDatasetSchema) { + this.sparkObjectDatasetSchema = sparkObjectDatasetSchema; + return this; + } + } diff --git a/datafactoryv2/resource-manager/v2018_06_01/src/main/java/com/microsoft/azure/management/datafactoryv2/v2018_06_01/SqlServerTableDataset.java b/datafactoryv2/resource-manager/v2018_06_01/src/main/java/com/microsoft/azure/management/datafactoryv2/v2018_06_01/SqlServerTableDataset.java index 207a4aa8d7982..f91f0261d7902 100644 --- a/datafactoryv2/resource-manager/v2018_06_01/src/main/java/com/microsoft/azure/management/datafactoryv2/v2018_06_01/SqlServerTableDataset.java +++ b/datafactoryv2/resource-manager/v2018_06_01/src/main/java/com/microsoft/azure/management/datafactoryv2/v2018_06_01/SqlServerTableDataset.java @@ -22,14 +22,28 @@ @JsonFlatten public class SqlServerTableDataset extends DatasetInner { /** - * The table name of the SQL Server dataset. 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 SQL Server dataset. Type: string (or Expression with resultType string). + * The schema name of the SQL Server dataset. Type: string (or Expression + * with resultType string). + */ + @JsonProperty(value = "typeProperties.schema") + private Object sqlServerTableDatasetSchema; + + /** + * The table name of the SQL Server dataset. 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 */ @@ -38,7 +52,7 @@ public Object tableName() { } /** - * Set the table name of the SQL Server dataset. 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 SqlServerTableDataset object itself. @@ -48,4 +62,44 @@ public SqlServerTableDataset withTableName(Object tableName) { return this; } + /** + * Get the schema name of the SQL Server dataset. Type: string (or Expression with resultType string). + * + * @return the sqlServerTableDatasetSchema value + */ + public Object sqlServerTableDatasetSchema() { + return this.sqlServerTableDatasetSchema; + } + + /** + * Set the schema name of the SQL Server dataset. Type: string (or Expression with resultType string). + * + * @param sqlServerTableDatasetSchema the sqlServerTableDatasetSchema value to set + * @return the SqlServerTableDataset object itself. + */ + public SqlServerTableDataset withSqlServerTableDatasetSchema(Object sqlServerTableDatasetSchema) { + this.sqlServerTableDatasetSchema = sqlServerTableDatasetSchema; + return this; + } + + /** + * Get the table name of the SQL Server dataset. Type: string (or Expression with resultType string). + * + * @return the table value + */ + public Object table() { + return this.table; + } + + /** + * Set the table name of the SQL Server dataset. Type: string (or Expression with resultType string). + * + * @param table the table value to set + * @return the SqlServerTableDataset object itself. + */ + public SqlServerTableDataset withTable(Object table) { + this.table = table; + return this; + } + } diff --git a/datafactoryv2/resource-manager/v2018_06_01/src/main/java/com/microsoft/azure/management/datafactoryv2/v2018_06_01/VerticaTableDataset.java b/datafactoryv2/resource-manager/v2018_06_01/src/main/java/com/microsoft/azure/management/datafactoryv2/v2018_06_01/VerticaTableDataset.java index 84e486f156b03..5f81e9e4f4826 100644 --- a/datafactoryv2/resource-manager/v2018_06_01/src/main/java/com/microsoft/azure/management/datafactoryv2/v2018_06_01/VerticaTableDataset.java +++ b/datafactoryv2/resource-manager/v2018_06_01/src/main/java/com/microsoft/azure/management/datafactoryv2/v2018_06_01/VerticaTableDataset.java @@ -22,13 +22,28 @@ @JsonFlatten public class VerticaTableDataset 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 Vertica. Type: string (or Expression with + * resultType string). + */ + @JsonProperty(value = "typeProperties.table") + private Object table; + + /** + * The schema name of the Vertica. Type: string (or Expression with + * resultType string). + */ + @JsonProperty(value = "typeProperties.schema") + private Object verticaTableDatasetSchema; + + /** + * Get this property will be retired. Please consider using schema + table properties instead. * * @return the tableName value */ @@ -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 VerticaTableDataset object itself. @@ -47,4 +62,44 @@ public VerticaTableDataset withTableName(Object tableName) { return this; } + /** + * Get the table name of the Vertica. Type: string (or Expression with resultType string). + * + * @return the table value + */ + public Object table() { + return this.table; + } + + /** + * Set the table name of the Vertica. Type: string (or Expression with resultType string). + * + * @param table the table value to set + * @return the VerticaTableDataset object itself. + */ + public VerticaTableDataset withTable(Object table) { + this.table = table; + return this; + } + + /** + * Get the schema name of the Vertica. Type: string (or Expression with resultType string). + * + * @return the verticaTableDatasetSchema value + */ + public Object verticaTableDatasetSchema() { + return this.verticaTableDatasetSchema; + } + + /** + * Set the schema name of the Vertica. Type: string (or Expression with resultType string). + * + * @param verticaTableDatasetSchema the verticaTableDatasetSchema value to set + * @return the VerticaTableDataset object itself. + */ + public VerticaTableDataset withVerticaTableDatasetSchema(Object verticaTableDatasetSchema) { + this.verticaTableDatasetSchema = verticaTableDatasetSchema; + return this; + } + }