Anteckning
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
Viktigt!
Från och med den 31 mars 2025 är molntjänster (utökad support) inaktuella och kommer att dras tillbaka helt den 31 mars 2027. Läs mer om den här utfasningen och hur du migrerar.
Dessa exempel täcker olika sätt att hämta information om befintliga Azure Cloud Service (utökat stöd) distributioner.
Hämta alla molntjänster under en resursgrupp
Get-AzCloudService -ResourceGroupName "ContosOrg"
ResourceGroupName Name Location ProvisioningState
----------------- ---- -------- -----------------
ContosOrg ContosoCS eastus2euap Succeeded
ContosOrg ContosoCSTest eastus2euap Failed
Skaffa enskild molntjänst
Get-AzCloudService -ResourceGroupName "ContosOrg" -CloudServiceName "ContosoCS"
ResourceGroupName Name Location ProvisioningState
----------------- ---- -------- -----------------
ContosOrg ContosoCS eastus2euap Succeeded
PS C:\> $cloudService = Get-AzCloudService -ResourceGroupName "ContosOrg" -CloudServiceName "ContosoCS"
PS C:\> $cloudService | Format-List
ResourceGroupName : ContosOrg
Configuration : xxxxxxxx
ConfigurationUrl :
ExtensionProfile : xxxxxxxx
Id : xxxxxxxx
Location : East US
Name : ContosoCS
NetworkProfile : xxxxxxxx
OSProfile : xxxxxxxx
PackageUrl : xxxxxxxx
ProvisioningState : Succeeded
RoleProfile : xxxxxxxx
StartCloudService :
Tag : {
"Owner": "Contos"
}
Type : Microsoft.Compute/cloudServices
UniqueId : xxxxxxxx
UpgradeMode : Auto
Hämta molntjänstinstans vy
PS C:\>$cloudServiceInstanceView = Get-AzCloudServiceInstanceView -ResourceGroupName "ContosOrg" -CloudServiceName "ContosoCS"
PS C:\>$cloudServiceInstanceView
RoleInstanceStatusesSummary Statuses
--------------------------- --------
{{ProvisioningState/succeeded : 4}, {PowerState/started : 4}} {Provisioning succeeded, Started, Current Upgrade Domain of cloud service is -1., Max Upgrade Domain of cloud service is 1.}
PS C:\>$cloudServiceInstanceView.ToJsonString()
{
"roleInstance": {
"statusesSummary": [
{
"code": "ProvisioningState/succeeded",
"count": 4
},
{
"code": "PowerState/started",
"count": 4
}
]
},
"statuses": [
{
"code": "ProvisioningState/succeeded",
"displayStatus": "Provisioning succeeded",
"level": "Info",
"time": "2020-10-28T13:26:48.8109686Z"
},
{
"code": "PowerState/started",
"displayStatus": "Started",
"level": "Info",
"time": "2020-10-28T13:26:48.8109686Z"
},
{
"code": "CurrentUpgradeDomain/-1",
"displayStatus": "Current Upgrade Domain of cloud service is -1.",
"level": "Info"
},
{
"code": "MaxUpgradeDomain/1",
"displayStatus": "Max Upgrade Domain of cloud service is 1.",
"level": "Info"
}
]
}
Nästa steg
- Mer information om Azure Cloud Services (utökad support) finns i Översikt över Azure Cloud Services (utökad support).
- Besök lagringsplatsen för Cloud Services-exempel (utökad support)