Skip to content

Commit

Permalink
Creating a separate module for StackHCIVM (#23414)
Browse files Browse the repository at this point in the history
* 09-01-preview changes

* removing examples for hidden cmdlets

* removing extra example files

* removing extra tests

* adding updating examples

* updating docs

* adding log directory example back

* removing envValues.json

* adding root module

* getting rid of local paths

* bug fixes

* fixes

* updates

* removing ip config and subnet conig

* fixing example formating

* fixing get and update

* updating folder name

* using public repo

* adding customization to rename commands

* fixing all casing in custom code

* removing files

* updating docs and examples

* adding lnet,nic,and stroagepath test recording

* fixing links

* test

* fixing description and synopsis

* trying to fix logical network doc

* Fixing module name in get lnet

* updating readme to manually add description in swagger

* fixing disk ids, nic ids, and image output

* Changin Tags parameter to Tag

* removing dnsservers

* removing address prefixes

* removing ippools

* removing routes

* removing subnets

* compiling docs

* removing ip configurations

* removing pulral params for new vhd

* remooving diskids and disnames from remove disk

* removig nicids and nicnames from remove nic

* removing vm processors

* getting rid of example stub in custom file

* fixing parameters in VM create

* removing example stub from each custom file

* updating example files

* fixing subnet in logical network

* adding logical network recording

* addig vhd and nic recording

* adding storage path recording

* adding default param to new cmdlets

* virtual machine recording

* adding image recording

* fixing lnet ippool and test reordings

* fixing v disk addand nic add

* addig passig tests

* adding passing recording for nic

* fixing nic json

* fixing vm json

* fixing vm recording

* fixing network interface recording

* passing default param through new-nic

* fix file name for some examples and docs, fix online version uri

* add ux files

* remove asjob for get cmdlets

* making StackHCIVm separate module

* updating structure

* updating to StackHCIVM

* updating commit on readme

* updating to autorest 4

* Fix empty examples

* Rename parent folder to StackHCIVm to StackHCIVM

* Delete src/StackHCIVm directory

* Rename all files from Vm to VM

* Fix linux test

* fixing casing

* adding common parameters

* adding test recordings

---------

Co-authored-by: Harika Vedati <havedati@microsoft.com>
Co-authored-by: VeryEarly <yabhu@microsoft.com>
Co-authored-by: Nori Zhang <norizhang@microsoft.com>
Co-authored-by: NoriZC <110961157+NoriZC@users.noreply.github.com>
  • Loading branch information
5 people authored Nov 28, 2023
1 parent 59310fe commit d659008
Show file tree
Hide file tree
Showing 159 changed files with 24,059 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/StackHCIVM/StackHCIVM.Autorest/.gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* text=auto
16 changes: 16 additions & 0 deletions src/StackHCIVM/StackHCIVM.Autorest/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
bin
obj
.vs
generated
internal
exports
tools
custom/*.psm1
custom/autogen-model-cmdlets
test/*-TestResults.xml
/*.ps1
/*.ps1xml
/*.psm1
/*.snk
/*.csproj
/*.nuspec
23 changes: 23 additions & 0 deletions src/StackHCIVM/StackHCIVM.Autorest/Az.StackHCIVM.psd1
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
@{
GUID = '7389f67c-ec9d-4c13-9c9a-308834413af6'
RootModule = './Az.StackHCIVM.psm1'
ModuleVersion = '0.1.0'
CompatiblePSEditions = 'Core', 'Desktop'
Author = 'Microsoft Corporation'
CompanyName = 'Microsoft Corporation'
Copyright = 'Microsoft Corporation. All rights reserved.'
Description = 'Microsoft Azure PowerShell: StackHcivm cmdlets'
PowerShellVersion = '5.1'
DotNetFrameworkVersion = '4.7.2'
RequiredAssemblies = './bin/Az.StackHCIVM.private.dll'
FormatsToProcess = './Az.StackHCIVM.format.ps1xml'
FunctionsToExport = 'Add-AzStackHCIVMVirtualMachineDataDisk', 'Add-AzStackHCIVMVirtualMachineNetworkInterface', 'Get-AzStackHCIVMImage', 'Get-AzStackHCIVMLogicalNetwork', 'Get-AzStackHCIVMNetworkInterface', 'Get-AzStackHCIVMStoragePath', 'Get-AzStackHCIVMVirtualHardDisk', 'Get-AzStackHCIVMVirtualMachine', 'New-AzStackHCIVMImage', 'New-AzStackHCIVMLogicalNetwork', 'New-AzStackHCIVMNetworkInterface', 'New-AzStackHCIVMStoragePath', 'New-AzStackHCIVMVirtualHardDisk', 'New-AzStackHCIVMVirtualMachine', 'Remove-AzStackHCIVMImage', 'Remove-AzStackHCIVMLogicalNetwork', 'Remove-AzStackHCIVMNetworkInterface', 'Remove-AzStackHCIVMStoragePath', 'Remove-AzStackHCIVMVirtualHardDisk', 'Remove-AzStackHCIVMVirtualMachine', 'Remove-AzStackHCIVMVirtualMachineDataDisk', 'Remove-AzStackHCIVMVirtualMachineNetworkInterface', 'Restart-AzStackHCIVMVirtualMachine', 'Start-AzStackHCIVMVirtualMachine', 'Stop-AzStackHCIVMVirtualMachine', 'Update-AzStackHCIVMImage', 'Update-AzStackHCIVMLogicalNetwork', 'Update-AzStackHCIVMNetworkInterface', 'Update-AzStackHCIVMStoragePath', 'Update-AzStackHCIVMVirtualHardDisk', 'Update-AzStackHCIVMVirtualMachine'
PrivateData = @{
PSData = @{
Tags = 'Azure', 'ResourceManager', 'ARM', 'PSModule', 'StackHcivm'
LicenseUri = 'https://aka.ms/azps-license'
ProjectUri = 'https://github.com/Azure/azure-powershell'
ReleaseNotes = ''
}
}
}
Loading

0 comments on commit d659008

Please sign in to comment.