mirror of
https://github.com/pgsty/minio.git
synced 2026-07-19 12:10:24 +03:00
gcs: Check if the given project id argument exists (#4583)
Using GCS resource manager API, check if the provided project id is already created and associated to the current user account.
This commit is contained in:
committed by
Harshavardhana
parent
6b70f429ed
commit
eaa41e4086
@@ -19,9 +19,12 @@ package cmd
|
||||
import "errors"
|
||||
|
||||
var (
|
||||
// ProjectID format is not valid.
|
||||
// Project ID format is not valid.
|
||||
errGCSInvalidProjectID = errors.New("GCS project id is either empty or invalid")
|
||||
|
||||
// Project ID not found
|
||||
errGCSProjectIDNotFound = errors.New("unknown project id")
|
||||
|
||||
// Multipart identifier is not in the correct form.
|
||||
errGCSNotValidMultipartIdentifier = errors.New("Not a valid multipart identifier")
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user