Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Table of Contents
minLevel1
maxLevel7
typeflat

...

Info

이 API는 접속한 사용자가 생성한 데이터 레이크의 목록을 반환한다. 각 Lake의 자세한 정보는 반환되지 않으므로, Lake의 자세한 정보를 원한다면 View Lake API를 이용해야 한다.

HTTP Request

Code Block
GET https://${CloudVendor}.${CountryCode}.machlake.com/lakes

...

Code Block
Status 200

{
    "lake": [
        {
            "lake_id": "lake01",
            "lake_info": {
                "lake_name": "My Lake1",
                "lake_plan": "basic",
                "region"   : "us-west-1",
                "timezone" : "America/Los_Angeles"
            }
        },
        {
            "lake_id": "lake02",
            "lake_info": {
                "lake_name": "My Lake2",
                "lake_plan": "enterprise",
                "region"   : "ap-northeast-2",
                "timezone" : "Asia/Seoul"
            }
        }
    ]
}

Sample Code

...

titlewindow(batch)

github

...

Expand
titlelinux(shell)

github

Code Block
# Text Encoding to UTF-8 in CMD
# Example For Get Lake List API by using curl in shell script
# written by yeony kim

API_KEY=YOUR_API_TOKEN

CONTENT_HEADER="Content-Type:application/json"
API_HEADER="x-api-key:$API_KEY"

URL=https://api.machlake.com/lakes

# ------------------------------------------------------------------------------------------------- #

# CASE - GET LAKE List

curl -k -X GET $URL -H $CONTENT_HEADER -H $API_HEADER

# Return Format
# {"data":{"lake":[{"lake_id":"YOUR_LAKE_ID","lake_info":{"lake_name":"sample_lake","lake_plan":"basic","region":"ap-northeast-2","timezone":"Asia/Seoul"}}],"mount":[],"share":[]},"status":"success"}

...