Skip to content

Commit 198a4ac

Browse files
Parameter descriptions updated
1 parent af220bc commit 198a4ac

File tree

190 files changed

+6097
-5091
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

190 files changed

+6097
-5091
lines changed

VMware/Cluster/Get-VMHVCluster.ps1

+35-28
Original file line numberDiff line numberDiff line change
@@ -2,45 +2,52 @@
22
# Requires -Modules VMware.VimAutomation.Core
33

44
<#
5-
.SYNOPSIS
6-
Retrieves the clusters available on a vCenter Server system
5+
.SYNOPSIS
6+
Retrieves the clusters available on a vCenter Server system
77
8-
.DESCRIPTION
8+
.DESCRIPTION
99
10-
.NOTES
11-
This PowerShell script was developed and optimized for ScriptRunner. The use of the scripts requires ScriptRunner.
12-
The customer or user is authorized to copy the script from the repository and use them in ScriptRunner.
13-
The terms of use for ScriptRunner do not apply to this script. In particular, ScriptRunner Software GmbH assumes no liability for the function,
14-
the use and the consequences of the use of this freely available script.
15-
PowerShell is a product of Microsoft Corporation. ScriptRunner is a product of ScriptRunner Software GmbH.
16-
© ScriptRunner Software GmbH
10+
.NOTES
11+
This PowerShell script was developed and optimized for ScriptRunner. The use of the scripts requires ScriptRunner.
12+
The customer or user is authorized to copy the script from the repository and use them in ScriptRunner.
13+
The terms of use for ScriptRunner do not apply to this script. In particular, ScriptRunner Software GmbH assumes no liability for the function,
14+
the use and the consequences of the use of this freely available script.
15+
PowerShell is a product of Microsoft Corporation. ScriptRunner is a product of ScriptRunner Software GmbH.
16+
© ScriptRunner Software GmbH
1717
18-
.COMPONENT
19-
Requires Module VMware.VimAutomation.Core
18+
.COMPONENT
19+
Requires Module VMware.VimAutomation.Core
2020
21-
.LINK
22-
https://github.com/scriptrunner/ActionPacks/tree/master/VMware/Cluster
21+
.LINK
22+
https://github.com/scriptrunner/ActionPacks/tree/master/VMware/Cluster
2323
24-
.Parameter VIServer
25-
Specifies the IP address or the DNS name of the vSphere server to which you want to connect
24+
.Parameter VIServer
25+
[sr-en] IP address or the DNS name of the vSphere server to which you want to connect
26+
[sr-de] IP Adresse oder DNS des vSphere Servers
2627
27-
.Parameter VICredential
28-
Specifies a PSCredential object that contains credentials for authenticating with the server
28+
.Parameter VICredential
29+
[sr-en] PSCredential object that contains credentials for authenticating with the server
30+
[sr-de] Benutzerkonto für die Ausführung
2931
30-
.Parameter ClusterID
31-
Specifies the ID of the cluster you want to retrieve
32+
.Parameter ClusterID
33+
[sr-en] ID of the cluster you want to retrieve
34+
[sr-de] Cluster-Id
3235
33-
.Parameter ClusterName
34-
Specifies the name of the cluster you want to retrieve, is the parameter empty all hosts retrieved
36+
.Parameter ClusterName
37+
[sr-en] Name of the cluster you want to retrieve, is the parameter empty all hosts retrieved
38+
[sr-de] Cluster-name
3539
36-
.Parameter VM
37-
Specifies the name of the virtual machine to filter the cluster that contain at least them
40+
.Parameter VM
41+
[sr-en] Name of the virtual machine to filter the cluster that contain at least them
42+
[sr-de] Virtuelle Maschine
3843
39-
.Parameter NoRecursion
40-
Indicates that you want to disable the recursive behavior of the command
44+
.Parameter NoRecursion
45+
[sr-en] Disable the recursive behavior of the command
46+
[sr-de] Rekursive Verhalten deaktivieren
4147
42-
.Parameter Properties
43-
List of properties to expand, comma separated e.g. Name,Id. Use * for all properties
48+
.Parameter Properties
49+
[sr-en] List of properties to expand. Use * for all properties
50+
[sr-de] Liste der zu anzuzeigenden Eigenschaften. Verwenden Sie * für alle Eigenschaften
4451
#>
4552

