Skip to content

AIプロファイル

AIプロファイルは、AIエージェントが利用する LLM の接続方法・権限・固定コンテキストを まとめた設定です。ワークフローの LLM アクションでも利用します。

AIプロファイルの permissions は、そのプロファイルを使うエージェントが到達できる範囲を 決めます。ノートブック・コネクション・エージェントコネクタ・Web 検索 / 取得の それぞれに制限をかけられるため、ここを広げる変更は到達可能性の変更として記録します。

どのプロファイルが実際に使われたかは、操作イベントの context.ai_agent から辿れます。

イベント一覧

イベントリソース説明
ai_profile.createai_profileAIプロファイルが作成された
ai_profile.renameai_profileAIプロファイル名が変更された
ai_profile.change_statusai_profileAIプロファイルが有効化・無効化された
ai_profile.change_modelai_profileAIプロファイルのモデル設定が変更された
ai_profile.change_credentialai_profileAIプロファイルの認証情報が差し替えられた
ai_profile.change_permissionsai_profileAIプロファイルのツール権限が変更された
ai_profile.change_message_loggingai_profileAIプロファイルの会話ログ保存設定が変更された
ai_profile.change_contextai_profileAIプロファイルの固定コンテキストが変更された
ai_profile.add_access_permissionai_profileAIプロファイルの利用権限が付与された
ai_profile.change_access_permissionai_profileAIプロファイルの利用権限のロールが変更された
ai_profile.remove_access_permissionai_profileAIプロファイルの利用権限が削除された
ai_profile.deleteai_profileAIプロファイルが削除された

イベント詳細

ai_profile.create 準備中

AIプロファイルの作成を記録します。

フィールド
event.codeai_profile.create
scope.typeworkspace
resource.typeai_profile
references(なし)
query(なし)
outbound(なし)
change作成時の設定
grant(なし)
extra(なし)

change

作成時点のモデル設定・ツール権限・会話ログ保存設定が入ります。 マネージドプロファイルではプロバイダとモデルを指定できないため、model_tier のみが入ります。 変更後の値は ai_profile.change_modelai_profile.change_permissions から辿れます。

名前モード必須説明
is_activebool必須作成時の有効状態
providerstring任意作成時の LLM プロバイダの識別子
modelstring任意作成時のモデル名
model_tierstring任意作成時のモデルティア。自動選択のときは null です
access_notebookAiProfileNotebookAccess必須作成時のノートブックへの到達範囲
connectionAiProfileAccessMode必須作成時のコネクションへの到達範囲の指定方法
connectorAiProfileAccessMode必須作成時のエージェントコネクタへの到達範囲の指定方法
web_searchbool必須作成時の Web 検索の可否
web_search_domainAiProfileAccessMode必須作成時の Web 検索の到達先ドメインの指定方法
web_fetchbool必須作成時の Web 取得の可否
web_fetch_domainAiProfileAccessMode必須作成時の Web 取得の到達先ドメインの指定方法
store_raw_messagesbool必須作成時の会話ログ保存設定

サンプル

マネージドプロファイルの作成
json
{
  "event": {
    "code": "ai_profile.create",
    ...
  },
  "scope": {
    "type": "workspace",
    ...
  },
  "resource": {
    "type": "ai_profile",
    "uid": "63e1be654aa70ad689601c10",
    "name": "Default",
    "path": "ai_profile/63e1be654aa70ad689601c10",
    "parts": [
      {
        "type": "ai_profile",
        "uid": "63e1be654aa70ad689601c10",
        "name": "Default"
      }
    ],
    ...
  },
  "change": {
    "fields": [
      {
        "name": "is_active",
        "new": true
      },
      {
        "name": "model_tier",
        "new": "premium"
      },
      {
        "name": "access_notebook",
        "new": "all_accessible_notebooks"
      },
      {
        "name": "connection",
        "new": "all"
      },
      {
        "name": "connector",
        "new": "disabled"
      },
      {
        "name": "web_search",
        "new": false
      },
      {
        "name": "web_search_domain",
        "new": "all"
      },
      {
        "name": "web_fetch",
        "new": false
      },
      {
        "name": "web_fetch_domain",
        "new": "all"
      },
      {
        "name": "store_raw_messages",
        "new": false
      }
    ]
  },
  ...
}
カスタムプロファイルの作成
json
{
  "event": {
    "code": "ai_profile.create",
    ...
  },
  "scope": {
    "type": "workspace",
    ...
  },
  "resource": {
    "type": "ai_profile",
    "uid": "63e1be654aa70ad689601c10",
    "name": "Default",
    "path": "ai_profile/63e1be654aa70ad689601c10",
    "parts": [
      {
        "type": "ai_profile",
        "uid": "63e1be654aa70ad689601c10",
        "name": "Default"
      }
    ],
    ...
  },
  "change": {
    "fields": [
      {
        "name": "is_active",
        "new": true
      },
      {
        "name": "provider",
        "new": "anthropic"
      },
      {
        "name": "model",
        "new": "claude-sonnet-5"
      },
      {
        "name": "access_notebook",
        "new": "current_notebook"
      },
      {
        "name": "connection",
        "new": "allow_list"
      },
      {
        "name": "connector",
        "new": "all"
      },
      {
        "name": "web_search",
        "new": true
      },
      {
        "name": "web_search_domain",
        "new": "allow_list"
      },
      {
        "name": "web_fetch",
        "new": true
      },
      {
        "name": "web_fetch_domain",
        "new": "all"
      },
      {
        "name": "store_raw_messages",
        "new": true
      }
    ]
  },
  ...
}

