ScriptParameter 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
ScriptParameter() |
Initializes a new instance of the ScriptParameter class. |
ScriptParameter(String, String, String, String, String) |
Initializes a new instance of the ScriptParameter class. |
ScriptParameter()
Initializes a new instance of the ScriptParameter class.
public ScriptParameter();
Public Sub New ()
Applies to
ScriptParameter(String, String, String, String, String)
Initializes a new instance of the ScriptParameter class.
public ScriptParameter(string type = default, string name = default, string description = default, string visibility = default, string optional = default);
new Microsoft.Azure.Management.Avs.Models.ScriptParameter : string * string * string * string * string -> Microsoft.Azure.Management.Avs.Models.ScriptParameter
Public Sub New (Optional type As String = Nothing, Optional name As String = Nothing, Optional description As String = Nothing, Optional visibility As String = Nothing, Optional optional As String = Nothing)
Parameters
- type
- String
The type of parameter the script is expecting. psCredential is a PSCredentialObject. Possible values include: 'String', 'SecureString', 'Credential', 'Int', 'Bool', 'Float'
- name
- String
The parameter name that the script will expect a parameter value for
- description
- String
User friendly description of the parameter
- visibility
- String
Should this parameter be visible to arm and passed in the parameters argument when executing. Possible values include: 'Visible', 'Hidden'
- optional
- String
Is this parameter required or optional. Possible values include: 'Optional', 'Required'
Applies to
Azure SDK for .NET