对API中的源的专用链接支持

AVAILABILITY
以下源支持此功能:
专用链接支持当前仅适用于已购买Adobe Healthcare Shield或Adobe Privacy & Security Shield的组织。

您可以使用专用链接功能为Adobe Experience Platform源创建要连接的专用端点。 使用私有IP地址将源安全地连接到虚拟网络,消除对公共IP的需求,并减少攻击面。 通过消除对复杂防火墙或网络地址转换配置的需求,简化网络设置,同时确保数据流量仅能到达批准的服务。

阅读本指南,了解如何使用API创建和使用专用端点。

recommendation-more-help

专用链接支持的许可证使用授权

源中专用链接支持的许可证使用权利指标如下:

  • 客户有权通过受支持的源(Azure Blob Storage、ADLS Gen2和Azure File Storage)在所有沙盒和组织中每年最多传输2 TB的数据。
  • 对于所有生产沙盒,每个组织最多可以有10个端点。
  • 对于所有开发沙盒,每个组织最多可以有1个端点。

快速入门

本指南要求您对Experience Platform的以下组件有一定的了解:

  • : Experience Platform允许从各种源摄取数据,同时让您能够使用Experience Platform服务来构建、标记和增强传入数据。
  • 沙盒: Experience Platform提供了将单个Experience Platform实例划分为多个单独的虚拟环境的虚拟沙盒,以帮助开发和改进数字体验应用程序。

使用平台API

有关如何成功调用平台API的信息,请参阅平台API快速入门指南。

创建专用端点 create-private-endpoint

要创建专用端点,请向/privateEndpoints发出POST请求。

API格式

POST /privateEndpoints

请求

以下请求创建一个专用端点:

选择以查看请求示例
code language-shell
curl -X POST \
  'https://platform.adobe.io/data/foundation/connectors/privateEndpoints/' \
  -H 'Authorization: Bearer {ACCESS_TOKEN}' \
  -H 'x-api-key: {API_KEY}' \
  -H 'x-gw-ims-org-id: {ORG_ID}' \
  -H 'x-sandbox-name: {SANDBOX_NAME}' \
  -H 'Content-Type: application/json' \
  -d '{
      "name": "ACME Private Endpoint",
      "subscriptionId": "4281a16a-696f-4993-a7d3-a3da32b846f3",
      "resourceGroupName": "acme-sources-experience-platform",
      "resourceName": "acmeexperienceplatform",
      "connectionSpec": {
          "id": "4c10e202-c428-4796-9208-5f1f5732b1cf",
          "version": "1.0"
    }
  }'
table 0-row-2 1-row-2 2-row-2 3-row-2 4-row-2 5-row-2 6-row-2
属性 描述
name 专用端点的名称。
subscriptionId 与您的Azure订阅关联的ID。 有关详细信息,请参阅Azure上的指南,从 Azure Portal中检索您的订阅和租户ID。
resourceGroupName Azure上资源组的名称。 资源组包含Azure解决方案的相关资源。 有关详细信息,请阅读有关Azure管理资源组指南。
resourceName 资源的名称。 在Azure中,资源引用虚拟机、Web应用和数据库等实例。 有关详细信息,请阅读Azure上的指南,以了解 Azure 资源管理器
connectionSpec.id 您正在使用的源的连接规范ID。
connectionSpec.version 您正在使用的连接规范ID的版本。

响应

成功的响应会返回以下内容:

选择以查看响应示例
code language-json
{
  "id": "2c7f6574-299a-4832-aec5-886e875872e2",
  "name": "ACME Private Endpoint",
  "subscriptionId": "4281a16a-696f-4993-a7d3-a3da32b846f3",
  "resourceGroupName": "acme-sources-experience-platform",
  "resourceName": "acmeexperienceplatform",
  "connectionSpec": {
      "id": "4c10e202-c428-4796-9208-5f1f5732b1cf",
      "version": "1.0"
  },
  "state": "Pending"
}
table 0-row-2 1-row-2 2-row-2 3-row-2 4-row-2 5-row-2 6-row-2 7-row-2 8-row-2
属性 描述
id 新创建的专用端点的ID。
name 专用端点的名称。
subscriptionId 与您的Azure订阅关联的ID。 有关详细信息,请参阅Azure上的指南,从 Azure Portal中检索您的订阅和租户ID。
resourceGroupName Azure上资源组的名称。 资源组包含Azure解决方案的相关资源。 有关详细信息,请阅读有关Azure管理资源组指南。
resourceName 资源的名称。 在Azure中,资源引用虚拟机、Web应用和数据库等实例。 有关详细信息,请阅读Azure上的指南,以了解 Azure 资源管理器
connectionSpec.id 您正在使用的源的连接规范ID。
connectionSpec.version 您正在使用的连接规范ID的版本。
state