4653
[CmdLetBinding()]

VMware/Cluster/Move-VMHVCluster.ps1

+29-24
Original file line numberDiff line numberDiff line change
@@ -2,39 +2,44 @@
22
# Requires -Modules VMware.VimAutomation.Core
33

44
<#
5-
.SYNOPSIS
6-
Moves a vCenter Server cluster from one location to another
5+
.SYNOPSIS
6+
Moves a vCenter Server cluster from one location to another
77
8-
.DESCRIPTION
8+
.DESCRIPTION
99
10-
.NOTES
11-
This PowerShell script was developed and optimized for ScriptRunner. The use of the scripts requires ScriptRunner.
12-
The customer or user is authorized to copy the script from the repository and use them in ScriptRunner.
13-
The terms of use for ScriptRunner do not apply to this script. In particular, ScriptRunner Software GmbH assumes no liability for the function,
14-
the use and the consequences of the use of this freely available script.
15-
PowerShell is a product of Microsoft Corporation. ScriptRunner is a product of ScriptRunner Software GmbH.
16-
© ScriptRunner Software GmbH
10+
.NOTES
11+
This PowerShell script was developed and optimized for ScriptRunner. The use of the scripts requires ScriptRunner.
12+
The customer or user is authorized to copy the script from the repository and use them in ScriptRunner.
13+
The terms of use for ScriptRunner do not apply to this script. In particular, ScriptRunner Software GmbH assumes no liability for the function,
14+
the use and the consequences of the use of this freely available script.
15+
PowerShell is a product of Microsoft Corporation. ScriptRunner is a product of ScriptRunner Software GmbH.
16+
© ScriptRunner Software GmbH
1717
18-
.COMPONENT
19-
Requires Module VMware.VimAutomation.Core
18+
.COMPONENT
19+
Requires Module VMware.VimAutomation.Core
2020
21-
.LINK
22-
https://github.com/scriptrunner/ActionPacks/tree/master/VMware/Cluster
21+
.LINK
22+
https://github.com/scriptrunner/ActionPacks/tree/master/VMware/Cluster
2323
24-
.Parameter VIServer
25-
Specifies the IP address or the DNS name of the vSphere server to which you want to connect
24+
.Parameter VIServer
25+
[sr-en] IP address or the DNS name of the vSphere server to which you want to connect
26+
[sr-de] IP Adresse oder DNS des vSphere Servers
2627
27-
.Parameter VICredential
28-
Specifies a PSCredential object that contains credentials for authenticating with the server
28+
.Parameter VICredential
29+
[sr-en] PSCredential object that contains credentials for authenticating with the server
30+
[sr-de] Benutzerkonto für die Ausführung
2931
30-
.Parameter ClusterID
31-
Specifies the ID of the cluster you want to move to another location
32+
.Parameter ClusterID
33+
[sr-en] ID of the cluster you want to move to another location
34+
[sr-de] Cluster-Id
3235
33-
.Parameter ClusterName
34-
Specifies the name of the cluster you want to move to another location
36+
.Parameter ClusterName
37+
[sr-en] Name of the cluster you want to move to another location
38+
[sr-de] Cluster-Name
3539
36-
.Parameter DestinationName
37-
Specifies the destination where you want to move the cluster
40+
.Parameter DestinationName
41+
[sr-en] Destination where you want to move the cluster
42+
[sr-de] Zielobjekt
3843
#>
3944

4045
[CmdLetBinding()]

VMware/Cluster/New-VMHVCluster.ps1

+47-36
Original file line numberDiff line numberDiff line change
@@ -2,57 +2,68 @@
22
# Requires -Modules VMware.VimAutomation.Core
33

