Skip to content

Commit 94146b5

Browse files
Migrate Compute from generation to main (Azure#19864)
* Move Compute to main * Update BreakingChangeIssues.csv Co-authored-by: Yabo Hu <yabhu@microsoft.com>
1 parent 815a8b5 commit 94146b5

31 files changed

+69
-2730
lines changed

src/Compute/Compute.Autorest/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ directive:
227227
### Remove Get-AzVmRuncommand so I can code it traditionally.
228228
- select: command
229229
where:
230-
subject: VMRunCommand
230+
subject: VMRunCommand|VmssVMRunCommand
231231
verb: Get
232232
remove: true
233233
```

src/Compute/Compute.Autorest/docs/Az.Compute.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,6 @@ Retrieves information about a gallery Application Definition.
1717
### [Get-AzGalleryApplicationVersion](Get-AzGalleryApplicationVersion.md)
1818
Retrieves information about a gallery Application Version.
1919

20-
### [Get-AzVmssVMRunCommand](Get-AzVmssVMRunCommand.md)
21-
The operation to get the VMSS VM run command.
22-
2320
### [New-AzGalleryApplication](New-AzGalleryApplication.md)
2421
Create or update a gallery Application Definition.
2522

src/Compute/Compute.Autorest/docs/Get-AzVmssVMRunCommand.md

Lines changed: 0 additions & 226 deletions
This file was deleted.

src/Compute/Compute.Autorest/docs/New-AzGalleryApplicationVersion.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ $SASToken = New-AzStorageBlobSASToken -Context $ctx -Container $containerName -b
3434
$storAcc = Get-AzStorageAccount -ResourceGroupName $rgName -Name $storAccName
3535
$blob = Get-AzStorageBlob -Container $containerName -Blob $blobName -Context $storAcc.Context
3636
$SASToken = New-AzStorageBlobSASToken -Container $containerName -Blob $blobName -Permission rwd -Context $storAcc.Context
37-
$SASUri = $blob.ICloudBlob.Uri.AbsoluteUri + "?" +$SASToken
37+
$SASUri = $blob.ICloudBlob.Uri.AbsoluteUri + $SASToken
3838
New-AzGalleryApplicationVersion -ResourceGroupName $rgname -Location EastUS -GalleryName $galleryName -GalleryApplicationName $galleryApplicationName -name "0.1.0" -PackageFileLink $SASUri -Install "powershell -command 'Expand-Archive -Path package.zip -DestinationPath C:\\package\'" -Remove "del C:\\package"
3939
```
4040

src/Compute/Compute.Autorest/examples/Get-AzVmssVMRunCommand.md

Lines changed: 0 additions & 25 deletions
This file was deleted.

src/Compute/Compute.Autorest/examples/New-AzGalleryApplicationVersion.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ $SASToken = New-AzStorageBlobSASToken -Context $ctx -Container $containerName -b
55
$storAcc = Get-AzStorageAccount -ResourceGroupName $rgName -Name $storAccName
66
$blob = Get-AzStorageBlob -Container $containerName -Blob $blobName -Context $storAcc.Context
77
$SASToken = New-AzStorageBlobSASToken -Container $containerName -Blob $blobName -Permission rwd -Context $storAcc.Context
8-
$SASUri = $blob.ICloudBlob.Uri.AbsoluteUri + "?" +$SASToken
8+
$SASUri = $blob.ICloudBlob.Uri.AbsoluteUri + $SASToken
99
New-AzGalleryApplicationVersion -ResourceGroupName $rgname -Location EastUS -GalleryName $galleryName -GalleryApplicationName $galleryApplicationName -name "0.1.0" -PackageFileLink $SASUri -Install "powershell -command 'Expand-Archive -Path package.zip -DestinationPath C:\\package\'" -Remove "del C:\\package"
1010
```
1111

0 commit comments

Comments
 (0)