English 中文(简体)
是否有办法利用新的AzMaintenanceConfiguration来建立动态的空间?
原标题:Is there a way to use New-AzMaintenanceConfiguration to also create a dynamic scope?

我想利用新的“更新”管理人,从方案上建立维修配置。 为此,我正在利用Az.Maintenance模块,特别是“新阿兹马西维持工程”。 然而,在正式文件中,我发现任何转机用于为维修配置分配机器创造动态空间。

我目前对该问题没有办法,希望得到任何想法或帮助。

最佳回答

奥凯找到了解决办法: 新阿兹孔分配区块完全合适。

问题回答

它看起来像<条码>,“新-阿兹孔布分配项目>,只能在订阅中设定任务。

动态范围任务的设计没有什么不同,因为它在订阅一级,而不是在任何缔约方一级创造了资源。 因此,顾问们将视而不见。

<代码>订阅/xxx/providers/Microsoft.Maintenance/configurationAssignments/DynamicAssignment1

目前,利用教育、科学和技术信息预报系统(管理)创建这一系统的唯一途径

让我们承担维持生计的组合,你们不得不通过将分行和分行包括在内来创造有活力的任务,然后,你必须采取以下行动:


PUT https://management.azure.com/subscriptions/xxxxx/providers/Microsoft.Maintenance/configurationAssignments/DynamicAssignment_SubB?api-version=2023-04-01"


{
    "location": "",
    "properties": {
        "maintenanceConfigurationId": "/subscriptions/yyyy/resourceGroups/maintenance-config-rg/providers/Microsoft.Maintenance/maintenanceConfigurations/mgconfig01_SubA"
    }
}

PUT https://management.azure.com/subscriptions/zzzz/providers/Microsoft.Maintenance/configurationAssignments/DynamicAssignment_SubC?api-version=2023-04-01"


{
    "location": "",
    "properties": {
        "maintenanceConfigurationId": "/subscriptions/yyyy/resourceGroups/maintenance-config-rg/providers/Microsoft.Maintenance/maintenanceConfigurations/mgconfig01_SubA"
    }
}







相关问题
Windows Azure WorkerRole response

I am working on an Azure demo to run Powershell in a worker role. In my web role I add the name of the Powershell script which is to be run to a CloudQueue object. I can print the script output to ...

Windows Azure WebRole stuck in a deployment loop

I ve been struggling with this one for a couple of days now. My current Windows Azure WebRole is stuck in a loop where the status keeps changing between Initializing, Busy, Stopping and Stopped. It ...

Getting a token for Windows Azure

We are looking at Windows Azure, but getting a token appears to be hard now, at least that s what I m seeing in web searches. Anyone tried it or know how to accelerate that process? Any idea how long ...

Developing Azure .Net 4.0 Applications

Presently .Net 4.0 is not supported on Azure. This thread indicates that you will not be able to use .Net 4.0 with VS 2010 until it is supported in the cloud. http://social.msdn.microsoft.com I d ...

.NET 4.0 on Windows Azure?

My google-fu is failing me on this one. As a possible solution to Unit Testing .NET 3.5 projects using MStest in VS2010 (but I ve put this in a seperate question because it s kind of unrelated): Is ...

热门标签