私有端点的当前状态。 有效状态包括:

  • Pending
  • Failed
  • Approved
  • Rejected

检索专用端点列表 retrieve-private-endpoints

要从您组织中的给定沙盒检索专用端点列表,请向/privateEndpoints发出GET请求。

API格式

GET /privateEndpoints

请求

以下请求检索您组织中存在的所有专用端点的列表。

选择以查看请求示例
code language-shell
curl -X GET \
  'https://platform.adobe.io/data/foundation/connectors/privateEndpoints' \
  -H 'Authorization: Bearer {ACCESS_TOKEN}' \
  -H 'x-api-key: {API_KEY}' \
  -H 'x-gw-ims-org-id: {ORG_ID}' \
  -H 'x-sandbox-name: {SANDBOX_NAME}' \
  -H 'Content-Type: application/json' \

响应

成功的响应将返回贵组织中的专用端点列表。

选择以查看响应示例
code language-json
{
  "items": [
       {
      "id": "ac9eb695-0d1a-42d4-bc45-0842aeaa1eff",
      "name": "TEST_E2E_29_Jan",
      "subscriptionId": "4281a16a-696f-4993-a7d3-a3da32b846f3",
      "resourceGroupName": "acme-noid-experience-platform",
      "resourceName": "acmeprivatelinking",
      "fqdns": [

      ],
      "state": "Approved",
      "connectionSpec": {
        "id": "4c10e202-c428-4796-9208-5f1f5732b1cf",
        "version": "1.0"
      }
    },
          {
      "id": "4c9eb695-0d1a-42d4-bc45-0842aeaa1efr",
      "name": "TEST_E2E_29_Jan",
      "subscriptionId": "5a0ff2f3-53d6-47e4-abb5-10a18bd3fff0",
      "resourceGroupName": "acme-sources-experience-platform",
      "resourceName": "acmeexperienceplatform",
      "fqdns": [

      ],
      "state": "Pending",
      "connectionSpec": {
        "id": "b3ba5556-48be-44b7-8b85-ff2b69b46dc4",
        "version": "1.0"
      }
    }
  ]
}

检索给定源的专用端点列表 retrieve-private-endpoints-by-source

要检索与特定源对应的私有端点的列表,请向/privateEndpoints端点发出GET请求并提供源的connectionSpec.id

API格式

GET /privateEndpoints?property=connectionSpec.id=={CONNECTION_SPEC_ID}
查询参数
描述
{CONNECTION_SPEC_ID}
要搜索专用端点的源的连接规范ID。

请求

以下请求检索与具有连接规范ID的源对应的所有专用端点的列表: 4c10e202-c428-4796-9208-5f1f5732b1cf

选择以查看请求示例
code language-shell
curl -X GET \
  'https://platform.adobe.io/data/foundation/connectors/privateEndpoints?property=connectionSpec.id==4c10e202-c428-4796-9208-5f1f5732b1cf' \
  -H 'Authorization: Bearer {ACCESS_TOKEN}' \
  -H 'x-api-key: {API_KEY}' \
  -H 'x-gw-ims-org-id: {ORG_ID}' \
  -H 'x-sandbox-name: {SANDBOX_NAME}' \
  -H 'Content-Type: application/json' \

响应

成功的响应将返回与连接规范ID为4c10e202-c428-4796-9208-5f1f5732b1cf的源对应的所有专用端点的列表。

选择以查看响应示例
code language-json
{
  "items": [
       {
      "id": "ac9eb695-0d1a-42d4-bc45-0842aeaa1eff",
      "name": "TEST_E2E_29_Jan",
      "subscriptionId": "4281a16a-696f-4993-a7d3-a3da32b846f3",
      "resourceGroupName": "acme-noid-experience-platform",
      "resourceName": "acmeprivatelinkhg",
      "fqdns": [

      ],
      "state": "Approved",
      "connectionSpec": {
        "id": "4c10e202-c428-4796-9208-5f1f5732b1cf",
        "version": "1.0"
      }
    },
    {
      "id": "4c9eb695-0d1a-42d4-bc45-0842aeaa1efr",
      "name": "TEST_E2E_29_Jan",
      "subscriptionId": "5a0ff2f3-53d6-47e4-abb5-10a18bd3fff0",
      "resourceGroupName": "acme-sources-experience-platform",
      "resourceName": "acmeexperienceplatform",
      "fqdns": [

      ],
      "state": "Pending",
      "connectionSpec": {
        "id": "4c10e202-c428-4796-9208-5f1f5732b1cf",
        "version": "1.0"
      }
    }
  ]
}

