你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

az iot central app private-endpoint-connection

管理 IoT Central 应用程序的专用终结点连接。

命令

名称 说明 类型 Status
az iot central app private-endpoint-connection approve

批准 IoT Central 应用程序的专用终结点连接请求。

核心 GA
az iot central app private-endpoint-connection delete

删除 IoT Central 应用程序的专用终结点连接。

核心 GA
az iot central app private-endpoint-connection list

列出 IoT Central 应用程序的所有专用终结点连接。

核心 GA
az iot central app private-endpoint-connection reject

拒绝 IoT Central 应用程序的专用终结点连接请求。

核心 GA
az iot central app private-endpoint-connection show

显示 IoT Central 应用程序的专用终结点连接请求的详细信息。

核心 GA

az iot central app private-endpoint-connection approve

批准 IoT Central 应用程序的专用终结点连接请求。

az iot central app private-endpoint-connection approve [--account-name]
                                                       [--description]
                                                       [--id]
                                                       [--name]
                                                       [--resource-group]

示例

按 ID 批准 IoT Central 应用程序的专用终结点连接请求。

az iot central app private-endpoint-connection approve --id "/subscriptions/0000-0000-0000-0000/resourceGroups/MyResourceGroup/providers/Microsoft.IoTCentral/IoTApps/my-iotc-app/privateEndpointConnections/my-iotc-app.b56b5a95-0588-4f8b-b348-15db61590a6c"

按 ID 批准 IoT Central 应用程序的专用终结点连接请求。

id = (az iot central app show -n my-iotc-app --query "privateEndpointConnections[0].id")
az iot central app private-endpoint-connection approve --id $id

使用帐户名称和连接名称批准 IoT Central 应用程序的专用终结点连接请求。

az iot central app private-endpoint-connection approve -g myRg --account-name my-iotc-app --name myconnection

使用帐户名称和连接名称批准 IoT Central 应用程序的专用终结点连接请求。

name = (az iot central app show -n my-iotc-app --query "privateEndpointConnections[0].name")
az iot central app private-endpoint-connection approve -g myRg --account-name my-iotc-app --name $name

可选参数

--account-name

IoT Central 应用程序的名称。 如果未指定 --id,则为必需。

--description

批准操作的注释。

--id

与 IoT Central 应用程序关联的专用终结点连接的 ID。 如果指定了 --account-name --resource-group/-g 和 --name/-n,则应省略此项。

--name -n

与 IoT Central 应用程序关联的专用终结点连接的名称。 如果未指定 --id,则为必需。

--resource-group -g

指定的 IoT Central 应用程序的资源组名称。 如果未指定 --id,则为必需。

全局参数
--debug

提高日志记录详细程度以显示所有调试日志。

--help -h

显示此帮助消息并退出。

--only-show-errors

只显示错误,取消显示警告。

--output -o

输出格式。

接受的值: json, jsonc, none, table, tsv, yaml, yamlc
默认值: json
--query

JMESPath 查询字符串。 有关更多信息和示例,请参阅 http://jmespath.org/

--subscription

订阅的名称或 ID。 可以使用 az account set -s NAME_OR_ID 配置默认订阅。

--verbose

提高日志记录详细程度。 使用 --debug 获取完整的调试日志。

az iot central app private-endpoint-connection delete

删除 IoT Central 应用程序的专用终结点连接。

az iot central app private-endpoint-connection delete [--account-name]
                                                      [--id]
                                                      [--name]
                                                      [--resource-group]
                                                      [--yes]

示例

按 ID 删除 IoT Central 应用程序的专用终结点连接。

az iot central app private-endpoint-connection delete --id "/subscriptions/0000-0000-0000-0000/resourceGroups/MyResourceGroup/providers/Microsoft.IoTCentral/IoTApps/my-iotc-app/privateEndpointConnections/my-iotc-app.b56b5a95-0588-4f8b-b348-15db61590a6c"

按 ID 删除 IoT Central 应用程序的专用终结点连接。

id = (az iot central app show -n my-iotc-app --query "privateEndpointConnections[0].id")
az iot central app private-endpoint-connection delete --id $id

