is_url {AzureRMR} | R Documentation |
Miscellaneous utility functions
Description
Miscellaneous utility functions
Usage
is_url(x, https_only = FALSE)
get_paged_list(lst, token, next_link_name = "nextLink",
value_name = "value")
Arguments
x |
For |
https_only |
For |
lst |
A named list of objects. |
token |
For |
next_link_name , value_name |
For |
Details
get_paged_list
reconstructs a complete list of objects from a paged response. Many Resource Manager list operations will return paged output, that is, the response contains a subset of all items, along with a URL to query to retrieve the next subset. get_paged_list
retrieves each subset and returns all items in a single list.
Value
For get_paged_list
, a list.
For is_url
, whether the object appears to be a URL (is character of length 1, and starts with the string "http"
). Optionally, restricts the check to HTTPS URLs only.