Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
5eb3fc7
[AutoPR datafactory/resource-manager] [Datafactory] ADLS Gen 2 suppor…
AutorestCI Jun 7, 2019
205aa23
[AutoPR datafactory/resource-manager] Add Dataset and CopySource for …
AutorestCI Jun 13, 2019
9dfd055
[AutoPR datafactory/resource-manager] (Public swagger update) Add Ter…
AutorestCI Jun 20, 2019
07b543f
[AutoPR datafactory/resource-manager] fix public swagger issues (#5985)
AutorestCI Jun 26, 2019
74b227d
[AutoPR datafactory/resource-manager] [Datafactory] Add three new con…
AutorestCI Jul 11, 2019
30a95dc
Packaging update of azure-mgmt-datafactory
AutorestCI Jul 11, 2019
08c3824
[AutoPR datafactory/resource-manager] [Datafactory] Add three new con…
AutorestCI Jul 17, 2019
6cf80af
[AutoPR datafactory/resource-manager] SSIS File System Support (#6216)
AutorestCI Jul 17, 2019
9003893
[AutoPR datafactory/resource-manager] Introduce ADX Command (#6404)
AutorestCI Jul 23, 2019
b46566a
[AutoPR datafactory/resource-manager] fix: datafactory character enco…
AutorestCI Jul 23, 2019
dfa7430
Generated from 6daaa9ba96f917b57001720be038e62850d1ccbc (#6471)
AutorestCI Jul 25, 2019
aef9b6b
Generated from 04df2c4ad1350ec47a500e1a1d1a609d43398aee (#6505)
AutorestCI Jul 29, 2019
9379260
[AutoPR datafactory/resource-manager] [DataFactory]SapBwCube and Syba…
AutorestCI Jul 29, 2019
f5d3db0
[AutoPR datafactory/resource-manager] Enable Avro Dataset in public s…
AutorestCI Jul 31, 2019
64a07f2
Generated from ccc8c92e96ab27329cf637c7214ebb35da8dce23 (#6625)
AutorestCI Aug 2, 2019
0c65fd1
updated release notes
Aug 6, 2019
326a827
fixed duplicate row
Aug 6, 2019
9f78b50
breaking changes
Aug 6, 2019
6e95bc5
Generated from 65a2679abd2e6a4aa56f0d4e5ef459407f105ae6 (#6774)
AutorestCI Aug 14, 2019
e41dd17
Generated from d22072afd73683450b42a2d626e10013330ab31b (#6795)
AutorestCI Aug 14, 2019
214041b
Generated from 6ca38e062bb3184e7207e058d4aa05656e9a755f (#6800)
AutorestCI Aug 15, 2019
4842bc4
Generated from 3c745e4716094361aaa9e683d3e6ec582af89f9d (#6815)
AutorestCI Aug 16, 2019
635e69b
Generated from 2658bfcd4e5ede36535616ef4e44125701d14366 (#6832)
AutorestCI Aug 20, 2019
e99ffb7
Generated from 5e1bb35d5c3314d8f4fead76c3d69a2522be026b (#7005)
AutorestCI Aug 30, 2019
4276f1b
using old version of autorest
Aug 30, 2019
6a521ed
v2
Aug 30, 2019
d3ecd62
v3.0.52
Aug 30, 2019
eac9467
v3.0.52
Aug 30, 2019
5a7d812
manually updated history and readded tabular translator and copy tran…
Aug 30, 2019
2f6a699
changed date to 08-30
Aug 30, 2019
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
Prev Previous commit
Next Next commit
Generated from 04df2c4ad1350ec47a500e1a1d1a609d43398aee (#6505)
support dataset v2 split name
  • Loading branch information
AutorestCI authored and Zim Kalinowski committed Aug 6, 2019
commit aef9b6b9354296067bc9606a0946e76a51a4181c
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,15 @@ class AzureSqlDWTableDataset(Dataset):
:type folder: ~azure.mgmt.datafactory.models.DatasetFolder
:param type: Required. Constant filled by server.
:type type: str
:param table_name: The table name of the Azure SQL Data Warehouse. Type:
string (or Expression with resultType string).
:param table_name: This property will be retired. Please consider using
schema + table properties instead.
:type table_name: object
:param azure_sql_dw_table_dataset_schema: The schema name of the Azure SQL
Data Warehouse. Type: string (or Expression with resultType string).
:type azure_sql_dw_table_dataset_schema: object
:param table: The table name of the Azure SQL Data Warehouse. Type: string
(or Expression with resultType string).
:type table: object
"""

_validation = {
Expand All @@ -64,9 +70,13 @@ class AzureSqlDWTableDataset(Dataset):
'folder': {'key': 'folder', 'type': 'DatasetFolder'},
'type': {'key': 'type', 'type': 'str'},
'table_name': {'key': 'typeProperties.tableName', 'type': 'object'},
'azure_sql_dw_table_dataset_schema': {'key': 'typeProperties.schema', 'type': 'object'},
'table': {'key': 'typeProperties.table', 'type': 'object'},
}

def __init__(self, **kwargs):
super(AzureSqlDWTableDataset, self).__init__(**kwargs)
self.table_name = kwargs.get('table_name', None)
self.azure_sql_dw_table_dataset_schema = kwargs.get('azure_sql_dw_table_dataset_schema', None)
self.table = kwargs.get('table', None)
self.type = 'AzureSqlDWTable'
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,15 @@ class AzureSqlDWTableDataset(Dataset):
:type folder: ~azure.mgmt.datafactory.models.DatasetFolder
:param type: Required. Constant filled by server.
:type type: str
:param table_name: The table name of the Azure SQL Data Warehouse. Type:
string (or Expression with resultType string).
:param table_name: This property will be retired. Please consider using
schema + table properties instead.
:type table_name: object
:param azure_sql_dw_table_dataset_schema: The schema name of the Azure SQL
Data Warehouse. Type: string (or Expression with resultType string).
:type azure_sql_dw_table_dataset_schema: object
:param table: The table name of the Azure SQL Data Warehouse. Type: string
(or Expression with resultType string).
:type table: object
"""

_validation = {
Expand All @@ -64,9 +70,13 @@ class AzureSqlDWTableDataset(Dataset):
'folder': {'key': 'folder', 'type': 'DatasetFolder'},
'type': {'key': 'type', 'type': 'str'},
'table_name': {'key': 'typeProperties.tableName', 'type': 'object'},
'azure_sql_dw_table_dataset_schema': {'key': 'typeProperties.schema', 'type': 'object'},
'table': {'key': 'typeProperties.table', 'type': 'object'},
}

def __init__(self, *, linked_service_name, additional_properties=None, description: str=None, structure=None, schema=None, parameters=None, annotations=None, folder=None, table_name=None, **kwargs) -> None:
def __init__(self, *, linked_service_name, additional_properties=None, description: str=None, structure=None, schema=None, parameters=None, annotations=None, folder=None, table_name=None, azure_sql_dw_table_dataset_schema=None, table=None, **kwargs) -> None:
super(AzureSqlDWTableDataset, self).__init__(additional_properties=additional_properties, description=description, structure=structure, schema=schema, linked_service_name=linked_service_name, parameters=parameters, annotations=annotations, folder=folder, **kwargs)
self.table_name = table_name
self.azure_sql_dw_table_dataset_schema = azure_sql_dw_table_dataset_schema
self.table = table
self.type = 'AzureSqlDWTable'
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,15 @@ class AzureSqlTableDataset(Dataset):
:type folder: ~azure.mgmt.datafactory.models.DatasetFolder
:param type: Required. Constant filled by server.
:type type: str
:param table_name: The table name of the Azure SQL database. Type: string
(or Expression with resultType string).
:param table_name: This property will be retired. Please consider using
schema + table properties instead.
:type table_name: object
:param azure_sql_table_dataset_schema: The schema name of the Azure SQL
database. Type: string (or Expression with resultType string).
:type azure_sql_table_dataset_schema: object
:param table: The table name of the Azure SQL database. Type: string (or
Expression with resultType string).
:type table: object
"""

_validation = {
Expand All @@ -64,9 +70,13 @@ class AzureSqlTableDataset(Dataset):
'folder': {'key': 'folder', 'type': 'DatasetFolder'},
'type': {'key': 'type', 'type': 'str'},
'table_name': {'key': 'typeProperties.tableName', 'type': 'object'},
'azure_sql_table_dataset_schema': {'key': 'typeProperties.schema', 'type': 'object'},
'table': {'key': 'typeProperties.table', 'type': 'object'},
}

def __init__(self, **kwargs):
super(AzureSqlTableDataset, self).__init__(**kwargs)
self.table_name = kwargs.get('table_name', None)
self.azure_sql_table_dataset_schema = kwargs.get('azure_sql_table_dataset_schema', None)
self.table = kwargs.get('table', None)
self.type = 'AzureSqlTable'
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,15 @@ class AzureSqlTableDataset(Dataset):
:type folder: ~azure.mgmt.datafactory.models.DatasetFolder
:param type: Required. Constant filled by server.
:type type: str
:param table_name: The table name of the Azure SQL database. Type: string
(or Expression with resultType string).
:param table_name: This property will be retired. Please consider using
schema + table properties instead.
:type table_name: object
:param azure_sql_table_dataset_schema: The schema name of the Azure SQL
database. Type: string (or Expression with resultType string).
:type azure_sql_table_dataset_schema: object
:param table: The table name of the Azure SQL database. Type: string (or
Expression with resultType string).
:type table: object
"""

_validation = {
Expand All @@ -64,9 +70,13 @@ class AzureSqlTableDataset(Dataset):
'folder': {'key': 'folder', 'type': 'DatasetFolder'},
'type': {'key': 'type', 'type': 'str'},
'table_name': {'key': 'typeProperties.tableName', 'type': 'object'},
'azure_sql_table_dataset_schema': {'key': 'typeProperties.schema', 'type': 'object'},
'table': {'key': 'typeProperties.table', 'type': 'object'},
}

def __init__(self, *, linked_service_name, additional_properties=None, description: str=None, structure=None, schema=None, parameters=None, annotations=None, folder=None, table_name=None, **kwargs) -> None:
def __init__(self, *, linked_service_name, additional_properties=None, description: str=None, structure=None, schema=None, parameters=None, annotations=None, folder=None, table_name=None, azure_sql_table_dataset_schema=None, table=None, **kwargs) -> None:
super(AzureSqlTableDataset, self).__init__(additional_properties=additional_properties, description=description, structure=structure, schema=schema, linked_service_name=linked_service_name, parameters=parameters, annotations=annotations, folder=folder, **kwargs)
self.table_name = table_name
self.azure_sql_table_dataset_schema = azure_sql_table_dataset_schema
self.table = table
self.type = 'AzureSqlTable'
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,15 @@ class DrillTableDataset(Dataset):
:type folder: ~azure.mgmt.datafactory.models.DatasetFolder
:param type: Required. Constant filled by server.
:type type: str
:param table_name: The table name. Type: string (or Expression with
resultType string).
:param table_name: This property will be retired. Please consider using
schema + table properties instead.
:type table_name: object
:param table: The table name of the Drill. Type: string (or Expression
with resultType string).
:type table: object
:param drill_table_dataset_schema: The schema name of the Drill. Type:
string (or Expression with resultType string).
:type drill_table_dataset_schema: object
"""

_validation = {
Expand All @@ -64,9 +70,13 @@ class DrillTableDataset(Dataset):
'folder': {'key': 'folder', 'type': 'DatasetFolder'},
'type': {'key': 'type', 'type': 'str'},
'table_name': {'key': 'typeProperties.tableName', 'type': 'object'},
'table': {'key': 'typeProperties.table', 'type': 'object'},
'drill_table_dataset_schema': {'key': 'typeProperties.schema', 'type': 'object'},
}

def __init__(self, **kwargs):
super(DrillTableDataset, self).__init__(**kwargs)
self.table_name = kwargs.get('table_name', None)
self.table = kwargs.get('table', None)
self.drill_table_dataset_schema = kwargs.get('drill_table_dataset_schema', None)
self.type = 'DrillTable'
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,15 @@ class DrillTableDataset(Dataset):
:type folder: ~azure.mgmt.datafactory.models.DatasetFolder
:param type: Required. Constant filled by server.
:type type: str
:param table_name: The table name. Type: string (or Expression with
resultType string).
:param table_name: This property will be retired. Please consider using
schema + table properties instead.
:type table_name: object
:param table: The table name of the Drill. Type: string (or Expression
with resultType string).
:type table: object
:param drill_table_dataset_schema: The schema name of the Drill. Type:
string (or Expression with resultType string).
:type drill_table_dataset_schema: object
"""

_validation = {
Expand All @@ -64,9 +70,13 @@ class DrillTableDataset(Dataset):
'folder': {'key': 'folder', 'type': 'DatasetFolder'},
'type': {'key': 'type', 'type': 'str'},
'table_name': {'key': 'typeProperties.tableName', 'type': 'object'},
'table': {'key': 'typeProperties.table', 'type': 'object'},
'drill_table_dataset_schema': {'key': 'typeProperties.schema', 'type': 'object'},
}

def __init__(self, *, linked_service_name, additional_properties=None, description: str=None, structure=None, schema=None, parameters=None, annotations=None, folder=None, table_name=None, **kwargs) -> None:
def __init__(self, *, linked_service_name, additional_properties=None, description: str=None, structure=None, schema=None, parameters=None, annotations=None, folder=None, table_name=None, table=None, drill_table_dataset_schema=None, **kwargs) -> None:
super(DrillTableDataset, self).__init__(additional_properties=additional_properties, description=description, structure=structure, schema=schema, linked_service_name=linked_service_name, parameters=parameters, annotations=annotations, folder=folder, **kwargs)
self.table_name = table_name
self.table = table
self.drill_table_dataset_schema = drill_table_dataset_schema
self.type = 'DrillTable'
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,15 @@ class GoogleBigQueryObjectDataset(Dataset):
:type folder: ~azure.mgmt.datafactory.models.DatasetFolder
:param type: Required. Constant filled by server.
:type type: str
:param table_name: The table name. Type: string (or Expression with
resultType string).
:param table_name: This property will be retired. Please consider using
database + table properties instead.
:type table_name: object
:param table: The table name of the Google BigQuery. Type: string (or
Expression with resultType string).
:type table: object
:param dataset: The database name of the Google BigQuery. Type: string (or
Expression with resultType string).
:type dataset: object
"""

_validation = {
Expand All @@ -64,9 +70,13 @@ class GoogleBigQueryObjectDataset(Dataset):
'folder': {'key': 'folder', 'type': 'DatasetFolder'},
'type': {'key': 'type', 'type': 'str'},
'table_name': {'key': 'typeProperties.tableName', 'type': 'object'},
'table': {'key': 'typeProperties.table', 'type': 'object'},
'dataset': {'key': 'typeProperties.dataset', 'type': 'object'},
}

def __init__(self, **kwargs):
super(GoogleBigQueryObjectDataset, self).__init__(**kwargs)
self.table_name = kwargs.get('table_name', None)
self.table = kwargs.get('table', None)
self.dataset = kwargs.get('dataset', None)
self.type = 'GoogleBigQueryObject'
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,15 @@ class GoogleBigQueryObjectDataset(Dataset):
:type folder: ~azure.mgmt.datafactory.models.DatasetFolder
:param type: Required. Constant filled by server.
:type type: str
:param table_name: The table name. Type: string (or Expression with
resultType string).
:param table_name: This property will be retired. Please consider using
database + table properties instead.
:type table_name: object
:param table: The table name of the Google BigQuery. Type: string (or
Expression with resultType string).
:type table: object
:param dataset: The database name of the Google BigQuery. Type: string (or
Expression with resultType string).
:type dataset: object
"""

_validation = {
Expand All @@ -64,9 +70,13 @@ class GoogleBigQueryObjectDataset(Dataset):
'folder': {'key': 'folder', 'type': 'DatasetFolder'},
'type': {'key': 'type', 'type': 'str'},
'table_name': {'key': 'typeProperties.tableName', 'type': 'object'},
'table': {'key': 'typeProperties.table', 'type': 'object'},
'dataset': {'key': 'typeProperties.dataset', 'type': 'object'},
}

def __init__(self, *, linked_service_name, additional_properties=None, description: str=None, structure=None, schema=None, parameters=None, annotations=None, folder=None, table_name=None, **kwargs) -> None:
def __init__(self, *, linked_service_name, additional_properties=None, description: str=None, structure=None, schema=None, parameters=None, annotations=None, folder=None, table_name=None, table=None, dataset=None, **kwargs) -> None:
super(GoogleBigQueryObjectDataset, self).__init__(additional_properties=additional_properties, description=description, structure=structure, schema=schema, linked_service_name=linked_service_name, parameters=parameters, annotations=annotations, folder=folder, **kwargs)
self.table_name = table_name
self.table = table
self.dataset = dataset
self.type = 'GoogleBigQueryObject'
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,15 @@ class GreenplumTableDataset(Dataset):
:type folder: ~azure.mgmt.datafactory.models.DatasetFolder
:param type: Required. Constant filled by server.
:type type: str
:param table_name: The table name. Type: string (or Expression with
resultType string).
:param table_name: This property will be retired. Please consider using
schema + table properties instead.
:type table_name: object
:param table: The table name of Greenplum. Type: string (or Expression
with resultType string).
:type table: object
:param greenplum_table_dataset_schema: The schema name of Greenplum. Type:
string (or Expression with resultType string).
:type greenplum_table_dataset_schema: object
"""

_validation = {
Expand All @@ -64,9 +70,13 @@ class GreenplumTableDataset(Dataset):
'folder': {'key': 'folder', 'type': 'DatasetFolder'},
'type': {'key': 'type', 'type': 'str'},
'table_name': {'key': 'typeProperties.tableName', 'type': 'object'},
'table': {'key': 'typeProperties.table', 'type': 'object'},
'greenplum_table_dataset_schema': {'key': 'typeProperties.schema', 'type': 'object'},
}

def __init__(self, **kwargs):
super(GreenplumTableDataset, self).__init__(**kwargs)
self.table_name = kwargs.get('table_name', None)
self.table = kwargs.get('table', None)
self.greenplum_table_dataset_schema = kwargs.get('greenplum_table_dataset_schema', None)
self.type = 'GreenplumTable'
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,15 @@ class GreenplumTableDataset(Dataset):
:type folder: ~azure.mgmt.datafactory.models.DatasetFolder
:param type: Required. Constant filled by server.
:type type: str
:param table_name: The table name. Type: string (or Expression with
resultType string).
:param table_name: This property will be retired. Please consider using
schema + table properties instead.
:type table_name: object
:param table: The table name of Greenplum. Type: string (or Expression
with resultType string).
:type table: object
:param greenplum_table_dataset_schema: The schema name of Greenplum. Type:
string (or Expression with resultType string).
:type greenplum_table_dataset_schema: object
"""

_validation = {
Expand All @@ -64,9 +70,13 @@ class GreenplumTableDataset(Dataset):
'folder': {'key': 'folder', 'type': 'DatasetFolder'},
'type': {'key': 'type', 'type': 'str'},
'table_name': {'key': 'typeProperties.tableName', 'type': 'object'},
'table': {'key': 'typeProperties.table', 'type': 'object'},
'greenplum_table_dataset_schema': {'key': 'typeProperties.schema', 'type': 'object'},
}

def __init__(self, *, linked_service_name, additional_properties=None, description: str=None, structure=None, schema=None, parameters=None, annotations=None, folder=None, table_name=None, **kwargs) -> None:
def __init__(self, *, linked_service_name, additional_properties=None, description: str=None, structure=None, schema=None, parameters=None, annotations=None, folder=None, table_name=None, table=None, greenplum_table_dataset_schema=None, **kwargs) -> None:
super(GreenplumTableDataset, self).__init__(additional_properties=additional_properties, description=description, structure=structure, schema=schema, linked_service_name=linked_service_name, parameters=parameters, annotations=annotations, folder=folder, **kwargs)
self.table_name = table_name
self.table = table
self.greenplum_table_dataset_schema = greenplum_table_dataset_schema
self.type = 'GreenplumTable'
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,15 @@ class HiveObjectDataset(Dataset):
:type folder: ~azure.mgmt.datafactory.models.DatasetFolder
:param type: Required. Constant filled by server.
:type type: str
:param table_name: The table name. Type: string (or Expression with
resultType string).
:param table_name: This property will be retired. Please consider using
schema + table properties instead.
:type table_name: object
:param table: The table name of the Hive. Type: string (or Expression with
resultType string).
:type table: object
:param hive_object_dataset_schema: The schema name of the Hive. Type:
string (or Expression with resultType string).
:type hive_object_dataset_schema: object
"""

_validation = {
Expand All @@ -64,9 +70,13 @@ class HiveObjectDataset(Dataset):
'folder': {'key': 'folder', 'type': 'DatasetFolder'},
'type': {'key': 'type', 'type': 'str'},
'table_name': {'key': 'typeProperties.tableName', 'type': 'object'},
'table': {'key': 'typeProperties.table', 'type': 'object'},
'hive_object_dataset_schema': {'key': 'typeProperties.schema', 'type': 'object'},
}

def __init__(self, **kwargs):
super(HiveObjectDataset, self).__init__(**kwargs)
self.table_name = kwargs.get('table_name', None)
self.table = kwargs.get('table', None)
self.hive_object_dataset_schema = kwargs.get('hive_object_dataset_schema', None)
self.type = 'HiveObject'
Loading