检索专用端点 retrieve-specific-private-endpoint

要检索特定的专用端点,请向/privateEndpoints发出GET请求,并提供要检索的专用端点的ID。

API格式

GET /privateEndpoints/{PRIVATE_ENDPOINT_ID}
查询参数
描述
{PRIVATE_ENDPOINT_ID}
要检索的私有端点的ID。

请求

以下请求检索ID为2c5699b0-b9b6-486f-8877-ee5e21fe9a9d的专用终结点。

选择以查看请求示例
code language-shell
curl -X GET \
  'https://platform.adobe.io/data/foundation/connectors/privateEndpoints/2c5699b0-b9b6-486f-8877-ee5e21fe9a9d' \
  -H 'Authorization: Bearer {ACCESS_TOKEN}' \
  -H 'x-api-key: {API_KEY}' \
  -H 'x-gw-ims-org-id: {ORG_ID}' \
  -H 'x-sandbox-name: {SANDBOX_NAME}' \
  -H 'Content-Type: application/json' \

响应

成功的响应返回了ID为2c5699b0-b9b6-486f-8877-ee5e21fe9a9d的专用终结点

选择以查看响应示例
code language-json
{
  "items": [
       {
      "id": "2c5699b0-b9b6-486f-8877-ee5e21fe9a9d",
      "name": "TEST_E2E_29_Jan",
      "subscriptionId": "5a0ff2f3-53d6-47e4-abb5-10a18bd3fff0",
      "resourceGroupName": "acme-noid-experience-platform",
      "resourceName": "acmeprivatelinkhg",
      "fqdns": [

      ],
      "state": "Approved",
      "connectionSpec": {
        "id": "4c10e202-c428-4796-9208-5f1f5732b1cf",
        "version": "1.0"
      }
    }
  ]
}

解析专用端点 resolve-private-endpoint

API格式

GET /privateEndpoints?op=autoResolve

请求

选择以查看请求示例
code language-shell
curl -X GET \
  'https://platform.adobe.io/data/foundation/connectors/privateEndpoints?op=autoResolve' \
  -H 'Authorization: Bearer {ACCESS_TOKEN}' \
  -H 'x-api-key: {API_KEY}' \
  -H 'x-gw-ims-org-id: {ORG_ID}' \
  -H 'x-sandbox-name: {SANDBOX_NAME}' \
  -H 'Content-Type: application/json' \
  -d '{
      "auth": {
          "specName": "ConnectionString",
          "params": {
              "usePrivateLink": true,
              "connectionString": "{CONNECTION_STRING}"
          }
      },
      "connectionSpec": {
          "id": "4c10e202-c428-4796-9208-5f1f5732b1cf",
          "version": "1.0"
      }
  }'

响应

选择以查看响应示例
code language-json
{
  "items": [
        {
      "id": "4c9eb695-0d1a-42d4-bc45-0842aeaa1efr",
      "name": "TEST_E2E_29_Jan",
      "subscriptionId": "5a0ff2f3-53d6-47e4-abb5-10a18bd3fff0",
      "resourceGroupName": "acme-sources-experience-platform",
      "resourceName": "acmeexperienceplatform",
      "fqdns": [

      ],
      "state": "Pending",
      "connectionSpec": {
        "id": "4c10e202-c428-4796-9208-5f1f5732b1cf",
        "version": "1.0"
      }
    }
  ]
}

启用Interactive Authoring enable-interactive-authoring

IMPORTANT
在创建或更新流之前,以及在创建、更新或浏览连接之前,必须启用Interactive Authoring。

Interactive Authoring用于探索连接或帐户以及预览数据等功能。 要启用Interactive Authoring,请向/privateEndpoints/interactiveAuthoring发出POST请求,并在查询参数中将enable指定为运算符。

API格式

POST /privateEndpoints/interactiveAuthoring?op=enable
查询参数
描述
op
要执行的操作。 要启用Interactive Authoring,请将op值设置为enable

请求

