ListRunnerParameterGroups
処理概要
Runnerパラメーターグループの情報一覧を取得します。
リクエストURL
GET /v1/parameterGroups指定するパラメーター
なし
応答フィールド
フィールド (項目) | 型 | 説明 |
---|---|---|
parameterGroups[] | object[] |
|
␣description | string |
メモ |
␣parameterGroupName | string |
Runnerパラメーターグループ |
␣region | string |
Runnerが稼働するリージョン名 |
␣dockerParameters | object |
|
␣␣disableCache | boolean |
キャッシュの無効化 |
␣␣disableEntrypointOverwrite | boolean |
エントリポイントの上書き無効化 |
␣␣extraHosts[] | object[] |
|
␣␣␣hostName | string |
ホスト名 |
␣␣␣ipAddress | string |
IPアドレス |
␣␣image | string |
デフォルトのイメージ |
␣␣oomKillDisable | boolean |
OOMキラーの無効化 |
␣␣privileged | boolean |
特権での実行 |
␣␣shmSize | integer |
/dev/shmに割り当てる容量 |
␣␣tlsVerify | boolean |
TLSの検証 |
␣␣volumes | string[] |
キャッシュストレージパス |
␣createTime | string |
Runnerパラメーターグループの作成日時 |
␣runnerNames | string[] |
パラメータに紐づいているRunner |
リクエストサンプル
curl -XGET https://jp-east-1.runner.devops.api.nifcloud.com/v1/parameterGroups
-H 'X-Amz-Date: 20230401T000000Z'
-H 'Authorization: AWS4-HMAC-SHA256 ...'
応答サンプル
{
"parameterGroups":[
{
"createTime":"2023-03-15T10:57:10Z",
"description":"My Shared ParameterGroup",
"dockerParameters":{
"disableCache":false,
"disableEntrypointOverwrite":false,
"extraHosts":[],
"image":"alpine:latest",
"oomKillDisable":false,
"privileged":false,
"shmSize":0,
"tlsVerify":false,
"volumes":[
"/cache"
]
},
"parameterGroupName":"runner-abcde",
"region":"jp-east-1",
"runnerNames":[]
}
]
}