Description Usage Arguments Details Value See Also Examples
View source: R/storage_tables.R
Operations with azure tables
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | storage_table(endpoint, ...)
## S3 method for class 'table_endpoint'
storage_table(endpoint, name, ...)
list_storage_tables(endpoint, ...)
## S3 method for class 'table_endpoint'
list_storage_tables(endpoint, ...)
create_storage_table(endpoint, ...)
## S3 method for class 'table_endpoint'
create_storage_table(endpoint, name, ...)
## S3 method for class 'storage_table'
create_storage_table(endpoint, ...)
delete_storage_table(endpoint, ...)
## S3 method for class 'table_endpoint'
delete_storage_table(endpoint, name, confirm = TRUE, ...)
## S3 method for class 'storage_table'
delete_storage_table(endpoint, ...)
|
endpoint |
An object of class |
... |
Other arguments passed to lower-level functions. |
name |
The name of a table in a storage account. |
confirm |
For deleting a table, whether to ask for confirmation. |
These methods are for accessing and managing tables within a storage account.
storage_table
and create_storage_table
return an object of class storage_table
. list_storage_tables
returns a list of such objects.
table_endpoint, table_entity
1 2 3 4 5 6 7 8 9 10 11 12 13 | ## Not run:
endp <- table_endpoint("https://mystorageacct.table.core.windows.net", key="mykey")
create_storage_table(endp, "mytable")
tab <- storage_table(endp, "mytable2")
create_storage_table(tab)
list_storage_tables(endp)
delete_storage_table(tab)
delete_storage_table(endp, "mytable")
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.