Skip to content
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 @@ -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