Skip to content

Latest commit

 

History

History
212 lines (166 loc) · 7.63 KB

Get-AzMLWorkspaceEnvironmentContainer.md

File metadata and controls

212 lines (166 loc) · 7.63 KB
external help file Module Name online version schema
Az.MachineLearningServices-help.xml
Az.MachineLearningServices
2.0.0

Get-AzMLWorkspaceEnvironmentContainer

SYNOPSIS

Get container.

SYNTAX

List (Default)

Get-AzMLWorkspaceEnvironmentContainer -ResourceGroupName <String> [-SubscriptionId <String[]>]
 -WorkspaceName <String> [-ListViewType <ListViewType>] [-Skip <String>] [-DefaultProfile <PSObject>]
 [<CommonParameters>]

Get

Get-AzMLWorkspaceEnvironmentContainer -Name <String> -ResourceGroupName <String> [-SubscriptionId <String[]>]
 -WorkspaceName <String> [-DefaultProfile <PSObject>] [<CommonParameters>]

GetViaIdentity

Get-AzMLWorkspaceEnvironmentContainer -InputObject <IMachineLearningServicesIdentity>
 [-DefaultProfile <PSObject>] [<CommonParameters>]

DESCRIPTION

Get container.

EXAMPLES

Example 1: List all environment containers under a workspace

Get-AzMLWorkspaceEnvironmentContainer  -ResourceGroupName ml-rg-test -WorkspaceName mlworkspace-portal01
Name                                                             SystemDataCreatedAt   SystemDataCreatedBy                 SystemDataCreatedByType SystemDataLastModifiedAt SystemDataLastModifiedBy            SystemDataLastModifiedByType ResourceGroupName
----                                                             -------------------   -------------------                 ----------------------- ------------------------ ------------------------            ---------------------------- -----------------
pwshenv01                                                        5/11/2022 2:31:25 AM  UserName (Example)                  User                    5/11/2022 2:31:25 AM     UserName (Example)                  User                         ml-rg-test
lightgbm-environment                                             5/5/2022 2:25:41 AM   UserName (Example)                  User                    5/5/2022 2:25:41 AM      UserName (Example)                  User                         ml-rg-test
env04                                                            5/5/2022 2:13:02 AM   UserName (Example)                  User                    5/5/2022 2:13:02 AM      UserName (Example)                  User                         ml-rg-test
env03                                                            5/5/2022 2:11:34 AM   UserName (Example)                  User                    5/5/2022 2:11:34 AM      UserName (Example)                  User                         ml-rg-test
env02                                                            5/5/2022 2:11:08 AM   UserName (Example)                  User                    5/5/2022 2:11:08 AM      UserName (Example)                  User                         ml-rg-test
env01                                                            5/5/2022 2:10:35 AM   UserName (Example)                  User                    5/5/2022 2:10:35 AM      UserName (Example)                  User                         ml-rg-test
docker-image-example                                             5/5/2022 1:57:13 AM   UserName (Example)                  User                    5/5/2022 1:57:13 AM      UserName (Example)                  User                         ml-rg-test
test                                                             5/5/2022 1:51:43 AM   Lucas Yao                           User                    5/5/2022 1:51:43 AM      Lucas Yao                           User                         ml-rg-test
AzureML-responsibleai-0.18-ubuntu20.04-py38-cpu                  5/18/2022 11:07:16 PM Microsoft                           User                    5/18/2022 11:07:16 PM    Microsoft                           User                         ml-rg-test

List all environment containers under a workspace

Example 2: Gets a environment container by name

Get-AzMLWorkspaceEnvironmentContainer  -ResourceGroupName ml-rg-test -WorkspaceName mlworkspace-portal01 -Name pwshenv01
Name      SystemDataCreatedAt  SystemDataCreatedBy                 SystemDataCreatedByType SystemDataLastModifiedAt SystemDataLastModifiedBy            SystemDataLastModifiedByType ResourceGroupName
----      -------------------  -------------------                 ----------------------- ------------------------ ------------------------            ---------------------------- -----------------
pwshenv01 5/11/2022 2:31:25 AM UserName (Example)                  User                    5/11/2022 2:31:25 AM     UserName (Example)                  User                         ml-rg-test

Gets a environment container by name

PARAMETERS

-DefaultProfile

The DefaultProfile parameter is not functional. Use the SubscriptionId parameter when available if executing the cmdlet against a different subscription.

Type: System.Management.Automation.PSObject
Parameter Sets: (All)
Aliases: AzureRMContext, AzureCredential

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

-InputObject

Identity Parameter To construct, see NOTES section for INPUTOBJECT properties and create a hash table.

Type: Microsoft.Azure.PowerShell.Cmdlets.MachineLearningServices.Models.IMachineLearningServicesIdentity
Parameter Sets: GetViaIdentity
Aliases:

Required: True
Position: Named
Default value: None
Accept pipeline input: True (ByValue)
Accept wildcard characters: False

-ListViewType

View type for including/excluding (for example) archived entities.

Type: Microsoft.Azure.PowerShell.Cmdlets.MachineLearningServices.Support.ListViewType
Parameter Sets: List
Aliases:

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

-Name

Container name. This is case-sensitive.

Type: System.String
Parameter Sets: Get
Aliases:

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

-ResourceGroupName

The name of the resource group. The name is case insensitive.

Type: System.String
Parameter Sets: List, Get
Aliases:

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

-SubscriptionId

The ID of the target subscription.

Type: System.String[]
Parameter Sets: List, Get
Aliases:

Required: False
Position: Named
Default value: (Get-AzContext).Subscription.Id
Accept pipeline input: False
Accept wildcard characters: False

-WorkspaceName

Name of Azure Machine Learning workspace.

Type: System.String
Parameter Sets: List, Get
Aliases:

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

-Skip

Continuation token for pagination.

Type: System.String
Parameter Sets: List
Aliases:

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

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

INPUTS

Microsoft.Azure.PowerShell.Cmdlets.MachineLearningServices.Models.IMachineLearningServicesIdentity

OUTPUTS

Microsoft.Azure.PowerShell.Cmdlets.MachineLearningServices.Models.Api20240401.IEnvironmentContainer

NOTES

RELATED LINKS