ParameterDeclaration Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
ParameterDeclaration() |
Initializes a new instance of the ParameterDeclaration class. |
ParameterDeclaration(String, ParameterType, String, String) |
Initializes a new instance of the ParameterDeclaration class. |
ParameterDeclaration()
Initializes a new instance of the ParameterDeclaration class.
public ParameterDeclaration ();
Public Sub New ()
Applies to
ParameterDeclaration(String, ParameterType, String, String)
Initializes a new instance of the ParameterDeclaration class.
public ParameterDeclaration (string name, Microsoft.Azure.Management.VideoAnalyzer.Models.ParameterType type, string description = default, string defaultProperty = default);
new Microsoft.Azure.Management.VideoAnalyzer.Models.ParameterDeclaration : string * Microsoft.Azure.Management.VideoAnalyzer.Models.ParameterType * string * string -> Microsoft.Azure.Management.VideoAnalyzer.Models.ParameterDeclaration
Public Sub New (name As String, type As ParameterType, Optional description As String = Nothing, Optional defaultProperty As String = Nothing)
Parameters
- name
- String
Name of the parameter.
- type
- ParameterType
Type of the parameter. Possible values include: 'String', 'SecretString', 'Int', 'Double', 'Bool'
- description
- String
Description of the parameter.
- defaultProperty
- String
The default value for the parameter to be used if the pipeline does not specify a value.