以下请求为您的专用终结点启用Interactive Authoring,并将TTL设置为60分钟。

选择以查看请求示例
code language-shell
curl -X POST \
  'https://platform.adobe.io/data/foundation/connectors/privateEndpoints/interactiveAuthoring?op=enable' \
  -H 'Authorization: Bearer {ACCESS_TOKEN}' \
  -H 'x-api-key: {API_KEY}' \
  -H 'x-gw-ims-org-id: {ORG_ID}' \
  -H 'x-sandbox-name: {SANDBOX_NAME}' \
  -H 'Content-Type: application/json' \
  -d '{
      "autoTerminationMinutes": 60
  }'
table 0-row-2 1-row-2
属性 描述
autoTerminationMinutes Interactive Authoring TTL (生存时间)以分钟为单位。 Interactive Authoring用于探索连接或帐户以及预览数据等功能。 您最多可以设置120分钟的TTL。 默认TTL为60分钟。

响应

成功的响应返回HTTP状态202(已接受)。

检索Interactive Authoring状态 retrieve-interactive-authoring-status

要查看专用终结点Interactive Authoring的当前状态,请向/privateEndpoints/interactiveAuthoring发出GET请求。

API格式

GET /privateEndpoints/interactiveAuthoring

请求

以下请求检索Interactive Authoring的状态:

选择以查看请求示例
code language-shell
curl -X GET \
  'https://platform.adobe.io/data/foundation/connectors/privateEndpoints/interactiveAuthoring' \
  -H 'Authorization: Bearer {ACCESS_TOKEN}' \
  -H 'x-api-key: {API_KEY}' \
  -H 'x-gw-ims-org-id: {ORG_ID}' \
  -H 'x-sandbox-name: {SANDBOX_NAME}' \
  -H 'Content-Type: application/json' \

响应

选择以查看响应示例
code language-json
{
    "status": "Disabled"
}
table 0-row-2 1-row-2
属性 描述
status Interactive Authoring的状态。 有效值包括: disabledenablingenabled

删除专用端点 delete-private-endpoint

要删除您的专用端点,请向/privateEndpoints发出DELETE请求,并提供要删除的端点的ID。

API格式

DELETE /privateEndpoints/{PRIVATE_ENDPOINT_ID}
查询参数
描述
{PRIVATE_ENDPOINT_ID}
要删除的私有端点的ID。

请求

以下请求删除ID为02a74b31-a566-4a86-9cea-309b101a7f24的专用终结点。

选择以查看请求示例
code language-shell
curl -X DELETE \
  'https://platform.adobe.io/data/foundation/connectors/privateEndpoints/02a74b31-a566-4a86-9cea-309b101a7f24' \
  -H 'Authorization: Bearer {ACCESS_TOKEN}' \
  -H 'x-api-key: {API_KEY}' \
  -H 'x-gw-ims-org-id: {ORG_ID}' \
  -H 'x-sandbox-name: {SANDBOX_NAME}' \
  -H 'Content-Type: application/json' \

响应

成功的响应返回HTTP状态200(成功)。 您可以通过向/privateEndpoints发出GET请求并提供已删除的ID作为查询参数来验证删除操作。

流程服务 flow-service

请阅读以下各节,以了解如何将私有端点与Flow Service API结合使用。

创建与专用端点的连接 create-base-connection

要在Experience Platform中创建与私有端点的连接,请对/connections API的Flow Service端点发出POST请求。

API格式

POST /connections/

请求

以下请求为Azure Blob Storage创建经过身份验证的基本连接,同时使用专用端点。

选择以查看请求示例
code language-shell
curl -X POST \
  'https://platform.adobe.io/data/foundation/flowservice/connections/' \
  -H 'Authorization: Bearer {ACCESS_TOKEN}' \
  -H 'x-api-key: {API_KEY}' \
  -H 'x-gw-ims-org-id: {ORG_ID}' \
  -H 'x-sandbox-name: {SANDBOX_NAME}' \
  -H 'Content-Type: application/json' \
  -d '{
      "name": "Azure Blob Storage base connection",
      "description": "A base connection for a Azure Blob Storage source that uses a private link.",
      "auth": {
          "specName": "ConnectionString",
          "params": {
              "connectionString": "{CONNECTION_STRING}",
              "usePrivateLink" : true
          }
      },
      "connectionSpec": {
          "id": "4c10e202-c428-4796-9208-5f1f5732b1cf",
          "version": "1.0"
      }
  }'
