generated from TrueCloudLab/basic
Dmitrii Stepanov
02e50307df
All checks were successful
Tests and linters / Tests (1.21) (pull_request) Successful in 1m28s
DCO action / DCO (pull_request) Successful in 1m13s
Tests and linters / Tests (1.20) (pull_request) Successful in 1m37s
Tests and linters / Tests with -race (pull_request) Successful in 1m34s
Tests and linters / Staticcheck (pull_request) Successful in 1m40s
Tests and linters / Lint (pull_request) Successful in 2m18s
Signed-off-by: Dmitrii Stepanov <d.stepanov@yadro.com>
56 lines
2.1 KiB
Go
56 lines
2.1 KiB
Go
package native
|
|
|
|
const (
|
|
MethodGetObject = "GetObject"
|
|
MethodPutObject = "PutObject"
|
|
MethodHeadObject = "HeadObject"
|
|
MethodDeleteObject = "DeleteObject"
|
|
MethodSearchObject = "SearchObject"
|
|
MethodRangeObject = "RangeObject"
|
|
MethodHashObject = "HashObject"
|
|
|
|
MethodPutContainer = "PutContainer"
|
|
MethodDeleteContainer = "DeleteContainer"
|
|
MethodGetContainer = "GetContainer"
|
|
MethodListContainers = "ListContainers"
|
|
MethodSetContainerEACL = "SetContainerEACL"
|
|
MethodGetContainerEACL = "GetContainerEACL"
|
|
|
|
ResourceFormatNamespaceObjects = "native:object/%s/*"
|
|
ResourceFormatNamespaceContainerObjects = "native:object/%s/%s/*"
|
|
ResourceFormatNamespaceContainerObject = "native:object/%s/%s/%s"
|
|
|
|
ResourceFormatRootObjects = "native:object//*"
|
|
ResourceFormatRootContainerObjects = "native:object//%s/*"
|
|
ResourceFormatRootContainerObject = "native:object//%s/%s"
|
|
|
|
ResourceFormatAllObjects = "native:object/*"
|
|
|
|
ResourceFormatNamespaceContainer = "native:container/%s/%s"
|
|
ResourceFormatNamespaceContainers = "native:container/%s/*"
|
|
|
|
ResourceFormatRootContainer = "native:container//%s"
|
|
ResourceFormatRootContainers = "native:container//*"
|
|
|
|
ResourceFormatAllContainers = "native:container/*"
|
|
|
|
PropertyKeyActorPublicKey = "$Actor:publicKey"
|
|
PropertyKeyActorRole = "$Actor:role"
|
|
|
|
PropertyKeyObjectVersion = "$Object:version"
|
|
PropertyKeyObjectID = "$Object:objectID"
|
|
PropertyKeyObjectContainerID = "$Object:containerID"
|
|
PropertyKeyObjectOwnerID = "$Object:ownerID"
|
|
PropertyKeyObjectCreationEpoch = "$Object:creationEpoch"
|
|
PropertyKeyObjectPayloadLength = "$Object:payloadLength"
|
|
PropertyKeyObjectPayloadHash = "$Object:payloadHash"
|
|
PropertyKeyObjectType = "$Object:objectType"
|
|
PropertyKeyObjectHomomorphicHash = "$Object:homomorphicHash"
|
|
|
|
PropertyKeyContainerOwnerID = "$Container:ownerID"
|
|
|
|
PropertyValueContainerRoleOwner = "onwer"
|
|
PropertyValueContainerRoleIR = "ir"
|
|
PropertyValueContainerRoleContainer = "container"
|
|
PropertyValueContainerRoleOthers = "others"
|
|
)
|