Learn R Programming

EDIutils (version 1.0.3)

create_reservation: Create reservation

Description

Reserves the next available identifier for the specified scope

Usage

create_reservation(scope, env = "production")

Value

(numeric) Identifier of reserved data package

Arguments

scope

(character) Scope of data package

env

(character) Repository environment. Can be: "production", "staging", or "development".

See Also

Other Identifier Reservations: delete_reservation(), list_active_reservations(), list_reservation_identifiers()

Examples

Run this code
if (FALSE) {

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()
}

Run the code above in your browser using DataLab