table 0-row-2 1-row-2 2-row-2 3-row-2 4-row-2 5-row-2 6-row-2 7-row-2
属性 描述
name 基础连接的名称。
description (可选)提供有关连接的附加信息的描述。
auth.specName 用于将源连接到Experience Platform的身份验证。
auth.params.connectionString Azure Blob Storage连接字符串。 有关详细信息,请阅读Azure Blob Storage API身份验证指南
auth.params.usePrivateLink 一个布尔值,用于确定您是否使用私有端点。 如果您使用专用终结点,则将此值设置为true
connectionSpec.id 连接规范ID Azure Blob Storage。
connectionSpec.version Azure Blob Storage连接规范ID的版本。

响应

成功的响应将返回新生成的基本连接ID和etag。

选择以查看响应示例
code language-json
{
  "id": "a59d368a-1152-4673-a46e-bd52e8cdb9a9",
  "etag": "\"f50185ed-0000-0200-0000-637e8fad0000\""
}

检索与给定私有端点关联的连接 retrieve-connections-by-endpoint

要检索与特定私有端点关联的连接,请向/connections端点发出GET请求,并提供私有端点的ID作为查询参数。

API格式

GET /connections?property=auth.params.privateEndpointId=={PRIVATE_ENDPOINT_ID}
查询参数
描述
与要检索的连接关联的私有端点的ID。

请求

以下请求检索绑定到ID为02a74b31-a566-4a86-9cea-309b101a7f24的私有端点的现有连接。

选择以查看请求示例
code language-shell
curl -X GET \
  'https://platform.adobe.io/data/foundation/flowservice/connections?property=auth.params.privateEndpointId==02a74b31-a566-4a86-9cea-309b101a7f24' \
  -H 'Authorization: Bearer {ACCESS_TOKEN}' \
  -H 'x-api-key: {API_KEY}' \
  -H 'x-gw-ims-org-id: {ORG_ID}' \
  -H 'x-sandbox-name: {SANDBOX_NAME}' \
  -H 'Content-Type: application/json' \

响应

成功的响应将返回与查询的私有端点关联的连接列表。

选择以查看响应示例
code language-json
{
  "items": [
    {
      "id": "42a27b1f-8e3f-48ce-8c29-7e474b29a015",
      "createdAt": 1729154379292,
      "updatedAt": 1729154382031,
      "createdBy": "{CREATED_BY}",
      "updatedBy": "{UPDATED_BY}",
      "createdClient": "{CREATED_CLIENT}",
      "updatedClient": "{UPDATED_CLIENT}",
      "sandboxId": "{SANDBOX_ID}",
      "sandboxName": "{SANDBOX_NAME}",
      "imsOrgId": "{ORG_NAME}",
      "name": "acme-e2e",
      "connectionSpec": {
        "id": "4c10e202-c428-4796-9208-5f1f5732b1cf",
        "version": "1.0"
      },
      "state": "enabled",
      "auth": {
        "specName": "ConnectionString",
        "params": {
          "connectionString": "{CONNECTION_STRING}",
          "usePrivateLink": true,
          "privateEndpointId": "02a74b31-a566-4a86-9cea-309b101a7f24"
        }
      },
      "version": "\"2f01454b-0000-0200-0000-6766749a0000\"",
      "etag": "\"2f01454b-0000-0200-0000-6766749a0000\"",
      "lastOperation": {
        "started": 0,
        "updated": 0,
        "operation": "create"
      }
    },
    {
      "id": "6350311a-664c-4b08-aad4-4065781aac81",
      "createdAt": 1718199941102,
      "updatedAt": 1718199945147,
      "createdBy": "{CREATED_BY}",
      "updatedBy": "{UPDATED_BY}",
      "createdClient": "{CREATED_CLIENT}",
      "updatedClient": "{UPDATED_CLIENT}",
      "sandboxId": "{SANDBOX_ID}",
      "sandboxName": "{SANDBOX_NAME}",
      "imsOrgId": "{ORG_NAME}",
      "name": "acme demo",
      "connectionSpec": {
        "id": "4c10e202-c428-4796-9208-5f1f5732b1cf",
        "version": "1.0"
      },
      "state": "enabled",
      "auth": {
        "specName": "ConnectionString",
        "params": {
          "connectionString": "{CONNECTION_STRING}",
          "usePrivateLink": true,
          "privateEndpointId": "02a74b31-a566-4a86-9cea-309b101a7f24"
        }
      },
      "version": "\"3001307e-0000-0200-0000-6766cf710000\"",
      "etag": "\"3001307e-0000-0200-0000-6766cf710000\"",
      "lastOperation": {
        "started": 0,
        "updated": 0,
        "operation": "create"
      }
    }
  ],
  "_links": {

  }
}