ai_profile.rename 準備中

AIプロファイルの表示名の変更を記録します。

フィールド
event.codeai_profile.rename
scope.typeworkspace
resource.typeai_profile
references(なし)
query(なし)
outbound(なし)
changename
grant(なし)
extra(なし)

change

名前モード必須説明
namestring必須変更前後の表示名
sensitivity: pii

サンプル

json
{
  "event": {
    "code": "ai_profile.rename",
    ...
  },
  "scope": {
    "type": "workspace",
    ...
  },
  "resource": {
    "type": "ai_profile",
    "uid": "63e1be654aa70ad689601c10",
    "name": "Default",
    "path": "ai_profile/63e1be654aa70ad689601c10",
    "parts": [
      {
        "type": "ai_profile",
        "uid": "63e1be654aa70ad689601c10",
        "name": "Default"
      }
    ],
    ...
  },
  "change": {
    "fields": [
      {
        "name": "name",
        "old": "Old",
        "new": "Default"
      }
    ]
  },
  ...
}

ai_profile.change_status 準備中

AIプロファイルの有効化・無効化を記録します。

フィールド
event.codeai_profile.change_status
scope.typeworkspace
resource.typeai_profile
references(なし)
query(なし)
outbound(なし)
changeis_active
grant(なし)
extra(なし)

change

名前モード必須説明
is_activebool必須変更前後の有効状態

サンプル

有効化
json
{
  "event": {
    "code": "ai_profile.change_status",
    ...
  },
  "scope": {
    "type": "workspace",
    ...
  },
  "resource": {
    "type": "ai_profile",
    "uid": "63e1be654aa70ad689601c10",
    "name": "Default",
    "path": "ai_profile/63e1be654aa70ad689601c10",
    "parts": [
      {
        "type": "ai_profile",
        "uid": "63e1be654aa70ad689601c10",
        "name": "Default"
      }
    ],
    ...
  },
  "change": {
    "fields": [
      {
        "name": "is_active",
        "old": false,
        "new": true
      }
    ]
  },
  ...
}
無効化
json
{
  "event": {
    "code": "ai_profile.change_status",
    ...
  },
  "scope": {
    "type": "workspace",
    ...
  },
  "resource": {
    "type": "ai_profile",
    "uid": "63e1be654aa70ad689601c10",
    "name": "Default",
    "path": "ai_profile/63e1be654aa70ad689601c10",
    "parts": [
      {
        "type": "ai_profile",
        "uid": "63e1be654aa70ad689601c10",
        "name": "Default"
      }
    ],
    ...
  },
  "change": {
    "fields": [
      {
        "name": "is_active",
        "old": true,
        "new": false
      }
    ]
  },
  ...
}

ai_profile.change_model 準備中

AIプロファイルのプロバイダ・モデル・モデルティアの変更を記録します。

フィールド
event.codeai_profile.change_model
scope.typeworkspace
resource.typeai_profile
references(なし)
query(なし)
outbound(なし)
change変更されたモデル設定
grant(なし)
extra(なし)

change

変更されたモデル設定の変更前後が入ります。 マネージドプロファイルではプロバイダとモデルを指定できないため、model_tier のみが入ります。 設定されていない項目はフィールドごと入りません。