使用帐户名称和连接名称删除 IoT Central 应用程序的专用终结点连接。

az iot central app private-endpoint-connection delete -g myRg --account-name my-iotc-app --name myconnection

使用帐户名称和连接名称删除 IoT Central 应用程序的专用终结点连接。

name = (az iot central app show -n my-iotc-app --query "privateEndpointConnections[0].name")
az iot central app private-endpoint-connection delete -g myRg --account-name my-iotc-app --name $name

可选参数

--account-name

IoT Central 应用程序的名称。 如果未指定 --id,则为必需。

--id

与 IoT Central 应用程序关联的专用终结点连接的 ID。 如果指定了 --account-name --resource-group/-g 和 --name/-n,则应省略此项。

--name -n

与 IoT Central 应用程序关联的专用终结点连接的名称。 如果未指定 --id,则为必需。

--resource-group -g

指定的 IoT Central 应用程序的资源组名称。 如果未指定 --id,则为必需。

--yes -y

不提示确认。

默认值: False
全局参数
--debug

提高日志记录详细程度以显示所有调试日志。

--help -h

显示此帮助消息并退出。

--only-show-errors

只显示错误,取消显示警告。

--output -o

输出格式。

接受的值: json, jsonc, none, table, tsv, yaml, yamlc
默认值: json
--query

JMESPath 查询字符串。 有关更多信息和示例,请参阅 http://jmespath.org/

--subscription

订阅的名称或 ID。 可以使用 az account set -s NAME_OR_ID 配置默认订阅。

--verbose

提高日志记录详细程度。 使用 --debug 获取完整的调试日志。

az iot central app private-endpoint-connection list

列出 IoT Central 应用程序的所有专用终结点连接。

az iot central app private-endpoint-connection list [--account-name]
                                                    [--id]
                                                    [--resource-group]

示例

列出给定资源组和应用程序名称的 IoT Central 应用程序中的所有专用终结点连接。

az iot central app private-endpoint-connection list -g MyResourceGroup --account-name my-iotc-app

列出给定连接 ID 的 IoT Central 应用程序中的所有专用终结点连接

az iot central app private-endpoint-connection list --id "/subscriptions/0000-0000-0000-0000/resourceGroups/MyResourceGroup/providers/Microsoft.IoTCentral/IoTApps/my-iotc-app/privateEndpointConnections/my-iotc-app.b56b5a95-0588-4f8b-b348-15db61590a6c"

可选参数

--account-name

IoT Central 应用程序的名称。 如果未指定 --id,则为必需。

--id

资源的 ID。

--resource-group -g

资源组的名称。 如果提供,还必须提供 --name。

全局参数
--debug

提高日志记录详细程度以显示所有调试日志。

--help -h

显示此帮助消息并退出。

--only-show-errors

只显示错误,取消显示警告。

--output -o

输出格式。

接受的值: json, jsonc, none, table, tsv, yaml, yamlc
默认值: json
--query

JMESPath 查询字符串。 有关更多信息和示例,请参阅 http://jmespath.org/

--subscription

订阅的名称或 ID。 可以使用 az account set -s NAME_OR_ID 配置默认订阅。

--verbose

提高日志记录详细程度。 使用 --debug 获取完整的调试日志。

az iot central app private-endpoint-connection reject

拒绝 IoT Central 应用程序的专用终结点连接请求。

az iot central app private-endpoint-connection reject [--account-name]
                                                      [--description]
                                                      [--id]
                                                      [--name]
                                                      [--resource-group]

示例

通过 ID 拒绝 IoT Central 应用程序的专用终结点连接请求。

az iot central app private-endpoint-connection reject --id "/subscriptions/0000-0000-0000-0000/resourceGroups/MyResourceGroup/providers/Microsoft.IoTCentral/IoTApps/my-iotc-app/privateEndpointConnections/my-iotc-app.b56b5a95-0588-4f8b-b348-15db61590a6c"

通过 ID 拒绝 IoT Central 应用程序的专用终结点连接请求。

id = (az iot central app show -n my-iotc-app --query "privateEndpointConnections[0].id")
az iot central app private-endpoint-connection reject --id $id

