New-UdmRMRange
Create a new Range
Item | Comment |
---|---|
Availability version | Version 1.0 |
Initial release date | June 27, 2017 |
Last updated on | June 27, 2017 |
Related to | Ranger Documentation |
Syntax
New-UdmRMRange -Name <String> [-Note <string>] [<CommonParameters>]
Parameters
Parameter | Description | Class | Accepted options | Constraints | Usage | Unique | Available from version |
---|---|---|---|---|---|---|---|
Name | The name of the range to create. This could be the building, campus, city or country where the range will be identified by this name. The name can be anything that you wish to logically group block of numbers under. | System.String | 1 - 40 characters | Required | v1.0 | ||
Note | Any comments that will aid in understanding of the range. | System.String | 1 - 255 characters | Optional | Â v1.0 |
Outputs
Field Name | Description |
---|---|
id | The GUID ID of the Range created for example 76b1084d-83ca-4f23-8768-5e45e742f2cd |
name | The name of the range created this is the same as the name supplied in the command |
note | The note of the range created this is the same as the note supplied in the command or if no note was created this is Null |
createdby | The GUID of the user account which created the range for example 4c1d4183-7a3a-4768-8abb-93bd148c4b19 |
updatedby | The GUID of the user account which last changed the range this is always the same as the createdby GUID |
Examples
Example 1Â
In example 1, the New-UdmRMRange cmdlet creates a new range with the name Boston
New-UdmRMRange -name Boston
Example 2
In example 2, the range is created with a comment to assist in identify the location
New-UdmRMRange -name Boston -note "Building on the corner of 5th and Main"