From ea0d7e40c7d424f93611f275d38e37e82d9d1e48 Mon Sep 17 00:00:00 2001 From: Drew Miller-Foreman Date: Fri, 2 Jul 2021 11:17:21 -0700 Subject: [PATCH 1/4] Missing ManagementPointNetworkType param --- .../failoverclusters/New-Cluster.md | 25 ++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/docset/winserver2019-ps/failoverclusters/New-Cluster.md b/docset/winserver2019-ps/failoverclusters/New-Cluster.md index 344f81aca8..5dbe6cbe03 100644 --- a/docset/winserver2019-ps/failoverclusters/New-Cluster.md +++ b/docset/winserver2019-ps/failoverclusters/New-Cluster.md @@ -18,7 +18,7 @@ Creates a new failover cluster. ``` New-Cluster [-Name] [-Node ] [-StaticAddress ] [-IgnoreNetwork ] [-NoStorage] [-S2D] [-AdministrativeAccessPoint ] - [-Force] [] + [-Force] [-ManagementPointNetworkType {Automatic | Singleton | Distributed}] [] ``` ## DESCRIPTION @@ -168,6 +168,29 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -ManagementPointNetworkType +Specifies the network configuration used to determine IP address settings. + +The acceptable values for this parameter are: + +```yaml +Singleton: Uses the traditional method of DHCP or static IP address. +Distributed: Use a Distributed Network Name by using Node IP addresses. +Automatic: Uses detection to determine the appropriate setting. If SQL Server is running in Azure, uses Distributed. If SQL Server is running on-premises, uses Singleton (default setting). +``` + +```yaml +Type: AdminAccessPointResType +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Name Specifies the name of the cluster to create. From e7a7bea81cc3736f9515247e5fc14c6574a03916 Mon Sep 17 00:00:00 2001 From: Drew Miller-Foreman Date: Tue, 6 Jul 2021 15:54:22 -0700 Subject: [PATCH 2/4] Changes as per reviews --- .../winserver2019-ps/failoverclusters/New-Cluster.md | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/docset/winserver2019-ps/failoverclusters/New-Cluster.md b/docset/winserver2019-ps/failoverclusters/New-Cluster.md index 5dbe6cbe03..d751aea7fc 100644 --- a/docset/winserver2019-ps/failoverclusters/New-Cluster.md +++ b/docset/winserver2019-ps/failoverclusters/New-Cluster.md @@ -173,11 +173,9 @@ Specifies the network configuration used to determine IP address settings. The acceptable values for this parameter are: -```yaml -Singleton: Uses the traditional method of DHCP or static IP address. -Distributed: Use a Distributed Network Name by using Node IP addresses. -Automatic: Uses detection to determine the appropriate setting. If SQL Server is running in Azure, uses Distributed. If SQL Server is running on-premises, uses Singleton (default setting). -``` +- Automatic: Automatically detects the appropriate setting. If SQL Server is running in Azure, uses `Distributed`. If SQL Server is running on-premises, uses `Singleton`. (Default Setting) +- Singleton: The traditional method of DHCP or static IP address. +- Distributed: Use a Distributed Network Name by using Node IP addresses. ```yaml Type: AdminAccessPointResType @@ -186,7 +184,7 @@ Aliases: Required: False Position: Named -Default value: None +Default value: Automatic Accept pipeline input: False Accept wildcard characters: False ``` From d8da01a1bf23a1997bb914a861a093244a0b183a Mon Sep 17 00:00:00 2001 From: Drew Miller-Foreman Date: Fri, 9 Jul 2021 09:49:32 -0700 Subject: [PATCH 3/4] Small grammar update --- docset/winserver2019-ps/failoverclusters/New-Cluster.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2019-ps/failoverclusters/New-Cluster.md b/docset/winserver2019-ps/failoverclusters/New-Cluster.md index d751aea7fc..c5ebed67a4 100644 --- a/docset/winserver2019-ps/failoverclusters/New-Cluster.md +++ b/docset/winserver2019-ps/failoverclusters/New-Cluster.md @@ -175,7 +175,7 @@ The acceptable values for this parameter are: - Automatic: Automatically detects the appropriate setting. If SQL Server is running in Azure, uses `Distributed`. If SQL Server is running on-premises, uses `Singleton`. (Default Setting) - Singleton: The traditional method of DHCP or static IP address. -- Distributed: Use a Distributed Network Name by using Node IP addresses. +- Distributed: Uses a Distributed Network Name by using Node IP addresses. ```yaml Type: AdminAccessPointResType From a0fbfa401a5c75717c5e6b41c33e5d89e6a35d3b Mon Sep 17 00:00:00 2001 From: Drew Miller-Foreman Date: Tue, 20 Jul 2021 10:24:29 -0700 Subject: [PATCH 4/4] Update New-Cluster.md --- docset/winserver2019-ps/failoverclusters/New-Cluster.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2019-ps/failoverclusters/New-Cluster.md b/docset/winserver2019-ps/failoverclusters/New-Cluster.md index c5ebed67a4..73511cb1f7 100644 --- a/docset/winserver2019-ps/failoverclusters/New-Cluster.md +++ b/docset/winserver2019-ps/failoverclusters/New-Cluster.md @@ -18,7 +18,7 @@ Creates a new failover cluster. ``` New-Cluster [-Name] [-Node ] [-StaticAddress ] [-IgnoreNetwork ] [-NoStorage] [-S2D] [-AdministrativeAccessPoint ] - [-Force] [-ManagementPointNetworkType {Automatic | Singleton | Distributed}] [] + [-Force] [-ManagementPointNetworkType ] [] ``` ## DESCRIPTION @@ -173,7 +173,7 @@ Specifies the network configuration used to determine IP address settings. The acceptable values for this parameter are: -- Automatic: Automatically detects the appropriate setting. If SQL Server is running in Azure, uses `Distributed`. If SQL Server is running on-premises, uses `Singleton`. (Default Setting) +- Automatic: Automatically detects the appropriate setting. If SQL Server is running in Azure, uses `Distributed`. If SQL Server is running on-premises, uses `Singleton`. (Default setting) - Singleton: The traditional method of DHCP or static IP address. - Distributed: Uses a Distributed Network Name by using Node IP addresses.