44
<#
5-
.SYNOPSIS
6-
Creates a new cluster
5+
.SYNOPSIS
6+
Creates a new cluster
77
8-
.DESCRIPTION
8+
.DESCRIPTION
99
10-
.NOTES
11-
This PowerShell script was developed and optimized for ScriptRunner. The use of the scripts requires ScriptRunner.
12-
The customer or user is authorized to copy the script from the repository and use them in ScriptRunner.
13-
The terms of use for ScriptRunner do not apply to this script. In particular, ScriptRunner Software GmbH assumes no liability for the function,
14-
the use and the consequences of the use of this freely available script.
15-
PowerShell is a product of Microsoft Corporation. ScriptRunner is a product of ScriptRunner Software GmbH.
16-
© ScriptRunner Software GmbH
10+
.NOTES
11+
This PowerShell script was developed and optimized for ScriptRunner. The use of the scripts requires ScriptRunner.
12+
The customer or user is authorized to copy the script from the repository and use them in ScriptRunner.
13+
The terms of use for ScriptRunner do not apply to this script. In particular, ScriptRunner Software GmbH assumes no liability for the function,
14+
the use and the consequences of the use of this freely available script.
15+
PowerShell is a product of Microsoft Corporation. ScriptRunner is a product of ScriptRunner Software GmbH.
16+
© ScriptRunner Software GmbH
1717
18-
.COMPONENT
19-
Requires Module VMware.VimAutomation.Core
18+
.COMPONENT
19+
Requires Module VMware.VimAutomation.Core
2020
21-
.LINK
22-
https://github.com/scriptrunner/ActionPacks/tree/master/VMware/Cluster
21+
.LINK
22+
https://github.com/scriptrunner/ActionPacks/tree/master/VMware/Cluster
2323
24-
.Parameter VIServer
25-
Specifies the IP address or the DNS name of the vSphere server to which you want to connect
24+
.Parameter VIServer
25+
[sr-en] IP address or the DNS name of the vSphere server to which you want to connect
26+
[sr-de] IP Adresse oder DNS des vSphere Servers
2627
27-
.Parameter VICredential
28-
Specifies a PSCredential object that contains credentials for authenticating with the server
28+
.Parameter VICredential
29+
[sr-en] PSCredential object that contains credentials for authenticating with the server
30+
[sr-de] Benutzerkonto für die Ausführung
2931
30-
.Parameter ClusterName
31-
Specifies a name for the new cluster
32+
.Parameter ClusterName
33+
[sr-en] Name for the new cluster
34+
[sr-de] Cluster-name
3235
33-
.Parameter LocationName
34-
Specifies a datacenter name or folder name where you want to place the host
36+
.Parameter LocationName
37+
[sr-en] Datacenter name or folder name where you want to place the host
38+
[sr-de] Datacenter oderr Ordner
3539
36-
.Parameter DrsAutomationLevel
37-
Specifies a DRS (Distributed Resource Scheduler) automation level
40+
.Parameter DrsAutomationLevel
41+
[sr-en] DRS (Distributed Resource Scheduler) automation level
42+
[sr-de] DRS (Distributed Resource Scheduler) Automations-Level
3843
39-
.Parameter DrsEnabled
40-
Indicates that VMware DRS (Distributed Resource Scheduler) is enabled
44+
.Parameter DrsEnabled
45+
[sr-en] VMware DRS (Distributed Resource Scheduler) is enabled
46+
[sr-de] VMware DRS (Distributed Resource Scheduler) aktivieren
4147
42-
.Parameter HAAdmissionControlEnabled
43-
Indicates that the virtual machines in the cluster will not start if they violate availability constraints
48+
.Parameter HAAdmissionControlEnabled
49+
[sr-en] Virtual machines in the cluster will not start if they violate availability constraints
50+
[sr-de] VMs nicht starten, wenn sie die Verfügbarkeitsbeschränkungen verletzen
4451
45-
.Parameter HAEnabled
46-
Indicates that VMware High Availability is enabled
52+
.Parameter HAEnabled
53+
[sr-en] VMware High Availability is enabled
54+
[sr-de] VMware Hoch-Verfügbarkeit aktivieren
4755
48-
.Parameter HAFailoverLevel
49-
Specifies a failover level
56+
.Parameter HAFailoverLevel
57+
[sr-en] Failover level
58+
[sr-de] Failover Level
5059
51-
.Parameter HAIsolationResponse
52-
Specifies whether the virtual machine should be powered off if a host determines that it is isolated from the rest of the compute resource
60+
.Parameter HAIsolationResponse
61+
[sr-en] Virtual machine should be powered off if a host determines that it is isolated from the rest of the compute resource
62+
[sr-de] Virtuelle Maschine wird ausgeschaltet, wenn sie isoliert ist
5363
54-
.Parameter HARestartPriority
55-
Specifies the cluster HA restart priority
64+
.Parameter HARestartPriority
65+
[sr-en] Cluster HA restart priority
66+
[sr-de] Neustart Priorität
5667
#>
5768

