apiopenstudio/transport_azure_blob

ApiOpenStudio输出的Azure Blob传输。

v1.0.0-BETA 2022-06-21 05:16 UTC

This package is auto-updated.

Last update: 2024-09-22 01:38:36 UTC


README

将ApiOpenStudio输出传输到Azure Blob。

添加到您的项目

Composer

$ composer require apiopenstudio/transport_azure_blob

配置

将远程输出处理器添加到您的资源。

以下输出部分示例将返回响应中的输出,并将响应上传到Azure Blob

output:
    -
        processor: json_remote
        id: example JSON Remote output
        filename: example.json
        transport: ApiOpenStudio\Plugins\TransportAzureBlob
        parameters:
            dsn: my_dsn_string
            container: my_container_name
            prefix: prefix (optional)
    - 
        response

注意:传输的值为完整命名空间路径。

参数

必需

  • dsn - Azure Blob DSN字符串
  • container - Azure Blob容器名称

可选

  • prefix - 可选前缀

更多信息

有关更多详细信息,请参阅 FlySystem文档The League GitHub