目次

Search

  1. はじめに
  2. Cloud Integration Hub入門
  3. Hubの管理
  4. プロジェクトおよびアセットの管理
  5. アプリケーション
  6. トピック
  7. Data Integrationタスク
  8. ファイル取り込みタスク
  9. パブリケーション
  10. サブスクリプション
  11. 追跡と監視
  12. Cloud統合ハブのREST API
  13. 用語解説

Cloud Integration Hub

Cloud Integration Hub

Change Publication Subscription Mode REST API

Change Publication Subscription Mode REST API

Cloud Integration Hub
Change Publication Subscription Mode REST APIを使用して、パブリケーションまたはサブスクリプションのモードを変更します。モード変更を行うと、無効化されたパブリケーションまたはサブスクリプションは有効になり、有効化されたパブリケーションまたはサブスクリプションは無効になります。
パブリケーションのモードを変更するには、次のREST URLを使用します。
https://<pod><baseUrl>/
dih-console/api/v1/publication/changemode
説明:
  • <pod>
    Cloud Integration Hub
    にアクセスする
    Informatica Intelligent Cloud Services
    のpoint of delivery(PoD)の名前です。例えば、
    cih-pod1
    または
    emw1-cih
    です。
  • <baseUrl>
    Informatica Intelligent Cloud Services
    のURLです。例えば、
    dm-us.informaticacloud.com/
    です。
例:
https://cih-pod1.dm-us.informaticacloud.com/
dih-console/api/v1/publication/changemode
サブスクリプションのモードを変更するには、次のREST URLを使用します。
https:
https://<pod><baseUrl>/
dih-console/api/v1/subscription/changemode
場所:
  • <pod>
    Cloud Integration Hub
    にアクセスする
    Informatica Intelligent Cloud Services
    のpoint of delivery(PoD)の名前です。例えば、
    cih-pod1
    または
    emw1-cih
    です。
  • <baseUrl>
    Informatica Intelligent Cloud Services
    のURLです。例えば、
    dm-us.informaticacloud.com/
    です。
例:
https://cih-pod1.dm-us.informaticacloud.com/
dih-console/api/v1/subscription/changemode
Cloud Integration Hub
のURLから
<pod>
および
<baseUrl>
の値をコピーするには、まず
Informatica Intelligent Cloud Services
の[マイサービス]ページからそのURLにアクセスする必要があります。
パブリケーションのモード変更の要求構文
パブリケーションのモードを変更するには、次の要求構文を使用します。
{ "publicationName": "<publicationName>", "mode": "<enable/disable>" }
以下に例を示します。
{ "publicationName": "daily_sales", "mode": "enable" }
サブスクリプションのモード変更の要求構文
サブスクリプションのモードを変更するには、次の要求構文を使用します。
{ "subscriptionName": "<subscriptionName>", "mode": "<enable/pause/disable>" }
例:
{ "subscriptionName": "daily_reports", "mode": "disable" }

トップに戻る