Skip to content

Commit

Permalink
Fixing up PR 1324
Browse files Browse the repository at this point in the history
These fixes are related to this PR:
#1324
  • Loading branch information
ro-joowan committed Jul 28, 2017
1 parent 4c767b2 commit 7f079c0
Show file tree
Hide file tree
Showing 5 changed files with 54 additions and 28 deletions.
1 change: 0 additions & 1 deletion .gitignore
Expand Up @@ -4,7 +4,6 @@ __pycache__/

# Virtual environment
env*/
myEnv/

# PTVS analysis
.ptvs/
Expand Down
43 changes: 33 additions & 10 deletions azure-mgmt-datalake-analytics/HISTORY.rst
Expand Up @@ -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> -> 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.
Expand Down
21 changes: 18 additions & 3 deletions azure-mgmt-datalake-store/HISTORY.rst
Expand Up @@ -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> -> 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)
++++++++++++++++++
Expand Down
14 changes: 2 additions & 12 deletions azure.pyproj
Expand Up @@ -24,7 +24,8 @@
<SccLocalPath>SAK</SccLocalPath>
<SearchPath>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</SearchPath>
<EnableNativeCodeDebugging>False</EnableNativeCodeDebugging>
<InterpreterId>MSBuild|myEnv|$(MSBuildProjectFullPath)</InterpreterId>
<InterpreterId>
</InterpreterId>
<InterpreterVersion>
</InterpreterVersion>
</PropertyGroup>
Expand Down Expand Up @@ -2884,17 +2885,6 @@
<Content Include="setup.cfg" />
<Content Include="swagger_to_sdk_config.json" />
</ItemGroup>
<ItemGroup>
<Interpreter Include="myEnv\">
<Id>myEnv</Id>
<Version>3.6</Version>
<Description>myEnv (Python 3.6 (64-bit))</Description>
<InterpreterPath>Scripts\python.exe</InterpreterPath>
<WindowsInterpreterPath>Scripts\pythonw.exe</WindowsInterpreterPath>
<PathEnvironmentVariable>PYTHONPATH</PathEnvironmentVariable>
<Architecture>X64</Architecture>
</Interpreter>
</ItemGroup>
<PropertyGroup>
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
Expand Down
3 changes: 1 addition & 2 deletions requirements.txt
@@ -1,5 +1,4 @@
futures;python_version<="2.7"
python-dateutil
pyopenssl
msrestazure>=0.4.0,<0.5.0
vcrpy
msrestazure>=0.4.0,<0.5.0

0 comments on commit 7f079c0

Please sign in to comment.