Skip to content

Commit 983aaaa

Browse files
committed
fix outdated links
1 parent 13682de commit 983aaaa

31 files changed

+76
-75
lines changed

.Rbuildignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@
77
CONTRIBUTING.md
88
^LICENSE\.md$
99
^\.github$
10+
^SECURITY.md$

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Authors@R: c(
55
person("Hong", "Ooi", , "[email protected]", role = c("aut", "cre")),
66
person("Microsoft", role="cph")
77
)
8-
Description: A simple interface to the 'Microsoft Graph' API <https://docs.microsoft.com/en-us/graph/overview>. 'Graph' is a comprehensive framework for accessing data in various online Microsoft services. This package was originally intended to provide an R interface only to the 'Azure Active Directory' part, with a view to supporting interoperability of R and 'Azure': users, groups, registered apps and service principals. However it has since been expanded into a more general tool for interacting with Graph. Part of the 'AzureR' family of packages.
8+
Description: A simple interface to the 'Microsoft Graph' API <https://learn.microsoft.com/en-us/graph/overview>. 'Graph' is a comprehensive framework for accessing data in various online Microsoft services. This package was originally intended to provide an R interface only to the 'Azure Active Directory' part, with a view to supporting interoperability of R and 'Azure': users, groups, registered apps and service principals. However it has since been expanded into a more general tool for interacting with Graph. Part of the 'AzureR' family of packages.
99
URL: https://github.com/Azure/AzureGraph https://github.com/Azure/AzureR
1010
BugReports: https://github.com/Azure/AzureGraph/issues
1111
License: MIT + file LICENSE

R/az_app.r

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@
2727
#' @section Initialization:
2828
#' Creating new objects of this class should be done via the `create_app` and `get_app` methods of the [ms_graph] class. Calling the `new()` method for this class only constructs the R object; it does not call the Microsoft Graph API to create the actual app.
2929
#'
30-
#' [Microsoft Graph overview](https://docs.microsoft.com/en-us/graph/overview),
31-
#' [REST API reference](https://docs.microsoft.com/en-us/graph/api/overview?view=graph-rest-beta)
30+
#' [Microsoft Graph overview](https://learn.microsoft.com/en-us/graph/overview),
31+
#' [REST API reference](https://learn.microsoft.com/en-us/graph/api/overview?view=graph-rest-beta)
3232
#'
3333
#' @section List methods:
34-
#' All `list_*` methods have `filter` and `n` arguments to limit the number of results. The former should be an [OData expression](https://docs.microsoft.com/en-us/graph/query-parameters#filter-parameter) as a string to filter the result set on. The latter should be a number setting the maximum number of (filtered) results to return. The default values are `filter=NULL` and `n=Inf`. If `n=NULL`, the `ms_graph_pager` iterator object is returned instead to allow manual iteration over the results.
34+
#' All `list_*` methods have `filter` and `n` arguments to limit the number of results. The former should be an [OData expression](https://learn.microsoft.com/en-us/graph/query-parameters#filter-parameter) as a string to filter the result set on. The latter should be a number setting the maximum number of (filtered) results to return. The default values are `filter=NULL` and `n=Inf`. If `n=NULL`, the `ms_graph_pager` iterator object is returned instead to allow manual iteration over the results.
3535
#'
3636
#' Support in the underlying Graph API for OData queries is patchy. Not all endpoints that return lists of objects support filtering, and if they do, they may not allow all of the defined operators. If your filtering expression results in an error, you can carry out the operation without filtering and then filter the results on the client side.
3737
#' @seealso

R/az_device.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
#' @seealso
2222
#' [ms_graph], [az_user], [az_object]
2323
#'
24-
#' [Microsoft Graph overview](https://docs.microsoft.com/en-us/graph/overview),
25-
#' [REST API reference](https://docs.microsoft.com/en-us/graph/api/overview?view=graph-rest-1.0)
24+
#' [Microsoft Graph overview](https://learn.microsoft.com/en-us/graph/overview),
25+
#' [REST API reference](https://learn.microsoft.com/en-us/graph/api/overview?view=graph-rest-1.0)
2626
#'
2727
#' @format An R6 object of class `az_device`, inheriting from `az_object`.
2828
#' @export

