зеркало из https://github.com/Azure/AzureVM.git
forgot to redoc/export
This commit is contained in:
Родитель
31f7fe1225
Коммит
5d9afd56b1
|
@ -1,6 +1,6 @@
|
|||
Package: AzureVM
|
||||
Title: Virtual Machines in 'Azure'
|
||||
Version: 2.2.0
|
||||
Version: 2.2.1
|
||||
Authors@R: c(
|
||||
person("Hong", "Ooi", , "hongooi@microsoft.com", role = c("aut", "cre")),
|
||||
person("Microsoft", role="cph")
|
||||
|
|
|
@ -99,6 +99,8 @@ export(vnet_config)
|
|||
export(windows_2016)
|
||||
export(windows_2016_ss)
|
||||
export(windows_2019)
|
||||
export(windows_2019_gen2)
|
||||
export(windows_2019_gen2_ss)
|
||||
export(windows_2019_ss)
|
||||
export(windows_dsvm)
|
||||
export(windows_dsvm_ss)
|
||||
|
|
4
NEWS.md
4
NEWS.md
|
@ -1,3 +1,7 @@
|
|||
# AzureVM 2.2.1
|
||||
|
||||
- Hotfix to previous version, to export `windows_2019_gen2` and `windows_2019_gen2_ss` configuration functions.
|
||||
|
||||
# AzureVM 2.2.0
|
||||
|
||||
- Add ability to retrieve an SSH public key from an Azure resource object. See `?user_config` for more information.
|
||||
|
|
|
@ -24,6 +24,7 @@
|
|||
\alias{ubuntu_20.04_gen2}
|
||||
\alias{windows_2016}
|
||||
\alias{windows_2019}
|
||||
\alias{windows_2019_gen2}
|
||||
\alias{vm_config}
|
||||
\title{VM configuration functions}
|
||||
\usage{
|
||||
|
@ -95,6 +96,9 @@ windows_2016(keylogin = FALSE, managed_identity = TRUE,
|
|||
windows_2019(keylogin = FALSE, managed_identity = TRUE,
|
||||
datadisks = numeric(0), nsg = nsg_config(list(nsg_rule_allow_rdp)), ...)
|
||||
|
||||
windows_2019_gen2(keylogin = FALSE, managed_identity = TRUE,
|
||||
datadisks = numeric(0), nsg = nsg_config(list(nsg_rule_allow_rdp)), ...)
|
||||
|
||||
vm_config(image, keylogin, managed_identity = TRUE,
|
||||
os_disk_type = c("Premium_LRS", "StandardSSD_LRS", "Standard_LRS"),
|
||||
datadisks = numeric(0), nsg = nsg_config(), ip = ip_config(),
|
||||
|
|
|
@ -24,6 +24,7 @@
|
|||
\alias{ubuntu_20.04_gen2_ss}
|
||||
\alias{windows_2016_ss}
|
||||
\alias{windows_2019_ss}
|
||||
\alias{windows_2019_gen2_ss}
|
||||
\alias{vmss_config}
|
||||
\title{Virtual machine scaleset configuration functions}
|
||||
\usage{
|
||||
|
@ -139,6 +140,11 @@ windows_2019_ss(datadisks = numeric(0),
|
|||
load_balancer = lb_config(rules = list(lb_rule_rdp), probes =
|
||||
list(lb_probe_rdp)), options = scaleset_options(keylogin = FALSE), ...)
|
||||
|
||||
windows_2019_gen2_ss(datadisks = numeric(0),
|
||||
nsg = nsg_config(list(nsg_rule_allow_rdp)),
|
||||
load_balancer = lb_config(rules = list(lb_rule_rdp), probes =
|
||||
list(lb_probe_rdp)), options = scaleset_options(keylogin = FALSE), ...)
|
||||
|
||||
vmss_config(image, options = scaleset_options(), datadisks = numeric(0),
|
||||
nsg = nsg_config(), vnet = vnet_config(), load_balancer = lb_config(),
|
||||
load_balancer_address = ip_config(), autoscaler = autoscaler_config(),
|
||||
|
|
Загрузка…
Ссылка в новой задаче