Get-AzureRmMlWebService

Retrieves the summary information for one or more web services.

Warning

The AzureRM PowerShell module has been officially deprecated as of February 29, 2024. Users are advised to migrate from AzureRM to the Az PowerShell module to ensure continued support and updates.

Although the AzureRM module may still function, it's no longer maintained or supported, placing any continued use at the user's discretion and risk. Please refer to our migration resources for guidance on transitioning to the Az module.

Syntax

Get-AzureRmMlWebService
   [-ResourceGroupName <String>]
   [-Name <String>]
   [-Region <String>]
   [-DefaultProfile <IAzureContextContainer>]
   [<CommonParameters>]

Description

Retrieves web service defintion information. Depending on the paramenters passed, the cmdlet returns the defintion for a specific web service, a collection of defintions for the web services for a specified resource group within the current subscription, or a collection of defintions for the web services within the current subscription.

Examples

Example 1: Get details of specific web service

Get-AzureRmMlWebService -ResourceGroupName "myresourcegroup" -Name "mywebservicename"

Example 2: Get all web service resources in current subscription

Get-AzureRmMlWebService

Example 3: Get all web services in the current subscription and given resource group

Get-AzureRmMlWebService -ResourceGroupName "myresourcegroup"

Parameters

-DefaultProfile

The credentials, account, tenant, and subscription used for communication with azure

Type:IAzureContextContainer
Aliases:AzureRmContext, AzureCredential
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-Name

The name of the web service for which the details are retrieved.

Type:String
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-Region

The name of regio

Type:String
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-ResourceGroupName

The resource group from which the details for the web service are retrieved.

Type:String
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

Inputs

None

Outputs

Microsoft.Azure.Management.MachineLearning.WebServices.Models.WebService

Notes

Keywords: azure, azurerm, arm, resource, management, manager, machine, machine learning, azureml