├── .Rbuildignore ├── .gitattributes ├── .github └── workflows │ └── check-standard.yaml ├── .gitignore ├── AzureRMR.Rproj ├── AzureRMR.rxproj ├── AzureRMR.sln ├── CONTRIBUTING.md ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── AzureRMR.R ├── az_login.R ├── az_resgroup.R ├── az_resource.R ├── az_rm.R ├── az_role.R ├── az_subscription.R ├── az_template.R ├── build_tpl_json.R ├── call_azure_rm.R ├── is.R ├── locks.R ├── make_graph_login.R ├── pool.R ├── rbac.R ├── reexport_AzureAuth.R └── utils.R ├── README.md ├── SECURITY.md ├── man ├── az_resource.Rd ├── az_resource_group.Rd ├── az_rm.Rd ├── az_role_assignment.Rd ├── az_role_definition.Rd ├── az_subscription.Rd ├── az_template.Rd ├── azure_login.Rd ├── build_template.Rd ├── call_azure.Rd ├── figures │ └── logo.png ├── info.Rd ├── lock.Rd ├── pool.Rd ├── rbac.Rd ├── reexports.Rd └── utils.Rd ├── tests ├── resources │ ├── functions.json │ ├── parameter_values.json │ ├── parameters.json │ ├── resources.json │ ├── template.json │ ├── template_bad.json │ └── template_null.json ├── testthat.R └── testthat │ ├── test00_pool.R │ ├── test01_auth.R │ ├── test02_sub.R │ ├── test03_rg.R │ ├── test04_resource.R │ ├── test04a_subresource.R │ ├── test05a_template_builders.R │ ├── test05b_template.R │ └── test06_rbac.R └── vignettes ├── auth.Rmd ├── extend.Rmd ├── intro.Rmd ├── parallel.Rmd └── template.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureRMR/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureRMR/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/check-standard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureRMR/HEAD/.github/workflows/check-standard.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureRMR/HEAD/.gitignore -------------------------------------------------------------------------------- /AzureRMR.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureRMR/HEAD/AzureRMR.Rproj -------------------------------------------------------------------------------- /AzureRMR.rxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureRMR/HEAD/AzureRMR.rxproj -------------------------------------------------------------------------------- /AzureRMR.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureRMR/HEAD/AzureRMR.sln -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureRMR/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureRMR/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2018-2021 2 | COPYRIGHT HOLDER: Microsoft 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureRMR/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureRMR/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureRMR/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/AzureRMR.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureRMR/HEAD/R/AzureRMR.R -------------------------------------------------------------------------------- /R/az_login.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureRMR/HEAD/R/az_login.R -------------------------------------------------------------------------------- /R/az_resgroup.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureRMR/HEAD/R/az_resgroup.R -------------------------------------------------------------------------------- /R/az_resource.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureRMR/HEAD/R/az_resource.R -------------------------------------------------------------------------------- /R/az_rm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureRMR/HEAD/R/az_rm.R -------------------------------------------------------------------------------- /R/az_role.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureRMR/HEAD/R/az_role.R -------------------------------------------------------------------------------- /R/az_subscription.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureRMR/HEAD/R/az_subscription.R -------------------------------------------------------------------------------- /R/az_template.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureRMR/HEAD/R/az_template.R -------------------------------------------------------------------------------- /R/build_tpl_json.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureRMR/HEAD/R/build_tpl_json.R -------------------------------------------------------------------------------- /R/call_azure_rm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureRMR/HEAD/R/call_azure_rm.R -------------------------------------------------------------------------------- /R/is.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureRMR/HEAD/R/is.R -------------------------------------------------------------------------------- /R/locks.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureRMR/HEAD/R/locks.R -------------------------------------------------------------------------------- /R/make_graph_login.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureRMR/HEAD/R/make_graph_login.R -------------------------------------------------------------------------------- /R/pool.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureRMR/HEAD/R/pool.R -------------------------------------------------------------------------------- /R/rbac.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureRMR/HEAD/R/rbac.R -------------------------------------------------------------------------------- /R/reexport_AzureAuth.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureRMR/HEAD/R/reexport_AzureAuth.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureRMR/HEAD/R/utils.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureRMR/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureRMR/HEAD/SECURITY.md -------------------------------------------------------------------------------- /man/az_resource.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureRMR/HEAD/man/az_resource.Rd -------------------------------------------------------------------------------- /man/az_resource_group.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureRMR/HEAD/man/az_resource_group.Rd -------------------------------------------------------------------------------- /man/az_rm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureRMR/HEAD/man/az_rm.Rd -------------------------------------------------------------------------------- /man/az_role_assignment.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureRMR/HEAD/man/az_role_assignment.Rd -------------------------------------------------------------------------------- /man/az_role_definition.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureRMR/HEAD/man/az_role_definition.Rd -------------------------------------------------------------------------------- /man/az_subscription.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureRMR/HEAD/man/az_subscription.Rd -------------------------------------------------------------------------------- /man/az_template.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureRMR/HEAD/man/az_template.Rd -------------------------------------------------------------------------------- /man/azure_login.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureRMR/HEAD/man/azure_login.Rd -------------------------------------------------------------------------------- /man/build_template.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureRMR/HEAD/man/build_template.Rd -------------------------------------------------------------------------------- /man/call_azure.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureRMR/HEAD/man/call_azure.Rd -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureRMR/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/info.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureRMR/HEAD/man/info.Rd -------------------------------------------------------------------------------- /man/lock.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureRMR/HEAD/man/lock.Rd -------------------------------------------------------------------------------- /man/pool.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureRMR/HEAD/man/pool.Rd -------------------------------------------------------------------------------- /man/rbac.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureRMR/HEAD/man/rbac.Rd -------------------------------------------------------------------------------- /man/reexports.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureRMR/HEAD/man/reexports.Rd -------------------------------------------------------------------------------- /man/utils.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureRMR/HEAD/man/utils.Rd -------------------------------------------------------------------------------- /tests/resources/functions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureRMR/HEAD/tests/resources/functions.json -------------------------------------------------------------------------------- /tests/resources/parameter_values.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureRMR/HEAD/tests/resources/parameter_values.json -------------------------------------------------------------------------------- /tests/resources/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureRMR/HEAD/tests/resources/parameters.json -------------------------------------------------------------------------------- /tests/resources/resources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureRMR/HEAD/tests/resources/resources.json -------------------------------------------------------------------------------- /tests/resources/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureRMR/HEAD/tests/resources/template.json -------------------------------------------------------------------------------- /tests/resources/template_bad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureRMR/HEAD/tests/resources/template_bad.json -------------------------------------------------------------------------------- /tests/resources/template_null.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureRMR/HEAD/tests/resources/template_null.json -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureRMR/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test00_pool.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureRMR/HEAD/tests/testthat/test00_pool.R -------------------------------------------------------------------------------- /tests/testthat/test01_auth.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureRMR/HEAD/tests/testthat/test01_auth.R -------------------------------------------------------------------------------- /tests/testthat/test02_sub.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureRMR/HEAD/tests/testthat/test02_sub.R -------------------------------------------------------------------------------- /tests/testthat/test03_rg.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureRMR/HEAD/tests/testthat/test03_rg.R -------------------------------------------------------------------------------- /tests/testthat/test04_resource.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureRMR/HEAD/tests/testthat/test04_resource.R -------------------------------------------------------------------------------- /tests/testthat/test04a_subresource.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureRMR/HEAD/tests/testthat/test04a_subresource.R -------------------------------------------------------------------------------- /tests/testthat/test05a_template_builders.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureRMR/HEAD/tests/testthat/test05a_template_builders.R -------------------------------------------------------------------------------- /tests/testthat/test05b_template.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureRMR/HEAD/tests/testthat/test05b_template.R -------------------------------------------------------------------------------- /tests/testthat/test06_rbac.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureRMR/HEAD/tests/testthat/test06_rbac.R -------------------------------------------------------------------------------- /vignettes/auth.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureRMR/HEAD/vignettes/auth.Rmd -------------------------------------------------------------------------------- /vignettes/extend.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureRMR/HEAD/vignettes/extend.Rmd -------------------------------------------------------------------------------- /vignettes/intro.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureRMR/HEAD/vignettes/intro.Rmd -------------------------------------------------------------------------------- /vignettes/parallel.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureRMR/HEAD/vignettes/parallel.Rmd -------------------------------------------------------------------------------- /vignettes/template.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureRMR/HEAD/vignettes/template.Rmd --------------------------------------------------------------------------------