Get Autoscale Schedulers#
指定されたクエリに基づいて、すべてのオートスケールの実行スケジュールを取得します。
APIエンドポイント#
リージョン | APIエンドポイント |
---|---|
西日本リージョン3の場合 | https://autoscale.jp-west-3.cloud.global.fujitsu.com |
東日本リージョン3の場合 | https://autoscale.jp-east-3.cloud.global.fujitsu.com |
HTTPメソッドとURI#
GET
/v2.0/autoscale_schedulers
HTTPステータスコード#
正常時:200
エラー時:400, 401, 404, 500
リクエストパラメータの説明#
名前 | In | Type | デフォルト値 /必須指定 |
Description |
---|---|---|---|---|
X-Auth-Token | header | string | 必須 | 認証のトークン |
レスポンスボディ(正常系)の説明#
名前 | Type | Description |
---|---|---|
name | string | スケジュールを識別するための名前 |
projectId | string | プロジェクトID |
time | string | オートスケールのAPIを実行する時刻(cron形式) 分の単位は00固定で置き換えられるため、時刻は最低1時間単位です。 |
method | string | オートスケールのAPIのHTTPメソッド |
url | string | オートスケールのAPIのURL |
リクエスト例#
curl -H "X-Auth-Token: ImFkbWluVVJMIjogImh0dHA6Ly8xMC4x..." \ "https://autoscale.jp-west-3.cloud.global.fujitsu.com/v2.0/autoscale_schedulers "
レスポンス例#
[ { "name": "testname", "projectId": "51e6d9b2783442e7b3450a59f9bfc5fe", "time": "00 * * 5 *", "method": "POST", "url": "http://test/v1/51e6d9b2783442e7b3450a59f9bfc5fe/stacks/test/test/resources/test/signal" } ]