< Back

Set-AzureRmMlOpCluster

Tue Jan 29, 2019 9:52 pm

NAME Set-AzureRmMlOpCluster



SYNOPSIS

Sets the properties of an operationalization cluster.





SYNTAX

Set-AzureRmMlOpCluster [-AgentCount <Int32>] [-DefaultProfile <IAzureContextContainer>] -InputObject <PSOperationalizationCluster>

[-SslCertificate <String>] [-SslCName <String>] [-SslKey <String>] [-SslStatus <String>] [-Confirm] [-WhatIf] [<CommonParameters>]



Set-AzureRmMlOpCluster [-AgentCount <Int32>] [-DefaultProfile <IAzureContextContainer>] -ResourceId <String> [-SslCertificate <String>] [-SslCName

<String>] [-SslKey <String>] [-SslStatus <String>] [-Confirm] [-WhatIf] [<CommonParameters>]



Set-AzureRmMlOpCluster [-AgentCount <Int32>] [-DefaultProfile <IAzureContextContainer>] -Name <String> -ResourceGroupName <String>

[-SslCertificate <String>] [-SslCName <String>] [-SslKey <String>] [-SslStatus <String>] [-Confirm] [-WhatIf] [<CommonParameters>]





DESCRIPTION

Sets all the properties of an operationalization cluster. Since it sets all the properties when using a cluster object a fully valid input object

must be passed. Read-only properties will be ignored. Only some properties are currently updatable, as shown in the parameter sets.





PARAMETERS

-AgentCount <Int32>

The number of agent nodes in the ACS cluster.



Required? false

Position? named

Default value None

Accept pipeline input? True (ByPropertyName)

Accept wildcard characters? false



-DefaultProfile <IAzureContextContainer>

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



Required? false

Position? named

Default value None

Accept pipeline input? False

Accept wildcard characters? false



-InputObject <PSOperationalizationCluster>

The operationalization cluster properties.



Required? true

Position? named

Default value None

Accept pipeline input? True (ByValue)

Accept wildcard characters? false



-Name <String>

The name of the operationalization cluster.



Required? true

Position? named

Default value None

Accept pipeline input? False

Accept wildcard characters? false



-ResourceGroupName <String>

The name of the resource group for the operationalization cluster.



Required? true

Position? named

Default value None

Accept pipeline input? False

Accept wildcard characters? false



-ResourceId <String>

The Azure resource id for the operationalization cluster.



Required? true

Position? named

Default value None

Accept pipeline input? True (ByPropertyName)

Accept wildcard characters? false



-SslCertificate <String>

The SSL certificate data in PEM format.



Required? false

Position? named

Default value None

Accept pipeline input? True (ByPropertyName)

Accept wildcard characters? false



-SslCName <String>

The CName for the SSL certificate.



Required? false

Position? named

Default value None

Accept pipeline input? True (ByPropertyName)

Accept wildcard characters? false



-SslKey <String>

The SSL key data in PEM format.



Required? false

Position? named

Default value None

Accept pipeline input? True (ByPropertyName)

Accept wildcard characters? false



-SslStatus <String>

SSL status. Possible values are 'Enabled' and 'Disabled'.



Required? false

Position? named

Default value None

Accept pipeline input? True (ByPropertyName)

Accept wildcard characters? false



-Confirm [<SwitchParameter>]

Prompts you for confirmation before running the cmdlet.



Required? false

Position? named

Default value False

Accept pipeline input? False

Accept wildcard characters? false



-WhatIf [<SwitchParameter>]

Shows what would happen if the cmdlet runs. The cmdlet is not run.



Required? false

Position? named

Default value False

Accept pipeline input? False

Accept wildcard characters? false



<CommonParameters>

This cmdlet supports the common parameters: Verbose, Debug,

ErrorAction, ErrorVariable, WarningAction, WarningVariable,

OutBuffer, PipelineVariable, and OutVariable. For more information, see

about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).



INPUTS

Microsoft.Azure.Commands.MachineLearningCompute.Models.PSOperationalizationCluster





System.String





System.Nullable`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]







OUTPUTS

Microsoft.Azure.Commands.MachineLearningCompute.Models.PSOperationalizationCluster







NOTES









Example 1



PS C:\\> Set-AzureRmMlOpCluster -ResourceGroupName my-rg -ClusterName my-cluster -AgentCount 5









Example 2



PS C:\\> $cluster = Get-AzureRmMlOpCluster -ResourceGroupName my-rg -ClusterName my-cluster

PS C:\\> $cluster.ContainerService.AgentCount = 5

PS C:\\> Set-AzureRmMlOpCluster -InputObject $cluster











RELATED LINKS

Online Version: https://docs.microsoft.com/en-us/powers ... lopcluster