使用帐户名称和连接名称拒绝 IoT Central 应用程序应用的专用终结点连接请求。

az iot central app private-endpoint-connection reject -g myRg --account-name my-iotc-app --name myconnection

使用帐户名称和连接名称拒绝 IoT Central 应用程序的专用终结点连接请求。

name = (az iot central app show -n my-iotc-app --query "privateEndpointConnections[0].name")
az iot central app private-endpoint-connection reject -g myRg --account-name my-iotc-app --name $name

可选参数

--account-name

IoT Central 应用程序的名称。 如果未指定 --id,则为必需。

--description

拒绝操作的注释。

--id

与 IoT Central 应用程序关联的专用终结点连接的 ID。 如果指定了 --account-name --resource-group/-g 和 --name/-n,则应省略此项。

--name -n

与 IoT Central 应用程序关联的专用终结点连接的名称。 如果未指定 --id,则为必需。

--resource-group -g

指定的 IoT Central 应用程序的资源组名称。 如果未指定 --id,则为必需。

全局参数
--debug

提高日志记录详细程度以显示所有调试日志。

--help -h

显示此帮助消息并退出。

--only-show-errors

只显示错误,取消显示警告。

--output -o

输出格式。

接受的值: json, jsonc, none, table, tsv, yaml, yamlc
默认值: json
--query

JMESPath 查询字符串。 有关更多信息和示例,请参阅 http://jmespath.org/

--subscription

订阅的名称或 ID。 可以使用 az account set -s NAME_OR_ID 配置默认订阅。

--verbose

提高日志记录详细程度。 使用 --debug 获取完整的调试日志。

az iot central app private-endpoint-connection show

显示 IoT Central 应用程序的专用终结点连接请求的详细信息。

az iot central app private-endpoint-connection show [--account-name]
                                                    [--id]
                                                    [--name]
                                                    [--resource-group]

示例

按 ID 显示 IoT Central 应用程序的专用终结点连接请求的详细信息。

az iot central app private-endpoint-connection show --id "/subscriptions/0000-0000-0000-0000/resourceGroups/MyResourceGroup/providers/Microsoft.IoTCentral/IoTApps/my-iotc-app/privateEndpointConnections/my-iotc-app.b56b5a95-0588-4f8b-b348-15db61590a6c"

按 ID 显示 IoT Central 应用程序的专用终结点连接请求的详细信息。

id = (az iot central app show -n my-iotc-app --query "privateEndpointConnections[0].id")
az iot central app private-endpoint-connection show --id $id

使用帐户名称和连接名称显示 IoT Central 应用程序的专用终结点连接请求的详细信息。

az iot central app private-endpoint-connection show -g myRg --account-name my-iotc-app --name myconnection

使用帐户名称和连接名称显示 IoT Central 应用程序的专用终结点连接请求的详细信息。

name = (az iot central app show -n my-iotc-app --query "privateEndpointConnections[0].name")
az iot central app private-endpoint-connection show -g myRg --account-name my-iotc-app --name $name

可选参数

--account-name

IoT Central 应用程序的名称。 如果未指定 --id,则为必需。

--id

与 IoT Central 应用程序关联的专用终结点连接的 ID。 如果指定了 --account-name --resource-group/-g 和 --name/-n,则应省略此项。

--name -n

与 IoT Central 应用程序关联的专用终结点连接的名称。 如果未指定 --id,则为必需。

--resource-group -g

指定的 IoT Central 应用程序的资源组名称。 如果未指定 --id,则为必需。

全局参数
--debug

提高日志记录详细程度以显示所有调试日志。

--help -h

显示此帮助消息并退出。

--only-show-errors

只显示错误,取消显示警告。

--output -o

输出格式。

接受的值: json, jsonc, none, table, tsv, yaml, yamlc
默认值: json
--query

JMESPath 查询字符串。 有关更多信息和示例,请参阅 http://jmespath.org/

--subscription

订阅的名称或 ID。 可以使用 az account set -s NAME_OR_ID 配置默认订阅。

--verbose

提高日志记录详细程度。 使用 --debug 获取完整的调试日志。