名前モード必須説明
providerstring任意変更前後の LLM プロバイダの識別子
modelstring任意変更前後のモデル名
model_tierstring任意変更前後のモデルティア。自動選択のときは null です

サンプル

カスタムプロファイルのモデル変更

プロバイダとモデルを利用者が指定するため、両方が入ります。

json
{
  "event": {
    "code": "ai_profile.change_model",
    ...
  },
  "scope": {
    "type": "workspace",
    ...
  },
  "resource": {
    "type": "ai_profile",
    "uid": "63e1be654aa70ad689601c10",
    "name": "Default",
    "path": "ai_profile/63e1be654aa70ad689601c10",
    "parts": [
      {
        "type": "ai_profile",
        "uid": "63e1be654aa70ad689601c10",
        "name": "Default"
      }
    ],
    ...
  },
  "change": {
    "fields": [
      {
        "name": "provider",
        "old": "openai",
        "new": "anthropic"
      },
      {
        "name": "model",
        "old": "gpt-5",
        "new": "claude-sonnet-5"
      }
    ]
  },
  ...
}
マネージドプロファイルのモデルティア変更

プロバイダとモデルは利用者が指定できないため、model_tier のみが入ります。

json
{
  "event": {
    "code": "ai_profile.change_model",
    ...
  },
  "scope": {
    "type": "workspace",
    ...
  },
  "resource": {
    "type": "ai_profile",
    "uid": "63e1be654aa70ad689601c10",
    "name": "Default",
    "path": "ai_profile/63e1be654aa70ad689601c10",
    "parts": [
      {
        "type": "ai_profile",
        "uid": "63e1be654aa70ad689601c10",
        "name": "Default"
      }
    ],
    ...
  },
  "change": {
    "fields": [
      {
        "name": "model_tier",
        "old": "standard",
        "new": "premium"
      }
    ]
  },
  ...
}

ai_profile.change_credential 準備中

AIプロファイルの LLM プロバイダ認証情報の差し替えを記録します。

フィールド
event.codeai_profile.change_credential
scope.typeworkspace
resource.typeai_profile
references(なし)
query(なし)
outbound(なし)
change(なし)
grant(なし)
extra(なし)

サンプル

json
{
  "event": {
    "code": "ai_profile.change_credential",
    ...
  },
  "scope": {
    "type": "workspace",
    ...
  },
  "resource": {
    "type": "ai_profile",
    "uid": "63e1be654aa70ad689601c10",
    "name": "Default",
    "path": "ai_profile/63e1be654aa70ad689601c10",
    "parts": [
      {
        "type": "ai_profile",
        "uid": "63e1be654aa70ad689601c10",
        "name": "Default"
      }
    ],
    ...
  },
  ...
}

ai_profile.change_permissions 準備中

AIプロファイルのツール権限の変更を記録します。

フィールド
event.codeai_profile.change_permissions
scope.typeworkspace
resource.typeai_profile
references(なし)
query(なし)
outbound(なし)
change変更されたツール権限
grant(なし)
extra(なし)

change

変更されたツール権限の変更前後が入ります。変わった項目だけが入ります。

許可・拒否リストの中身(コネクションの識別子、Web の許可ドメイン)は記録せず、 変更があったことだけを _list の項目で示します。 エージェントが実際にどのコネクションを使ったかは query_job.create から辿ってください。

名前モード必須説明
access_notebookAiProfileNotebookAccess任意変更前後のノートブックへの到達範囲
connectionAiProfileAccessMode任意変更前後のコネクションへの到達範囲の指定方法
connection_listフラグ任意コネクションの許可・拒否リストの中身に変更があったことを示す true
connectorAiProfileAccessMode任意変更前後のエージェントコネクタへの到達範囲の指定方法
connector_listフラグ任意エージェントコネクタの許可リストの中身に変更があったことを示す true
web_searchbool任意変更前後の Web 検索の可否
web_search_domainAiProfileAccessMode任意変更前後の Web 検索の到達先ドメインの指定方法
web_search_domain_listフラグ任意Web 検索の許可ドメインの中身に変更があったことを示す true
web_fetchbool任意変更前後の Web 取得の可否
web_fetch_domainAiProfileAccessMode任意変更前後の Web 取得の到達先ドメインの指定方法
web_fetch_domain_listフラグ任意Web 取得の許可ドメインの中身に変更があったことを示す true

サンプル

