File tree Expand file tree Collapse file tree 3 files changed +9
-9
lines changed
src/ResourceManager/AzureBatch/Commands.Batch/help Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -14,13 +14,13 @@ Adds a certificate to the specified Batch account.
14
14
15
15
### File (Default)
16
16
```
17
- New-AzureBatchCertificate [-FilePath] <String> [-Password <String >] -BatchContext <BatchAccountContext>
17
+ New-AzureBatchCertificate [-FilePath] <String> [-Password <SecureString >] -BatchContext <BatchAccountContext>
18
18
[-DefaultProfile <IAzureContextContainer>] [<CommonParameters>]
19
19
```
20
20
21
21
### RawData
22
22
```
23
- New-AzureBatchCertificate [-RawData] <Byte[]> [-Password <String >] -BatchContext <BatchAccountContext>
23
+ New-AzureBatchCertificate [-RawData] <Byte[]> [-Password <SecureString >] -BatchContext <BatchAccountContext>
24
24
[-DefaultProfile <IAzureContextContainer>] [<CommonParameters>]
25
25
```
26
26
@@ -98,7 +98,7 @@ Specifies the password to access the certificate private key.
98
98
You must specify this parameter if you specify a certificate in .pfx format.
99
99
100
100
` ` ` yaml
101
- Type : String
101
+ Type : SecureString
102
102
Parameter Sets : (All)
103
103
Aliases :
104
104
Original file line number Diff line number Diff line change @@ -14,14 +14,14 @@ Creates a user account on a Batch compute node.
14
14
15
15
### Id
16
16
```
17
- New-AzureBatchComputeNodeUser [-PoolId] <String> [-ComputeNodeId] <String> -Name <String> -Password <String>
18
- [-ExpiryTime <DateTime>] [-IsAdmin] -BatchContext <BatchAccountContext>
17
+ New-AzureBatchComputeNodeUser [-PoolId] <String> [-ComputeNodeId] <String> -Name <String>
18
+ -Password <SecureString> [-ExpiryTime <DateTime>] [-IsAdmin] -BatchContext <BatchAccountContext>
19
19
[-DefaultProfile <IAzureContextContainer>] [<CommonParameters>]
20
20
```
21
21
22
22
### ParentObject
23
23
```
24
- New-AzureBatchComputeNodeUser [[-ComputeNode] <PSComputeNode>] -Name <String> -Password <String >
24
+ New-AzureBatchComputeNodeUser [[-ComputeNode] <PSComputeNode>] -Name <String> -Password <SecureString >
25
25
[-ExpiryTime <DateTime>] [-IsAdmin] -BatchContext <BatchAccountContext>
26
26
[-DefaultProfile <IAzureContextContainer>] [<CommonParameters>]
27
27
```
@@ -160,7 +160,7 @@ Accept wildcard characters: False
160
160
Specifies the user account password.
161
161
162
162
` ` ` yaml
163
- Type : String
163
+ Type : SecureString
164
164
Parameter Sets : (All)
165
165
Aliases :
166
166
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ Modifies properties of an account on a Batch compute node.
14
14
15
15
```
16
16
Set-AzureBatchComputeNodeUser [-PoolId] <String> [-ComputeNodeId] <String> [-Name] <String>
17
- [-Password] <String > [-ExpiryTime <DateTime>] -BatchContext <BatchAccountContext>
17
+ [-Password] <SecureString > [-ExpiryTime <DateTime>] -BatchContext <BatchAccountContext>
18
18
[-DefaultProfile <IAzureContextContainer>] [<CommonParameters>]
19
19
```
20
20
@@ -111,7 +111,7 @@ Accept wildcard characters: False
111
111
Specifies the password for the user account.
112
112
113
113
` ` ` yaml
114
- Type : String
114
+ Type : SecureString
115
115
Parameter Sets : (All)
116
116
Aliases :
117
117
You can’t perform that action at this time.
0 commit comments