diff --git a/.gitignore b/.gitignore index e4f8f9738ac9..90b78c11f67f 100644 --- a/.gitignore +++ b/.gitignore @@ -4,7 +4,6 @@ __pycache__/ # Virtual environment env*/ -myEnv/ # PTVS analysis .ptvs/ diff --git a/azure-mgmt-datalake-analytics/HISTORY.rst b/azure-mgmt-datalake-analytics/HISTORY.rst index 58f034bdd698..b8dc053adffe 100644 --- a/azure-mgmt-datalake-analytics/HISTORY.rst +++ b/azure-mgmt-datalake-analytics/HISTORY.rst @@ -4,20 +4,43 @@ Release History =============== 0.2.0 (2017-07-25) ++++++++++++++++++ -* Create an explicit set of parameters for job submission. NOTE: Only U-SQL is supported in this change, no hive jobs are supported at present. - * For jobs submission, change JobInformation to CreateJobParameters - * For the properties use the right object (e.g. USqlJobProperties to CreateUSqlJobProperties) - * For building jobs, change JobInformation to BuildJobParameters - * For the properties use the right object (e.g. USqlJobProperties to CreateUSqlJobProperties) - * Note that the following fields are not part of BuildJobParameters + +**Breaking changes** + +* Revised the inheritance structure for objects dealing with job creation and building. + * NOTE: Only U-SQL is supported in this change; therefore, Hive is no supported. + * When submitting jobs, change JobInformation objects to CreateJobParameters. + * When setting the properties for the CreateJobParameters object, be sure to change the USqlJobProperties object to a CreateUSqlJobProperties object. + * When building jobs, change JobInformation objects to BuildJobParameters objects. + * When setting the properties for the BuildJobParameters object, be sure to change the USqlJobProperties object to a CreateUSqlJobProperties object. + * NOTE: The following fields are not a part of the BuildJobParameters object: * degreeOfParallelism * priority * related -* Create a "Basic" jobInformation that is returned for LIST calls -* Setup inheritance for GET jobs -* Create an inheritance structure for GET and LIST ADLA accounts. -* This also follows the Basic -> Object inheritance pattern. +**Notes** + +* When getting a list of jobs, the job information for each job now includes a strict subset of the job information that is returned when getting a single job + * The following fields are included in the job information when getting a single job but are not included in the job information when getting a list of jobs: + * errorMessage + * stateAuditRecords + * properties + * runtimeVersion + * script + * type + +* When getting a list of accounts, the account information for each account now includes a strict subset of the account information that is returned when getting a single account + * There are two ways to get a list of accounts: List and ListByResource methods + * The following fields are included in the account information when getting a list of accounts, which is less than the account information retrieved for a single account: + * provisioningState + * state + * creationTime + * lastModifiedTime + * endpoint + +* When retrieving account information, an account id field called "accountId" is now included. + * accountId's description: The unique identifier associated with this Data Lake Analytics account. + 0.1.6 (2017-06-19) ++++++++++++++++++ * Fixing a regression discovered in 0.1.5. Please update to 0.1.6 to avoid any issues caused by that regression. diff --git a/azure-mgmt-datalake-store/HISTORY.rst b/azure-mgmt-datalake-store/HISTORY.rst index cd0701d9cb91..bbb8b852f870 100644 --- a/azure-mgmt-datalake-store/HISTORY.rst +++ b/azure-mgmt-datalake-store/HISTORY.rst @@ -4,9 +4,24 @@ Release History =============== 0.2.0 (2017-07-25) ++++++++++++++++++ -* Create an inheritance structure for GET and LIST ADLS accounts. -* This also follows the Basic -> Object inheritance pattern. -* Standardized the parameter name for file paths (e.g. fileDestination to path) + +**Breaking change** + +* Standardized the parameter name for file paths in the url (e.g. fileDestination to path) + +**Notes** + +* When getting a list of accounts, the account information for each account now includes a strict subset of the account information that is returned when getting a single account + * There are two ways to get a list of accounts: List and ListByResource methods + * The following fields are included in the account information when getting a list of accounts, which is less than the account information retrieved for a single account: + * provisioningState + * state + * creationTime + * lastModifiedTime + * endpoint + +* When retrieving account information, an account id field called "accountId" is now included. + * accountId's description: The unique identifier associated with this Data Lake Analytics account. 0.1.6 (2017-06-19) ++++++++++++++++++ diff --git a/azure.pyproj b/azure.pyproj index 60f935225ea6..d99893003982 100644 --- a/azure.pyproj +++ b/azure.pyproj @@ -24,7 +24,8 @@ SAK azure-common\;azure-servicebus\;azure-servicemanagement-legacy\;azure-mgmt-storage\;azure-mgmt-compute\;azure-mgmt-network\;azure-mgmt-resource\;azure-mgmt-redis\;azure-mgmt-authorization\;azure-mgmt-cdn\;azure-mgmt-logic\;azure-mgmt-notificationhubs\;azure-mgmt-scheduler\;azure-mgmt-web\;azure-graphrbac\;azure-mgmt\;azure-batch\;azure-mgmt-batch\;azure-mgmt-keyvault\;azure-mgmt-dns\;azure-mgmt-trafficmanager\;azure-mgmt-iothub\;azure-mgmt-devtestlabs\;azure-mgmt-servermanager\;..\msrest-for-python\;..\msrestazure-for-python\;azure-mgmt-datalake-analytics\;azure-mgmt-datalake-store;azure-mgmt-eventhub\;azure-mgmt-servicebus\;azure-monitor\;azure-mgmt-monitor\;azure-mgmt-sql\;azure-mgmt-media\;azure-mgmt-search\;azure-keyvault\;azure-mgmt-documentdb\;azure-mgmt-containerregistry\;azure-mgmt-recoveryservicesbackup\;azure-mgmt-cosmosdb;azure-sdk-testutils False - MSBuild|myEnv|$(MSBuildProjectFullPath) + + @@ -2884,17 +2885,6 @@ - - - myEnv - 3.6 - myEnv (Python 3.6 (64-bit)) - Scripts\python.exe - Scripts\pythonw.exe - PYTHONPATH - X64 - - 10.0 $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) diff --git a/requirements.txt b/requirements.txt index bada3862572b..75e19d043740 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,4 @@ futures;python_version<="2.7" python-dateutil pyopenssl -msrestazure>=0.4.0,<0.5.0 -vcrpy \ No newline at end of file +msrestazure>=0.4.0,<0.5.0 \ No newline at end of file