コネクションとノートブックの制限
json
{
  "event": {
    "code": "ai_profile.change_permissions",
    ...
  },
  "scope": {
    "type": "workspace",
    ...
  },
  "resource": {
    "type": "ai_profile",
    "uid": "63e1be654aa70ad689601c10",
    "name": "Default",
    "path": "ai_profile/63e1be654aa70ad689601c10",
    "parts": [
      {
        "type": "ai_profile",
        "uid": "63e1be654aa70ad689601c10",
        "name": "Default"
      }
    ],
    ...
  },
  "change": {
    "fields": [
      {
        "name": "access_notebook",
        "old": "all_accessible_notebooks",
        "new": "current_notebook"
      },
      {
        "name": "connection",
        "old": "all",
        "new": "allow_list"
      }
    ]
  },
  ...
}
コネクタと Web 検索の許可
json
{
  "event": {
    "code": "ai_profile.change_permissions",
    ...
  },
  "scope": {
    "type": "workspace",
    ...
  },
  "resource": {
    "type": "ai_profile",
    "uid": "63e1be654aa70ad689601c10",
    "name": "Default",
    "path": "ai_profile/63e1be654aa70ad689601c10",
    "parts": [
      {
        "type": "ai_profile",
        "uid": "63e1be654aa70ad689601c10",
        "name": "Default"
      }
    ],
    ...
  },
  "change": {
    "fields": [
      {
        "name": "connector",
        "old": "disabled",
        "new": "all"
      },
      {
        "name": "web_search",
        "old": false,
        "new": true
      }
    ]
  },
  ...
}
拒否リストへの切り替え
json
{
  "event": {
    "code": "ai_profile.change_permissions",
    ...
  },
  "scope": {
    "type": "workspace",
    ...
  },
  "resource": {
    "type": "ai_profile",
    "uid": "63e1be654aa70ad689601c10",
    "name": "Default",
    "path": "ai_profile/63e1be654aa70ad689601c10",
    "parts": [
      {
        "type": "ai_profile",
        "uid": "63e1be654aa70ad689601c10",
        "name": "Default"
      }
    ],
    ...
  },
  "change": {
    "fields": [
      {
        "name": "connection",
        "old": "allow_list",
        "new": "deny_list"
      },
      {
        "name": "connection_list",
        "changed": true
      },
      {
        "name": "web_fetch",
        "old": false,
        "new": true
      },
      {
        "name": "web_fetch_domain",
        "old": "all",
        "new": "allow_list"
      },
      {
        "name": "web_fetch_domain_list",
        "changed": true
      }
    ]
  },
  ...
}
許可リストの中身だけの変更
json
{
  "event": {
    "code": "ai_profile.change_permissions",
    ...
  },
  "scope": {
    "type": "workspace",
    ...
  },
  "resource": {
    "type": "ai_profile",
    "uid": "63e1be654aa70ad689601c10",
    "name": "Default",
    "path": "ai_profile/63e1be654aa70ad689601c10",
    "parts": [
      {
        "type": "ai_profile",
        "uid": "63e1be654aa70ad689601c10",
        "name": "Default"
      }
    ],
    ...
  },
  "change": {
    "fields": [
      {
        "name": "connector_list",
        "changed": true
      },
      {
        "name": "web_search_domain_list",
        "changed": true
      }
    ]
  },
  ...
}

ai_profile.change_message_logging 準備中

AIプロファイルの会話ログ保存設定の変更を記録します。

フィールド
event.codeai_profile.change_message_logging
scope.typeworkspace
resource.typeai_profile
references(なし)
query(なし)
outbound(なし)
changestore_raw_messages
grant(なし)
extra(なし)

change

名前モード必須説明
store_raw_messagesbool必須変更前後の設定値

サンプル

