Abstract Abstract batchBatch create will often return an array of created objects and an array of errors, if any were encountered. This is not guaranteed as the implementation depends on the entity being created.
Abstract batchDeletes the entities with the given ids in the options.
Abstract batchBatch update will often return an array of updated objects and an array of errors, if any were encountered. This is not guaranteed as the implementation depends on the entity being updated.
Abstract createCreates and returns the entity from the object passed in the options.
Abstract deleteDeletes and returns the passed entity object or id(s) in the options.
Abstract getFetches a single entity or a list of entities based on the options passed.
If id is passed in the options, returns a single entity (object). If ids is passed, returns a list of entities.
Abstract getTake collection of entity references and fetches them from the API returning a map keyed by reference
Abstract updateUpdates the entity with the given object in the options.
The updated entity.
Generated using TypeDoc
The client used to fetch, create, update, and delete entities. Implemented by the @contrail/sdk library. ```