Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public sealed class NewAzureResourceCmdlet : ResourceManipulationCmdletBase
/// <summary>
/// Gets or sets the property object.
/// </summary>
[Alias("Object", "PropertyObject")]
[Alias("PropertyObject")]
[Parameter(Mandatory = true, HelpMessage = "A hash table which represents resource properties.")]
[ValidateNotNullOrEmpty]
public PSObject Properties { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public sealed class SetAzureResourceCmdlet : ResourceManipulationCmdletBase
/// <summary>
/// Gets or sets the property object.
/// </summary>
[Alias("PropertiesObject")]
[Alias("PropertyObject")]
[Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "A hash table which represents resource properties.")]
[ValidateNotNullOrEmpty]
public PSObject Properties { get; set; }
Expand Down