Skip to content

Commit 67115f2

Browse files
author
jasper-schneider
committed
Update Batch release notes and update help
1 parent 635b23b commit 67115f2

File tree

2 files changed

+33
-22
lines changed

2 files changed

+33
-22
lines changed

ChangeLog.txt

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
2015.08.07 version 0.9.6
2+
* Azure Batch cmdlets
3+
* Cmdlets updated to use the general availability API. See http://blogs.technet.com/b/windowshpc/archive/2015/07/10/what-39-s-new-in-azure-batch-july-release-general-availability.aspx
4+
* Breaking changes to cmdlets resulting from API update:
5+
* Workitems have been removed.
6+
* If you were adding all tasks to a single job, use the New-AzureBatchJob cmdlet to directly create your job.
7+
* If you were managing workitems with a recurring schedule defined, use the AzureBatchJobSchedule cmdlets instead.
8+
* If you were using the AzureBatchVM cmdlets, use the AzureBatchComputeNode cmdlets instead.
9+
* The AzureBatchTaskFile and AzureBatchVMFile cmdlets have been consolidated into the AzureBatchNodeFile cmdlets.
10+
* The Name property on most entities has been replaced by an Id property.
11+
112
2015.07.17 version 0.9.5
213
* Azure SQL cmdlets
314
* Allowing to use of Storage V2 accounts in Auditing policies

src/ResourceManager/Batch/Commands.Batch/Microsoft.Azure.Commands.Batch.dll-Help.xml

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -284,13 +284,13 @@
284284
</maml:para>
285285
</maml:introduction>
286286
<dev:code>
287-
PS C:\&gt;Get-AzureBatchAccount -AccountName "pfuller"
288-
AccountName Location ResourceGroupName Tags TaskTenantUrl
289-
----------- -------- ----------------- ---- -------------
290-
pfuller westus CmdletExampleRG https://Batch.core.contoso.net
287+
PS C:\&gt;Get-AzureBatchAccount -AccountName "cmdletexample"
288+
AccountName Location ResourceGroupName Tags TaskTenantUrl
289+
----------- -------- ----------------- ---- -------------
290+
cmdletexample westus CmdletExampleRG https://cmdletexample.westus.batch.azure.com
291291
</dev:code>
292292
<dev:remarks>
293-
<maml:para>This command gets the Batch account named pfuller.</maml:para>
293+
<maml:para>This command gets the Batch account named cmdletexample.</maml:para>
294294
<maml:para />
295295
<maml:para />
296296
</dev:remarks>
@@ -308,10 +308,10 @@
308308
</maml:introduction>
309309
<dev:code>
310310
PS C:\&gt;Get-AzureBatchAccount -ResourceGroupName "CmdletExampleRG"
311-
AccountName Location ResourceGroupName Tags TaskTenantUrl
312-
----------- -------- ----------------- ---- -------------
313-
cmdletexample westus CmdletExampleRG https://Batch.core.contoso.net
314-
cmdletexample2 westus CmdletExampleRG https://Batch.core.contoso.net
311+
AccountName Location ResourceGroupName Tags TaskTenantUrl
312+
----------- -------- ----------------- ---- -------------
313+
cmdletexample westus CmdletExampleRG https://cmdletexample.westus.batch.azure.com
314+
cmdletexample2 westus CmdletExampleRG https://cmdletexample2.westus.batch.azure.com
315315
</dev:code>
316316
<dev:remarks>
317317
<maml:para>This command gets the Batch accounts associated with the CmdletExampleRG resource group.</maml:para>
@@ -3751,10 +3751,10 @@
37513751
</maml:para>
37523752
</maml:introduction>
37533753
<dev:code>
3754-
PS C:\&gt;New-AzureBatchAccountKey -AccountName "CmdletExample" -KeyType "Primary"
3755-
AccountName Location ResourceGroupName Tags TaskTenantUrl
3756-
----------- -------- ----------------- ---- -------------
3757-
cmdletexample westus CmdletExample https://Batch.core.contoso.net
3754+
PS C:\&gt;New-AzureBatchAccountKey -AccountName "cmdletexample" -KeyType "Primary"
3755+
AccountName Location ResourceGroupName Tags TaskTenantUrl
3756+
----------- -------- ----------------- ---- -------------
3757+
cmdletexample westus CmdletExampleRG https://cmdletexample.westus.batch.azure.com
37583758
</dev:code>
37593759
<dev:remarks>
37603760
<maml:para>This command regenerates the primary account key on the Batch account named CmdletExample.</maml:para>
@@ -3938,9 +3938,9 @@
39383938
<dev:code>
39393939
PS C:\&gt;New-AzureBatchAccount -AccountName "cmdletexample" -ResourceGroupName "CmdletExampleRG" -Location "WestUS"
39403940

3941-
AccountName Location ResourceGroupName Tags TaskTenantUrl
3942-
----------- -------- ----------------- ---- -------------
3943-
cmdletexample WestUS CmdletExampleRG https://Batch.core.contoso.net
3941+
AccountName Location ResourceGroupName Tags TaskTenantUrl
3942+
----------- -------- ----------------- ---- -------------
3943+
cmdletexample westus CmdletExampleRG https://cmdletexample.westus.batch.azure.com
39443944
</dev:code>
39453945
<dev:remarks>
39463946
<maml:para>This command creates a new Batch account named cmdletexample using the CmdletExampleRG resource group in the WestUS location.</maml:para>
@@ -7199,12 +7199,12 @@
71997199
PS C:\&gt;Set-AzureBatchAccount -AccountName "cmdletexample" -Tag @(@{Name = "tag1";Value = "value1"},@{Name = "tag2";Value = "value2"})
72007200

72017201

7202-
AccountName Location ResourceGroupName Tags TaskTenantUrl
7203-
----------- -------- ----------------- ---- -------------
7204-
cmdletexample westus cmdletexamplerg {System.Collection https://Batch.core.windows.net
7205-
s.Hashtable, Syste
7206-
m.Collections.Hash
7207-
table}
7202+
AccountName Location ResourceGroupName Tags TaskTenantUrl
7203+
----------- -------- ----------------- ---- -------------
7204+
cmdletexample westus CmdletExampleRG {System.Collection https://cmdletexample.westus.batch.azure.com
7205+
s.Hashtable, Syste
7206+
m.Collections.Hash
7207+
table}
72087208
</dev:code>
72097209
<dev:remarks>
72107210
<maml:para>This command updates the tags on the cmdletexample account.</maml:para>

0 commit comments

Comments
 (0)