doc pass
This commit is contained in:
Родитель
6da53c0835
Коммит
06c47ca89e
|
@ -8,12 +8,14 @@ ev_api_version <- "2017-11-01"
|
|||
#'
|
||||
#' @param nonce For `update_attested_metadata`, an optional string to use as a nonce.
|
||||
#' @details
|
||||
#' The `instance`, `attested` and `events` objects are environments containing the instance metadata, attested metadata, and scheduled events respectively for a VM running in Azure. `instance` and `attested` are automatically populated when you load the AzureVMmetadata package, or you can manually populate them yourself with the `update_instance_metadata` and `update_attested_metadata` functions. `events` is not populated at package startup, because calling the scheduled event service can require up to several minutes if it is not running already. You can manually populate it with the `update_scheduled_events` function.
|
||||
#' The `instance`, `attested` and `events` environments contain the instance metadata, attested metadata, and scheduled events respectively for a VM running in Azure. `instance` and `attested` are automatically populated when you load the AzureVMmetadata package, or you can manually populate them yourself with the `update_instance_metadata` and `update_attested_metadata` functions. `events` is not populated at package startup, because calling the scheduled event service can require up to several minutes if it is not running already. You can manually populate it with the `update_scheduled_events` function.
|
||||
#'
|
||||
#' If AzureVMmetadata is loaded in an R session that is _not_ running in an Azure VM, all the metadata environments will be empty.
|
||||
#'
|
||||
#' @return
|
||||
#' The updating functions return the contents of their respective environments as lists, invisibly.
|
||||
#' @format
|
||||
#' `instance`, `attested` and `events` are environments.
|
||||
#' @seealso
|
||||
#' [in_azure_vm]
|
||||
#'
|
||||
|
|
|
@ -6,6 +6,12 @@
|
|||
|
||||
A simple package to access the [instance metadata service](https://docs.microsoft.com/en-us/azure/virtual-machines/windows/instance-metadata-service) in an Azure virtual machine.
|
||||
|
||||
The primary repo for this package is at https://github.com/Azure/AzureVMmetadata; please submit issues and PRs there. It is also mirrored at the Cloudyr org at https://github.com/cloudyr/AzureVMmetadata. You can install the development version of the package from GitHub:
|
||||
|
||||
```r
|
||||
devtools::install_github("Azure/AzureVMmetadata")
|
||||
```
|
||||
|
||||
## Accessing metadata
|
||||
|
||||
AzureVMmetadata exposes three environments that contain the metadata for the VM:
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
\alias{update_attested_metadata}
|
||||
\alias{update_scheduled_events}
|
||||
\title{Metadata for an Azure VM}
|
||||
\format{An object of class \code{environment} of length 0.}
|
||||
\format{\code{instance}, \code{attested} and \code{events} are environments.}
|
||||
\usage{
|
||||
instance
|
||||
|
||||
|
@ -33,7 +33,7 @@ The updating functions return the contents of their respective environments as l
|
|||
Metadata for an Azure VM
|
||||
}
|
||||
\details{
|
||||
The \code{instance}, \code{attested} and \code{events} objects are environments containing the instance metadata, attested metadata, and scheduled events respectively for a VM running in Azure. \code{instance} and \code{attested} are automatically populated when you load the AzureVMmetadata package, or you can manually populate them yourself with the \code{update_instance_metadata} and \code{update_attested_metadata} functions. \code{events} is not populated at package startup, because calling the scheduled event service can require up to several minutes if it is not running already. You can manually populate it with the \code{update_scheduled_events} function.
|
||||
The \code{instance}, \code{attested} and \code{events} environments contain the instance metadata, attested metadata, and scheduled events respectively for a VM running in Azure. \code{instance} and \code{attested} are automatically populated when you load the AzureVMmetadata package, or you can manually populate them yourself with the \code{update_instance_metadata} and \code{update_attested_metadata} functions. \code{events} is not populated at package startup, because calling the scheduled event service can require up to several minutes if it is not running already. You can manually populate it with the \code{update_scheduled_events} function.
|
||||
|
||||
If AzureVMmetadata is loaded in an R session that is \emph{not} running in an Azure VM, all the metadata environments will be empty.
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче