GetAnthosServerConfig
処理概要
Anthos(GKE Enterprise) に関するバージョン情報等を取得します。
リクエストURL
GET /v1/server-configs/anthos指定するパラメーター
なし
応答フィールド
フィールド (項目) | 型 | 説明 |
---|---|---|
defaultConfig | object |
|
␣anthosVersion | string |
デフォルトのAnthos(GKE Enterprise) バージョン |
␣serviceMeshVersion | string |
デフォルトのAnthos(GKE Enterprise) バージョンにおける、デフォルトのCloud Service Meshバージョン |
␣googleCloudLocation | string |
デフォルトのGoogle Cloudロケーション |
availableConfig | object |
|
␣versions[] | object[] |
|
␣␣anthosVersion | string |
Anthos(GKE Enterprise) バージョン |
␣␣serviceMeshVersions | string[] |
対象Anthos(GKE Enterprise) バージョンで利用可能なCloud Service Meshのバージョン一覧 |
␣googleCloudLocations | string[] |
利用可能なGoogle Cloudロケーションの一覧 |
リクエストサンプル
curl -XGET https://catalog.api.nifcloud.com/v1/server-configs/anthos
-H 'X-Amz-Date: 20230401T000000Z'
-H 'Authorization: AWS4-HMAC-SHA256 ...'
応答サンプル
{
"defaultConfig": {
"anthosVersion": "1.16.0",
"serviceMeshVersion": "1.18.2-asm.0",
"googleCloudLocation": "asia-northeast1"
},
"availableConfig": {
"versions": [
{
"anthosVersion": "1.16.0",
"serviceMeshVersions": [
"1.18.2-asm.0"
]
}
],
"googleCloudLocations": [
"asia-east1",
"asia-east2",
"asia-northeast1",
"asia-northeast2",
"asia-northeast3",
"asia-south1",
"asia-south2",
"asia-southeast1",
"asia-southeast2",
"australia-southeast1",
"australia-southeast2",
"europe-central2",
"europe-north1",
"europe-southwest1",
"europe-west1",
"europe-west10",
"europe-west12",
"europe-west2",
"europe-west3",
"europe-west4",
"europe-west6",
"europe-west8",
"europe-west9",
"me-central1",
"me-west1",
"northamerica-northeast1",
"northamerica-northeast2",
"southamerica-east1",
"southamerica-west1",
"us-central1",
"us-east1",
"us-east4",
"us-east5",
"us-south1",
"us-west1",
"us-west2",
"us-west3",
"us-west4"
]
}
}