Skip to content

Latest commit

 

History

History
59 lines (39 loc) · 1.28 KB

New-MLObject.md

File metadata and controls

59 lines (39 loc) · 1.28 KB

New-MLObject

Create a new object of the specified registered type with the specified properties.

Description

Create a new object of the specified registered type with the specified properties.

Syntax

New-MLObject [-Type] <String> [-Properties <IDictionary>] [<CommonParameters>]

Parameters

-Type

Create an object of this registered type.

Type: System.String
Required: True
Position: 0
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-Properties

The properties to assign to the object.

Type: System.Collections.IDictionary
Required: False
Position: named
Default value: None
Accept pipeline input: True (ByValue)
Accept wildcard characters: False

Common parameters

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

Inputs

Type Description
System.Collections.IDictionary You can pipe a dictionary with the properties for the new object to this cmdlet.

Outputs

Type Description
System.Object This cmdlet returns the newly created object.