问题标签 [azure-storage-account]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
585 浏览

c# - 通过 CloudTable.CreateQuery 创建的查询可能无法调用流利的方法()

我使用WindowsAzure.Storage 9.1.1nuget 包,当我运行时:

它抛出异常:

通过 CloudTable.CreateQuery() 创建的查询可能无法调用流利的方法

我想我以前可以这样做,但现在我不能。怎么了,为什么我会收到这个错误?

0 投票
2 回答
4382 浏览

json - 在使用 Set-AzureStorageBlobContent 或 ConvertTo-Json cmdlet 将文件上传到 Azure 存储 blob 时,是否可以指定编码类型?

我有一个 PowerShell 脚本,它下载存储在 Azure 存储帐户 blob 中的 JSON 文件。此文件采用 UTF-8 编码。然后,该脚本从 JSON 中读取数据,进行更改,创建一个具有相同名称的新 JSON 文件,然后使用 Set-AzureStorageBlobContent cmdlet 将其上传回存储帐户。但是,所有使用该 JSON 文件的应用程序都停止了工作。经过数小时的故障排除后,我注意到当它将新的 JSON 上传回存储容器(替换现有的)时,它会以 UTF-16 编码上传 JSON。

Set-AzureStorageBlobContent cmdlet 中是否有可以指定编码的参数?我查看了官方文档,但找不到答案。

在我上传新的 JSON 之前,所有的值都存储在一个变量中,我实际上使用 cmdlet ConvertTo-Json 来生成新的 JSON 文件。ConvertTo-Json 中是否有参数来指定编码类型?

现在,我用来上传文件的只是:

请指教!

0 投票
1 回答
4281 浏览

azure - 使用 Azure 的 Terraform - 如何创建存储帐户?

与 Terraform 战斗了一天后,我在这里呼救。

我正在尝试从头开始创建一个新的资源组和一个存储帐户。看起来可以在没有存储帐户的情况下创建资源组:

资源组已创建,目前不存在存储帐户。所以在这一点上我很高兴。我执行破坏并重新从头开始。

现在,在代码中,创建资源组后,我想创建一个存储帐户,因为以后其他资源需要引用它。azurerm_storage_account需要的唯一引用是对资源组的引用。

有关 azurerm_storage_account 的信息 https://www.terraform.io/docs/providers/azurerm/d/storage_account.html

代码现在看起来像这样:

我运行计划命令并获得以下输出:

它说它将寻找(而不是创建)资源data.azurerm_storage_account.stacc1,显然运行apply命令将失败并显示以下消息:

错误:应用计划时出错:

发生 1 个错误:

  • data.azurerm_storage_account.stacc1:data.azurerm_storage_account.stacc1:错误:找不到存储帐户“mystorageaccount”(资源组“myResourceGroup”)

因为它没有找到提到的存储帐户。

这一切都引出了我的问题,“如何在 Azure 中使用 Terraform 创建存储帐户?”

0 投票
2 回答
1575 浏览

azure-resource-manager - How do I deploy file share within storage account using ARM template

I can successfully create a storage account using an ARM template and I realize the ARM template does not directly support creating a file share on the storage account via any of the existing providers. I thought I would write a PowerShell script and use the custom script extension in the arm template but it seems like that can only run on a VM (typically used for post setup stuff on VM).

Is there a way to create the file share and child directory structure in PowerShell and have this executed after my ARM template is deployed?

0 投票
0 回答
1390 浏览

c# - Azure Blob 存储帐户返回错误 (403) 已禁止

在azure存储帐户上上传excel文件时出现错误,请建议我该如何解决这个问题。

远程服务器返回错误:(403) Forbidden。在 System.Net.HttpWebRequest.GetResponse() 在 Microsoft.WindowsAzure.Storage.Core.Executor.Executor.ExecuteSync[T](RESTCommand`1 cmd, IRetryPolicy 策略, OperationContext operationContext)

0 投票
1 回答
214 浏览

azure - 在 Powershell 中将存储帐户名称和 SKU 与 VM 名称合并

我想将 StorageAccountName 及其 SKU 添加到我的报告中,这是我现在拥有的代码:

我尝试以更少的方式在此代码中实现 IP 地址,但这比我预期的要困难得多,因为 Get-AzureRmStorageAccount cmdlet 不像 Get-AzureRMNetworkInterface cmdlet 那样存储 VirtualMachine.Id 属性。

任何想法如何将其合并到一张表中?有什么键可以让我加入这两个信息吗?我想要实现的是将 StorageAccountName 和 SKUName 列添加到 $vmOutput 表中。

更新:

0 投票
1 回答
406 浏览

azure - 存储帐户的类型不受支持的“Blob-Only/ZRS”。支持的类型是“通用”

我正在尝试运行将 AzureWebJobsDashboard 和 AzureWebJobsStorage 配置为使用通用存储帐户的 WebJob。但是,我收到此错误,即存储帐户的类型不受支持的“Blob-Only/ZRS”,即使存储帐户配置为 LRS 和通用。

可能是什么问题?

存储帐户

0 投票
2 回答
308 浏览

azure - 无法使用资源组删除存储帐户

我们想删除一个包含具有 IP 和存储帐户等的 VM 的资源组。

除了存储帐户之外的所有内容都被删除了,因为 vhd 说它仍然有租约。由于以下错误消息,我无法中断租约:

有没有办法打破租约,删除租约活动的 blob,或找出租用的地方?

附加信息:在“编辑 blob”选项卡上的 vhd 上,我收到以下消息:

0 投票
3 回答
4004 浏览

azure - Azure:通过 ARM 模板将角色分配给存储容器

我正在尝试通过 arm 模板将角色“Storage Blob Data Contributor (Preview)”分配给特定的存储容器。但我就是想不出正确的语法。

这就是我所拥有的:

我可以成功地将读者角色附加到存储帐户本身。但是对于容器,我收到以下错误:

我已经尝试了很多方法来尝试附加角色,以至于我没有想法。有人能帮我吗?

0 投票
1 回答
124 浏览

node.js - 如何在使用 Nodejs 时同步获取实体

我正在尝试获取存储帐户的表数据。我成功地使用这里的方式获取了日期。

但它使用回调。我想同步得到结果!