is_url | R Documentation |
Miscellaneous utility functions
is_url(x, https_only = FALSE)
get_paged_list(lst, token, next_link_name = "nextLink",
value_name = "value")
x |
For |
https_only |
For |
lst |
A named list of objects. |
token |
For |
next_link_name, value_name |
For |
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.
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.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.