forked from vast-data/go-vast-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdoc.go
More file actions
12 lines (10 loc) · 689 Bytes
/
doc.go
File metadata and controls
12 lines (10 loc) · 689 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
/*
Package vast_client provides a typed and convenient interface to interact with the VAST Data REST API.
It wraps raw HTTP operations in a structured API, exposing high-level methods to manage VAST resources
like views, volumes, quotas, snapshots, and more. Each resource is available as a sub-client that
supports common CRUD operations (List, Get, GetById, Create, Update, Delete, etc.).
The main entry point is the VMSRest client, which is initialized using a VMSConfig configuration struct.
This configuration allows customization of connection parameters, credentials (username/password or token),
SSL behavior, request timeouts, and request/response hooks.
*/
package vast_client