5869
[CmdLetBinding()]

VMware/Cluster/Remove-VMHVCluster.ps1

+26-22
Original file line numberDiff line numberDiff line change
@@ -2,36 +2,40 @@
22
# Requires -Modules VMware.VimAutomation.Core
33

44
<#
5-
.SYNOPSIS
6-
Removes the specified cluster
5+
.SYNOPSIS
6+
Removes the specified cluster
77
8-
.DESCRIPTION
8+
.DESCRIPTION
99
10-
.NOTES
11-
This PowerShell script was developed and optimized for ScriptRunner. The use of the scripts requires ScriptRunner.
12-
The customer or user is authorized to copy the script from the repository and use them in ScriptRunner.
13-
The terms of use for ScriptRunner do not apply to this script. In particular, ScriptRunner Software GmbH assumes no liability for the function,
14-
the use and the consequences of the use of this freely available script.
15-
PowerShell is a product of Microsoft Corporation. ScriptRunner is a product of ScriptRunner Software GmbH.
16-
© ScriptRunner Software GmbH
10+
.NOTES
11+
This PowerShell script was developed and optimized for ScriptRunner. The use of the scripts requires ScriptRunner.
12+
The customer or user is authorized to copy the script from the repository and use them in ScriptRunner.
13+
The terms of use for ScriptRunner do not apply to this script. In particular, ScriptRunner Software GmbH assumes no liability for the function,
14+
the use and the consequences of the use of this freely available script.
15+
PowerShell is a product of Microsoft Corporation. ScriptRunner is a product of ScriptRunner Software GmbH.
16+
© ScriptRunner Software GmbH
1717
18-
.COMPONENT
19-
Requires Module VMware.VimAutomation.Core
18+
.COMPONENT
19+
Requires Module VMware.VimAutomation.Core
2020
21-
.LINK
22-
https://github.com/scriptrunner/ActionPacks/tree/master/VMware/Cluster
21+
.LINK
22+
https://github.com/scriptrunner/ActionPacks/tree/master/VMware/Cluster
2323
24-
.Parameter VIServer
25-
Specifies the IP address or the DNS name of the vSphere server to which you want to connect
24+
.Parameter VIServer
25+
[sr-en] IP address or the DNS name of the vSphere server to which you want to connect
26+
[sr-de] IP Adresse oder DNS des vSphere Servers
2627
27-
.Parameter VICredential
28-
Specifies a PSCredential object that contains credentials for authenticating with the server
28+
.Parameter VICredential
29+
[sr-en] PSCredential object that contains credentials for authenticating with the server
30+
[sr-de] Benutzerkonto für die Ausführung
2931
30-
.Parameter ClusterID
31-
Specifies the ID of the cluster you want to remove
32+
.Parameter ClusterID
33+
[sr-en] ID of the cluster you want to remove
34+
[sr-de] Cluster-ID
3235
33-
.Parameter ClusterName
34-
Specifies the name of the cluster you want to remove
36+
.Parameter ClusterName
37+
[sr-en] Name of the cluster you want to remove
38+
[sr-de] Cluster-Name
3539
#>
3640

3741
[CmdLetBinding()]

0 commit comments

Comments
 (0)