AzureRMR/NEWS.md

31 строка
1.8 KiB
Markdown
Исходник Обычный вид История

# AzureRMR 1.0.0.9000
## Significant interface changes
2019-01-17 14:14:42 +03:00
* New `create_azure_login`, `get_azure_login` and `delete_azure_login` functions to handle ARM authentication. While directly calling `az_rm$new()` will still work, it's recommended to use `create_azure_login` and `get_azure_login` going forward. Login credentials will be saved and reused for subsequent sessions (see below).
2019-01-14 10:19:42 +03:00
* `get_azure_token` significantly revamped. It now supports four authentication methods for obtaining AAD tokens:
2019-01-10 23:11:24 +03:00
- Client credentials (what you would use with a "web app" registered service principal)
- Authorization code (for a "native" service principal)
- Device code
- With a username and password (resource owner grant)
2019-01-14 10:19:42 +03:00
* `get_azure_token` will now cache AAD tokens and refresh them for subsequent sessions. Tokens are cached in a user-specific configuration directory (unlike httr, which saves them in a special file in the R working directory).
* Token acquisition logic will shortly move to a new package, to allow it to be used by other packages independently of the Resource Manager interface.
## Other changes
2018-12-24 05:37:13 +03:00
* Don't print empty fields for ARM objects.
* Add optional `etag` field to resource object definition.
* Add `location` argument to `az_resource_group$create_resource` method, rather than hardcoding it to the resgroup location.
* Add `wait` argument when creating a new resource, similar to deploying a template, since some resources will return before provisioning is complete. Defaults to `FALSE` for backward compatibility.
2019-01-09 02:56:22 +03:00
* Export `is_azure_token`.
2019-01-11 21:45:08 +03:00
* Allow `az_resource_group$deploy_template()` to work without `parameters` arg (parameters folded into template itself).
2019-01-18 00:51:08 +03:00
* Fix a bug that kept `az_resource_group$delete_resource` from deleting the resource.
2018-11-09 10:52:00 +03:00
# AzureRMR 1.0.0
* Submitted to CRAN
2018-10-23 19:17:30 +03:00
# AzureRMR 0.9.0
2018-10-18 23:30:49 +03:00
* Moved to cloudyr organisation