有効化
json
{
  "event": {
    "code": "ai_profile.change_message_logging",
    ...
  },
  "scope": {
    "type": "workspace",
    ...
  },
  "resource": {
    "type": "ai_profile",
    "uid": "63e1be654aa70ad689601c10",
    "name": "Default",
    "path": "ai_profile/63e1be654aa70ad689601c10",
    "parts": [
      {
        "type": "ai_profile",
        "uid": "63e1be654aa70ad689601c10",
        "name": "Default"
      }
    ],
    ...
  },
  "change": {
    "fields": [
      {
        "name": "store_raw_messages",
        "old": false,
        "new": true
      }
    ]
  },
  ...
}
無効化
json
{
  "event": {
    "code": "ai_profile.change_message_logging",
    ...
  },
  "scope": {
    "type": "workspace",
    ...
  },
  "resource": {
    "type": "ai_profile",
    "uid": "63e1be654aa70ad689601c10",
    "name": "Default",
    "path": "ai_profile/63e1be654aa70ad689601c10",
    "parts": [
      {
        "type": "ai_profile",
        "uid": "63e1be654aa70ad689601c10",
        "name": "Default"
      }
    ],
    ...
  },
  "change": {
    "fields": [
      {
        "name": "store_raw_messages",
        "old": true,
        "new": false
      }
    ]
  },
  ...
}

ai_profile.change_context 準備中

AIプロファイルの固定コンテキストの変更を記録します。個別の変更内容は記録しません。

フィールド
event.codeai_profile.change_context
scope.typeworkspace
resource.typeai_profile
references(なし)
query(なし)
outbound(なし)
change(なし)
grant(なし)
extra(なし)

サンプル

json
{
  "event": {
    "code": "ai_profile.change_context",
    ...
  },
  "scope": {
    "type": "workspace",
    ...
  },
  "resource": {
    "type": "ai_profile",
    "uid": "63e1be654aa70ad689601c10",
    "name": "Default",
    "path": "ai_profile/63e1be654aa70ad689601c10",
    "parts": [
      {
        "type": "ai_profile",
        "uid": "63e1be654aa70ad689601c10",
        "name": "Default"
      }
    ],
    ...
  },
  ...
}

ai_profile.add_access_permission 準備中

ユーザー・グループ・全メンバーへの AIプロファイル利用権限の付与を記録します。

フィールド
event.codeai_profile.add_access_permission
scope.typeworkspace
resource.typeai_profile
references(なし)
query(なし)
outbound(なし)
change(なし)
grant付与先と付与権限
extra(なし)

grant

権限が付与された相手(ユーザー・グループ・全メンバー)と付与された権限が入ります。

サンプル

ユーザーへの権限付与
json
{
  "event": {
    "code": "ai_profile.add_access_permission",
    ...
  },
  "scope": {
    "type": "workspace",
    ...
  },
  "resource": {
    "type": "ai_profile",
    "uid": "63e1be654aa70ad689601c10",
    "name": "Default",
    "path": "ai_profile/63e1be654aa70ad689601c10",
    "parts": [
      {
        "type": "ai_profile",
        "uid": "63e1be654aa70ad689601c10",
        "name": "Default"
      }
    ],
    ...
  },
  "grant": {
    "target": {
      "type": "ai_profile",
      "uid": "63e1be654aa70ad689601c10",
      "name": "Default"
    },
    "grantee": {
      "type": "user",
      "uid": "63e1be654aa70ad689601bec",
      "email_addr": "taro@example.com"
    },
    "role": {
      "new": "ai_profile.user"
    }
  },
  ...
}
グループへの権限付与
json
{
  "event": {
    "code": "ai_profile.add_access_permission",
    ...
  },
  "scope": {
    "type": "workspace",
    ...
  },
  "resource": {
    "type": "ai_profile",
    "uid": "63e1be654aa70ad689601c10",
    "name": "Default",
    "path": "ai_profile/63e1be654aa70ad689601c10",
    "parts": [
      {
        "type": "ai_profile",
        "uid": "63e1be654aa70ad689601c10",
        "name": "Default"
      }
    ],
    ...
  },
  "grant": {
    "target": {
      "type": "ai_profile",
      "uid": "63e1be654aa70ad689601c10",
      "name": "Default"
    },
    "grantee": {
      "type": "group",
      "uid": "63e1be654aa70ad689601be3",
      "name": "Data Engineers"
    },
    "role": {
      "new": "ai_profile.owner"
    }
  },
  ...
}
ワークスペース全員への権限付与

特定の相手ではなくワークスペースの全メンバーへ開放した場合です。

json
{
  "event": {
    "code": "ai_profile.add_access_permission",
    ...
  },
  "scope": {
    "type": "workspace",
    ...
  },
  "resource": {
    "type": "ai_profile",
    "uid": "63e1be654aa70ad689601c10",
    "name": "Default",
    "path": "ai_profile/63e1be654aa70ad689601c10",
    "parts": [
      {
        "type": "ai_profile",
        "uid": "63e1be654aa70ad689601c10",
        "name": "Default"
      }
    ],
    ...
  },
  "grant": {
    "target": {
      "type": "ai_profile",
      "uid": "63e1be654aa70ad689601c10",
      "name": "Default"
    },
    "grantee": {
      "type": "workspace",
      "uid": "63e1be654aa70ad689601be0",
      "name": "Acme Analytics"
    },
    "role": {
      "new": "ai_profile.user"
    }
  },
  ...
}

