@@ -31,30 +31,30 @@ function Add-NSIPResource {
3131 The NetScaler session object.
3232
3333 . PARAMETER IPAddress
34- IPv4 address to create on the NetScaler appliance.
34+ IPv4 address to create on the NetScaler appliance.
3535
3636 Note: Cannot be changed after the IP address is created
3737
3838 . PARAMETER SubnetMask
3939 Subnet mask associated with the IP address.
4040
4141 . PARAMETER Type
42- Type of the IP address to create on the NetScaler appliance. Cannot be changed after the IP address is created.
43-
44- The following are the different types of NetScaler owned IP addresses:
42+ Type of the IP address to create on the NetScaler appliance. Cannot be changed after the IP address is created.
43+
44+ The following are the different types of NetScaler owned IP addresses:
4545
4646 * A Subnet IP (SNIP) address is used by the NetScaler ADC to communicate with the servers.
4747 The NetScaler also uses the subnet IP address when generating its own packets, such as packets related to dynamic routing
48- protocols, or to send monitor probes to check the health of the servers.
48+ protocols, or to send monitor probes to check the health of the servers.
4949
5050 * A Virtual IP (VIP) address is the IP address associated with a virtual server. It is the IP address to which clients connect.
51- An appliance managing a wide range of traffic may have many VIPs configured. Some of the attributes of the VIP address are
52- customized to meet the requirements of the virtual server.
53-
51+ An appliance managing a wide range of traffic may have many VIPs configured. Some of the attributes of the VIP address are
52+ customized to meet the requirements of the virtual server.
53+
5454 * A GSLB site IP (GSLBIP) address is associated with a GSLB site. It is not mandatory to specify a GSLBIP address when you
55- initially configure the NetScaler appliance. A GSLBIP address is used only when you create a GSLB site.
56-
57- * A Cluster IP (CLIP) address is the management address of the cluster. All cluster configurations must be performed by
55+ initially configure the NetScaler appliance. A GSLBIP address is used only when you create a GSLB site.
56+
57+ * A Cluster IP (CLIP) address is the management address of the cluster. All cluster configurations must be performed by
5858 accessing the cluster through this IP address.
5959
6060 Default value: SNIP
@@ -88,7 +88,7 @@ function Add-NSIPResource {
8888 [string ]$Type = ' SNIP' ,
8989
9090 [switch ]$VServer ,
91-
91+
9292 [switch ]$MgmtAccess
9393 )
9494
@@ -107,7 +107,7 @@ function Add-NSIPResource {
107107 vserver = if ($PSBoundParameters.ContainsKey (' VServer' )) { ' ENABLED' } else { ' DISABLED' }
108108 mgmtaccess = if ($PSBoundParameters.ContainsKey (' MgmtAccess' )) { ' ENABLED' } else { ' DISABLED' }
109109 }
110- $response = _InvokeNSRestApi - Session $Session - Method POST - Type nsip - Payload $params - Action add
110+ _InvokeNSRestApi - Session $Session - Method POST - Type nsip - Payload $params - Action add > Out-Null
111111 } catch {
112112 throw $_
113113 }
0 commit comments