create_reservation {EDIutils} | R Documentation |
Create reservation
Description
Reserves the next available identifier for the specified scope
Usage
create_reservation(scope, env = "production")
Arguments
scope |
(character) Scope of data package |
env |
(character) Repository environment. Can be: "production", "staging", or "development". |
Value
(numeric) Identifier of reserved data package
Note
User authentication is required (see login()
)
See Also
Other Identifier Reservations:
delete_reservation()
,
list_active_reservations()
,
list_reservation_identifiers()
Examples
## Not run:
login()
# Create reservation
identifier <- create_reservation(scope = "edi", env = "staging")
identifier
#> [1] 604
# Delete reservation
delete_reservation(scope = "edi", identifier = identifier, env = "staging")
#> [1] 604
logout()
## End(Not run)
[Package EDIutils version 1.0.3 Index]