Set-AzureService
Set-AzureService
Parameter Set: Default Set-AzureService [-ServiceName] <String> [[-Label] <String> ] [[-Description] <String> ] [ <CommonParameters>]
The Set-AzureService cmdlet assigns a label and description to a service in the current subscription.
-Description<String>
Sets a description for the Windows Azure service. The description may be up to 1024 characters in length.
Aliases | none |
Required? | false |
Position? | 3 |
Default Value | none |
Accept Pipeline Input? | true (ByPropertyName) |
Accept Wildcard Characters? | false |
-Label<String>
Sets a label for the Windows Azure service. The label may be up to 100 characters in length.
Aliases | none |
Required? | false |
Position? | 2 |
Default Value | none |
Accept Pipeline Input? | true (ByPropertyName) |
Accept Wildcard Characters? | false |
-ServiceName<String>
Specifies the name of the Windows Azure service to be updated.
Aliases | none |
Required? | true |
Position? | 1 |
Default Value | none |
Accept Pipeline Input? | true (ByPropertyName) |
Accept Wildcard Characters? | false |
<CommonParameters>
This cmdlet supports the common parameters: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer, and -OutVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/p/?LinkID=113216).
Inputs
The input type is the type of the objects that you can pipe to the cmdlet.
Outputs
The output type is the type of the objects that the cmdlet emits.
- ManagementOperationContext
-------------- Example 1 --------------
This command sets the label to "MyTestSvc1" and the description to "My service for testing out new configurations" for the "MyTestSvc1" service.
C:\PS>Set-AzureService -ServiceName "MySvc1" -Label "MyTestSvc1" -Description "My service for testing out new configurations"
Related topics