実行のリスト

このAPIを使用して、構成実行をリストします。

API

/selfservice/v1/customers/{supportIdentifier}/{serviceType}/products/config/instances/executions

スコープおよび認可

  • このAPIにアクセスするには、mcs:oci:api:Userスコープが必要です。
  • 顧客についてのみ実行をリストできます。
  • 顧客が構成機能をオプトインしている場合のみ、構成実行APIを使用できます。

ヘッダー

  • Authorization: Bearer <Token>

    <Token>は、認可サーバーによって返されるOAUTHトークン(JWTトークン)です。

ベース・パス

/selfservice/v1/

依存関係

機能

  • このAPIを使用すると、構成の実行をリストできます。
  • 説明が必要なレスポンス・フィールド:
    • idは、チケットの一意の識別子です。

動詞

GET

パラメータ

名前 タイプ 説明 必須
supportIdentifier パス・パラメータ カスタマ・サポートID (CSI) はい
serviceType パス・パラメータ サービス・タイプ(EBSO、EBSZ、EBSIなど) はい
target 問合せパラメータ インスタンス名またはターゲット名 いいえ
status 問合せパラメータ いいえ
subStatus 問合せパラメータ いいえ
customerStatus 問合せパラメータ いいえ
configType 問合せパラメータ いいえ
activityName 問合せパラメータ いいえ
activityType 問合せパラメータ いいえ

サンプル・レスポンス

[
  {
    "id": "3-7JZXAGH",
    "target": "DCMATI",
    "scheduledStart": "2020-08-26T8:53:51-07:00",
    "scheduledEnd": "2020-08-26T10:53:51-07:00",
    "scheduledBy": "<email ID>",
    "createdOn": "2020-08-25T6:51:41-07:00",
    "createdBy": "<email ID>",
    "config": {
      "type": "Trace & Debug",
      "activity": {
        "name": "FRD Enable/Disable",
        "type": "Enable"
      }
    },
    "ticketingDetails": {
      "rfcNumber": "3-7JZXAMZ",
      "primaryContact": "<email ID>",
      "customerNote": "Action Plan",
      "rfcType": "Configuration - EBSO",
      "rfcSubType": "Autoexec-Config",
      "status": "Open",
      "subStatus": "Ready For Execution",
      "customerStatus": "Acknowledged"
    }
  },
  {
    "id": "3-7JZXAMZ",
    "target": "TCMA1I",
    "scheduledStart": "2020-08-26T8:53:51-07:00",
    "scheduledEnd": "2020-08-26T10:53:51-07:00",
    "scheduledBy": "<email ID>",
    "createdOn": "2020-08-25T6:51:41-07:00",
    "createdBy": "<email ID>",
    "config": {
      "type": "Trace & Debug",
      "activity": {
        "name": "FRD Enable/Disable",
        "type": "Disable"
      }
    },
    "ticketingDetails": {
      "rfcNumber": "3-7JZXAMZ",
      "primaryContact": "<email ID>",
      "customerNote": "Action Plan",
      "rfcType": "Configuration - EBSO",
      "rfcSubType": "Autoexec-Config",
      "status": "Open",
      "subStatus": "Ready For Execution",
      "customerStatus": "Acknowledged"
    }
  }
]