Update tag
PUThttp://localhost:8090/api/metalakes/:metalake/tags/:tag
Alters the specified tag information in the specified metalake
Request
Path Parameters
metalake stringrequired
The name of the metalake
tag stringrequired
The name of the tag
- application/json
Body
updates
object[]
required
Responses
- 200
- 404
- 5xx
Returns the updated tag object
- application/vnd.gravitino.v1+json
- Schema
- Example (from schema)
- TagResponse
Schema
code int32
Possible values: [0
]
Status code of the response
tag
object
{
"code": 0,
"tag": {
"name": "string",
"comment": "string",
"audit": {
"creator": "string",
"createTime": "2024-07-29T15:51:28.071Z",
"lastModifier": "string",
"lastModifiedTime": "2024-07-29T15:51:28.071Z"
},
"properties": {},
"inherited": true
}
}
{
"code": 0,
"tag": {
"name": "my_tag1",
"comment": "This is my tag1",
"properties": {
"key1": "value1",
"key2": "value2"
},
"audit": {
"creator": "gravitino",
"createTime": "2023-12-08T03:41:25.595Z"
},
"inherited": false
}
}
Not Found - The specified tag does not exist in the specified metalake
- application/vnd.gravitino.v1+json
- Schema
- Example (from schema)
- NoSuchMetalakeException
- NoSuchTagException
Schema
code integerrequired
Possible values: >= 1000
and <= 1100
HTTP response code
type stringrequired
Internal type definition of the error
message stringrequired
A human-readable message
stack string[]
{
"code": 1002,
"type": "string",
"message": "string",
"stack": [
"string"
]
}
{
"code": 1003,
"type": "NoSuchMetalakeException",
"message": "Failed to operate metalake(s) [test] operation [LOAD], reason [NoSuchMetalakeException]",
"stack": [
"org.apache.gravitino.exceptions.NoSuchMetalakeException: Metalake test does not exist",
"..."
]
}
{
"code": 1003,
"type": "NoSuchTagException",
"message": "Failed to operate tag(s) [my_tag] operation [LOAD] under metalake [my_test_metalake], reason [NoSuchTagException]",
"stack": [
"org.apache.gravitino.exceptions.NoSuchTagException: Tag my_tag does not exist",
"..."
]
}
A server-side problem that might not be addressable from the client side. Used for server 5xx errors without more specific documentation in individual routes.
- application/vnd.gravitino.v1+json
- Schema
- Example (from schema)
- Example
Schema
code integerrequired
Possible values: >= 1000
and <= 1100
HTTP response code
type stringrequired
Internal type definition of the error
message stringrequired
A human-readable message
stack string[]
{
"code": 1002,
"type": "string",
"message": "string",
"stack": [
"string"
]
}
{
"code": 1002,
"type": "RuntimeException",
"message": "Internal Server Error",
"stack": [
"java.lang.RuntimeException: Internal Server Error"
]
}
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L -X PUT 'http://localhost:8090/api/metalakes/:metalake/tags/:tag' \
-H 'Content-Type: application/json' \
-H 'Accept: application/vnd.gravitino.v1+json' \
-H 'Authorization: Bearer <TOKEN>' \
--data-raw '{
"updates": [
{
"@type": "rename",
"newName": "my_tag_new"
},
{
"@type": "updateComment",
"newComment": "This is my new tag comment"
},
{
"@type": "setProperty",
"property": "key1",
"value": "value1"
},
{
"@type": "removeProperty",
"property": "key2"
}
]
}'
ResponseClear