ai_profile.change_access_permission 準備中

AIプロファイル利用権限のロールの変更を記録します。

フィールド
event.codeai_profile.change_access_permission
scope.typeworkspace
resource.typeai_profile
references(なし)
query(なし)
outbound(なし)
change(なし)
grant変更前後のロール
extra(なし)

grant

利用権限のロールが変更された相手(ユーザー・グループ・全メンバー)と変更前後のロールが入ります。

サンプル

json
{
  "event": {
    "code": "ai_profile.change_access_permission",
    ...
  },
  "scope": {
    "type": "workspace",
    ...
  },
  "resource": {
    "type": "ai_profile",
    "uid": "63e1be654aa70ad689601c10",
    "name": "Default",
    "path": "ai_profile/63e1be654aa70ad689601c10",
    "parts": [
      {
        "type": "ai_profile",
        "uid": "63e1be654aa70ad689601c10",
        "name": "Default"
      }
    ],
    ...
  },
  "grant": {
    "target": {
      "type": "ai_profile",
      "uid": "63e1be654aa70ad689601c10",
      "name": "Default"
    },
    "grantee": {
      "type": "user",
      "uid": "63e1be654aa70ad689601bec",
      "email_addr": "taro@example.com"
    },
    "role": {
      "old": "ai_profile.user",
      "new": "ai_profile.owner"
    }
  },
  ...
}

ai_profile.remove_access_permission 準備中

AIプロファイル利用権限の削除を記録します。

フィールド
event.codeai_profile.remove_access_permission
scope.typeworkspace
resource.typeai_profile
references(なし)
query(なし)
outbound(なし)
change(なし)
grant削除先と削除された権限
extra(なし)

grant

権限が削除された相手(ユーザー・グループ・全メンバー)と削除された権限が入ります。

サンプル

json
{
  "event": {
    "code": "ai_profile.remove_access_permission",
    ...
  },
  "scope": {
    "type": "workspace",
    ...
  },
  "resource": {
    "type": "ai_profile",
    "uid": "63e1be654aa70ad689601c10",
    "name": "Default",
    "path": "ai_profile/63e1be654aa70ad689601c10",
    "parts": [
      {
        "type": "ai_profile",
        "uid": "63e1be654aa70ad689601c10",
        "name": "Default"
      }
    ],
    ...
  },
  "grant": {
    "target": {
      "type": "ai_profile",
      "uid": "63e1be654aa70ad689601c10",
      "name": "Default"
    },
    "grantee": {
      "type": "user",
      "uid": "63e1be654aa70ad689601bec",
      "email_addr": "taro@example.com"
    },
    "role": {
      "old": "ai_profile.user"
    }
  },
  ...
}

ai_profile.delete 準備中

AIプロファイルの削除を記録します。

フィールド
event.codeai_profile.delete
scope.typeworkspace
resource.typeai_profile
references(なし)
query(なし)
outbound(なし)
change(なし)
grant(なし)
extra(なし)

サンプル

json
{
  "event": {
    "code": "ai_profile.delete",
    ...
  },
  "scope": {
    "type": "workspace",
    ...
  },
  "resource": {
    "type": "ai_profile",
    "uid": "63e1be654aa70ad689601c10",
    "name": "Default",
    "path": "ai_profile/63e1be654aa70ad689601c10",
    "parts": [
      {
        "type": "ai_profile",
        "uid": "63e1be654aa70ad689601c10",
        "name": "Default"
      }
    ],
    ...
  },
  ...
}

Enums

AiProfileNotebookAccess

AIプロファイルがノートブックへ到達できる範囲です。

説明
all_accessible_notebooks操作するユーザーがアクセスできるノートブックすべて
current_notebook現在開いているノートブックのみ

AiProfileAccessMode

AIプロファイルがリソースへ到達できる範囲の指定方法です。

説明
allすべて許可
allow_list指定したものだけ許可
deny_list指定したものだけ拒否
disabledすべて拒否

Codatum Audit Events 監査ログイベントカタログ