from gcore import Gcore
client = Gcore(
api_key="My API Key",
)
kv_store = client.fastedge.kv_stores.get(
0,
)
print(kv_store)
{
"id": 123,
"comment": "<string>",
"updated": "2023-11-07T05:31:56Z",
"app_count": 123,
"byod": {
"url": "<string>",
"prefix": "<string>"
},
"stats": {
"kv_count": 123,
"zset_count": 123,
"cf_count": 123,
"size": 123
}
}
from gcore import Gcore
client = Gcore(
api_key="My API Key",
)
kv_store = client.fastedge.kv_stores.get(
0,
)
print(kv_store)
{
"id": 123,
"comment": "<string>",
"updated": "2023-11-07T05:31:56Z",
"app_count": 123,
"byod": {
"url": "<string>",
"prefix": "<string>"
},
"stats": {
"kv_count": 123,
"zset_count": 123,
"cf_count": 123,
"size": 123
}
}
API key for authentication. Make sure to include the word apikey
, followed by a single space and then your token.
Example: apikey 1234$abcdef
Id of the store
Ok
The response is of type object
.
Was this page helpful?