R/az_dir_role.R

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@
2020
#' Currently support for directory roles is limited. Objects of this class should not be initialized directly.
2121
#'
2222
#' @section List methods:
23-
#' All `list_*` methods have `filter` and `n` arguments to limit the number of results. The former should be an [OData expression](https://docs.microsoft.com/en-us/graph/query-parameters#filter-parameter) as a string to filter the result set on. The latter should be a number setting the maximum number of (filtered) results to return. The default values are `filter=NULL` and `n=Inf`. If `n=NULL`, the `ms_graph_pager` iterator object is returned instead to allow manual iteration over the results.
23+
#' All `list_*` methods have `filter` and `n` arguments to limit the number of results. The former should be an [OData expression](https://learn.microsoft.com/en-us/graph/query-parameters#filter-parameter) as a string to filter the result set on. The latter should be a number setting the maximum number of (filtered) results to return. The default values are `filter=NULL` and `n=Inf`. If `n=NULL`, the `ms_graph_pager` iterator object is returned instead to allow manual iteration over the results.
2424
#'
2525
#' Support in the underlying Graph API for OData queries is patchy. Not all endpoints that return lists of objects support filtering, and if they do, they may not allow all of the defined operators. If your filtering expression results in an error, you can carry out the operation without filtering and then filter the results on the client side.
2626
#' @seealso
2727
#' [ms_graph], [az_user]
2828
#'
29-
#' [Microsoft Graph overview](https://docs.microsoft.com/en-us/graph/overview),
30-
#' [REST API reference](https://docs.microsoft.com/en-us/graph/api/overview?view=graph-rest-1.0)
29+
#' [Microsoft Graph overview](https://learn.microsoft.com/en-us/graph/overview),
30+
#' [REST API reference](https://learn.microsoft.com/en-us/graph/api/overview?view=graph-rest-1.0)
3131
#'
3232
#' @format An R6 object of class `az_directory_role`, inheriting from `az_object`.
3333
#' @export

R/az_group.R

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@
2121
#' Creating new objects of this class should be done via the `create_group` and `get_group` methods of the [ms_graph] and [az_app] classes. Calling the `new()` method for this class only constructs the R object; it does not call the Microsoft Graph API to create the actual group.
2222
#'
2323
#' @section List methods:
24-
#' All `list_*` methods have `filter` and `n` arguments to limit the number of results. The former should be an [OData expression](https://docs.microsoft.com/en-us/graph/query-parameters#filter-parameter) as a string to filter the result set on. The latter should be a number setting the maximum number of (filtered) results to return. The default values are `filter=NULL` and `n=Inf`. If `n=NULL`, the `ms_graph_pager` iterator object is returned instead to allow manual iteration over the results.
24+
#' All `list_*` methods have `filter` and `n` arguments to limit the number of results. The former should be an [OData expression](https://learn.microsoft.com/en-us/graph/query-parameters#filter-parameter) as a string to filter the result set on. The latter should be a number setting the maximum number of (filtered) results to return. The default values are `filter=NULL` and `n=Inf`. If `n=NULL`, the `ms_graph_pager` iterator object is returned instead to allow manual iteration over the results.
2525
#'
2626
#' Support in the underlying Graph API for OData queries is patchy. Not all endpoints that return lists of objects support filtering, and if they do, they may not allow all of the defined operators. If your filtering expression results in an error, you can carry out the operation without filtering and then filter the results on the client side.
2727
#' @seealso
2828
#' [ms_graph], [az_app], [az_user], [az_object]
2929
#'
30-
#' [Microsoft Graph overview](https://docs.microsoft.com/en-us/graph/overview),
31-
#' [REST API reference](https://docs.microsoft.com/en-us/graph/api/overview?view=graph-rest-1.0)
30+
#' [Microsoft Graph overview](https://learn.microsoft.com/en-us/graph/overview),
31+
#' [REST API reference](https://learn.microsoft.com/en-us/graph/api/overview?view=graph-rest-1.0)
3232
#'
3333
#' @examples
3434
#' \dontrun{

R/az_object.R

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@
2121
#' Objects of this class should not be created directly. Instead, create an object of the appropriate subclass: [az_app], [az_service_principal], [az_user], [az_group].
2222
#'
2323
#' @section List methods:
24-
#' All `list_*` methods have `filter` and `n` arguments to limit the number of results. The former should be an [OData expression](https://docs.microsoft.com/en-us/graph/query-parameters#filter-parameter) as a string to filter the result set on. The latter should be a number setting the maximum number of (filtered) results to return. The default values are `filter=NULL` and `n=Inf`. If `n=NULL`, the `ms_graph_pager` iterator object is returned instead to allow manual iteration over the results.
24+
#' All `list_*` methods have `filter` and `n` arguments to limit the number of results. The former should be an [OData expression](https://learn.microsoft.com/en-us/graph/query-parameters#filter-parameter) as a string to filter the result set on. The latter should be a number setting the maximum number of (filtered) results to return. The default values are `filter=NULL` and `n=Inf`. If `n=NULL`, the `ms_graph_pager` iterator object is returned instead to allow manual iteration over the results.
2525
#'
2626
#' Support in the underlying Graph API for OData queries is patchy. Not all endpoints that return lists of objects support filtering, and if they do, they may not allow all of the defined operators. If your filtering expression results in an error, you can carry out the operation without filtering and then filter the results on the client side.
2727
#' @seealso
2828
#' [ms_graph], [az_app], [az_service_principal], [az_user], [az_group]
2929
#'
30-
#' [Microsoft Graph overview](https://docs.microsoft.com/en-us/graph/overview),
31-
#' [REST API reference](https://docs.microsoft.com/en-us/graph/api/overview?view=graph-rest-1.0)
30+
#' [Microsoft Graph overview](https://learn.microsoft.com/en-us/graph/overview),
31+
#' [REST API reference](https://learn.microsoft.com/en-us/graph/api/overview?view=graph-rest-1.0)
3232
#'
3333
#' @format An R6 object of class `az_object`, inheriting from `ms_object`.
3434
#' @export

