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
[AutoPR datafactory/resource-manager] Add Dataset and CopySource for …
…SAP HANA (#5835)

* Generated from 5f85e81e98e9fea4da62b1d4eed0a9bfc4b2bf5e

Update Pipeline.json

* Generated from 5f85e81e98e9fea4da62b1d4eed0a9bfc4b2bf5e

Update Pipeline.json
  • Loading branch information
AutorestCI authored and Zim Kalinowski committed Aug 6, 2019
commit 205aa235ac2e3ba464141e115d37d1755fa8cdef

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
#
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.
# --------------------------------------------------------------------------

from .dataset_location import DatasetLocation


class AmazonS3Location(DatasetLocation):
"""The location of amazon S3 dataset.

All required parameters must be populated in order to send to Azure.

:param additional_properties: Unmatched properties from the message are
deserialized this collection
:type additional_properties: dict[str, object]
:param type: Required. Type of dataset storage location.
:type type: str
:param folder_path: Specify the folder path of dataset. Type: string (or
Expression with resultType string)
:type folder_path: object
:param file_name: Specify the file name of dataset. Type: string (or
Expression with resultType string).
:type file_name: object
:param bucket_name: Specify the bucketName of amazon S3. Type: string (or
Expression with resultType string)
:type bucket_name: object
:param version: Specify the version of amazon S3. Type: string (or
Expression with resultType string).
:type version: object
"""

_validation = {
'type': {'required': True},
}

_attribute_map = {
'additional_properties': {'key': '', 'type': '{object}'},
'type': {'key': 'type', 'type': 'str'},
'folder_path': {'key': 'folderPath', 'type': 'object'},
'file_name': {'key': 'fileName', 'type': 'object'},
'bucket_name': {'key': 'bucketName', 'type': 'object'},
'version': {'key': 'version', 'type': 'object'},
}

def __init__(self, **kwargs):
super(AmazonS3Location, self).__init__(**kwargs)
self.bucket_name = kwargs.get('bucket_name', None)
self.version = kwargs.get('version', None)
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
#
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.
# --------------------------------------------------------------------------

from .dataset_location_py3 import DatasetLocation


class AmazonS3Location(DatasetLocation):
"""The location of amazon S3 dataset.

All required parameters must be populated in order to send to Azure.

:param additional_properties: Unmatched properties from the message are
deserialized this collection
:type additional_properties: dict[str, object]
:param type: Required. Type of dataset storage location.
:type type: str
:param folder_path: Specify the folder path of dataset. Type: string (or
Expression with resultType string)
:type folder_path: object
:param file_name: Specify the file name of dataset. Type: string (or
Expression with resultType string).
:type file_name: object
:param bucket_name: Specify the bucketName of amazon S3. Type: string (or
Expression with resultType string)
:type bucket_name: object
:param version: Specify the version of amazon S3. Type: string (or
Expression with resultType string).
:type version: object
"""

_validation = {
'type': {'required': True},
}

_attribute_map = {
'additional_properties': {'key': '', 'type': '{object}'},
'type': {'key': 'type', 'type': 'str'},
'folder_path': {'key': 'folderPath', 'type': 'object'},
'file_name': {'key': 'fileName', 'type': 'object'},
'bucket_name': {'key': 'bucketName', 'type': 'object'},
'version': {'key': 'version', 'type': 'object'},
}

def __init__(self, *, type: str, additional_properties=None, folder_path=None, file_name=None, bucket_name=None, version=None, **kwargs) -> None:
super(AmazonS3Location, self).__init__(additional_properties=additional_properties, type=type, folder_path=folder_path, file_name=file_name, **kwargs)
self.bucket_name = bucket_name
self.version = version
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
#
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.
# --------------------------------------------------------------------------

from .connector_read_setting import ConnectorReadSetting


class AmazonS3ReadSetting(ConnectorReadSetting):
"""Azure data lake store read settings.

All required parameters must be populated in order to send to Azure.

:param additional_properties: Unmatched properties from the message are
deserialized this collection
:type additional_properties: dict[str, object]
:param type: Required. The read setting type.
:type type: str
:param max_concurrent_connections: The maximum concurrent connection count
for the source data store. Type: integer (or Expression with resultType
integer).
:type max_concurrent_connections: object
:param recursive: If true, files under the folder path will be read
recursively. Default is true. Type: boolean (or Expression with resultType
boolean).
:type recursive: object
:param wildcard_folder_path: AmazonS3 wildcardFolderPath. Type: string (or
Expression with resultType string).
:type wildcard_folder_path: object
:param wildcard_file_name: AmazonS3 wildcardFileName. Type: string (or
Expression with resultType string).
:type wildcard_file_name: object
:param prefix: The prefix filter for the S3 object name. Type: string (or
Expression with resultType string).
:type prefix: object
:param enable_partition_discovery: Indicates whether to enable partition
discovery.
:type enable_partition_discovery: bool
:param modified_datetime_start: The start of file's modified datetime.
Type: string (or Expression with resultType string).
:type modified_datetime_start: object
:param modified_datetime_end: The end of file's modified datetime. Type:
string (or Expression with resultType string).
:type modified_datetime_end: object
"""

_validation = {
'type': {'required': True},
}

_attribute_map = {
'additional_properties': {'key': '', 'type': '{object}'},
'type': {'key': 'type', 'type': 'str'},
'max_concurrent_connections': {'key': 'maxConcurrentConnections', 'type': 'object'},
'recursive': {'key': 'recursive', 'type': 'object'},
'wildcard_folder_path': {'key': 'wildcardFolderPath', 'type': 'object'},
'wildcard_file_name': {'key': 'wildcardFileName', 'type': 'object'},
'prefix': {'key': 'prefix', 'type': 'object'},
'enable_partition_discovery': {'key': 'enablePartitionDiscovery', 'type': 'bool'},
'modified_datetime_start': {'key': 'modifiedDatetimeStart', 'type': 'object'},
'modified_datetime_end': {'key': 'modifiedDatetimeEnd', 'type': 'object'},
}

def __init__(self, **kwargs):
super(AmazonS3ReadSetting, self).__init__(**kwargs)
self.recursive = kwargs.get('recursive', None)
self.wildcard_folder_path = kwargs.get('wildcard_folder_path', None)
self.wildcard_file_name = kwargs.get('wildcard_file_name', None)
self.prefix = kwargs.get('prefix', None)
self.enable_partition_discovery = kwargs.get('enable_partition_discovery', None)
self.modified_datetime_start = kwargs.get('modified_datetime_start', None)
self.modified_datetime_end = kwargs.get('modified_datetime_end', None)
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
#
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.
# --------------------------------------------------------------------------

from .connector_read_setting_py3 import ConnectorReadSetting


class AmazonS3ReadSetting(ConnectorReadSetting):
"""Azure data lake store read settings.

All required parameters must be populated in order to send to Azure.

:param additional_properties: Unmatched properties from the message are
deserialized this collection
:type additional_properties: dict[str, object]
:param type: Required. The read setting type.
:type type: str
:param max_concurrent_connections: The maximum concurrent connection count
for the source data store. Type: integer (or Expression with resultType
integer).
:type max_concurrent_connections: object
:param recursive: If true, files under the folder path will be read
recursively. Default is true. Type: boolean (or Expression with resultType
boolean).
:type recursive: object
:param wildcard_folder_path: AmazonS3 wildcardFolderPath. Type: string (or
Expression with resultType string).
:type wildcard_folder_path: object
:param wildcard_file_name: AmazonS3 wildcardFileName. Type: string (or
Expression with resultType string).
:type wildcard_file_name: object
:param prefix: The prefix filter for the S3 object name. Type: string (or
Expression with resultType string).
:type prefix: object
:param enable_partition_discovery: Indicates whether to enable partition
discovery.
:type enable_partition_discovery: bool
:param modified_datetime_start: The start of file's modified datetime.
Type: string (or Expression with resultType string).
:type modified_datetime_start: object
:param modified_datetime_end: The end of file's modified datetime. Type:
string (or Expression with resultType string).
:type modified_datetime_end: object
"""

_validation = {
'type': {'required': True},
}

_attribute_map = {
'additional_properties': {'key': '', 'type': '{object}'},
'type': {'key': 'type', 'type': 'str'},
'max_concurrent_connections': {'key': 'maxConcurrentConnections', 'type': 'object'},
'recursive': {'key': 'recursive', 'type': 'object'},
'wildcard_folder_path': {'key': 'wildcardFolderPath', 'type': 'object'},
'wildcard_file_name': {'key': 'wildcardFileName', 'type': 'object'},
'prefix': {'key': 'prefix', 'type': 'object'},
'enable_partition_discovery': {'key': 'enablePartitionDiscovery', 'type': 'bool'},
'modified_datetime_start': {'key': 'modifiedDatetimeStart', 'type': 'object'},
'modified_datetime_end': {'key': 'modifiedDatetimeEnd', 'type': 'object'},
}

def __init__(self, *, type: str, additional_properties=None, max_concurrent_connections=None, recursive=None, wildcard_folder_path=None, wildcard_file_name=None, prefix=None, enable_partition_discovery: bool=None, modified_datetime_start=None, modified_datetime_end=None, **kwargs) -> None:
super(AmazonS3ReadSetting, self).__init__(additional_properties=additional_properties, type=type, max_concurrent_connections=max_concurrent_connections, **kwargs)
self.recursive = recursive
self.wildcard_folder_path = wildcard_folder_path
self.wildcard_file_name = wildcard_file_name
self.prefix = prefix
self.enable_partition_discovery = enable_partition_discovery
self.modified_datetime_start = modified_datetime_start
self.modified_datetime_end = modified_datetime_end
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
#
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.
# --------------------------------------------------------------------------

from .dataset_location import DatasetLocation


class AzureBlobFSLocation(DatasetLocation):
"""The location of azure blobFS dataset.

All required parameters must be populated in order to send to Azure.

:param additional_properties: Unmatched properties from the message are
deserialized this collection
:type additional_properties: dict[str, object]
:param type: Required. Type of dataset storage location.
:type type: str
:param folder_path: Specify the folder path of dataset. Type: string (or
Expression with resultType string)
:type folder_path: object
:param file_name: Specify the file name of dataset. Type: string (or
Expression with resultType string).
:type file_name: object
:param file_system: Specify the fileSystem of azure blobFS. Type: string
(or Expression with resultType string).
:type file_system: object
"""

_validation = {
'type': {'required': True},
}

_attribute_map = {
'additional_properties': {'key': '', 'type': '{object}'},
'type': {'key': 'type', 'type': 'str'},
'folder_path': {'key': 'folderPath', 'type': 'object'},
'file_name': {'key': 'fileName', 'type': 'object'},
'file_system': {'key': 'fileSystem', 'type': 'object'},
}

def __init__(self, **kwargs):
super(AzureBlobFSLocation, self).__init__(**kwargs)
self.file_system = kwargs.get('file_system', None)
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
#
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.
# --------------------------------------------------------------------------

from .dataset_location_py3 import DatasetLocation


class AzureBlobFSLocation(DatasetLocation):
"""The location of azure blobFS dataset.

All required parameters must be populated in order to send to Azure.

:param additional_properties: Unmatched properties from the message are
deserialized this collection
:type additional_properties: dict[str, object]
:param type: Required. Type of dataset storage location.
:type type: str
:param folder_path: Specify the folder path of dataset. Type: string (or
Expression with resultType string)
:type folder_path: object
:param file_name: Specify the file name of dataset. Type: string (or
Expression with resultType string).
:type file_name: object
:param file_system: Specify the fileSystem of azure blobFS. Type: string
(or Expression with resultType string).
:type file_system: object
"""

_validation = {
'type': {'required': True},
}

_attribute_map = {
'additional_properties': {'key': '', 'type': '{object}'},
'type': {'key': 'type', 'type': 'str'},
'folder_path': {'key': 'folderPath', 'type': 'object'},
'file_name': {'key': 'fileName', 'type': 'object'},
'file_system': {'key': 'fileSystem', 'type': 'object'},
}

def __init__(self, *, type: str, additional_properties=None, folder_path=None, file_name=None, file_system=None, **kwargs) -> None:
super(AzureBlobFSLocation, self).__init__(additional_properties=additional_properties, type=type, folder_path=folder_path, file_name=file_name, **kwargs)
self.file_system = file_system
Loading