├── .gitattributes ├── .gitignore ├── CaaS_PS (unit-test).ruleset ├── CaaS_PS (web).ruleset ├── CaaS_PS.ruleset ├── CaaS_PS.snk ├── CustomDictionary.xml ├── Docker ├── DockerCaaS.psd1 ├── Posh-SSH │ ├── .gitattributes │ ├── .gitignore │ ├── Assembly │ │ ├── Ionic.Zlib.dll │ │ └── Renci.SshNet.dll │ ├── Format │ │ ├── Renci.SshNet.Sftp.SftpFile.Format.ps1xml │ │ ├── Renci.SshNet.SshCommand.Format.ps1xml │ │ ├── SFTPSession.Format.ps1xml │ │ └── SSHSession.Format.ps1xml │ ├── License.md │ ├── PortForward.ps1 │ ├── Posh-SSH.psd1 │ ├── Posh-SSH.psm1 │ ├── PoshSSH.dll │ ├── PoshSSH │ │ ├── PoshSSH.sln │ │ └── PoshSSH │ │ │ ├── ConnectionInfoGenerator.cs │ │ │ ├── GetScpFile.cs │ │ │ ├── GetScpFolder.cs │ │ │ ├── GetSftpFile.cs │ │ │ ├── NewSSHSession.cs │ │ │ ├── NewSftpSession.cs │ │ │ ├── PoshSSH.csproj │ │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ └── Resources.resx │ │ │ ├── SessionObject.cs │ │ │ ├── SetScpFile.cs │ │ │ ├── SetScpFolder.cs │ │ │ ├── SetSftpFile.cs │ │ │ ├── SshModHelper.cs │ │ │ └── TrustedKeyMng.cs │ ├── Readme.md │ ├── Sftp.ps1 │ ├── Trust.ps1 │ ├── en-US │ │ ├── Posh-SSH.psm1-Help.xml │ │ └── PoshSSH.dll-help.xml │ └── tests │ │ ├── Get-SSHSession.Tests.ps1 │ │ └── Remove-SSHSession.Tests.ps1 └── Scripts │ ├── DockerModuleFunctions.ps1 │ └── DockerTest.ps1 ├── DocumentPowerShell.ps1 ├── Get-HelpToRst.ps1 ├── Help ├── DD.CBU.Compute.Api.Client.dxc ├── DD.CBU.Compute.Api.Contracts.dxc ├── Default.chm ├── DimensionData.ComputeClient.dxp ├── DimensionData.ComputeClient.dxp.bak ├── DimensionData.ComputeClient.dxw ├── PowerShell Commands │ ├── Add-CaaSBackupClient.html │ ├── Add-CaasServerDisk.html │ ├── Add-CaasToServerFarm.html │ ├── Enable-CaasVendorMultiGeoCustomer.html │ ├── Find-CaasVendorAccount.html │ ├── Get-CaasAccounts.html │ ├── Get-CaasAclRules.html │ └── Get-CaasBackupClients.html ├── designtime │ ├── delete.gif │ ├── designtime.css │ ├── edit.gif │ ├── new.gif │ └── search.gif ├── dotnetimages │ ├── 1pixel.png │ ├── Class.png │ ├── Constructor.png │ ├── Delegate.png │ ├── Enumeration.png │ ├── Event.png │ ├── Field.png │ ├── Interface.png │ ├── Method.png │ ├── Operator.png │ ├── Property.png │ ├── Structure.png │ ├── collapse.png │ ├── copycode.png │ ├── dropdown.png │ ├── expand.png │ ├── extensionmethod.png │ ├── internalConstructor.png │ ├── internalEvent.png │ ├── internalField.png │ ├── internalMethod.png │ ├── internalOperator.png │ ├── internalProperty.png │ ├── isnew.png │ ├── privateConstructor.png │ ├── privateEvent.png │ ├── privateField.png │ ├── privateMethod.png │ ├── privateOperator.png │ ├── privateProperty.png │ ├── protected internalConstructor.png │ ├── protected internalEvent.png │ ├── protected internalField.png │ ├── protected internalMethod.png │ ├── protected internalOperator.png │ ├── protected internalProperty.png │ ├── protectedConstructor.png │ ├── protectedEvent.png │ ├── protectedField.png │ ├── protectedMethod.png │ ├── protectedOperator.png │ ├── protectedProperty.png │ ├── publicConstructor.png │ ├── publicEvent.png │ ├── publicField.png │ ├── publicMethod.png │ ├── publicOperator.png │ ├── publicProperty.png │ ├── static.png │ └── uiTabsArrow.png ├── flash │ └── expressinstall.swf ├── help │ └── MshvRedirect.html ├── images │ ├── 1pixel.png │ ├── collapse.png │ ├── copycode.png │ ├── dropdown.png │ ├── expand.png │ ├── hs-caution.gif │ ├── hs-collapsed.gif │ ├── hs-enlarge.gif │ ├── hs-expanded.gif │ ├── hs-heading-collapsed.gif │ ├── hs-heading-expanded.gif │ ├── hs-jquery-loading.png │ ├── hs-note.gif │ ├── hs-shrink.gif │ ├── hs-simpletableft.png │ ├── hs-simpletabright.png │ ├── hs-tab-active-leftend.png │ ├── hs-tab-active-rightend.png │ ├── hs-tab-leftend.png │ ├── hs-tab-rightend.png │ ├── hs-tip.gif │ ├── hs-toggler-collapsed.png │ ├── hs-toggler-expanded.png │ ├── isnew.png │ ├── slimbox-closelabel.png │ ├── slimbox-nextlabel.png │ ├── slimbox-prevlabel.png │ └── uiTabsArrow.png ├── script │ ├── ZeroClipboard.swf │ ├── community.js │ ├── hs-common.js │ ├── hs-enlargeimage.js │ ├── hs-expandcollapse.js │ ├── hs-heading-expandcollapse.js │ ├── hs-jquery-common.js │ ├── hs-tabstrip.js │ ├── jquery.fitvids.js │ ├── mobile.dx.net.2012.js │ ├── mobile.glossary.2012.js │ ├── mobile.topics.2012.js │ ├── modernizr.custom.min.js │ ├── responsive.common.min.js │ ├── responsive.dx.net.loader.js │ ├── responsive.glossary.loader.js │ ├── responsive.js │ ├── responsive.navigationheader.js │ ├── responsive.topics.loader.js │ ├── swfobject.js │ ├── tablet.dx.net.2012.js │ ├── tablet.glossary.2012.js │ ├── tablet.topics.2012.js │ └── topics.2012.js └── stylesheets │ ├── bootstrap.css │ ├── branding.css │ ├── branding2.css │ ├── community.css │ ├── customstyles.css │ ├── dx.net.2012.mshv1.css │ ├── dx.net.2012.mshv2.css │ ├── help2.css │ ├── hs-boxes.css │ ├── hs-expandcollapse-booklet.css │ ├── hs-expandcollapse.css │ ├── hs-heading-expandcollapse-booklet.css │ ├── hs-heading-expandcollapse.css │ ├── hs-jquery-common.css │ ├── hs-jquery-expand.css │ ├── hs-jquery-slimbox.css │ ├── hs-simpletab.css │ ├── hs-tabstrip.css │ ├── jquery.qtip.css │ ├── mobile.dx.net.2012.css │ ├── mobile.glossary.2012.css │ ├── mobile.topics.2012.css │ ├── mshs.css │ ├── responsive.css │ ├── slimbox2.css │ ├── tablet.dx.net.2012.css │ ├── tablet.glossary.2012.css │ ├── tablet.topics.2012.css │ ├── topics.2012.css │ ├── topics.2012.mshv1.css │ └── topics.2012.mshv2.css ├── LICENSE ├── PowerShell Examples ├── Batch Operations.ps1 ├── Connect to Cisco VPN endpoint.ps1 ├── Connection.ps1 ├── CreateVIP.ps1 ├── CreateVMBackground.ps1 ├── Duplicate Servers in Network.ps1 ├── Export Images from AWS to CaaS.ps1 ├── Mcp2DeployServer.ps1 ├── Shut down machines in Network.ps1 └── Start File System backup on all VMs.ps1 ├── PowershellModule ├── .nuget │ ├── NuGet.Config │ ├── NuGet.exe │ └── NuGet.targets ├── .vs │ └── config │ │ └── applicationhost.config ├── CloudCompute.Powershell.Tests │ ├── CaaSTestUtilities.psm1 │ ├── CaaS_Tests.psd1 │ ├── CloudCompute.Powershell.Tests.csproj │ ├── DeployServerTests │ │ └── NewServerDetails.Tests.ps1 │ ├── MockApis │ │ └── GET │ │ │ ├── caas │ │ │ └── 2.4 │ │ │ │ └── _ │ │ │ │ ├── image │ │ │ │ ├── customerImage │ │ │ │ │ └── _q │ │ │ │ │ │ └── id=5ae04f29-1f03-4850-97b6-f287d1cd23ca │ │ │ │ └── osImage │ │ │ │ │ └── _q │ │ │ │ │ └── id=defd95e3-7a7b-4649-b231-8c0b2efbddd1 │ │ │ │ ├── network │ │ │ │ ├── networkDomain │ │ │ │ │ └── _q │ │ │ │ │ │ └── _ │ │ │ │ └── vlan │ │ │ │ │ └── _q │ │ │ │ │ ├── _ │ │ │ │ │ ├── datacenterId=AU9 │ │ │ │ │ ├── id=91d21154-3414-4f87-9af5-a656884b49bc │ │ │ │ │ ├── id=c0512714-6be2-467e-a123-98959679365c │ │ │ │ │ ├── name=vlan01 │ │ │ │ │ └── networkDomainId=bcf42c64-8d19-4844-b0ae-eac6a2f4b486 │ │ │ │ └── server │ │ │ │ └── server │ │ │ │ ├── 94e46b99-0e94-4625-9d36-eede640ca910 │ │ │ │ ├── _ │ │ │ │ └── _q │ │ │ │ └── _ │ │ │ └── oec │ │ │ └── 0.9 │ │ │ ├── _ │ │ │ ├── imageWithDiskSpeed │ │ │ │ └── _q │ │ │ │ │ └── id=5ae04f29-1f03-4850-97b6-f287d1cd23ca │ │ │ ├── networkWithLocation │ │ │ │ └── _q │ │ │ │ │ └── _ │ │ │ └── server │ │ │ │ ├── _ │ │ │ │ └── _q │ │ │ │ └── _ │ │ │ ├── base │ │ │ └── imageWithDiskSpeed │ │ │ │ └── _q │ │ │ │ └── id=defd95e3-7a7b-4649-b231-8c0b2efbddd1 │ │ │ └── myaccount │ │ │ └── _q │ │ │ └── _ │ ├── NewCaasApiProxyHttpClientCmdlet.cs │ ├── NewTestConnectionCmdlet.cs │ ├── NewTestContextCmdlet.cs │ ├── PSCmdletCaasBase.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RunTests.ps1 │ ├── ServerTests │ │ ├── GetServer.Tests.ps1 │ │ ├── NetworkDomain.Tests.ps1 │ │ └── ServerActions.Tests.ps1 │ ├── TestCaaSConnection.cs │ ├── TestContext.cs │ ├── TestHttpClient.cs │ ├── app.config │ └── packages.config ├── CloudCompute.Powershell │ ├── AWS_Utilities.ps1 │ ├── ApiMessageHandler.cs │ ├── BackupUtilities.psm1 │ ├── Backups │ │ ├── AddCaasBackupClientCmdlet.cs │ │ ├── DiasbleCaasServerBackupCmdlet.cs │ │ ├── GetCaasBackupClientTypesCmdlet.cs │ │ ├── GetCaasBackupClientsCmdlet.cs │ │ ├── GetCaasBackupSchedulePoliciesCmdlet.cs │ │ ├── GetCaasBackupStoragePoliciesCmdlet.cs │ │ ├── NewCaasBackupJobCmdlet.cs │ │ ├── NewCaasBackupRestoreJob.cs │ │ ├── RemoveCaasBackupClientCmdlet.cs │ │ ├── RemoveCaasBackupJobCmdlet.cs │ │ ├── SetCaasBackupClientCmdlet.cs │ │ ├── SetCaasBackupPlanCmdlet.cs │ │ └── SetCaasProvisionBackupCmdlet.cs │ ├── CaaS.format.ps1xml │ ├── CaaS.psd1 │ ├── CaasCmdAlias.ps1 │ ├── CloudCompute.Powershell.csproj │ ├── CloudComputePsException.cs │ ├── ComputeCmdletProvider.cs │ ├── ComputeServiceConnection.cs │ ├── Contracts │ │ └── WaitableCmdlet.cs │ ├── Datacenters │ │ └── GetCaasDataCentreCmdlet.cs │ ├── EventLogger.cs │ ├── FirewallRules │ │ ├── GetCaasFirewallRuleCmdlet.cs │ │ ├── GetCaasIpAddressCmdlet.cs │ │ ├── GetCaasPortListCmdlet.cs │ │ ├── NewCaasFirewallRuleCmdlet.cs │ │ ├── NewCaasIpAddressListCmdlet.cs │ │ ├── NewCaasIpAddressRangeTypeCmdlet.cs │ │ ├── NewCaasIpAndPortTypeCmdlet.cs │ │ ├── NewCaasPortListCmdlet.cs │ │ ├── NewCaasPortRangeTypeCmdlet.cs │ │ ├── RemoveCaasFirewallRuleCmdlet.cs │ │ ├── RemoveCaasIpAddressListCmdlet.cs │ │ ├── RemoveCaasPortListCmdlet.cs │ │ └── SetCaasFirewallRuleCmdlet.cs │ ├── GetCaasConnectionCmdlet.cs │ ├── GetCaasMultiGeoRegionsCmdlet.cs │ ├── GlobalSuppressions.cs │ ├── HttpTraceLogger.cs │ ├── HttpTraceMessage.cs │ ├── Images │ │ ├── CopyCaasCustomerServerImageCmdlet.cs │ │ ├── GetCaasCustomerImageCmdlet.cs │ │ ├── GetCaasCustomerImageExportHistoryCmdlet.cs │ │ ├── GetCaasCustomerImageExportsCmdlet.cs │ │ ├── GetCaasCustomerImageImportsCmdlet.cs │ │ ├── GetCaasExportedImageCmdlet.cs │ │ ├── GetCaasOsImageCmdlet.cs │ │ ├── GetCaasOvfPackagesCmdlet.cs │ │ ├── NewCaasExportCustomerImageCmdlet.cs │ │ ├── NewCaasImportCustomerImageCmdlet.cs │ │ ├── NewCaasUploadCustomerImageCmdlet.cs │ │ ├── RemoveCaasCustomerImage.cs │ │ └── UpdateCaasCustomerImageMetadataCmdlet.cs │ ├── Infrastructure │ │ ├── GetCaasGeographicRegionsCmdlet.cs │ │ └── GetCaasOperatingSystemCmdlet.cs │ ├── Model │ │ ├── AssetType.cs │ │ ├── IPVersion.cs │ │ ├── IpAddressListRangeType.cs │ │ ├── PortListPort.cs │ │ ├── ReservePrivateIpv4Address.cs │ │ ├── TagKeyNameIdElement.cs │ │ ├── TagKeyNameIdType.cs │ │ └── TagKeyValue.cs │ ├── NetworkDomainVips │ │ ├── GetCaasDefaultHealthMonitorsCmdlet.cs │ │ ├── GetCaasDefaultiRulesCmdlet.cs │ │ ├── GetCaasVIPVirtualListenerCmdlet.cs │ │ ├── GetCaasVipNodeCmdlet.cs │ │ ├── GetCaasVipPoolCmdlet.cs │ │ ├── GetCaasVipPoolMemberCmdlet.cs │ │ ├── NewCaasVIPVirtualListenerCmdlet.cs │ │ ├── NewCaasVipNodeCmdlet.cs │ │ ├── NewCaasVipPoolCmdlet.cs │ │ ├── NewVipPoolMemberCmdlet.cs │ │ ├── RemoveCaasVIPVirtualListenerCmdlet.cs │ │ ├── RemoveCaasVipNodeCmdlet.cs │ │ ├── RemoveCaasVipPoolCmdlet.cs │ │ ├── RemoveCaasVipPoolMemberCmdlet.cs │ │ ├── SetCaasVIPPoolMemberCmdlet.cs │ │ ├── SetCaasVIPVirtualListenerCmdlet.cs │ │ ├── SetCaasVipNodeCmdlet.cs │ │ └── SetCaasVipPoolCmdlet.cs │ ├── NetworkDomains │ │ ├── GetCaasAntiAffinityRulesCmdlet.cs │ │ ├── GetCaasDefaultPresistenceProfilesCmdlet.cs │ │ ├── GetCaasNatRuleCmdlet.cs │ │ ├── GetCaasNetworkDomainCmdlet.cs │ │ ├── GetCaasNetworkPublicIpBlockCmdlet.cs │ │ ├── GetCaasReserveIPv6AddressCmdlet.cs │ │ ├── GetCaasReservePrivateIpv4AddressCmdlet.cs │ │ ├── GetCaasReservedPublicIpAddressCmdlet.cs │ │ ├── NetworkDomainType.cs │ │ ├── NewCaasNATRuleCmdlet.cs │ │ ├── NewCaasNetworkDomainCmdlet.cs │ │ ├── NewCaasNetworkPublicIpBlockCmdlet.cs │ │ ├── RemoveCaasNATRuleCmdlet.cs │ │ ├── RemoveCaasNetworkDomainCmdlet.cs │ │ ├── RemoveCaasNetworkPublicIpBlockCmdlet.cs │ │ ├── RemoveCaasReserveIPv6AddressCmdlet.cs │ │ ├── RemoveCaasReservePrivateIpv4AddressCmdlet.cs │ │ ├── SetCaasReserveIPv6AddressCmdlet.cs │ │ ├── SetCaasReservePrivateIpv4AddressCmdlet.cs │ │ ├── UpdateCaasIpAddressListCmdlet.cs │ │ └── UpdateCaasPortListCmdlet.cs │ ├── NetworkVips │ │ ├── AddCaasToServerFarmCmdlet.cs │ │ ├── GetCaasVipCmdlet.cs │ │ ├── NewCaasAclRuleCmdlet.cs │ │ ├── NewCaasVipCmdlet.cs │ │ ├── RemoveCaasServerFarmCmdlet.cs │ │ ├── RemoveCaasVipCmdlet.cs │ │ ├── SetCaasNetworkCmdlet.cs │ │ ├── SetCaasNetworkPublicIpBlockCmdlet.cs │ │ ├── SetCaasProbeCmdlet.cs │ │ ├── SetCaasRealServerCmdlet.cs │ │ ├── SetCaasServerFarmCmdlet.cs │ │ └── SetCaasVipCmdlet.cs │ ├── Networks │ │ ├── GetCaasAclRulesCmdlet.cs │ │ ├── GetCaasNetworkCmdlet.cs │ │ ├── GetCaasNetworkConfigurationCmdlet.cs │ │ ├── GetCaasPersistenceProfileCmdlet.cs │ │ ├── GetCaasProbeCmdletcs.cs │ │ ├── GetCaasRealServerCmdlet.cs │ │ ├── GetCaasServerAntiAffinityRuleCmdlet.cs │ │ ├── GetCaasServerFarmCmdlet.cs │ │ ├── GetCaasServerFarmDetailsCmdlet.cs │ │ ├── NewCaasNetworkCmdlet.cs │ │ ├── NewCaasPersistenceProfileCmdlet.cs │ │ ├── NewCaasProbeCmdlet.cs │ │ ├── NewCaasRealServerCmdlet.cs │ │ ├── NewCaasServerAntiAffinityRuleCmdlet.cs │ │ ├── NewCaasServerFarmCmdlet.cs │ │ ├── RemoveCaasAclRuleCmdlet.cs │ │ ├── RemoveCaasFromSeverFarmCmdlet.cs │ │ ├── RemoveCaasNetworkCmdlet.cs │ │ ├── RemoveCaasPersistenceProfileCmdlet.cs │ │ ├── RemoveCaasProbeCmdlet.cs │ │ ├── RemoveCaasRealServerCmdlet.cs │ │ └── RemoveCaasServerAntiAffinityRuleCmdlet.cs │ ├── NewCaasConnectionCmdlet.cs │ ├── PSCmdletCaasBase.cs │ ├── PSCmdletCaasPagedWithConnectionBase.cs │ ├── PSCmdletCaasServerBase.cs │ ├── PSCmdletCaasWithConnectionBase.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── PsCmdletCaasPagedWithConnectionBaseExtensions.cs │ ├── RemoveCaasConnectionCmdlet.cs │ ├── Report │ │ ├── GetAdminReportCmdlet.cs │ │ ├── GetBackupUsageReportCmdlet.cs │ │ ├── GetCaasServerMonitoringUsageReportCmdlet.cs │ │ ├── GetDetailedUsageReportCmdlet.cs │ │ ├── GetDrsUsageReportCmdlet.cs │ │ ├── GetSoftwareReportCmdlet.cs │ │ └── GetSummaryUsageReportCmdlet.cs │ ├── SecureStringExtensions.cs │ ├── Servers │ │ ├── AddCaasServerDiskCmdlet.cs │ │ ├── AddCaasServerScsiControllerCmdlet.cs │ │ ├── CaasServerDetails.cs │ │ ├── CaasServerDiskDetails.cs │ │ ├── DeployCaasServerOnNetworkDomainCmdlet.cs │ │ ├── DisableCaasServerMonitoringCmdlet.cs │ │ ├── EnableCaasServerMonitoringCmdlet.cs │ │ ├── FindCaasServerCmdlet.cs │ │ ├── GetCaasDeployedServersCmdlet.cs │ │ ├── GetCaasNicsCmdlet.cs │ │ ├── GetCaasServersCmdlet.cs │ │ ├── NewCaasServerCloneToCustomerImageCmdlet.cs │ │ ├── NewCaasServerCmdlet.cs │ │ ├── NewCaasServerDetailsCmdlet.cs │ │ ├── NewCaasServerNic.cs │ │ ├── RemoveCaasServerCmdlet.cs │ │ ├── RemoveCaasServerDiskCmdlet.cs │ │ ├── RemoveCaasServerFlpFileCmdlet.cs │ │ ├── RemoveCaasServerIsoFileCmdlet.cs │ │ ├── ResizeCaasServerDiskCmdlet.cs │ │ ├── RestartCaasServer.cs │ │ ├── SetCaasServerActionCmdlet.cs │ │ ├── SetCaasServerCmdlet.cs │ │ ├── SetCaasServerDiskDetailsCmdlet.cs │ │ ├── SetCaasServerDiskSpeedCmdlet.cs │ │ ├── SetCaasServerMonitoringPlanCmdlet.cs │ │ ├── SetCaasServerNicConnectionCmdlet.cs │ │ ├── SetCaasServerSpecCmdlet.cs │ │ ├── StartCaasServer.cs │ │ ├── StopCaasServer.cs │ │ ├── UpdateCaasServerVMwareToolsCmdlet.cs │ │ ├── UpdateCaasServerVirtualHardwareCmdlet.cs │ │ └── WaitCaasServerOperationCmdlet.cs │ ├── SessionStateExtensions.cs │ ├── Snapshots │ │ ├── EnableCaasServerSnapshotCmdlet.cs │ │ ├── GetCaasServerSnapshotsCmdlet.cs │ │ ├── GetCaasSnapshotWindowsCmdlet.cs │ │ ├── NewCaasServerFromSnapshotCmdlet.cs │ │ ├── RemoveCaasServerSnapshotCmdlet.cs │ │ └── SetCaasServerSnapahotMigrateCmdlet.cs │ ├── StringExtension.cs │ ├── Tags │ │ ├── GetCaasTagCmdlet.cs │ │ ├── GetCaasTagKeyCmdlet.cs │ │ ├── NewCaasTagKeyCmdlet.cs │ │ ├── RemoveCaasTagCmdlet.cs │ │ ├── RemoveCaasTagKeyCmdlet.cs │ │ ├── SetCaasTagCmdlet.cs │ │ └── UpdateCaasTagKeyCmdlet.cs │ ├── TestCaasCompatibilityCmdlet.cs │ ├── UserAccounts │ │ ├── GetCaasAccountsCmdlet.cs │ │ ├── GetCaasUsersCmdlet.cs │ │ ├── NewCaasAccountCmdlet.cs │ │ ├── NewCaasAccountRolesCmdLet.cs │ │ ├── RemoveCaasAccountCmdlet.cs │ │ ├── ResetCaasAccountPasswordCmdlet.cs │ │ ├── SetCaasAccountCmdlet.cs │ │ ├── SetCaasAccountPrimaryAdministratorCmdlet.cs │ │ └── SetCaasActiveConnectionCmdlet.cs │ ├── Vlans │ │ ├── ExpandCaasVlanCmdlet.cs │ │ ├── GetCaasVlanCmdlet.cs │ │ ├── NewCaasVlanCmdlet.cs │ │ ├── RemoveCaasVlanCmdlet.cs │ │ └── SetCaasVlanCmdlet.cs │ ├── app.config │ └── packages.config ├── CloudCompute.PowershellModule.sln ├── CloudCompute.PowershellModule.sln.DotSettings ├── README.md ├── ReleaseNotes.txt ├── Settings.StyleCop └── SolutionAssemblyInfo.cs ├── README.md ├── docs ├── README.md └── powershell │ ├── Add-CaasBackupClient.rst │ ├── Add-CaasServerDisk.rst │ ├── Add-CaasToServerFarm.rst │ ├── Copy-CaasCustomerServerImage.rst │ ├── Disable-CaasServerMonitoring.rst │ ├── Enable-CaasServerMonitoring.rst │ ├── Get-CaasAccounts.rst │ ├── Get-CaasAclRules.rst │ ├── Get-CaasAntiAffinityRules.rst │ ├── Get-CaasBackupClientTypes.rst │ ├── Get-CaasBackupClients.rst │ ├── Get-CaasBackupSchedulePolicies.rst │ ├── Get-CaasBackupStoragePolicies.rst │ ├── Get-CaasConnection.rst │ ├── Get-CaasCustomerImage.rst │ ├── Get-CaasCustomerImageExportHistory.rst │ ├── Get-CaasCustomerImageExports.rst │ ├── Get-CaasCustomerImageImports.rst │ ├── Get-CaasDataCentre.rst │ ├── Get-CaasDefaultHealthMonitors.rst │ ├── Get-CaasDefaultIRules.rst │ ├── Get-CaasDefaultPresistenceProfiles.rst │ ├── Get-CaasDeployedServer.rst │ ├── Get-CaasFirewallRule.rst │ ├── Get-CaasIpAddressList.rst │ ├── Get-CaasMultiGeoRegions.rst │ ├── Get-CaasNatRule.rst │ ├── Get-CaasNetwork.rst │ ├── Get-CaasNetworkConfiguration.rst │ ├── Get-CaasNetworkDomain.rst │ ├── Get-CaasNetworkPublicIpBlock.rst │ ├── Get-CaasNic.rst │ ├── Get-CaasOperatingSystem.rst │ ├── Get-CaasOsImage.rst │ ├── Get-CaasOvfPackages.rst │ ├── Get-CaasPersistenceProfile.rst │ ├── Get-CaasPortList.rst │ ├── Get-CaasProbe.rst │ ├── Get-CaasRealServer.rst │ ├── Get-CaasReserveIPv6Address.rst │ ├── Get-CaasReservePrivateIpv4Address.rst │ ├── Get-CaasServer.rst │ ├── Get-CaasServerAntiAffinityRule.rst │ ├── Get-CaasServerFarm.rst │ ├── Get-CaasServerFarmDetails.rst │ ├── Get-CaasServerMonitoringUsageReport.rst │ ├── Get-CaasTag.rst │ ├── Get-CaasTagKey.rst │ ├── Get-CaasVIPVirtualListener.rst │ ├── Get-CaasVip.rst │ ├── Get-CaasVipNode.rst │ ├── Get-CaasVipPool.rst │ ├── Get-CaasVipPoolMember.rst │ ├── Get-CaasVlan.rst │ ├── Makefile │ ├── New-CaasAccount.rst │ ├── New-CaasAccountRoles.rst │ ├── New-CaasAclRule.rst │ ├── New-CaasBackupJob.rst │ ├── New-CaasBackupRestoreJob.rst │ ├── New-CaasConnection.rst │ ├── New-CaasExportCustomerImage.rst │ ├── New-CaasFirewallRule.rst │ ├── New-CaasImportCustomerImage.rst │ ├── New-CaasIpAddressList.rst │ ├── New-CaasIpAddressRangeType.rst │ ├── New-CaasIpAndPortType.rst │ ├── New-CaasNatRule.rst │ ├── New-CaasNetwork.rst │ ├── New-CaasNetworkDomain.rst │ ├── New-CaasNetworkPublicIpBlock.rst │ ├── New-CaasPersistenceProfile.rst │ ├── New-CaasPortList.rst │ ├── New-CaasPortRangeType.rst │ ├── New-CaasProbe.rst │ ├── New-CaasRealServer.rst │ ├── New-CaasServer.rst │ ├── New-CaasServerAntiAffinityRule.rst │ ├── New-CaasServerCloneToCustomerImage.rst │ ├── New-CaasServerDetails.rst │ ├── New-CaasServerFarm.rst │ ├── New-CaasServerNic.rst │ ├── New-CaasServerOnNetworkDomain.rst │ ├── New-CaasTagKey.rst │ ├── New-CaasUploadCustomerImage.rst │ ├── New-CaasVIPVirtualListener.rst │ ├── New-CaasVip.rst │ ├── New-CaasVipNode.rst │ ├── New-CaasVipPool.rst │ ├── New-CaasVipPoolMember.rst │ ├── New-CaasVlan.rst │ ├── Remove-CaasAccount.rst │ ├── Remove-CaasAclRule.rst │ ├── Remove-CaasBackupClient.rst │ ├── Remove-CaasBackupJob.rst │ ├── Remove-CaasConnection.rst │ ├── Remove-CaasCustomerImage.rst │ ├── Remove-CaasFirewallRule.rst │ ├── Remove-CaasFromServerFarm.rst │ ├── Remove-CaasIpAddressList.rst │ ├── Remove-CaasNatRule.rst │ ├── Remove-CaasNetwork.rst │ ├── Remove-CaasNetworkDomain.rst │ ├── Remove-CaasNetworkPublicIpBlock.rst │ ├── Remove-CaasPersistenceProfile.rst │ ├── Remove-CaasPortList.rst │ ├── Remove-CaasProbe.rst │ ├── Remove-CaasRealServer.rst │ ├── Remove-CaasReserveIPv6Address.rst │ ├── Remove-CaasReservePrivateIpv4Address.rst │ ├── Remove-CaasServer.rst │ ├── Remove-CaasServerAntiAffinityRule.rst │ ├── Remove-CaasServerDisk.rst │ ├── Remove-CaasServerFarm.rst │ ├── Remove-CaasTag.rst │ ├── Remove-CaasTagKey.rst │ ├── Remove-CaasVIPVirtualListener.rst │ ├── Remove-CaasVip.rst │ ├── Remove-CaasVipNode.rst │ ├── Remove-CaasVipPool.rst │ ├── Remove-CaasVipPoolMember.rst │ ├── Remove-CaasVlan.rst │ ├── Reset-CaasAccountPassword.rst │ ├── Resize-CaasServerDisk.rst │ ├── Set-CaasAccount.rst │ ├── Set-CaasAccountPrimaryAdministrator.rst │ ├── Set-CaasActiveConnection.rst │ ├── Set-CaasBackupClient.rst │ ├── Set-CaasBackupPlan.rst │ ├── Set-CaasFirewallRule.rst │ ├── Set-CaasNetwork.rst │ ├── Set-CaasNetworkPublicIpBlock.rst │ ├── Set-CaasProbe.rst │ ├── Set-CaasProvisionBackup.rst │ ├── Set-CaasRealServer.rst │ ├── Set-CaasReserveIPv6Address.rst │ ├── Set-CaasReservePrivateIpv4Address.rst │ ├── Set-CaasServer.rst │ ├── Set-CaasServerDiskDetails.rst │ ├── Set-CaasServerDiskSpeed.rst │ ├── Set-CaasServerFarm.rst │ ├── Set-CaasServerMonitoringPlan.rst │ ├── Set-CaasServerSpec.rst │ ├── Set-CaasServerState.rst │ ├── Set-CaasTag.rst │ ├── Set-CaasVIPVirtualListener.rst │ ├── Set-CaasVip.rst │ ├── Set-CaasVipNode.rst │ ├── Set-CaasVipPool.rst │ ├── Set-CaasVipPoolMember.rst │ ├── Test-CaasCompatibility.rst │ ├── Update-CaasCustomerImageMetadata.rst │ ├── Update-CaasIpAddressList.rst │ ├── Update-CaasPortList.rst │ ├── Update-CaasServerVMwareTools.rst │ ├── Update-CaasServerVirtualHardware.rst │ ├── Update-CaasTagKey.rst │ ├── Wait-CaasServerOperation.rst │ ├── _build │ ├── doctrees │ │ ├── Add-CaasBackupClient.doctree │ │ ├── Add-CaasServerDisk.doctree │ │ ├── Add-CaasToServerFarm.doctree │ │ ├── Copy-CaasCustomerServerImage.doctree │ │ ├── Disable-CaasServerMonitoring.doctree │ │ ├── Enable-CaasServerMonitoring.doctree │ │ ├── Get-CaasAccounts.doctree │ │ ├── Get-CaasAclRules.doctree │ │ ├── Get-CaasAntiAffinityRules.doctree │ │ ├── Get-CaasBackupClientTypes.doctree │ │ ├── Get-CaasBackupClients.doctree │ │ ├── Get-CaasBackupSchedulePolicies.doctree │ │ ├── Get-CaasBackupStoragePolicies.doctree │ │ ├── Get-CaasConnection.doctree │ │ ├── Get-CaasCustomerImage.doctree │ │ ├── Get-CaasCustomerImageExportHistory.doctree │ │ ├── Get-CaasCustomerImageExports.doctree │ │ ├── Get-CaasCustomerImageImports.doctree │ │ ├── Get-CaasDataCentre.doctree │ │ ├── Get-CaasDefaultHealthMonitors.doctree │ │ ├── Get-CaasDefaultIRules.doctree │ │ ├── Get-CaasDefaultPresistenceProfiles.doctree │ │ ├── Get-CaasDeployedServer.doctree │ │ ├── Get-CaasFirewallRule.doctree │ │ ├── Get-CaasIpAddressList.doctree │ │ ├── Get-CaasMultiGeoRegions.doctree │ │ ├── Get-CaasNatRule.doctree │ │ ├── Get-CaasNetwork.doctree │ │ ├── Get-CaasNetworkConfiguration.doctree │ │ ├── Get-CaasNetworkDomain.doctree │ │ ├── Get-CaasNetworkPublicIpBlock.doctree │ │ ├── Get-CaasNic.doctree │ │ ├── Get-CaasOperatingSystem.doctree │ │ ├── Get-CaasOsImage.doctree │ │ ├── Get-CaasOvfPackages.doctree │ │ ├── Get-CaasPersistenceProfile.doctree │ │ ├── Get-CaasPortList.doctree │ │ ├── Get-CaasProbe.doctree │ │ ├── Get-CaasRealServer.doctree │ │ ├── Get-CaasReserveIPv6Address.doctree │ │ ├── Get-CaasReservePrivateIpv4Address.doctree │ │ ├── Get-CaasServer.doctree │ │ ├── Get-CaasServerAntiAffinityRule.doctree │ │ ├── Get-CaasServerFarm.doctree │ │ ├── Get-CaasServerFarmDetails.doctree │ │ ├── Get-CaasServerMonitoringUsageReport.doctree │ │ ├── Get-CaasTag.doctree │ │ ├── Get-CaasTagKey.doctree │ │ ├── Get-CaasVIPVirtualListener.doctree │ │ ├── Get-CaasVip.doctree │ │ ├── Get-CaasVipNode.doctree │ │ ├── Get-CaasVipPool.doctree │ │ ├── Get-CaasVipPoolMember.doctree │ │ ├── Get-CaasVlan.doctree │ │ ├── New-CaasAccount.doctree │ │ ├── New-CaasAccountRoles.doctree │ │ ├── New-CaasAclRule.doctree │ │ ├── New-CaasBackupJob.doctree │ │ ├── New-CaasBackupRestoreJob.doctree │ │ ├── New-CaasConnection.doctree │ │ ├── New-CaasExportCustomerImage.doctree │ │ ├── New-CaasFirewallRule.doctree │ │ ├── New-CaasImportCustomerImage.doctree │ │ ├── New-CaasIpAddressList.doctree │ │ ├── New-CaasIpAddressRangeType.doctree │ │ ├── New-CaasIpAndPortType.doctree │ │ ├── New-CaasNatRule.doctree │ │ ├── New-CaasNetwork.doctree │ │ ├── New-CaasNetworkDomain.doctree │ │ ├── New-CaasNetworkPublicIpBlock.doctree │ │ ├── New-CaasPersistenceProfile.doctree │ │ ├── New-CaasPortList.doctree │ │ ├── New-CaasPortRangeType.doctree │ │ ├── New-CaasProbe.doctree │ │ ├── New-CaasRealServer.doctree │ │ ├── New-CaasServer.doctree │ │ ├── New-CaasServerAntiAffinityRule.doctree │ │ ├── New-CaasServerCloneToCustomerImage.doctree │ │ ├── New-CaasServerDetails.doctree │ │ ├── New-CaasServerFarm.doctree │ │ ├── New-CaasServerNic.doctree │ │ ├── New-CaasServerOnNetworkDomain.doctree │ │ ├── New-CaasTagKey.doctree │ │ ├── New-CaasUploadCustomerImage.doctree │ │ ├── New-CaasVIPVirtualListener.doctree │ │ ├── New-CaasVip.doctree │ │ ├── New-CaasVipNode.doctree │ │ ├── New-CaasVipPool.doctree │ │ ├── New-CaasVipPoolMember.doctree │ │ ├── New-CaasVlan.doctree │ │ ├── Remove-CaasAccount.doctree │ │ ├── Remove-CaasAclRule.doctree │ │ ├── Remove-CaasBackupClient.doctree │ │ ├── Remove-CaasBackupJob.doctree │ │ ├── Remove-CaasConnection.doctree │ │ ├── Remove-CaasCustomerImage.doctree │ │ ├── Remove-CaasFirewallRule.doctree │ │ ├── Remove-CaasFromServerFarm.doctree │ │ ├── Remove-CaasIpAddressList.doctree │ │ ├── Remove-CaasNatRule.doctree │ │ ├── Remove-CaasNetwork.doctree │ │ ├── Remove-CaasNetworkDomain.doctree │ │ ├── Remove-CaasNetworkPublicIpBlock.doctree │ │ ├── Remove-CaasPersistenceProfile.doctree │ │ ├── Remove-CaasPortList.doctree │ │ ├── Remove-CaasProbe.doctree │ │ ├── Remove-CaasRealServer.doctree │ │ ├── Remove-CaasReserveIPv6Address.doctree │ │ ├── Remove-CaasReservePrivateIpv4Address.doctree │ │ ├── Remove-CaasServer.doctree │ │ ├── Remove-CaasServerAntiAffinityRule.doctree │ │ ├── Remove-CaasServerDisk.doctree │ │ ├── Remove-CaasServerFarm.doctree │ │ ├── Remove-CaasTag.doctree │ │ ├── Remove-CaasTagKey.doctree │ │ ├── Remove-CaasVIPVirtualListener.doctree │ │ ├── Remove-CaasVip.doctree │ │ ├── Remove-CaasVipNode.doctree │ │ ├── Remove-CaasVipPool.doctree │ │ ├── Remove-CaasVipPoolMember.doctree │ │ ├── Remove-CaasVlan.doctree │ │ ├── Reset-CaasAccountPassword.doctree │ │ ├── Resize-CaasServerDisk.doctree │ │ ├── Set-CaasAccount.doctree │ │ ├── Set-CaasAccountPrimaryAdministrator.doctree │ │ ├── Set-CaasActiveConnection.doctree │ │ ├── Set-CaasBackupClient.doctree │ │ ├── Set-CaasBackupPlan.doctree │ │ ├── Set-CaasFirewallRule.doctree │ │ ├── Set-CaasNetwork.doctree │ │ ├── Set-CaasNetworkPublicIpBlock.doctree │ │ ├── Set-CaasProbe.doctree │ │ ├── Set-CaasProvisionBackup.doctree │ │ ├── Set-CaasRealServer.doctree │ │ ├── Set-CaasReserveIPv6Address.doctree │ │ ├── Set-CaasReservePrivateIpv4Address.doctree │ │ ├── Set-CaasServer.doctree │ │ ├── Set-CaasServerDiskDetails.doctree │ │ ├── Set-CaasServerDiskSpeed.doctree │ │ ├── Set-CaasServerFarm.doctree │ │ ├── Set-CaasServerMonitoringPlan.doctree │ │ ├── Set-CaasServerSpec.doctree │ │ ├── Set-CaasServerState.doctree │ │ ├── Set-CaasTag.doctree │ │ ├── Set-CaasVIPVirtualListener.doctree │ │ ├── Set-CaasVip.doctree │ │ ├── Set-CaasVipNode.doctree │ │ ├── Set-CaasVipPool.doctree │ │ ├── Set-CaasVipPoolMember.doctree │ │ ├── Test-CaasCompatibility.doctree │ │ ├── Update-CaasCustomerImageMetadata.doctree │ │ ├── Update-CaasIpAddressList.doctree │ │ ├── Update-CaasPortList.doctree │ │ ├── Update-CaasServerVMwareTools.doctree │ │ ├── Update-CaasServerVirtualHardware.doctree │ │ ├── Update-CaasTagKey.doctree │ │ ├── Wait-CaasServerOperation.doctree │ │ ├── environment.pickle │ │ └── index.doctree │ └── html │ │ ├── .buildinfo │ │ ├── Add-CaasBackupClient.html │ │ ├── Add-CaasServerDisk.html │ │ ├── Add-CaasToServerFarm.html │ │ ├── Copy-CaasCustomerServerImage.html │ │ ├── Disable-CaasServerMonitoring.html │ │ ├── Enable-CaasServerMonitoring.html │ │ ├── Get-CaasAccounts.html │ │ ├── Get-CaasAclRules.html │ │ ├── Get-CaasAntiAffinityRules.html │ │ ├── Get-CaasBackupClientTypes.html │ │ ├── Get-CaasBackupClients.html │ │ ├── Get-CaasBackupSchedulePolicies.html │ │ ├── Get-CaasBackupStoragePolicies.html │ │ ├── Get-CaasConnection.html │ │ ├── Get-CaasCustomerImage.html │ │ ├── Get-CaasCustomerImageExportHistory.html │ │ ├── Get-CaasCustomerImageExports.html │ │ ├── Get-CaasCustomerImageImports.html │ │ ├── Get-CaasDataCentre.html │ │ ├── Get-CaasDefaultHealthMonitors.html │ │ ├── Get-CaasDefaultIRules.html │ │ ├── Get-CaasDefaultPresistenceProfiles.html │ │ ├── Get-CaasDeployedServer.html │ │ ├── Get-CaasFirewallRule.html │ │ ├── Get-CaasIpAddressList.html │ │ ├── Get-CaasMultiGeoRegions.html │ │ ├── Get-CaasNatRule.html │ │ ├── Get-CaasNetwork.html │ │ ├── Get-CaasNetworkConfiguration.html │ │ ├── Get-CaasNetworkDomain.html │ │ ├── Get-CaasNetworkPublicIpBlock.html │ │ ├── Get-CaasNic.html │ │ ├── Get-CaasOperatingSystem.html │ │ ├── Get-CaasOsImage.html │ │ ├── Get-CaasOvfPackages.html │ │ ├── Get-CaasPersistenceProfile.html │ │ ├── Get-CaasPortList.html │ │ ├── Get-CaasProbe.html │ │ ├── Get-CaasRealServer.html │ │ ├── Get-CaasReserveIPv6Address.html │ │ ├── Get-CaasReservePrivateIpv4Address.html │ │ ├── Get-CaasServer.html │ │ ├── Get-CaasServerAntiAffinityRule.html │ │ ├── Get-CaasServerFarm.html │ │ ├── Get-CaasServerFarmDetails.html │ │ ├── Get-CaasServerMonitoringUsageReport.html │ │ ├── Get-CaasTag.html │ │ ├── Get-CaasTagKey.html │ │ ├── Get-CaasVIPVirtualListener.html │ │ ├── Get-CaasVip.html │ │ ├── Get-CaasVipNode.html │ │ ├── Get-CaasVipPool.html │ │ ├── Get-CaasVipPoolMember.html │ │ ├── Get-CaasVlan.html │ │ ├── New-CaasAccount.html │ │ ├── New-CaasAccountRoles.html │ │ ├── New-CaasAclRule.html │ │ ├── New-CaasBackupJob.html │ │ ├── New-CaasBackupRestoreJob.html │ │ ├── New-CaasConnection.html │ │ ├── New-CaasExportCustomerImage.html │ │ ├── New-CaasFirewallRule.html │ │ ├── New-CaasImportCustomerImage.html │ │ ├── New-CaasIpAddressList.html │ │ ├── New-CaasIpAddressRangeType.html │ │ ├── New-CaasIpAndPortType.html │ │ ├── New-CaasNatRule.html │ │ ├── New-CaasNetwork.html │ │ ├── New-CaasNetworkDomain.html │ │ ├── New-CaasNetworkPublicIpBlock.html │ │ ├── New-CaasPersistenceProfile.html │ │ ├── New-CaasPortList.html │ │ ├── New-CaasPortRangeType.html │ │ ├── New-CaasProbe.html │ │ ├── New-CaasRealServer.html │ │ ├── New-CaasServer.html │ │ ├── New-CaasServerAntiAffinityRule.html │ │ ├── New-CaasServerCloneToCustomerImage.html │ │ ├── New-CaasServerDetails.html │ │ ├── New-CaasServerFarm.html │ │ ├── New-CaasServerNic.html │ │ ├── New-CaasServerOnNetworkDomain.html │ │ ├── New-CaasTagKey.html │ │ ├── New-CaasUploadCustomerImage.html │ │ ├── New-CaasVIPVirtualListener.html │ │ ├── New-CaasVip.html │ │ ├── New-CaasVipNode.html │ │ ├── New-CaasVipPool.html │ │ ├── New-CaasVipPoolMember.html │ │ ├── New-CaasVlan.html │ │ ├── Remove-CaasAccount.html │ │ ├── Remove-CaasAclRule.html │ │ ├── Remove-CaasBackupClient.html │ │ ├── Remove-CaasBackupJob.html │ │ ├── Remove-CaasConnection.html │ │ ├── Remove-CaasCustomerImage.html │ │ ├── Remove-CaasFirewallRule.html │ │ ├── Remove-CaasFromServerFarm.html │ │ ├── Remove-CaasIpAddressList.html │ │ ├── Remove-CaasNatRule.html │ │ ├── Remove-CaasNetwork.html │ │ ├── Remove-CaasNetworkDomain.html │ │ ├── Remove-CaasNetworkPublicIpBlock.html │ │ ├── Remove-CaasPersistenceProfile.html │ │ ├── Remove-CaasPortList.html │ │ ├── Remove-CaasProbe.html │ │ ├── Remove-CaasRealServer.html │ │ ├── Remove-CaasReserveIPv6Address.html │ │ ├── Remove-CaasReservePrivateIpv4Address.html │ │ ├── Remove-CaasServer.html │ │ ├── Remove-CaasServerAntiAffinityRule.html │ │ ├── Remove-CaasServerDisk.html │ │ ├── Remove-CaasServerFarm.html │ │ ├── Remove-CaasTag.html │ │ ├── Remove-CaasTagKey.html │ │ ├── Remove-CaasVIPVirtualListener.html │ │ ├── Remove-CaasVip.html │ │ ├── Remove-CaasVipNode.html │ │ ├── Remove-CaasVipPool.html │ │ ├── Remove-CaasVipPoolMember.html │ │ ├── Remove-CaasVlan.html │ │ ├── Reset-CaasAccountPassword.html │ │ ├── Resize-CaasServerDisk.html │ │ ├── Set-CaasAccount.html │ │ ├── Set-CaasAccountPrimaryAdministrator.html │ │ ├── Set-CaasActiveConnection.html │ │ ├── Set-CaasBackupClient.html │ │ ├── Set-CaasBackupPlan.html │ │ ├── Set-CaasFirewallRule.html │ │ ├── Set-CaasNetwork.html │ │ ├── Set-CaasNetworkPublicIpBlock.html │ │ ├── Set-CaasProbe.html │ │ ├── Set-CaasProvisionBackup.html │ │ ├── Set-CaasRealServer.html │ │ ├── Set-CaasReserveIPv6Address.html │ │ ├── Set-CaasReservePrivateIpv4Address.html │ │ ├── Set-CaasServer.html │ │ ├── Set-CaasServerDiskDetails.html │ │ ├── Set-CaasServerDiskSpeed.html │ │ ├── Set-CaasServerFarm.html │ │ ├── Set-CaasServerMonitoringPlan.html │ │ ├── Set-CaasServerSpec.html │ │ ├── Set-CaasServerState.html │ │ ├── Set-CaasTag.html │ │ ├── Set-CaasVIPVirtualListener.html │ │ ├── Set-CaasVip.html │ │ ├── Set-CaasVipNode.html │ │ ├── Set-CaasVipPool.html │ │ ├── Set-CaasVipPoolMember.html │ │ ├── Test-CaasCompatibility.html │ │ ├── Update-CaasCustomerImageMetadata.html │ │ ├── Update-CaasIpAddressList.html │ │ ├── Update-CaasPortList.html │ │ ├── Update-CaasServerVMwareTools.html │ │ ├── Update-CaasServerVirtualHardware.html │ │ ├── Update-CaasTagKey.html │ │ ├── Wait-CaasServerOperation.html │ │ ├── _sources │ │ ├── Add-CaasBackupClient.txt │ │ ├── Add-CaasServerDisk.txt │ │ ├── Add-CaasToServerFarm.txt │ │ ├── Copy-CaasCustomerServerImage.txt │ │ ├── Disable-CaasServerMonitoring.txt │ │ ├── Enable-CaasServerMonitoring.txt │ │ ├── Get-CaasAccounts.txt │ │ ├── Get-CaasAclRules.txt │ │ ├── Get-CaasAntiAffinityRules.txt │ │ ├── Get-CaasBackupClientTypes.txt │ │ ├── Get-CaasBackupClients.txt │ │ ├── Get-CaasBackupSchedulePolicies.txt │ │ ├── Get-CaasBackupStoragePolicies.txt │ │ ├── Get-CaasConnection.txt │ │ ├── Get-CaasCustomerImage.txt │ │ ├── Get-CaasCustomerImageExportHistory.txt │ │ ├── Get-CaasCustomerImageExports.txt │ │ ├── Get-CaasCustomerImageImports.txt │ │ ├── Get-CaasDataCentre.txt │ │ ├── Get-CaasDefaultHealthMonitors.txt │ │ ├── Get-CaasDefaultIRules.txt │ │ ├── Get-CaasDefaultPresistenceProfiles.txt │ │ ├── Get-CaasDeployedServer.txt │ │ ├── Get-CaasFirewallRule.txt │ │ ├── Get-CaasIpAddressList.txt │ │ ├── Get-CaasMultiGeoRegions.txt │ │ ├── Get-CaasNatRule.txt │ │ ├── Get-CaasNetwork.txt │ │ ├── Get-CaasNetworkConfiguration.txt │ │ ├── Get-CaasNetworkDomain.txt │ │ ├── Get-CaasNetworkPublicIpBlock.txt │ │ ├── Get-CaasNic.txt │ │ ├── Get-CaasOperatingSystem.txt │ │ ├── Get-CaasOsImage.txt │ │ ├── Get-CaasOvfPackages.txt │ │ ├── Get-CaasPersistenceProfile.txt │ │ ├── Get-CaasPortList.txt │ │ ├── Get-CaasProbe.txt │ │ ├── Get-CaasRealServer.txt │ │ ├── Get-CaasReserveIPv6Address.txt │ │ ├── Get-CaasReservePrivateIpv4Address.txt │ │ ├── Get-CaasServer.txt │ │ ├── Get-CaasServerAntiAffinityRule.txt │ │ ├── Get-CaasServerFarm.txt │ │ ├── Get-CaasServerFarmDetails.txt │ │ ├── Get-CaasServerMonitoringUsageReport.txt │ │ ├── Get-CaasTag.txt │ │ ├── Get-CaasTagKey.txt │ │ ├── Get-CaasVIPVirtualListener.txt │ │ ├── Get-CaasVip.txt │ │ ├── Get-CaasVipNode.txt │ │ ├── Get-CaasVipPool.txt │ │ ├── Get-CaasVipPoolMember.txt │ │ ├── Get-CaasVlan.txt │ │ ├── New-CaasAccount.txt │ │ ├── New-CaasAccountRoles.txt │ │ ├── New-CaasAclRule.txt │ │ ├── New-CaasBackupJob.txt │ │ ├── New-CaasBackupRestoreJob.txt │ │ ├── New-CaasConnection.txt │ │ ├── New-CaasExportCustomerImage.txt │ │ ├── New-CaasFirewallRule.txt │ │ ├── New-CaasImportCustomerImage.txt │ │ ├── New-CaasIpAddressList.txt │ │ ├── New-CaasIpAddressRangeType.txt │ │ ├── New-CaasIpAndPortType.txt │ │ ├── New-CaasNatRule.txt │ │ ├── New-CaasNetwork.txt │ │ ├── New-CaasNetworkDomain.txt │ │ ├── New-CaasNetworkPublicIpBlock.txt │ │ ├── New-CaasPersistenceProfile.txt │ │ ├── New-CaasPortList.txt │ │ ├── New-CaasPortRangeType.txt │ │ ├── New-CaasProbe.txt │ │ ├── New-CaasRealServer.txt │ │ ├── New-CaasServer.txt │ │ ├── New-CaasServerAntiAffinityRule.txt │ │ ├── New-CaasServerCloneToCustomerImage.txt │ │ ├── New-CaasServerDetails.txt │ │ ├── New-CaasServerFarm.txt │ │ ├── New-CaasServerNic.txt │ │ ├── New-CaasServerOnNetworkDomain.txt │ │ ├── New-CaasTagKey.txt │ │ ├── New-CaasUploadCustomerImage.txt │ │ ├── New-CaasVIPVirtualListener.txt │ │ ├── New-CaasVip.txt │ │ ├── New-CaasVipNode.txt │ │ ├── New-CaasVipPool.txt │ │ ├── New-CaasVipPoolMember.txt │ │ ├── New-CaasVlan.txt │ │ ├── Remove-CaasAccount.txt │ │ ├── Remove-CaasAclRule.txt │ │ ├── Remove-CaasBackupClient.txt │ │ ├── Remove-CaasBackupJob.txt │ │ ├── Remove-CaasConnection.txt │ │ ├── Remove-CaasCustomerImage.txt │ │ ├── Remove-CaasFirewallRule.txt │ │ ├── Remove-CaasFromServerFarm.txt │ │ ├── Remove-CaasIpAddressList.txt │ │ ├── Remove-CaasNatRule.txt │ │ ├── Remove-CaasNetwork.txt │ │ ├── Remove-CaasNetworkDomain.txt │ │ ├── Remove-CaasNetworkPublicIpBlock.txt │ │ ├── Remove-CaasPersistenceProfile.txt │ │ ├── Remove-CaasPortList.txt │ │ ├── Remove-CaasProbe.txt │ │ ├── Remove-CaasRealServer.txt │ │ ├── Remove-CaasReserveIPv6Address.txt │ │ ├── Remove-CaasReservePrivateIpv4Address.txt │ │ ├── Remove-CaasServer.txt │ │ ├── Remove-CaasServerAntiAffinityRule.txt │ │ ├── Remove-CaasServerDisk.txt │ │ ├── Remove-CaasServerFarm.txt │ │ ├── Remove-CaasTag.txt │ │ ├── Remove-CaasTagKey.txt │ │ ├── Remove-CaasVIPVirtualListener.txt │ │ ├── Remove-CaasVip.txt │ │ ├── Remove-CaasVipNode.txt │ │ ├── Remove-CaasVipPool.txt │ │ ├── Remove-CaasVipPoolMember.txt │ │ ├── Remove-CaasVlan.txt │ │ ├── Reset-CaasAccountPassword.txt │ │ ├── Resize-CaasServerDisk.txt │ │ ├── Set-CaasAccount.txt │ │ ├── Set-CaasAccountPrimaryAdministrator.txt │ │ ├── Set-CaasActiveConnection.txt │ │ ├── Set-CaasBackupClient.txt │ │ ├── Set-CaasBackupPlan.txt │ │ ├── Set-CaasFirewallRule.txt │ │ ├── Set-CaasNetwork.txt │ │ ├── Set-CaasNetworkPublicIpBlock.txt │ │ ├── Set-CaasProbe.txt │ │ ├── Set-CaasProvisionBackup.txt │ │ ├── Set-CaasRealServer.txt │ │ ├── Set-CaasReserveIPv6Address.txt │ │ ├── Set-CaasReservePrivateIpv4Address.txt │ │ ├── Set-CaasServer.txt │ │ ├── Set-CaasServerDiskDetails.txt │ │ ├── Set-CaasServerDiskSpeed.txt │ │ ├── Set-CaasServerFarm.txt │ │ ├── Set-CaasServerMonitoringPlan.txt │ │ ├── Set-CaasServerSpec.txt │ │ ├── Set-CaasServerState.txt │ │ ├── Set-CaasTag.txt │ │ ├── Set-CaasVIPVirtualListener.txt │ │ ├── Set-CaasVip.txt │ │ ├── Set-CaasVipNode.txt │ │ ├── Set-CaasVipPool.txt │ │ ├── Set-CaasVipPoolMember.txt │ │ ├── Test-CaasCompatibility.txt │ │ ├── Update-CaasCustomerImageMetadata.txt │ │ ├── Update-CaasIpAddressList.txt │ │ ├── Update-CaasPortList.txt │ │ ├── Update-CaasServerVMwareTools.txt │ │ ├── Update-CaasServerVirtualHardware.txt │ │ ├── Update-CaasTagKey.txt │ │ ├── Wait-CaasServerOperation.txt │ │ └── index.txt │ │ ├── _static │ │ ├── ajax-loader.gif │ │ ├── alabaster.css │ │ ├── basic.css │ │ ├── comment-bright.png │ │ ├── comment-close.png │ │ ├── comment.png │ │ ├── custom.css │ │ ├── doctools.js │ │ ├── down-pressed.png │ │ ├── down.png │ │ ├── file.png │ │ ├── jquery-1.11.1.js │ │ ├── jquery.js │ │ ├── minus.png │ │ ├── plus.png │ │ ├── pygments.css │ │ ├── searchtools.js │ │ ├── underscore-1.3.1.js │ │ ├── underscore.js │ │ ├── up-pressed.png │ │ ├── up.png │ │ └── websupport.js │ │ ├── genindex.html │ │ ├── index.html │ │ ├── objects.inv │ │ ├── search.html │ │ └── searchindex.js │ ├── conf.py │ ├── index.rst │ └── make.bat ├── powershell.yml └── x2C ├── x2C.lib ├── CaaS_PS.snk ├── CompatibilityTests.cs ├── DiskSpec.cs ├── IpAddressHelper.cs ├── NetworkInterfaceSpec.cs ├── OSInfo.cs ├── Properties │ └── AssemblyInfo.cs ├── ServerCreationType.cs ├── ServerCreationTypeFactory.cs ├── TestOutcome.cs ├── TestOutcomeResult.cs ├── TestingOutcomeType.cs ├── app.config ├── packages.config └── x2C.lib.csproj └── x2C └── packages.config /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/.gitignore -------------------------------------------------------------------------------- /CaaS_PS (unit-test).ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/CaaS_PS (unit-test).ruleset -------------------------------------------------------------------------------- /CaaS_PS (web).ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/CaaS_PS (web).ruleset -------------------------------------------------------------------------------- /CaaS_PS.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/CaaS_PS.ruleset -------------------------------------------------------------------------------- /CaaS_PS.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/CaaS_PS.snk -------------------------------------------------------------------------------- /CustomDictionary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/CustomDictionary.xml -------------------------------------------------------------------------------- /Docker/DockerCaaS.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Docker/DockerCaaS.psd1 -------------------------------------------------------------------------------- /Docker/Posh-SSH/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Docker/Posh-SSH/.gitattributes -------------------------------------------------------------------------------- /Docker/Posh-SSH/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Docker/Posh-SSH/.gitignore -------------------------------------------------------------------------------- /Docker/Posh-SSH/Assembly/Ionic.Zlib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Docker/Posh-SSH/Assembly/Ionic.Zlib.dll -------------------------------------------------------------------------------- /Docker/Posh-SSH/Assembly/Renci.SshNet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Docker/Posh-SSH/Assembly/Renci.SshNet.dll -------------------------------------------------------------------------------- /Docker/Posh-SSH/Format/Renci.SshNet.SshCommand.Format.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Docker/Posh-SSH/Format/Renci.SshNet.SshCommand.Format.ps1xml -------------------------------------------------------------------------------- /Docker/Posh-SSH/Format/SFTPSession.Format.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Docker/Posh-SSH/Format/SFTPSession.Format.ps1xml -------------------------------------------------------------------------------- /Docker/Posh-SSH/Format/SSHSession.Format.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Docker/Posh-SSH/Format/SSHSession.Format.ps1xml -------------------------------------------------------------------------------- /Docker/Posh-SSH/License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Docker/Posh-SSH/License.md -------------------------------------------------------------------------------- /Docker/Posh-SSH/PortForward.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Docker/Posh-SSH/PortForward.ps1 -------------------------------------------------------------------------------- /Docker/Posh-SSH/Posh-SSH.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Docker/Posh-SSH/Posh-SSH.psd1 -------------------------------------------------------------------------------- /Docker/Posh-SSH/Posh-SSH.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Docker/Posh-SSH/Posh-SSH.psm1 -------------------------------------------------------------------------------- /Docker/Posh-SSH/PoshSSH.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Docker/Posh-SSH/PoshSSH.dll -------------------------------------------------------------------------------- /Docker/Posh-SSH/PoshSSH/PoshSSH.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Docker/Posh-SSH/PoshSSH/PoshSSH.sln -------------------------------------------------------------------------------- /Docker/Posh-SSH/PoshSSH/PoshSSH/ConnectionInfoGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Docker/Posh-SSH/PoshSSH/PoshSSH/ConnectionInfoGenerator.cs -------------------------------------------------------------------------------- /Docker/Posh-SSH/PoshSSH/PoshSSH/GetScpFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Docker/Posh-SSH/PoshSSH/PoshSSH/GetScpFile.cs -------------------------------------------------------------------------------- /Docker/Posh-SSH/PoshSSH/PoshSSH/GetScpFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Docker/Posh-SSH/PoshSSH/PoshSSH/GetScpFolder.cs -------------------------------------------------------------------------------- /Docker/Posh-SSH/PoshSSH/PoshSSH/GetSftpFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Docker/Posh-SSH/PoshSSH/PoshSSH/GetSftpFile.cs -------------------------------------------------------------------------------- /Docker/Posh-SSH/PoshSSH/PoshSSH/NewSSHSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Docker/Posh-SSH/PoshSSH/PoshSSH/NewSSHSession.cs -------------------------------------------------------------------------------- /Docker/Posh-SSH/PoshSSH/PoshSSH/NewSftpSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Docker/Posh-SSH/PoshSSH/PoshSSH/NewSftpSession.cs -------------------------------------------------------------------------------- /Docker/Posh-SSH/PoshSSH/PoshSSH/PoshSSH.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Docker/Posh-SSH/PoshSSH/PoshSSH/PoshSSH.csproj -------------------------------------------------------------------------------- /Docker/Posh-SSH/PoshSSH/PoshSSH/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Docker/Posh-SSH/PoshSSH/PoshSSH/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Docker/Posh-SSH/PoshSSH/PoshSSH/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Docker/Posh-SSH/PoshSSH/PoshSSH/Properties/Resources.resx -------------------------------------------------------------------------------- /Docker/Posh-SSH/PoshSSH/PoshSSH/SessionObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Docker/Posh-SSH/PoshSSH/PoshSSH/SessionObject.cs -------------------------------------------------------------------------------- /Docker/Posh-SSH/PoshSSH/PoshSSH/SetScpFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Docker/Posh-SSH/PoshSSH/PoshSSH/SetScpFile.cs -------------------------------------------------------------------------------- /Docker/Posh-SSH/PoshSSH/PoshSSH/SetScpFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Docker/Posh-SSH/PoshSSH/PoshSSH/SetScpFolder.cs -------------------------------------------------------------------------------- /Docker/Posh-SSH/PoshSSH/PoshSSH/SetSftpFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Docker/Posh-SSH/PoshSSH/PoshSSH/SetSftpFile.cs -------------------------------------------------------------------------------- /Docker/Posh-SSH/PoshSSH/PoshSSH/SshModHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Docker/Posh-SSH/PoshSSH/PoshSSH/SshModHelper.cs -------------------------------------------------------------------------------- /Docker/Posh-SSH/PoshSSH/PoshSSH/TrustedKeyMng.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Docker/Posh-SSH/PoshSSH/PoshSSH/TrustedKeyMng.cs -------------------------------------------------------------------------------- /Docker/Posh-SSH/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Docker/Posh-SSH/Readme.md -------------------------------------------------------------------------------- /Docker/Posh-SSH/Sftp.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Docker/Posh-SSH/Sftp.ps1 -------------------------------------------------------------------------------- /Docker/Posh-SSH/Trust.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Docker/Posh-SSH/Trust.ps1 -------------------------------------------------------------------------------- /Docker/Posh-SSH/en-US/Posh-SSH.psm1-Help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Docker/Posh-SSH/en-US/Posh-SSH.psm1-Help.xml -------------------------------------------------------------------------------- /Docker/Posh-SSH/en-US/PoshSSH.dll-help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Docker/Posh-SSH/en-US/PoshSSH.dll-help.xml -------------------------------------------------------------------------------- /Docker/Posh-SSH/tests/Get-SSHSession.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Docker/Posh-SSH/tests/Get-SSHSession.Tests.ps1 -------------------------------------------------------------------------------- /Docker/Posh-SSH/tests/Remove-SSHSession.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Docker/Posh-SSH/tests/Remove-SSHSession.Tests.ps1 -------------------------------------------------------------------------------- /Docker/Scripts/DockerModuleFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Docker/Scripts/DockerModuleFunctions.ps1 -------------------------------------------------------------------------------- /Docker/Scripts/DockerTest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Docker/Scripts/DockerTest.ps1 -------------------------------------------------------------------------------- /DocumentPowerShell.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/DocumentPowerShell.ps1 -------------------------------------------------------------------------------- /Get-HelpToRst.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Get-HelpToRst.ps1 -------------------------------------------------------------------------------- /Help/DD.CBU.Compute.Api.Client.dxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/DD.CBU.Compute.Api.Client.dxc -------------------------------------------------------------------------------- /Help/DD.CBU.Compute.Api.Contracts.dxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/DD.CBU.Compute.Api.Contracts.dxc -------------------------------------------------------------------------------- /Help/Default.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/Default.chm -------------------------------------------------------------------------------- /Help/DimensionData.ComputeClient.dxp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/DimensionData.ComputeClient.dxp -------------------------------------------------------------------------------- /Help/DimensionData.ComputeClient.dxp.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/DimensionData.ComputeClient.dxp.bak -------------------------------------------------------------------------------- /Help/DimensionData.ComputeClient.dxw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/DimensionData.ComputeClient.dxw -------------------------------------------------------------------------------- /Help/PowerShell Commands/Add-CaaSBackupClient.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/PowerShell Commands/Add-CaaSBackupClient.html -------------------------------------------------------------------------------- /Help/PowerShell Commands/Add-CaasServerDisk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/PowerShell Commands/Add-CaasServerDisk.html -------------------------------------------------------------------------------- /Help/PowerShell Commands/Add-CaasToServerFarm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/PowerShell Commands/Add-CaasToServerFarm.html -------------------------------------------------------------------------------- /Help/PowerShell Commands/Find-CaasVendorAccount.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/PowerShell Commands/Find-CaasVendorAccount.html -------------------------------------------------------------------------------- /Help/PowerShell Commands/Get-CaasAccounts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/PowerShell Commands/Get-CaasAccounts.html -------------------------------------------------------------------------------- /Help/PowerShell Commands/Get-CaasAclRules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/PowerShell Commands/Get-CaasAclRules.html -------------------------------------------------------------------------------- /Help/PowerShell Commands/Get-CaasBackupClients.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/PowerShell Commands/Get-CaasBackupClients.html -------------------------------------------------------------------------------- /Help/designtime/delete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/designtime/delete.gif -------------------------------------------------------------------------------- /Help/designtime/designtime.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/designtime/designtime.css -------------------------------------------------------------------------------- /Help/designtime/edit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/designtime/edit.gif -------------------------------------------------------------------------------- /Help/designtime/new.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/designtime/new.gif -------------------------------------------------------------------------------- /Help/designtime/search.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/designtime/search.gif -------------------------------------------------------------------------------- /Help/dotnetimages/1pixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/dotnetimages/1pixel.png -------------------------------------------------------------------------------- /Help/dotnetimages/Class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/dotnetimages/Class.png -------------------------------------------------------------------------------- /Help/dotnetimages/Constructor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/dotnetimages/Constructor.png -------------------------------------------------------------------------------- /Help/dotnetimages/Delegate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/dotnetimages/Delegate.png -------------------------------------------------------------------------------- /Help/dotnetimages/Enumeration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/dotnetimages/Enumeration.png -------------------------------------------------------------------------------- /Help/dotnetimages/Event.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/dotnetimages/Event.png -------------------------------------------------------------------------------- /Help/dotnetimages/Field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/dotnetimages/Field.png -------------------------------------------------------------------------------- /Help/dotnetimages/Interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/dotnetimages/Interface.png -------------------------------------------------------------------------------- /Help/dotnetimages/Method.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/dotnetimages/Method.png -------------------------------------------------------------------------------- /Help/dotnetimages/Operator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/dotnetimages/Operator.png -------------------------------------------------------------------------------- /Help/dotnetimages/Property.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/dotnetimages/Property.png -------------------------------------------------------------------------------- /Help/dotnetimages/Structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/dotnetimages/Structure.png -------------------------------------------------------------------------------- /Help/dotnetimages/collapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/dotnetimages/collapse.png -------------------------------------------------------------------------------- /Help/dotnetimages/copycode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/dotnetimages/copycode.png -------------------------------------------------------------------------------- /Help/dotnetimages/dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/dotnetimages/dropdown.png -------------------------------------------------------------------------------- /Help/dotnetimages/expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/dotnetimages/expand.png -------------------------------------------------------------------------------- /Help/dotnetimages/extensionmethod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/dotnetimages/extensionmethod.png -------------------------------------------------------------------------------- /Help/dotnetimages/internalConstructor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/dotnetimages/internalConstructor.png -------------------------------------------------------------------------------- /Help/dotnetimages/internalEvent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/dotnetimages/internalEvent.png -------------------------------------------------------------------------------- /Help/dotnetimages/internalField.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/dotnetimages/internalField.png -------------------------------------------------------------------------------- /Help/dotnetimages/internalMethod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/dotnetimages/internalMethod.png -------------------------------------------------------------------------------- /Help/dotnetimages/internalOperator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/dotnetimages/internalOperator.png -------------------------------------------------------------------------------- /Help/dotnetimages/internalProperty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/dotnetimages/internalProperty.png -------------------------------------------------------------------------------- /Help/dotnetimages/isnew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/dotnetimages/isnew.png -------------------------------------------------------------------------------- /Help/dotnetimages/privateConstructor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/dotnetimages/privateConstructor.png -------------------------------------------------------------------------------- /Help/dotnetimages/privateEvent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/dotnetimages/privateEvent.png -------------------------------------------------------------------------------- /Help/dotnetimages/privateField.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/dotnetimages/privateField.png -------------------------------------------------------------------------------- /Help/dotnetimages/privateMethod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/dotnetimages/privateMethod.png -------------------------------------------------------------------------------- /Help/dotnetimages/privateOperator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/dotnetimages/privateOperator.png -------------------------------------------------------------------------------- /Help/dotnetimages/privateProperty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/dotnetimages/privateProperty.png -------------------------------------------------------------------------------- /Help/dotnetimages/protected internalConstructor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/dotnetimages/protected internalConstructor.png -------------------------------------------------------------------------------- /Help/dotnetimages/protected internalEvent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/dotnetimages/protected internalEvent.png -------------------------------------------------------------------------------- /Help/dotnetimages/protected internalField.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/dotnetimages/protected internalField.png -------------------------------------------------------------------------------- /Help/dotnetimages/protected internalMethod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/dotnetimages/protected internalMethod.png -------------------------------------------------------------------------------- /Help/dotnetimages/protected internalOperator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/dotnetimages/protected internalOperator.png -------------------------------------------------------------------------------- /Help/dotnetimages/protected internalProperty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/dotnetimages/protected internalProperty.png -------------------------------------------------------------------------------- /Help/dotnetimages/protectedConstructor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/dotnetimages/protectedConstructor.png -------------------------------------------------------------------------------- /Help/dotnetimages/protectedEvent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/dotnetimages/protectedEvent.png -------------------------------------------------------------------------------- /Help/dotnetimages/protectedField.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/dotnetimages/protectedField.png -------------------------------------------------------------------------------- /Help/dotnetimages/protectedMethod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/dotnetimages/protectedMethod.png -------------------------------------------------------------------------------- /Help/dotnetimages/protectedOperator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/dotnetimages/protectedOperator.png -------------------------------------------------------------------------------- /Help/dotnetimages/protectedProperty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/dotnetimages/protectedProperty.png -------------------------------------------------------------------------------- /Help/dotnetimages/publicConstructor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/dotnetimages/publicConstructor.png -------------------------------------------------------------------------------- /Help/dotnetimages/publicEvent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/dotnetimages/publicEvent.png -------------------------------------------------------------------------------- /Help/dotnetimages/publicField.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/dotnetimages/publicField.png -------------------------------------------------------------------------------- /Help/dotnetimages/publicMethod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/dotnetimages/publicMethod.png -------------------------------------------------------------------------------- /Help/dotnetimages/publicOperator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/dotnetimages/publicOperator.png -------------------------------------------------------------------------------- /Help/dotnetimages/publicProperty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/dotnetimages/publicProperty.png -------------------------------------------------------------------------------- /Help/dotnetimages/static.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/dotnetimages/static.png -------------------------------------------------------------------------------- /Help/dotnetimages/uiTabsArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/dotnetimages/uiTabsArrow.png -------------------------------------------------------------------------------- /Help/flash/expressinstall.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/flash/expressinstall.swf -------------------------------------------------------------------------------- /Help/help/MshvRedirect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/help/MshvRedirect.html -------------------------------------------------------------------------------- /Help/images/1pixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/images/1pixel.png -------------------------------------------------------------------------------- /Help/images/collapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/images/collapse.png -------------------------------------------------------------------------------- /Help/images/copycode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/images/copycode.png -------------------------------------------------------------------------------- /Help/images/dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/images/dropdown.png -------------------------------------------------------------------------------- /Help/images/expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/images/expand.png -------------------------------------------------------------------------------- /Help/images/hs-caution.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/images/hs-caution.gif -------------------------------------------------------------------------------- /Help/images/hs-collapsed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/images/hs-collapsed.gif -------------------------------------------------------------------------------- /Help/images/hs-enlarge.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/images/hs-enlarge.gif -------------------------------------------------------------------------------- /Help/images/hs-expanded.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/images/hs-expanded.gif -------------------------------------------------------------------------------- /Help/images/hs-heading-collapsed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/images/hs-heading-collapsed.gif -------------------------------------------------------------------------------- /Help/images/hs-heading-expanded.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/images/hs-heading-expanded.gif -------------------------------------------------------------------------------- /Help/images/hs-jquery-loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/images/hs-jquery-loading.png -------------------------------------------------------------------------------- /Help/images/hs-note.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/images/hs-note.gif -------------------------------------------------------------------------------- /Help/images/hs-shrink.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/images/hs-shrink.gif -------------------------------------------------------------------------------- /Help/images/hs-simpletableft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/images/hs-simpletableft.png -------------------------------------------------------------------------------- /Help/images/hs-simpletabright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/images/hs-simpletabright.png -------------------------------------------------------------------------------- /Help/images/hs-tab-active-leftend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/images/hs-tab-active-leftend.png -------------------------------------------------------------------------------- /Help/images/hs-tab-active-rightend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/images/hs-tab-active-rightend.png -------------------------------------------------------------------------------- /Help/images/hs-tab-leftend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/images/hs-tab-leftend.png -------------------------------------------------------------------------------- /Help/images/hs-tab-rightend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/images/hs-tab-rightend.png -------------------------------------------------------------------------------- /Help/images/hs-tip.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/images/hs-tip.gif -------------------------------------------------------------------------------- /Help/images/hs-toggler-collapsed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/images/hs-toggler-collapsed.png -------------------------------------------------------------------------------- /Help/images/hs-toggler-expanded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/images/hs-toggler-expanded.png -------------------------------------------------------------------------------- /Help/images/isnew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/images/isnew.png -------------------------------------------------------------------------------- /Help/images/slimbox-closelabel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/images/slimbox-closelabel.png -------------------------------------------------------------------------------- /Help/images/slimbox-nextlabel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/images/slimbox-nextlabel.png -------------------------------------------------------------------------------- /Help/images/slimbox-prevlabel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/images/slimbox-prevlabel.png -------------------------------------------------------------------------------- /Help/images/uiTabsArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/images/uiTabsArrow.png -------------------------------------------------------------------------------- /Help/script/ZeroClipboard.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/script/ZeroClipboard.swf -------------------------------------------------------------------------------- /Help/script/community.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/script/community.js -------------------------------------------------------------------------------- /Help/script/hs-common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/script/hs-common.js -------------------------------------------------------------------------------- /Help/script/hs-enlargeimage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/script/hs-enlargeimage.js -------------------------------------------------------------------------------- /Help/script/hs-expandcollapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/script/hs-expandcollapse.js -------------------------------------------------------------------------------- /Help/script/hs-heading-expandcollapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/script/hs-heading-expandcollapse.js -------------------------------------------------------------------------------- /Help/script/hs-jquery-common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/script/hs-jquery-common.js -------------------------------------------------------------------------------- /Help/script/hs-tabstrip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/script/hs-tabstrip.js -------------------------------------------------------------------------------- /Help/script/jquery.fitvids.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/script/jquery.fitvids.js -------------------------------------------------------------------------------- /Help/script/mobile.dx.net.2012.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/script/mobile.dx.net.2012.js -------------------------------------------------------------------------------- /Help/script/mobile.glossary.2012.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/script/mobile.glossary.2012.js -------------------------------------------------------------------------------- /Help/script/mobile.topics.2012.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/script/mobile.topics.2012.js -------------------------------------------------------------------------------- /Help/script/modernizr.custom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/script/modernizr.custom.min.js -------------------------------------------------------------------------------- /Help/script/responsive.common.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/script/responsive.common.min.js -------------------------------------------------------------------------------- /Help/script/responsive.dx.net.loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/script/responsive.dx.net.loader.js -------------------------------------------------------------------------------- /Help/script/responsive.glossary.loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/script/responsive.glossary.loader.js -------------------------------------------------------------------------------- /Help/script/responsive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/script/responsive.js -------------------------------------------------------------------------------- /Help/script/responsive.navigationheader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/script/responsive.navigationheader.js -------------------------------------------------------------------------------- /Help/script/responsive.topics.loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/script/responsive.topics.loader.js -------------------------------------------------------------------------------- /Help/script/swfobject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/script/swfobject.js -------------------------------------------------------------------------------- /Help/script/tablet.dx.net.2012.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/script/tablet.dx.net.2012.js -------------------------------------------------------------------------------- /Help/script/tablet.glossary.2012.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/script/tablet.glossary.2012.js -------------------------------------------------------------------------------- /Help/script/tablet.topics.2012.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/script/tablet.topics.2012.js -------------------------------------------------------------------------------- /Help/script/topics.2012.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/script/topics.2012.js -------------------------------------------------------------------------------- /Help/stylesheets/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/stylesheets/bootstrap.css -------------------------------------------------------------------------------- /Help/stylesheets/branding.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/stylesheets/branding.css -------------------------------------------------------------------------------- /Help/stylesheets/branding2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/stylesheets/branding2.css -------------------------------------------------------------------------------- /Help/stylesheets/community.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/stylesheets/community.css -------------------------------------------------------------------------------- /Help/stylesheets/customstyles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/stylesheets/customstyles.css -------------------------------------------------------------------------------- /Help/stylesheets/dx.net.2012.mshv1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/stylesheets/dx.net.2012.mshv1.css -------------------------------------------------------------------------------- /Help/stylesheets/dx.net.2012.mshv2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/stylesheets/dx.net.2012.mshv2.css -------------------------------------------------------------------------------- /Help/stylesheets/help2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/stylesheets/help2.css -------------------------------------------------------------------------------- /Help/stylesheets/hs-boxes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/stylesheets/hs-boxes.css -------------------------------------------------------------------------------- /Help/stylesheets/hs-expandcollapse-booklet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/stylesheets/hs-expandcollapse-booklet.css -------------------------------------------------------------------------------- /Help/stylesheets/hs-expandcollapse.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/stylesheets/hs-expandcollapse.css -------------------------------------------------------------------------------- /Help/stylesheets/hs-heading-expandcollapse-booklet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/stylesheets/hs-heading-expandcollapse-booklet.css -------------------------------------------------------------------------------- /Help/stylesheets/hs-heading-expandcollapse.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/stylesheets/hs-heading-expandcollapse.css -------------------------------------------------------------------------------- /Help/stylesheets/hs-jquery-common.css: -------------------------------------------------------------------------------- 1 | img.hs-thumbnail 2 | { 3 | padding: 5px; 4 | border: 1px solid #CCC; 5 | } -------------------------------------------------------------------------------- /Help/stylesheets/hs-jquery-expand.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/stylesheets/hs-jquery-expand.css -------------------------------------------------------------------------------- /Help/stylesheets/hs-jquery-slimbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/stylesheets/hs-jquery-slimbox.css -------------------------------------------------------------------------------- /Help/stylesheets/hs-simpletab.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/stylesheets/hs-simpletab.css -------------------------------------------------------------------------------- /Help/stylesheets/hs-tabstrip.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/stylesheets/hs-tabstrip.css -------------------------------------------------------------------------------- /Help/stylesheets/jquery.qtip.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/stylesheets/jquery.qtip.css -------------------------------------------------------------------------------- /Help/stylesheets/mobile.dx.net.2012.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/stylesheets/mobile.dx.net.2012.css -------------------------------------------------------------------------------- /Help/stylesheets/mobile.glossary.2012.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/stylesheets/mobile.glossary.2012.css -------------------------------------------------------------------------------- /Help/stylesheets/mobile.topics.2012.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/stylesheets/mobile.topics.2012.css -------------------------------------------------------------------------------- /Help/stylesheets/mshs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/stylesheets/mshs.css -------------------------------------------------------------------------------- /Help/stylesheets/responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/stylesheets/responsive.css -------------------------------------------------------------------------------- /Help/stylesheets/slimbox2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/stylesheets/slimbox2.css -------------------------------------------------------------------------------- /Help/stylesheets/tablet.dx.net.2012.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/stylesheets/tablet.dx.net.2012.css -------------------------------------------------------------------------------- /Help/stylesheets/tablet.glossary.2012.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/stylesheets/tablet.glossary.2012.css -------------------------------------------------------------------------------- /Help/stylesheets/tablet.topics.2012.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/stylesheets/tablet.topics.2012.css -------------------------------------------------------------------------------- /Help/stylesheets/topics.2012.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/stylesheets/topics.2012.css -------------------------------------------------------------------------------- /Help/stylesheets/topics.2012.mshv1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/stylesheets/topics.2012.mshv1.css -------------------------------------------------------------------------------- /Help/stylesheets/topics.2012.mshv2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/Help/stylesheets/topics.2012.mshv2.css -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/LICENSE -------------------------------------------------------------------------------- /PowerShell Examples/Batch Operations.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/PowerShell Examples/Batch Operations.ps1 -------------------------------------------------------------------------------- /PowerShell Examples/Connect to Cisco VPN endpoint.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/PowerShell Examples/Connect to Cisco VPN endpoint.ps1 -------------------------------------------------------------------------------- /PowerShell Examples/Connection.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/PowerShell Examples/Connection.ps1 -------------------------------------------------------------------------------- /PowerShell Examples/CreateVIP.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/PowerShell Examples/CreateVIP.ps1 -------------------------------------------------------------------------------- /PowerShell Examples/CreateVMBackground.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/PowerShell Examples/CreateVMBackground.ps1 -------------------------------------------------------------------------------- /PowerShell Examples/Duplicate Servers in Network.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/PowerShell Examples/Duplicate Servers in Network.ps1 -------------------------------------------------------------------------------- /PowerShell Examples/Export Images from AWS to CaaS.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/PowerShell Examples/Export Images from AWS to CaaS.ps1 -------------------------------------------------------------------------------- /PowerShell Examples/Mcp2DeployServer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/PowerShell Examples/Mcp2DeployServer.ps1 -------------------------------------------------------------------------------- /PowerShell Examples/Shut down machines in Network.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/PowerShell Examples/Shut down machines in Network.ps1 -------------------------------------------------------------------------------- /PowerShell Examples/Start File System backup on all VMs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/PowerShell Examples/Start File System backup on all VMs.ps1 -------------------------------------------------------------------------------- /PowershellModule/.nuget/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/PowershellModule/.nuget/NuGet.Config -------------------------------------------------------------------------------- /PowershellModule/.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/PowershellModule/.nuget/NuGet.exe -------------------------------------------------------------------------------- /PowershellModule/.nuget/NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/PowershellModule/.nuget/NuGet.targets -------------------------------------------------------------------------------- /PowershellModule/.vs/config/applicationhost.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/PowershellModule/.vs/config/applicationhost.config -------------------------------------------------------------------------------- /PowershellModule/CloudCompute.Powershell.Tests/CaaS_Tests.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/PowershellModule/CloudCompute.Powershell.Tests/CaaS_Tests.psd1 -------------------------------------------------------------------------------- /PowershellModule/CloudCompute.Powershell.Tests/RunTests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/PowershellModule/CloudCompute.Powershell.Tests/RunTests.ps1 -------------------------------------------------------------------------------- /PowershellModule/CloudCompute.Powershell.Tests/TestContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/PowershellModule/CloudCompute.Powershell.Tests/TestContext.cs -------------------------------------------------------------------------------- /PowershellModule/CloudCompute.Powershell.Tests/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/PowershellModule/CloudCompute.Powershell.Tests/app.config -------------------------------------------------------------------------------- /PowershellModule/CloudCompute.Powershell.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/PowershellModule/CloudCompute.Powershell.Tests/packages.config -------------------------------------------------------------------------------- /PowershellModule/CloudCompute.Powershell/AWS_Utilities.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/PowershellModule/CloudCompute.Powershell/AWS_Utilities.ps1 -------------------------------------------------------------------------------- /PowershellModule/CloudCompute.Powershell/ApiMessageHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/PowershellModule/CloudCompute.Powershell/ApiMessageHandler.cs -------------------------------------------------------------------------------- /PowershellModule/CloudCompute.Powershell/BackupUtilities.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/PowershellModule/CloudCompute.Powershell/BackupUtilities.psm1 -------------------------------------------------------------------------------- /PowershellModule/CloudCompute.Powershell/CaaS.format.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/PowershellModule/CloudCompute.Powershell/CaaS.format.ps1xml -------------------------------------------------------------------------------- /PowershellModule/CloudCompute.Powershell/CaaS.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/PowershellModule/CloudCompute.Powershell/CaaS.psd1 -------------------------------------------------------------------------------- /PowershellModule/CloudCompute.Powershell/CaasCmdAlias.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/PowershellModule/CloudCompute.Powershell/CaasCmdAlias.ps1 -------------------------------------------------------------------------------- /PowershellModule/CloudCompute.Powershell/EventLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/PowershellModule/CloudCompute.Powershell/EventLogger.cs -------------------------------------------------------------------------------- /PowershellModule/CloudCompute.Powershell/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/PowershellModule/CloudCompute.Powershell/GlobalSuppressions.cs -------------------------------------------------------------------------------- /PowershellModule/CloudCompute.Powershell/HttpTraceLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/PowershellModule/CloudCompute.Powershell/HttpTraceLogger.cs -------------------------------------------------------------------------------- /PowershellModule/CloudCompute.Powershell/HttpTraceMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/PowershellModule/CloudCompute.Powershell/HttpTraceMessage.cs -------------------------------------------------------------------------------- /PowershellModule/CloudCompute.Powershell/Model/AssetType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/PowershellModule/CloudCompute.Powershell/Model/AssetType.cs -------------------------------------------------------------------------------- /PowershellModule/CloudCompute.Powershell/Model/IPVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/PowershellModule/CloudCompute.Powershell/Model/IPVersion.cs -------------------------------------------------------------------------------- /PowershellModule/CloudCompute.Powershell/Model/PortListPort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/PowershellModule/CloudCompute.Powershell/Model/PortListPort.cs -------------------------------------------------------------------------------- /PowershellModule/CloudCompute.Powershell/Model/TagKeyValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/PowershellModule/CloudCompute.Powershell/Model/TagKeyValue.cs -------------------------------------------------------------------------------- /PowershellModule/CloudCompute.Powershell/PSCmdletCaasBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/PowershellModule/CloudCompute.Powershell/PSCmdletCaasBase.cs -------------------------------------------------------------------------------- /PowershellModule/CloudCompute.Powershell/StringExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/PowershellModule/CloudCompute.Powershell/StringExtension.cs -------------------------------------------------------------------------------- /PowershellModule/CloudCompute.Powershell/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/PowershellModule/CloudCompute.Powershell/app.config -------------------------------------------------------------------------------- /PowershellModule/CloudCompute.Powershell/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/PowershellModule/CloudCompute.Powershell/packages.config -------------------------------------------------------------------------------- /PowershellModule/CloudCompute.PowershellModule.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/PowershellModule/CloudCompute.PowershellModule.sln -------------------------------------------------------------------------------- /PowershellModule/CloudCompute.PowershellModule.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/PowershellModule/CloudCompute.PowershellModule.sln.DotSettings -------------------------------------------------------------------------------- /PowershellModule/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/PowershellModule/README.md -------------------------------------------------------------------------------- /PowershellModule/ReleaseNotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/PowershellModule/ReleaseNotes.txt -------------------------------------------------------------------------------- /PowershellModule/Settings.StyleCop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/PowershellModule/Settings.StyleCop -------------------------------------------------------------------------------- /PowershellModule/SolutionAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/PowershellModule/SolutionAssemblyInfo.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/README.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/powershell/Add-CaasBackupClient.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Add-CaasBackupClient.rst -------------------------------------------------------------------------------- /docs/powershell/Add-CaasServerDisk.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Add-CaasServerDisk.rst -------------------------------------------------------------------------------- /docs/powershell/Add-CaasToServerFarm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Add-CaasToServerFarm.rst -------------------------------------------------------------------------------- /docs/powershell/Copy-CaasCustomerServerImage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Copy-CaasCustomerServerImage.rst -------------------------------------------------------------------------------- /docs/powershell/Disable-CaasServerMonitoring.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Disable-CaasServerMonitoring.rst -------------------------------------------------------------------------------- /docs/powershell/Enable-CaasServerMonitoring.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Enable-CaasServerMonitoring.rst -------------------------------------------------------------------------------- /docs/powershell/Get-CaasAccounts.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Get-CaasAccounts.rst -------------------------------------------------------------------------------- /docs/powershell/Get-CaasAclRules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Get-CaasAclRules.rst -------------------------------------------------------------------------------- /docs/powershell/Get-CaasAntiAffinityRules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Get-CaasAntiAffinityRules.rst -------------------------------------------------------------------------------- /docs/powershell/Get-CaasBackupClientTypes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Get-CaasBackupClientTypes.rst -------------------------------------------------------------------------------- /docs/powershell/Get-CaasBackupClients.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Get-CaasBackupClients.rst -------------------------------------------------------------------------------- /docs/powershell/Get-CaasBackupSchedulePolicies.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Get-CaasBackupSchedulePolicies.rst -------------------------------------------------------------------------------- /docs/powershell/Get-CaasBackupStoragePolicies.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Get-CaasBackupStoragePolicies.rst -------------------------------------------------------------------------------- /docs/powershell/Get-CaasConnection.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Get-CaasConnection.rst -------------------------------------------------------------------------------- /docs/powershell/Get-CaasCustomerImage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Get-CaasCustomerImage.rst -------------------------------------------------------------------------------- /docs/powershell/Get-CaasCustomerImageExportHistory.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Get-CaasCustomerImageExportHistory.rst -------------------------------------------------------------------------------- /docs/powershell/Get-CaasCustomerImageExports.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Get-CaasCustomerImageExports.rst -------------------------------------------------------------------------------- /docs/powershell/Get-CaasCustomerImageImports.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Get-CaasCustomerImageImports.rst -------------------------------------------------------------------------------- /docs/powershell/Get-CaasDataCentre.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Get-CaasDataCentre.rst -------------------------------------------------------------------------------- /docs/powershell/Get-CaasDefaultHealthMonitors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Get-CaasDefaultHealthMonitors.rst -------------------------------------------------------------------------------- /docs/powershell/Get-CaasDefaultIRules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Get-CaasDefaultIRules.rst -------------------------------------------------------------------------------- /docs/powershell/Get-CaasDefaultPresistenceProfiles.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Get-CaasDefaultPresistenceProfiles.rst -------------------------------------------------------------------------------- /docs/powershell/Get-CaasDeployedServer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Get-CaasDeployedServer.rst -------------------------------------------------------------------------------- /docs/powershell/Get-CaasFirewallRule.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Get-CaasFirewallRule.rst -------------------------------------------------------------------------------- /docs/powershell/Get-CaasIpAddressList.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Get-CaasIpAddressList.rst -------------------------------------------------------------------------------- /docs/powershell/Get-CaasMultiGeoRegions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Get-CaasMultiGeoRegions.rst -------------------------------------------------------------------------------- /docs/powershell/Get-CaasNatRule.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Get-CaasNatRule.rst -------------------------------------------------------------------------------- /docs/powershell/Get-CaasNetwork.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Get-CaasNetwork.rst -------------------------------------------------------------------------------- /docs/powershell/Get-CaasNetworkConfiguration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Get-CaasNetworkConfiguration.rst -------------------------------------------------------------------------------- /docs/powershell/Get-CaasNetworkDomain.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Get-CaasNetworkDomain.rst -------------------------------------------------------------------------------- /docs/powershell/Get-CaasNetworkPublicIpBlock.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Get-CaasNetworkPublicIpBlock.rst -------------------------------------------------------------------------------- /docs/powershell/Get-CaasNic.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Get-CaasNic.rst -------------------------------------------------------------------------------- /docs/powershell/Get-CaasOperatingSystem.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Get-CaasOperatingSystem.rst -------------------------------------------------------------------------------- /docs/powershell/Get-CaasOsImage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Get-CaasOsImage.rst -------------------------------------------------------------------------------- /docs/powershell/Get-CaasOvfPackages.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Get-CaasOvfPackages.rst -------------------------------------------------------------------------------- /docs/powershell/Get-CaasPersistenceProfile.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Get-CaasPersistenceProfile.rst -------------------------------------------------------------------------------- /docs/powershell/Get-CaasPortList.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Get-CaasPortList.rst -------------------------------------------------------------------------------- /docs/powershell/Get-CaasProbe.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Get-CaasProbe.rst -------------------------------------------------------------------------------- /docs/powershell/Get-CaasRealServer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Get-CaasRealServer.rst -------------------------------------------------------------------------------- /docs/powershell/Get-CaasReserveIPv6Address.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Get-CaasReserveIPv6Address.rst -------------------------------------------------------------------------------- /docs/powershell/Get-CaasReservePrivateIpv4Address.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Get-CaasReservePrivateIpv4Address.rst -------------------------------------------------------------------------------- /docs/powershell/Get-CaasServer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Get-CaasServer.rst -------------------------------------------------------------------------------- /docs/powershell/Get-CaasServerAntiAffinityRule.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Get-CaasServerAntiAffinityRule.rst -------------------------------------------------------------------------------- /docs/powershell/Get-CaasServerFarm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Get-CaasServerFarm.rst -------------------------------------------------------------------------------- /docs/powershell/Get-CaasServerFarmDetails.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Get-CaasServerFarmDetails.rst -------------------------------------------------------------------------------- /docs/powershell/Get-CaasServerMonitoringUsageReport.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Get-CaasServerMonitoringUsageReport.rst -------------------------------------------------------------------------------- /docs/powershell/Get-CaasTag.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Get-CaasTag.rst -------------------------------------------------------------------------------- /docs/powershell/Get-CaasTagKey.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Get-CaasTagKey.rst -------------------------------------------------------------------------------- /docs/powershell/Get-CaasVIPVirtualListener.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Get-CaasVIPVirtualListener.rst -------------------------------------------------------------------------------- /docs/powershell/Get-CaasVip.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Get-CaasVip.rst -------------------------------------------------------------------------------- /docs/powershell/Get-CaasVipNode.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Get-CaasVipNode.rst -------------------------------------------------------------------------------- /docs/powershell/Get-CaasVipPool.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Get-CaasVipPool.rst -------------------------------------------------------------------------------- /docs/powershell/Get-CaasVipPoolMember.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Get-CaasVipPoolMember.rst -------------------------------------------------------------------------------- /docs/powershell/Get-CaasVlan.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Get-CaasVlan.rst -------------------------------------------------------------------------------- /docs/powershell/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Makefile -------------------------------------------------------------------------------- /docs/powershell/New-CaasAccount.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/New-CaasAccount.rst -------------------------------------------------------------------------------- /docs/powershell/New-CaasAccountRoles.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/New-CaasAccountRoles.rst -------------------------------------------------------------------------------- /docs/powershell/New-CaasAclRule.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/New-CaasAclRule.rst -------------------------------------------------------------------------------- /docs/powershell/New-CaasBackupJob.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/New-CaasBackupJob.rst -------------------------------------------------------------------------------- /docs/powershell/New-CaasBackupRestoreJob.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/New-CaasBackupRestoreJob.rst -------------------------------------------------------------------------------- /docs/powershell/New-CaasConnection.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/New-CaasConnection.rst -------------------------------------------------------------------------------- /docs/powershell/New-CaasExportCustomerImage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/New-CaasExportCustomerImage.rst -------------------------------------------------------------------------------- /docs/powershell/New-CaasFirewallRule.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/New-CaasFirewallRule.rst -------------------------------------------------------------------------------- /docs/powershell/New-CaasImportCustomerImage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/New-CaasImportCustomerImage.rst -------------------------------------------------------------------------------- /docs/powershell/New-CaasIpAddressList.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/New-CaasIpAddressList.rst -------------------------------------------------------------------------------- /docs/powershell/New-CaasIpAddressRangeType.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/New-CaasIpAddressRangeType.rst -------------------------------------------------------------------------------- /docs/powershell/New-CaasIpAndPortType.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/New-CaasIpAndPortType.rst -------------------------------------------------------------------------------- /docs/powershell/New-CaasNatRule.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/New-CaasNatRule.rst -------------------------------------------------------------------------------- /docs/powershell/New-CaasNetwork.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/New-CaasNetwork.rst -------------------------------------------------------------------------------- /docs/powershell/New-CaasNetworkDomain.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/New-CaasNetworkDomain.rst -------------------------------------------------------------------------------- /docs/powershell/New-CaasNetworkPublicIpBlock.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/New-CaasNetworkPublicIpBlock.rst -------------------------------------------------------------------------------- /docs/powershell/New-CaasPersistenceProfile.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/New-CaasPersistenceProfile.rst -------------------------------------------------------------------------------- /docs/powershell/New-CaasPortList.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/New-CaasPortList.rst -------------------------------------------------------------------------------- /docs/powershell/New-CaasPortRangeType.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/New-CaasPortRangeType.rst -------------------------------------------------------------------------------- /docs/powershell/New-CaasProbe.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/New-CaasProbe.rst -------------------------------------------------------------------------------- /docs/powershell/New-CaasRealServer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/New-CaasRealServer.rst -------------------------------------------------------------------------------- /docs/powershell/New-CaasServer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/New-CaasServer.rst -------------------------------------------------------------------------------- /docs/powershell/New-CaasServerAntiAffinityRule.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/New-CaasServerAntiAffinityRule.rst -------------------------------------------------------------------------------- /docs/powershell/New-CaasServerCloneToCustomerImage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/New-CaasServerCloneToCustomerImage.rst -------------------------------------------------------------------------------- /docs/powershell/New-CaasServerDetails.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/New-CaasServerDetails.rst -------------------------------------------------------------------------------- /docs/powershell/New-CaasServerFarm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/New-CaasServerFarm.rst -------------------------------------------------------------------------------- /docs/powershell/New-CaasServerNic.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/New-CaasServerNic.rst -------------------------------------------------------------------------------- /docs/powershell/New-CaasServerOnNetworkDomain.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/New-CaasServerOnNetworkDomain.rst -------------------------------------------------------------------------------- /docs/powershell/New-CaasTagKey.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/New-CaasTagKey.rst -------------------------------------------------------------------------------- /docs/powershell/New-CaasUploadCustomerImage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/New-CaasUploadCustomerImage.rst -------------------------------------------------------------------------------- /docs/powershell/New-CaasVIPVirtualListener.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/New-CaasVIPVirtualListener.rst -------------------------------------------------------------------------------- /docs/powershell/New-CaasVip.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/New-CaasVip.rst -------------------------------------------------------------------------------- /docs/powershell/New-CaasVipNode.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/New-CaasVipNode.rst -------------------------------------------------------------------------------- /docs/powershell/New-CaasVipPool.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/New-CaasVipPool.rst -------------------------------------------------------------------------------- /docs/powershell/New-CaasVipPoolMember.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/New-CaasVipPoolMember.rst -------------------------------------------------------------------------------- /docs/powershell/New-CaasVlan.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/New-CaasVlan.rst -------------------------------------------------------------------------------- /docs/powershell/Remove-CaasAccount.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Remove-CaasAccount.rst -------------------------------------------------------------------------------- /docs/powershell/Remove-CaasAclRule.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Remove-CaasAclRule.rst -------------------------------------------------------------------------------- /docs/powershell/Remove-CaasBackupClient.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Remove-CaasBackupClient.rst -------------------------------------------------------------------------------- /docs/powershell/Remove-CaasBackupJob.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Remove-CaasBackupJob.rst -------------------------------------------------------------------------------- /docs/powershell/Remove-CaasConnection.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Remove-CaasConnection.rst -------------------------------------------------------------------------------- /docs/powershell/Remove-CaasCustomerImage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Remove-CaasCustomerImage.rst -------------------------------------------------------------------------------- /docs/powershell/Remove-CaasFirewallRule.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Remove-CaasFirewallRule.rst -------------------------------------------------------------------------------- /docs/powershell/Remove-CaasFromServerFarm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Remove-CaasFromServerFarm.rst -------------------------------------------------------------------------------- /docs/powershell/Remove-CaasIpAddressList.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Remove-CaasIpAddressList.rst -------------------------------------------------------------------------------- /docs/powershell/Remove-CaasNatRule.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Remove-CaasNatRule.rst -------------------------------------------------------------------------------- /docs/powershell/Remove-CaasNetwork.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Remove-CaasNetwork.rst -------------------------------------------------------------------------------- /docs/powershell/Remove-CaasNetworkDomain.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Remove-CaasNetworkDomain.rst -------------------------------------------------------------------------------- /docs/powershell/Remove-CaasNetworkPublicIpBlock.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Remove-CaasNetworkPublicIpBlock.rst -------------------------------------------------------------------------------- /docs/powershell/Remove-CaasPersistenceProfile.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Remove-CaasPersistenceProfile.rst -------------------------------------------------------------------------------- /docs/powershell/Remove-CaasPortList.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Remove-CaasPortList.rst -------------------------------------------------------------------------------- /docs/powershell/Remove-CaasProbe.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Remove-CaasProbe.rst -------------------------------------------------------------------------------- /docs/powershell/Remove-CaasRealServer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Remove-CaasRealServer.rst -------------------------------------------------------------------------------- /docs/powershell/Remove-CaasReserveIPv6Address.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Remove-CaasReserveIPv6Address.rst -------------------------------------------------------------------------------- /docs/powershell/Remove-CaasReservePrivateIpv4Address.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Remove-CaasReservePrivateIpv4Address.rst -------------------------------------------------------------------------------- /docs/powershell/Remove-CaasServer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Remove-CaasServer.rst -------------------------------------------------------------------------------- /docs/powershell/Remove-CaasServerAntiAffinityRule.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Remove-CaasServerAntiAffinityRule.rst -------------------------------------------------------------------------------- /docs/powershell/Remove-CaasServerDisk.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Remove-CaasServerDisk.rst -------------------------------------------------------------------------------- /docs/powershell/Remove-CaasServerFarm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Remove-CaasServerFarm.rst -------------------------------------------------------------------------------- /docs/powershell/Remove-CaasTag.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Remove-CaasTag.rst -------------------------------------------------------------------------------- /docs/powershell/Remove-CaasTagKey.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Remove-CaasTagKey.rst -------------------------------------------------------------------------------- /docs/powershell/Remove-CaasVIPVirtualListener.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Remove-CaasVIPVirtualListener.rst -------------------------------------------------------------------------------- /docs/powershell/Remove-CaasVip.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Remove-CaasVip.rst -------------------------------------------------------------------------------- /docs/powershell/Remove-CaasVipNode.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Remove-CaasVipNode.rst -------------------------------------------------------------------------------- /docs/powershell/Remove-CaasVipPool.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Remove-CaasVipPool.rst -------------------------------------------------------------------------------- /docs/powershell/Remove-CaasVipPoolMember.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Remove-CaasVipPoolMember.rst -------------------------------------------------------------------------------- /docs/powershell/Remove-CaasVlan.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Remove-CaasVlan.rst -------------------------------------------------------------------------------- /docs/powershell/Reset-CaasAccountPassword.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Reset-CaasAccountPassword.rst -------------------------------------------------------------------------------- /docs/powershell/Resize-CaasServerDisk.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Resize-CaasServerDisk.rst -------------------------------------------------------------------------------- /docs/powershell/Set-CaasAccount.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Set-CaasAccount.rst -------------------------------------------------------------------------------- /docs/powershell/Set-CaasAccountPrimaryAdministrator.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Set-CaasAccountPrimaryAdministrator.rst -------------------------------------------------------------------------------- /docs/powershell/Set-CaasActiveConnection.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Set-CaasActiveConnection.rst -------------------------------------------------------------------------------- /docs/powershell/Set-CaasBackupClient.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Set-CaasBackupClient.rst -------------------------------------------------------------------------------- /docs/powershell/Set-CaasBackupPlan.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Set-CaasBackupPlan.rst -------------------------------------------------------------------------------- /docs/powershell/Set-CaasFirewallRule.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Set-CaasFirewallRule.rst -------------------------------------------------------------------------------- /docs/powershell/Set-CaasNetwork.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Set-CaasNetwork.rst -------------------------------------------------------------------------------- /docs/powershell/Set-CaasNetworkPublicIpBlock.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Set-CaasNetworkPublicIpBlock.rst -------------------------------------------------------------------------------- /docs/powershell/Set-CaasProbe.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Set-CaasProbe.rst -------------------------------------------------------------------------------- /docs/powershell/Set-CaasProvisionBackup.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Set-CaasProvisionBackup.rst -------------------------------------------------------------------------------- /docs/powershell/Set-CaasRealServer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Set-CaasRealServer.rst -------------------------------------------------------------------------------- /docs/powershell/Set-CaasReserveIPv6Address.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Set-CaasReserveIPv6Address.rst -------------------------------------------------------------------------------- /docs/powershell/Set-CaasReservePrivateIpv4Address.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Set-CaasReservePrivateIpv4Address.rst -------------------------------------------------------------------------------- /docs/powershell/Set-CaasServer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Set-CaasServer.rst -------------------------------------------------------------------------------- /docs/powershell/Set-CaasServerDiskDetails.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Set-CaasServerDiskDetails.rst -------------------------------------------------------------------------------- /docs/powershell/Set-CaasServerDiskSpeed.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Set-CaasServerDiskSpeed.rst -------------------------------------------------------------------------------- /docs/powershell/Set-CaasServerFarm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Set-CaasServerFarm.rst -------------------------------------------------------------------------------- /docs/powershell/Set-CaasServerMonitoringPlan.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Set-CaasServerMonitoringPlan.rst -------------------------------------------------------------------------------- /docs/powershell/Set-CaasServerSpec.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Set-CaasServerSpec.rst -------------------------------------------------------------------------------- /docs/powershell/Set-CaasServerState.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Set-CaasServerState.rst -------------------------------------------------------------------------------- /docs/powershell/Set-CaasTag.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Set-CaasTag.rst -------------------------------------------------------------------------------- /docs/powershell/Set-CaasVIPVirtualListener.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Set-CaasVIPVirtualListener.rst -------------------------------------------------------------------------------- /docs/powershell/Set-CaasVip.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Set-CaasVip.rst -------------------------------------------------------------------------------- /docs/powershell/Set-CaasVipNode.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Set-CaasVipNode.rst -------------------------------------------------------------------------------- /docs/powershell/Set-CaasVipPool.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Set-CaasVipPool.rst -------------------------------------------------------------------------------- /docs/powershell/Set-CaasVipPoolMember.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Set-CaasVipPoolMember.rst -------------------------------------------------------------------------------- /docs/powershell/Test-CaasCompatibility.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Test-CaasCompatibility.rst -------------------------------------------------------------------------------- /docs/powershell/Update-CaasCustomerImageMetadata.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Update-CaasCustomerImageMetadata.rst -------------------------------------------------------------------------------- /docs/powershell/Update-CaasIpAddressList.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Update-CaasIpAddressList.rst -------------------------------------------------------------------------------- /docs/powershell/Update-CaasPortList.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Update-CaasPortList.rst -------------------------------------------------------------------------------- /docs/powershell/Update-CaasServerVMwareTools.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Update-CaasServerVMwareTools.rst -------------------------------------------------------------------------------- /docs/powershell/Update-CaasServerVirtualHardware.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Update-CaasServerVirtualHardware.rst -------------------------------------------------------------------------------- /docs/powershell/Update-CaasTagKey.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Update-CaasTagKey.rst -------------------------------------------------------------------------------- /docs/powershell/Wait-CaasServerOperation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/Wait-CaasServerOperation.rst -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/Add-CaasBackupClient.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/Add-CaasBackupClient.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/Add-CaasServerDisk.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/Add-CaasServerDisk.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/Add-CaasToServerFarm.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/Add-CaasToServerFarm.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/Get-CaasAccounts.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/Get-CaasAccounts.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/Get-CaasAclRules.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/Get-CaasAclRules.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/Get-CaasBackupClients.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/Get-CaasBackupClients.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/Get-CaasConnection.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/Get-CaasConnection.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/Get-CaasCustomerImage.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/Get-CaasCustomerImage.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/Get-CaasDataCentre.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/Get-CaasDataCentre.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/Get-CaasDefaultIRules.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/Get-CaasDefaultIRules.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/Get-CaasDeployedServer.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/Get-CaasDeployedServer.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/Get-CaasFirewallRule.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/Get-CaasFirewallRule.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/Get-CaasIpAddressList.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/Get-CaasIpAddressList.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/Get-CaasNatRule.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/Get-CaasNatRule.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/Get-CaasNetwork.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/Get-CaasNetwork.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/Get-CaasNetworkDomain.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/Get-CaasNetworkDomain.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/Get-CaasNic.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/Get-CaasNic.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/Get-CaasOsImage.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/Get-CaasOsImage.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/Get-CaasOvfPackages.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/Get-CaasOvfPackages.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/Get-CaasPortList.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/Get-CaasPortList.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/Get-CaasProbe.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/Get-CaasProbe.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/Get-CaasRealServer.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/Get-CaasRealServer.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/Get-CaasServer.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/Get-CaasServer.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/Get-CaasServerFarm.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/Get-CaasServerFarm.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/Get-CaasTag.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/Get-CaasTag.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/Get-CaasTagKey.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/Get-CaasTagKey.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/Get-CaasVip.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/Get-CaasVip.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/Get-CaasVipNode.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/Get-CaasVipNode.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/Get-CaasVipPool.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/Get-CaasVipPool.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/Get-CaasVipPoolMember.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/Get-CaasVipPoolMember.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/Get-CaasVlan.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/Get-CaasVlan.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/New-CaasAccount.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/New-CaasAccount.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/New-CaasAccountRoles.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/New-CaasAccountRoles.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/New-CaasAclRule.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/New-CaasAclRule.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/New-CaasBackupJob.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/New-CaasBackupJob.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/New-CaasConnection.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/New-CaasConnection.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/New-CaasFirewallRule.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/New-CaasFirewallRule.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/New-CaasIpAddressList.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/New-CaasIpAddressList.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/New-CaasIpAndPortType.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/New-CaasIpAndPortType.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/New-CaasNatRule.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/New-CaasNatRule.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/New-CaasNetwork.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/New-CaasNetwork.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/New-CaasNetworkDomain.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/New-CaasNetworkDomain.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/New-CaasPortList.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/New-CaasPortList.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/New-CaasPortRangeType.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/New-CaasPortRangeType.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/New-CaasProbe.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/New-CaasProbe.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/New-CaasRealServer.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/New-CaasRealServer.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/New-CaasServer.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/New-CaasServer.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/New-CaasServerDetails.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/New-CaasServerDetails.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/New-CaasServerFarm.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/New-CaasServerFarm.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/New-CaasServerNic.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/New-CaasServerNic.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/New-CaasTagKey.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/New-CaasTagKey.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/New-CaasVip.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/New-CaasVip.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/New-CaasVipNode.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/New-CaasVipNode.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/New-CaasVipPool.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/New-CaasVipPool.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/New-CaasVipPoolMember.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/New-CaasVipPoolMember.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/New-CaasVlan.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/New-CaasVlan.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/Remove-CaasAccount.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/Remove-CaasAccount.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/Remove-CaasAclRule.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/Remove-CaasAclRule.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/Remove-CaasBackupJob.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/Remove-CaasBackupJob.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/Remove-CaasConnection.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/Remove-CaasConnection.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/Remove-CaasNatRule.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/Remove-CaasNatRule.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/Remove-CaasNetwork.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/Remove-CaasNetwork.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/Remove-CaasPortList.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/Remove-CaasPortList.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/Remove-CaasProbe.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/Remove-CaasProbe.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/Remove-CaasRealServer.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/Remove-CaasRealServer.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/Remove-CaasServer.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/Remove-CaasServer.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/Remove-CaasServerDisk.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/Remove-CaasServerDisk.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/Remove-CaasServerFarm.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/Remove-CaasServerFarm.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/Remove-CaasTag.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/Remove-CaasTag.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/Remove-CaasTagKey.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/Remove-CaasTagKey.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/Remove-CaasVip.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/Remove-CaasVip.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/Remove-CaasVipNode.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/Remove-CaasVipNode.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/Remove-CaasVipPool.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/Remove-CaasVipPool.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/Remove-CaasVlan.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/Remove-CaasVlan.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/Resize-CaasServerDisk.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/Resize-CaasServerDisk.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/Set-CaasAccount.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/Set-CaasAccount.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/Set-CaasBackupClient.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/Set-CaasBackupClient.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/Set-CaasBackupPlan.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/Set-CaasBackupPlan.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/Set-CaasFirewallRule.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/Set-CaasFirewallRule.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/Set-CaasNetwork.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/Set-CaasNetwork.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/Set-CaasProbe.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/Set-CaasProbe.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/Set-CaasRealServer.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/Set-CaasRealServer.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/Set-CaasServer.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/Set-CaasServer.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/Set-CaasServerFarm.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/Set-CaasServerFarm.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/Set-CaasServerSpec.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/Set-CaasServerSpec.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/Set-CaasServerState.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/Set-CaasServerState.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/Set-CaasTag.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/Set-CaasTag.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/Set-CaasVip.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/Set-CaasVip.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/Set-CaasVipNode.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/Set-CaasVipNode.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/Set-CaasVipPool.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/Set-CaasVipPool.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/Set-CaasVipPoolMember.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/Set-CaasVipPoolMember.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/Test-CaasCompatibility.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/Test-CaasCompatibility.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/Update-CaasPortList.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/Update-CaasPortList.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/Update-CaasTagKey.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/Update-CaasTagKey.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/environment.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/environment.pickle -------------------------------------------------------------------------------- /docs/powershell/_build/doctrees/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/doctrees/index.doctree -------------------------------------------------------------------------------- /docs/powershell/_build/html/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/.buildinfo -------------------------------------------------------------------------------- /docs/powershell/_build/html/Add-CaasBackupClient.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Add-CaasBackupClient.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Add-CaasServerDisk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Add-CaasServerDisk.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Add-CaasToServerFarm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Add-CaasToServerFarm.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Copy-CaasCustomerServerImage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Copy-CaasCustomerServerImage.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Disable-CaasServerMonitoring.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Disable-CaasServerMonitoring.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Enable-CaasServerMonitoring.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Enable-CaasServerMonitoring.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Get-CaasAccounts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Get-CaasAccounts.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Get-CaasAclRules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Get-CaasAclRules.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Get-CaasAntiAffinityRules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Get-CaasAntiAffinityRules.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Get-CaasBackupClientTypes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Get-CaasBackupClientTypes.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Get-CaasBackupClients.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Get-CaasBackupClients.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Get-CaasBackupStoragePolicies.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Get-CaasBackupStoragePolicies.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Get-CaasConnection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Get-CaasConnection.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Get-CaasCustomerImage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Get-CaasCustomerImage.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Get-CaasCustomerImageExports.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Get-CaasCustomerImageExports.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Get-CaasCustomerImageImports.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Get-CaasCustomerImageImports.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Get-CaasDataCentre.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Get-CaasDataCentre.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Get-CaasDefaultHealthMonitors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Get-CaasDefaultHealthMonitors.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Get-CaasDefaultIRules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Get-CaasDefaultIRules.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Get-CaasDeployedServer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Get-CaasDeployedServer.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Get-CaasFirewallRule.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Get-CaasFirewallRule.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Get-CaasIpAddressList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Get-CaasIpAddressList.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Get-CaasMultiGeoRegions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Get-CaasMultiGeoRegions.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Get-CaasNatRule.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Get-CaasNatRule.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Get-CaasNetwork.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Get-CaasNetwork.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Get-CaasNetworkConfiguration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Get-CaasNetworkConfiguration.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Get-CaasNetworkDomain.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Get-CaasNetworkDomain.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Get-CaasNetworkPublicIpBlock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Get-CaasNetworkPublicIpBlock.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Get-CaasNic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Get-CaasNic.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Get-CaasOperatingSystem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Get-CaasOperatingSystem.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Get-CaasOsImage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Get-CaasOsImage.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Get-CaasOvfPackages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Get-CaasOvfPackages.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Get-CaasPersistenceProfile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Get-CaasPersistenceProfile.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Get-CaasPortList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Get-CaasPortList.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Get-CaasProbe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Get-CaasProbe.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Get-CaasRealServer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Get-CaasRealServer.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Get-CaasReserveIPv6Address.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Get-CaasReserveIPv6Address.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Get-CaasServer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Get-CaasServer.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Get-CaasServerFarm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Get-CaasServerFarm.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Get-CaasServerFarmDetails.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Get-CaasServerFarmDetails.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Get-CaasTag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Get-CaasTag.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Get-CaasTagKey.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Get-CaasTagKey.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Get-CaasVIPVirtualListener.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Get-CaasVIPVirtualListener.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Get-CaasVip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Get-CaasVip.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Get-CaasVipNode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Get-CaasVipNode.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Get-CaasVipPool.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Get-CaasVipPool.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Get-CaasVipPoolMember.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Get-CaasVipPoolMember.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Get-CaasVlan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Get-CaasVlan.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/New-CaasAccount.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/New-CaasAccount.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/New-CaasAccountRoles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/New-CaasAccountRoles.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/New-CaasAclRule.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/New-CaasAclRule.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/New-CaasBackupJob.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/New-CaasBackupJob.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/New-CaasBackupRestoreJob.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/New-CaasBackupRestoreJob.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/New-CaasConnection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/New-CaasConnection.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/New-CaasExportCustomerImage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/New-CaasExportCustomerImage.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/New-CaasFirewallRule.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/New-CaasFirewallRule.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/New-CaasImportCustomerImage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/New-CaasImportCustomerImage.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/New-CaasIpAddressList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/New-CaasIpAddressList.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/New-CaasIpAddressRangeType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/New-CaasIpAddressRangeType.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/New-CaasIpAndPortType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/New-CaasIpAndPortType.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/New-CaasNatRule.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/New-CaasNatRule.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/New-CaasNetwork.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/New-CaasNetwork.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/New-CaasNetworkDomain.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/New-CaasNetworkDomain.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/New-CaasNetworkPublicIpBlock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/New-CaasNetworkPublicIpBlock.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/New-CaasPersistenceProfile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/New-CaasPersistenceProfile.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/New-CaasPortList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/New-CaasPortList.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/New-CaasPortRangeType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/New-CaasPortRangeType.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/New-CaasProbe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/New-CaasProbe.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/New-CaasRealServer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/New-CaasRealServer.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/New-CaasServer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/New-CaasServer.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/New-CaasServerDetails.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/New-CaasServerDetails.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/New-CaasServerFarm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/New-CaasServerFarm.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/New-CaasServerNic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/New-CaasServerNic.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/New-CaasServerOnNetworkDomain.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/New-CaasServerOnNetworkDomain.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/New-CaasTagKey.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/New-CaasTagKey.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/New-CaasUploadCustomerImage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/New-CaasUploadCustomerImage.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/New-CaasVIPVirtualListener.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/New-CaasVIPVirtualListener.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/New-CaasVip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/New-CaasVip.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/New-CaasVipNode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/New-CaasVipNode.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/New-CaasVipPool.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/New-CaasVipPool.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/New-CaasVipPoolMember.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/New-CaasVipPoolMember.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/New-CaasVlan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/New-CaasVlan.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Remove-CaasAccount.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Remove-CaasAccount.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Remove-CaasAclRule.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Remove-CaasAclRule.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Remove-CaasBackupClient.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Remove-CaasBackupClient.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Remove-CaasBackupJob.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Remove-CaasBackupJob.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Remove-CaasConnection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Remove-CaasConnection.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Remove-CaasCustomerImage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Remove-CaasCustomerImage.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Remove-CaasFirewallRule.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Remove-CaasFirewallRule.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Remove-CaasFromServerFarm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Remove-CaasFromServerFarm.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Remove-CaasIpAddressList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Remove-CaasIpAddressList.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Remove-CaasNatRule.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Remove-CaasNatRule.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Remove-CaasNetwork.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Remove-CaasNetwork.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Remove-CaasNetworkDomain.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Remove-CaasNetworkDomain.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Remove-CaasPersistenceProfile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Remove-CaasPersistenceProfile.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Remove-CaasPortList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Remove-CaasPortList.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Remove-CaasProbe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Remove-CaasProbe.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Remove-CaasRealServer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Remove-CaasRealServer.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Remove-CaasReserveIPv6Address.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Remove-CaasReserveIPv6Address.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Remove-CaasServer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Remove-CaasServer.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Remove-CaasServerDisk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Remove-CaasServerDisk.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Remove-CaasServerFarm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Remove-CaasServerFarm.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Remove-CaasTag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Remove-CaasTag.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Remove-CaasTagKey.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Remove-CaasTagKey.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Remove-CaasVIPVirtualListener.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Remove-CaasVIPVirtualListener.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Remove-CaasVip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Remove-CaasVip.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Remove-CaasVipNode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Remove-CaasVipNode.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Remove-CaasVipPool.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Remove-CaasVipPool.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Remove-CaasVipPoolMember.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Remove-CaasVipPoolMember.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Remove-CaasVlan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Remove-CaasVlan.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Reset-CaasAccountPassword.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Reset-CaasAccountPassword.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Resize-CaasServerDisk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Resize-CaasServerDisk.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Set-CaasAccount.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Set-CaasAccount.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Set-CaasActiveConnection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Set-CaasActiveConnection.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Set-CaasBackupClient.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Set-CaasBackupClient.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Set-CaasBackupPlan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Set-CaasBackupPlan.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Set-CaasFirewallRule.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Set-CaasFirewallRule.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Set-CaasNetwork.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Set-CaasNetwork.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Set-CaasProbe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Set-CaasProbe.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Set-CaasProvisionBackup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Set-CaasProvisionBackup.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Set-CaasRealServer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Set-CaasRealServer.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Set-CaasReserveIPv6Address.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Set-CaasReserveIPv6Address.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Set-CaasServer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Set-CaasServer.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Set-CaasServerDiskDetails.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Set-CaasServerDiskDetails.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Set-CaasServerDiskSpeed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Set-CaasServerDiskSpeed.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Set-CaasServerFarm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Set-CaasServerFarm.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Set-CaasServerSpec.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Set-CaasServerSpec.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Set-CaasServerState.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Set-CaasServerState.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Set-CaasTag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Set-CaasTag.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Set-CaasVIPVirtualListener.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Set-CaasVIPVirtualListener.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Set-CaasVip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Set-CaasVip.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Set-CaasVipNode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Set-CaasVipNode.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Set-CaasVipPool.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Set-CaasVipPool.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Set-CaasVipPoolMember.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Set-CaasVipPoolMember.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Test-CaasCompatibility.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Test-CaasCompatibility.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Update-CaasIpAddressList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Update-CaasIpAddressList.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Update-CaasPortList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Update-CaasPortList.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Update-CaasTagKey.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Update-CaasTagKey.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/Wait-CaasServerOperation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/Wait-CaasServerOperation.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/_sources/Add-CaasServerDisk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_sources/Add-CaasServerDisk.txt -------------------------------------------------------------------------------- /docs/powershell/_build/html/_sources/Get-CaasAccounts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_sources/Get-CaasAccounts.txt -------------------------------------------------------------------------------- /docs/powershell/_build/html/_sources/Get-CaasAclRules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_sources/Get-CaasAclRules.txt -------------------------------------------------------------------------------- /docs/powershell/_build/html/_sources/Get-CaasConnection.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_sources/Get-CaasConnection.txt -------------------------------------------------------------------------------- /docs/powershell/_build/html/_sources/Get-CaasDataCentre.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_sources/Get-CaasDataCentre.txt -------------------------------------------------------------------------------- /docs/powershell/_build/html/_sources/Get-CaasNatRule.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_sources/Get-CaasNatRule.txt -------------------------------------------------------------------------------- /docs/powershell/_build/html/_sources/Get-CaasNetwork.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_sources/Get-CaasNetwork.txt -------------------------------------------------------------------------------- /docs/powershell/_build/html/_sources/Get-CaasNic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_sources/Get-CaasNic.txt -------------------------------------------------------------------------------- /docs/powershell/_build/html/_sources/Get-CaasOsImage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_sources/Get-CaasOsImage.txt -------------------------------------------------------------------------------- /docs/powershell/_build/html/_sources/Get-CaasPortList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_sources/Get-CaasPortList.txt -------------------------------------------------------------------------------- /docs/powershell/_build/html/_sources/Get-CaasProbe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_sources/Get-CaasProbe.txt -------------------------------------------------------------------------------- /docs/powershell/_build/html/_sources/Get-CaasRealServer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_sources/Get-CaasRealServer.txt -------------------------------------------------------------------------------- /docs/powershell/_build/html/_sources/Get-CaasServer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_sources/Get-CaasServer.txt -------------------------------------------------------------------------------- /docs/powershell/_build/html/_sources/Get-CaasServerFarm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_sources/Get-CaasServerFarm.txt -------------------------------------------------------------------------------- /docs/powershell/_build/html/_sources/Get-CaasTag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_sources/Get-CaasTag.txt -------------------------------------------------------------------------------- /docs/powershell/_build/html/_sources/Get-CaasTagKey.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_sources/Get-CaasTagKey.txt -------------------------------------------------------------------------------- /docs/powershell/_build/html/_sources/Get-CaasVip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_sources/Get-CaasVip.txt -------------------------------------------------------------------------------- /docs/powershell/_build/html/_sources/Get-CaasVipNode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_sources/Get-CaasVipNode.txt -------------------------------------------------------------------------------- /docs/powershell/_build/html/_sources/Get-CaasVipPool.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_sources/Get-CaasVipPool.txt -------------------------------------------------------------------------------- /docs/powershell/_build/html/_sources/Get-CaasVlan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_sources/Get-CaasVlan.txt -------------------------------------------------------------------------------- /docs/powershell/_build/html/_sources/New-CaasAccount.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_sources/New-CaasAccount.txt -------------------------------------------------------------------------------- /docs/powershell/_build/html/_sources/New-CaasAclRule.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_sources/New-CaasAclRule.txt -------------------------------------------------------------------------------- /docs/powershell/_build/html/_sources/New-CaasBackupJob.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_sources/New-CaasBackupJob.txt -------------------------------------------------------------------------------- /docs/powershell/_build/html/_sources/New-CaasConnection.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_sources/New-CaasConnection.txt -------------------------------------------------------------------------------- /docs/powershell/_build/html/_sources/New-CaasNatRule.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_sources/New-CaasNatRule.txt -------------------------------------------------------------------------------- /docs/powershell/_build/html/_sources/New-CaasNetwork.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_sources/New-CaasNetwork.txt -------------------------------------------------------------------------------- /docs/powershell/_build/html/_sources/New-CaasPortList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_sources/New-CaasPortList.txt -------------------------------------------------------------------------------- /docs/powershell/_build/html/_sources/New-CaasProbe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_sources/New-CaasProbe.txt -------------------------------------------------------------------------------- /docs/powershell/_build/html/_sources/New-CaasRealServer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_sources/New-CaasRealServer.txt -------------------------------------------------------------------------------- /docs/powershell/_build/html/_sources/New-CaasServer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_sources/New-CaasServer.txt -------------------------------------------------------------------------------- /docs/powershell/_build/html/_sources/New-CaasServerFarm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_sources/New-CaasServerFarm.txt -------------------------------------------------------------------------------- /docs/powershell/_build/html/_sources/New-CaasServerNic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_sources/New-CaasServerNic.txt -------------------------------------------------------------------------------- /docs/powershell/_build/html/_sources/New-CaasTagKey.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_sources/New-CaasTagKey.txt -------------------------------------------------------------------------------- /docs/powershell/_build/html/_sources/New-CaasVip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_sources/New-CaasVip.txt -------------------------------------------------------------------------------- /docs/powershell/_build/html/_sources/New-CaasVipNode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_sources/New-CaasVipNode.txt -------------------------------------------------------------------------------- /docs/powershell/_build/html/_sources/New-CaasVipPool.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_sources/New-CaasVipPool.txt -------------------------------------------------------------------------------- /docs/powershell/_build/html/_sources/New-CaasVlan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_sources/New-CaasVlan.txt -------------------------------------------------------------------------------- /docs/powershell/_build/html/_sources/Remove-CaasAccount.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_sources/Remove-CaasAccount.txt -------------------------------------------------------------------------------- /docs/powershell/_build/html/_sources/Remove-CaasAclRule.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_sources/Remove-CaasAclRule.txt -------------------------------------------------------------------------------- /docs/powershell/_build/html/_sources/Remove-CaasNatRule.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_sources/Remove-CaasNatRule.txt -------------------------------------------------------------------------------- /docs/powershell/_build/html/_sources/Remove-CaasNetwork.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_sources/Remove-CaasNetwork.txt -------------------------------------------------------------------------------- /docs/powershell/_build/html/_sources/Remove-CaasProbe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_sources/Remove-CaasProbe.txt -------------------------------------------------------------------------------- /docs/powershell/_build/html/_sources/Remove-CaasServer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_sources/Remove-CaasServer.txt -------------------------------------------------------------------------------- /docs/powershell/_build/html/_sources/Remove-CaasTag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_sources/Remove-CaasTag.txt -------------------------------------------------------------------------------- /docs/powershell/_build/html/_sources/Remove-CaasTagKey.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_sources/Remove-CaasTagKey.txt -------------------------------------------------------------------------------- /docs/powershell/_build/html/_sources/Remove-CaasVip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_sources/Remove-CaasVip.txt -------------------------------------------------------------------------------- /docs/powershell/_build/html/_sources/Remove-CaasVipNode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_sources/Remove-CaasVipNode.txt -------------------------------------------------------------------------------- /docs/powershell/_build/html/_sources/Remove-CaasVipPool.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_sources/Remove-CaasVipPool.txt -------------------------------------------------------------------------------- /docs/powershell/_build/html/_sources/Remove-CaasVlan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_sources/Remove-CaasVlan.txt -------------------------------------------------------------------------------- /docs/powershell/_build/html/_sources/Set-CaasAccount.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_sources/Set-CaasAccount.txt -------------------------------------------------------------------------------- /docs/powershell/_build/html/_sources/Set-CaasBackupPlan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_sources/Set-CaasBackupPlan.txt -------------------------------------------------------------------------------- /docs/powershell/_build/html/_sources/Set-CaasNetwork.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_sources/Set-CaasNetwork.txt -------------------------------------------------------------------------------- /docs/powershell/_build/html/_sources/Set-CaasProbe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_sources/Set-CaasProbe.txt -------------------------------------------------------------------------------- /docs/powershell/_build/html/_sources/Set-CaasRealServer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_sources/Set-CaasRealServer.txt -------------------------------------------------------------------------------- /docs/powershell/_build/html/_sources/Set-CaasServer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_sources/Set-CaasServer.txt -------------------------------------------------------------------------------- /docs/powershell/_build/html/_sources/Set-CaasServerFarm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_sources/Set-CaasServerFarm.txt -------------------------------------------------------------------------------- /docs/powershell/_build/html/_sources/Set-CaasServerSpec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_sources/Set-CaasServerSpec.txt -------------------------------------------------------------------------------- /docs/powershell/_build/html/_sources/Set-CaasTag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_sources/Set-CaasTag.txt -------------------------------------------------------------------------------- /docs/powershell/_build/html/_sources/Set-CaasVip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_sources/Set-CaasVip.txt -------------------------------------------------------------------------------- /docs/powershell/_build/html/_sources/Set-CaasVipNode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_sources/Set-CaasVipNode.txt -------------------------------------------------------------------------------- /docs/powershell/_build/html/_sources/Set-CaasVipPool.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_sources/Set-CaasVipPool.txt -------------------------------------------------------------------------------- /docs/powershell/_build/html/_sources/Update-CaasTagKey.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_sources/Update-CaasTagKey.txt -------------------------------------------------------------------------------- /docs/powershell/_build/html/_sources/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_sources/index.txt -------------------------------------------------------------------------------- /docs/powershell/_build/html/_static/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_static/ajax-loader.gif -------------------------------------------------------------------------------- /docs/powershell/_build/html/_static/alabaster.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_static/alabaster.css -------------------------------------------------------------------------------- /docs/powershell/_build/html/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_static/basic.css -------------------------------------------------------------------------------- /docs/powershell/_build/html/_static/comment-bright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_static/comment-bright.png -------------------------------------------------------------------------------- /docs/powershell/_build/html/_static/comment-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_static/comment-close.png -------------------------------------------------------------------------------- /docs/powershell/_build/html/_static/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_static/comment.png -------------------------------------------------------------------------------- /docs/powershell/_build/html/_static/custom.css: -------------------------------------------------------------------------------- 1 | /* This file intentionally left blank. */ 2 | -------------------------------------------------------------------------------- /docs/powershell/_build/html/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_static/doctools.js -------------------------------------------------------------------------------- /docs/powershell/_build/html/_static/down-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_static/down-pressed.png -------------------------------------------------------------------------------- /docs/powershell/_build/html/_static/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_static/down.png -------------------------------------------------------------------------------- /docs/powershell/_build/html/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_static/file.png -------------------------------------------------------------------------------- /docs/powershell/_build/html/_static/jquery-1.11.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_static/jquery-1.11.1.js -------------------------------------------------------------------------------- /docs/powershell/_build/html/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_static/jquery.js -------------------------------------------------------------------------------- /docs/powershell/_build/html/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_static/minus.png -------------------------------------------------------------------------------- /docs/powershell/_build/html/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_static/plus.png -------------------------------------------------------------------------------- /docs/powershell/_build/html/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_static/pygments.css -------------------------------------------------------------------------------- /docs/powershell/_build/html/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_static/searchtools.js -------------------------------------------------------------------------------- /docs/powershell/_build/html/_static/underscore-1.3.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_static/underscore-1.3.1.js -------------------------------------------------------------------------------- /docs/powershell/_build/html/_static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_static/underscore.js -------------------------------------------------------------------------------- /docs/powershell/_build/html/_static/up-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_static/up-pressed.png -------------------------------------------------------------------------------- /docs/powershell/_build/html/_static/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_static/up.png -------------------------------------------------------------------------------- /docs/powershell/_build/html/_static/websupport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/_static/websupport.js -------------------------------------------------------------------------------- /docs/powershell/_build/html/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/genindex.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/index.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/objects.inv -------------------------------------------------------------------------------- /docs/powershell/_build/html/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/search.html -------------------------------------------------------------------------------- /docs/powershell/_build/html/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/_build/html/searchindex.js -------------------------------------------------------------------------------- /docs/powershell/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/conf.py -------------------------------------------------------------------------------- /docs/powershell/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/index.rst -------------------------------------------------------------------------------- /docs/powershell/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/docs/powershell/make.bat -------------------------------------------------------------------------------- /powershell.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/powershell.yml -------------------------------------------------------------------------------- /x2C/x2C.lib/CaaS_PS.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/x2C/x2C.lib/CaaS_PS.snk -------------------------------------------------------------------------------- /x2C/x2C.lib/CompatibilityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/x2C/x2C.lib/CompatibilityTests.cs -------------------------------------------------------------------------------- /x2C/x2C.lib/DiskSpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/x2C/x2C.lib/DiskSpec.cs -------------------------------------------------------------------------------- /x2C/x2C.lib/IpAddressHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/x2C/x2C.lib/IpAddressHelper.cs -------------------------------------------------------------------------------- /x2C/x2C.lib/NetworkInterfaceSpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/x2C/x2C.lib/NetworkInterfaceSpec.cs -------------------------------------------------------------------------------- /x2C/x2C.lib/OSInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/x2C/x2C.lib/OSInfo.cs -------------------------------------------------------------------------------- /x2C/x2C.lib/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/x2C/x2C.lib/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /x2C/x2C.lib/ServerCreationType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/x2C/x2C.lib/ServerCreationType.cs -------------------------------------------------------------------------------- /x2C/x2C.lib/ServerCreationTypeFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/x2C/x2C.lib/ServerCreationTypeFactory.cs -------------------------------------------------------------------------------- /x2C/x2C.lib/TestOutcome.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/x2C/x2C.lib/TestOutcome.cs -------------------------------------------------------------------------------- /x2C/x2C.lib/TestOutcomeResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/x2C/x2C.lib/TestOutcomeResult.cs -------------------------------------------------------------------------------- /x2C/x2C.lib/TestingOutcomeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/x2C/x2C.lib/TestingOutcomeType.cs -------------------------------------------------------------------------------- /x2C/x2C.lib/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/x2C/x2C.lib/app.config -------------------------------------------------------------------------------- /x2C/x2C.lib/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/x2C/x2C.lib/packages.config -------------------------------------------------------------------------------- /x2C/x2C.lib/x2C.lib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/x2C/x2C.lib/x2C.lib.csproj -------------------------------------------------------------------------------- /x2C/x2C/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elitedev31/Compute.Api.Powershell/HEAD/x2C/x2C/packages.config --------------------------------------------------------------------------------