Cloud Data Streaming Service Versionの照会
- 印刷する
- PDF
Cloud Data Streaming Service Versionの照会
- 印刷する
- PDF
記事の要約
この要約は役に立ちましたか?
ご意見ありがとうございます
VPC環境で利用できます。
説明
Cloud Data Streaming Serviceのバージョンを照会します。
リクエスト
リクエストURL
GET https://clouddatastreamingservice.apigw.ntruss.com/api/v1/cluster/getCDSSVersionList [KR]
GET https://clouddatastreamingservice.apigw.ntruss.com/api/sgn-v1/cluster/getCDSSVersionList [SGN]
GET https://clouddatastreamingservice.apigw.ntruss.com/api/jpn-v1/cluster/getCDSSVersionList [JPN]
リクエストヘッダ
ヘッダ名 | 説明 |
---|---|
x-ncp-apigw-timestamp | 1970年1月1日00:00:00協定世界時(UTC)からの経過時間をミリ秒(Millisecond)で表したもので、 API Gatewayサーバとの時間差が5分以上の場合、有効ではないリクエストとみなす x-ncp-apigw-timestamp:{Timestamp} |
x-ncp-iam-access-key | NAVERクラウドプラットフォームのポータルから発行されたAccess Key ID値x-ncp-iam-access-key:{Account Access Key} |
x-ncp-apigw-signature-v2 | Access Key ID値とSecret Keyで暗号化した署名x-ncp-apigw-signature-v2:{API Gateway Signature} |
Content-Type | リクエストボディーcontent typeをapplication/jsonに指定Content-Type: application/json |
リクエスト例
GET https://clouddatastreamingservice.apigw.ntruss.com/api/v1/cluster/getCDSSVersionList
HOST: clouddatastreamingservice.apigw.ntruss.com
Content-Type: application/json
x-ncp-apigw-signature-v2: zq0FrtlU8JZJi9esTK31bCQUNG3H+jo4CMjMkJDoWSc=
x-ncp-apigw-timestamp: 1593848345548
x-ncp-iam-access-key: 7fIvgFY428mtY6sY8maw
curl -X GET "https://clouddatastreamingservice.apigw.ntruss.com/api/v1/cluster/getCDSSVersionList" \
-H "accept: application/json" \
-H "Content-Type: application/json" \
-H "x-ncp-iam-access-key: 7fIvgFY428mtY6sY8maw" \
-H "x-ncp-apigw-timestamp: 1601971222179" \
-H "x-ncp-apigw-signature-v2: zrCelnR48AADdK/uh6Xe3yy468i8KpQoewYHUmeqYh4="
レスポンスパラメータ
public class GetCDSSVersionListResponseVo {
List<KafkaVersion> kafkaVersionList;
}
public class KafkaVersion {
String kafkaVersionCode;
String applicationVersionName;
String kafkaVersionName;
String cmakVersionName;
}
フィールド
パラメータ名 | タイプ | 説明 |
---|---|---|
kafkaVersionList | List | 使用可能なCloud Data Streaming Serviceバージョンリスト |
kafkaVersionCode | String | Kafkaバージョンコード |
applicationVersionName | String | Cloud Data Streaming Serviceバージョン名 |
kafkaVersionName | String | Kafkaバージョン名 |
cmakVersionName | String | CMAKバージョン名 |
レスポンス例
{
"code": 0,
"message": "SUCCESS",
"result": {
"kafkaVersionList": [
{
"kafkaVersionCode": "2403005",
"applicationVersionName": "Kafka 2.4.0, CMAK 3.0.0.5",
"kafkaVersionName": "Kafka 2.4.0",
"cmakVersionName": "CMAK 3.0.0.5"
}
]
},
"requestId": "8b16fa58-547f-4370-b32a-3c7accde9be4"
}
この記事は役に立ちましたか?