Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Make.Auth
SourceThis module manages API parts related to authentification.
Unique identifier to represent a key in the Equinix API.
type config = {
id : id;
token : string;
read_only : bool;
created_at : ODate.Unix.t;
description : string;
}
Representation of an API key config.
id_of_string str
returns a unique identifier from the Equinix API.
create_key t ~read_only ~description ()
creates a new API key on Equinix. Default value to read_only is true.
delete_key t ~id
deletes the key referenced by id
from the user keys.