R/az_svc_principal.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
#' @seealso
2222
#' [ms_graph], [az_app], [az_object]
2323
#'
24-
#' [Azure Microsoft Graph overview](https://docs.microsoft.com/en-us/graph/overview),
25-
#' [REST API reference](https://docs.microsoft.com/en-us/graph/api/overview?view=graph-rest-1.0)
24+
#' [Azure Microsoft Graph overview](https://learn.microsoft.com/en-us/graph/overview),
25+
#' [REST API reference](https://learn.microsoft.com/en-us/graph/api/overview?view=graph-rest-1.0)
2626
#'
2727
#' @format An R6 object of class `az_service_principal`, inheriting from `az_object`.
2828
#' @export

R/az_user.R

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@
2525
#' Creating new objects of this class should be done via the `create_user` and `get_user` methods of the [ms_graph] and [az_app] classes. Calling the `new()` method for this class only constructs the R object; it does not call the Microsoft Graph API to create the actual user account.
2626
#'
2727
#' @section List methods:
28-
#' All `list_*` methods have `filter` and `n` arguments to limit the number of results. The former should be an [OData expression](https://docs.microsoft.com/en-us/graph/query-parameters#filter-parameter) as a string to filter the result set on. The latter should be a number setting the maximum number of (filtered) results to return. The default values are `filter=NULL` and `n=Inf`. If `n=NULL`, the `ms_graph_pager` iterator object is returned instead to allow manual iteration over the results.
28+
#' All `list_*` methods have `filter` and `n` arguments to limit the number of results. The former should be an [OData expression](https://learn.microsoft.com/en-us/graph/query-parameters#filter-parameter) as a string to filter the result set on. The latter should be a number setting the maximum number of (filtered) results to return. The default values are `filter=NULL` and `n=Inf`. If `n=NULL`, the `ms_graph_pager` iterator object is returned instead to allow manual iteration over the results.
2929
#'
3030
#' Support in the underlying Graph API for OData queries is patchy. Not all endpoints that return lists of objects support filtering, and if they do, they may not allow all of the defined operators. If your filtering expression results in an error, you can carry out the operation without filtering and then filter the results on the client side.
3131
#' @seealso
3232
#' [ms_graph], [az_app], [az_group], [az_device], [az_object]
3333
#'
34-
#' [Microsoft Graph overview](https://docs.microsoft.com/en-us/graph/overview),
35-
#' [REST API reference](https://docs.microsoft.com/en-us/graph/api/overview?view=graph-rest-1.0)
34+
#' [Microsoft Graph overview](https://learn.microsoft.com/en-us/graph/overview),
35+
#' [REST API reference](https://learn.microsoft.com/en-us/graph/api/overview?view=graph-rest-1.0)
3636
#'
3737
#' @examples
3838
#' \dontrun{

R/batch.R

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
#' @seealso
2020
#' [call_batch_endpoint]
2121
#'
22-
#' [Microsoft Graph overview](https://docs.microsoft.com/en-us/graph/overview),
23-
#' [Batch endpoint documentation](https://docs.microsoft.com/en-us/graph/json-batching)
22+
#' [Microsoft Graph overview](https://learn.microsoft.com/en-us/graph/overview),
23+
#' [Batch endpoint documentation](https://learn.microsoft.com/en-us/graph/json-batching)
2424
#'
2525
#' @examples
2626
#' graph_request$new("me")
@@ -122,8 +122,8 @@ public=list(
122122
#' @seealso
123123
#' [graph_request], [call_graph_endpoint]
124124
#'
125-
#' [Microsoft Graph overview](https://docs.microsoft.com/en-us/graph/overview),
126-
#' [Batch endpoint documentation](https://docs.microsoft.com/en-us/graph/json-batching)
125+
#' [Microsoft Graph overview](https://learn.microsoft.com/en-us/graph/overview),
126+
#' [Batch endpoint documentation](https://learn.microsoft.com/en-us/graph/json-batching)
127127
#'
128128
#' [OData documentation on batch requests](https://docs.oasis-open.org/odata/odata-json-format/v4.01/odata-json-format-v4.01.html#sec_BatchRequestsandResponses)
129129
#'

0 commit comments

Comments
 (0)