adla_list: List the available accounts.

Description Usage Arguments Value See Also Examples

View source: R/list.R

Description

This function does not (yet) support the query parameters. Perhaps this can be achieved using (...). Perhaps is can be achieved by using some sort of OData-query S3 object

Usage

1
adla_list(token, subscription_id)

Arguments

token

token, can be created using AzureOAuth::oauth_token_azure() or AzureOAuth::oauth_service_token_azure()

subscription_id

character, has form "aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee"

Value

List

See Also

Azure Datalake Store Account API reference

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
## Not run: 
  library("httr")
  library("AzureOAuth")

  # assumes this is an Azure native app.
  token <- oauth_token_azure(
    tenant_id = "aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee",
    application_id = "ffffffff-gggg-hhhh-iiii-jjjjjjjjjjjj",
    name = "foo"
  )

  adla_list(
    token = token,
    subscription_id = "kkkkkkkk-llll-mmmm-nnnn-oooooooooooo",
  )

## End(Not run)

ijlyttle/AzureDatalakeStoreAccount documentation built on May 5, 2019, 5:56 p.m.