Get-AzCloudServiceInstanceView
Gets the status of a cloud service.
Syntax
Get-AzCloudServiceInstanceView
-CloudServiceName <String>
-ResourceGroupName <String>
[-SubscriptionId <String[]>]
[-DefaultProfile <PSObject>]
[<CommonParameters>]
Description
Gets the status of a cloud service.
Examples
Example 1: Get cloud service instance view
$cloudServiceInstanceView = Get-AzCloudServiceInstanceView -ResourceGroupName "ContosOrg" -CloudServiceName "ContosoCS"
$cloudServiceInstanceView
$cloudServiceInstanceView.ToJsonString()
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.}
{
"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"
}
]
}
This cmdlet gets the instance view of the cloud service named ContosoCS that belongs to the resource group named ContosOrg.
Parameters
-CloudServiceName
Name of the cloud service.
Type: | String |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-DefaultProfile
The DefaultProfile parameter is not functional. Use the SubscriptionId parameter when available if executing the cmdlet against a different subscription.
Type: | PSObject |
Aliases: | AzureRMContext, AzureCredential |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-ResourceGroupName
Name of the resource group.
Type: | String |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-SubscriptionId
Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.
Type: | String[] |
Position: | Named |
Default value: | (Get-AzContext).Subscription.Id |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Outputs
Collaborer avec nous sur GitHub
La source de ce contenu se trouve sur GitHub, où vous pouvez également créer et examiner les problèmes et les demandes de tirage. Pour plus d’informations, consultez notre guide du contributeur.