检索与任何专用端点关联的连接 retrieve-connections

要检索与任何专用端点关联的连接,请向/connections端点发出GET请求,并提供property=auth.params.usePrivateLink==true作为查询参数。

API格式

GET /connections?property=auth.params.usePrivateLink==true

请求

以下请求将检索贵组织中使用私有端点的所有连接。

选择以查看请求示例
code language-shell
curl -X GET \
  'https://platform.adobe.io/data/foundation/flowservice/connections?property=auth.params.usePrivateLink==true' \
  -H 'Authorization: Bearer {ACCESS_TOKEN}' \
  -H 'x-api-key: {API_KEY}' \
  -H 'x-gw-ims-org-id: {ORG_ID}' \
  -H 'x-sandbox-name: {SANDBOX_NAME}' \
  -H 'Content-Type: application/json' \

响应

成功的响应将返回与私有端点绑定的所有连接。

选择以查看响应示例
code language-json
{
  "items": [
    {
      "id": "42a27b1f-8e3f-48ce-8c29-7e474b29a015",
      "createdAt": 1729154379292,
      "updatedAt": 1729154382031,
      "createdBy": "{CREATED_BY}",
      "updatedBy": "{UPDATED_BY}",
      "createdClient": "{CREATED_CLIENT}",
      "updatedClient": "{UPDATED_CLIENT}",
      "sandboxId": "{SANDBOX_ID}",
      "sandboxName": "{SANDBOX_NAME}",
      "imsOrgId": "{ORG_NAME}",
      "name": "acme-e2e",
      "connectionSpec": {
        "id": "4c10e202-c428-4796-9208-5f1f5732b1cf",
        "version": "1.0"
      },
      "state": "enabled",
      "auth": {
        "specName": "ConnectionString",
        "params": {
          "connectionString": "{CONNECTION_STRING}",
          "usePrivateLink": true,
          "privateEndpointId": "02a74b31-a566-4a86-9cea-309b101a7f24"
        }
      },
      "version": "\"2f01454b-0000-0200-0000-6766749a0000\"",
      "etag": "\"2f01454b-0000-0200-0000-6766749a0000\"",
      "lastOperation": {
        "started": 0,
        "updated": 0,
        "operation": "create"
      }
    },
    {
      "id": "6350311a-664c-4b08-aad4-4065781aac81",
      "createdAt": 1718199941102,
      "updatedAt": 1718199945147,
      "createdBy": "{CREATED_BY}",
      "updatedBy": "{UPDATED_BY}",
      "createdClient": "{CREATED_CLIENT}",
      "updatedClient": "{UPDATED_CLIENT}",
      "sandboxId": "{SANDBOX_ID}",
      "sandboxName": "{SANDBOX_NAME}",
      "imsOrgId": "{ORG_NAME}",
      "name": "acme demo",
      "connectionSpec": {
        "id": "b2e08744-4f1a-40ce-af30-7abac3e23cf3",
        "version": "1.0"
      },
      "state": "enabled",
      "auth": {
        "specName": "ConnectionString",
        "params": {
          "connectionString": "{CONNECTION_STRING}",
          "usePrivateLink": true
        }
      },
      "version": "\"3001307e-0000-0200-0000-6766cf710000\"",
      "etag": "\"3001307e-0000-0200-0000-6766cf710000\"",
      "lastOperation": {
        "started": 0,
        "updated": 0,
        "operation": "create"
      }
    }
  ],
  "_links": {

  }
}

附录

阅读本节以了解在API中使用Azure专用链接的其他信息。

批准Azure Blob和Azure Data Lake Gen2的专用终结点

要批准Azure Blob和Azure Data Lake Gen2源的专用终结点请求,请登录到Azure Portal。 在左侧导航中,选择​ Data storage,然后转到​ Security + networking ​选项卡并选择​ Networking。 接下来,选择​ Private endpoints ​以查看与您的帐户关联的专用端点列表及其当前连接状态。 要批准挂起的请求,请选择所需的终结点,然后单击​ Approve

包含待处理专用终结点列表的Azure门户。

337b99bb-92fb-42ae-b6b7-c7042161d089