File tree Expand file tree Collapse file tree 6 files changed +15
-15
lines changed
src/ResourceManager/Resources/Commands.Resources/help Expand file tree Collapse file tree 6 files changed +15
-15
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ Adds a credential to an existing application.
15
15
16
16
### ApplicationObjectIdWithPasswordParameterSet (Default)
17
17
```
18
- New-AzureRmADAppCredential -ObjectId <String> -Password <String > [-StartDate <DateTime>] [-EndDate <DateTime>]
18
+ New-AzureRmADAppCredential -ObjectId <String> -Password <SecureString > [-StartDate <DateTime>] [-EndDate <DateTime>]
19
19
[-DefaultProfile <IAzureContextContainer>] [-WhatIf] [-Confirm] [<CommonParameters>]
20
20
```
21
21
@@ -33,7 +33,7 @@ New-AzureRmADAppCredential -ApplicationId <String> -CertValue <String> [-StartDa
33
33
34
34
### ApplicationIdWithPasswordParameterSet
35
35
```
36
- New-AzureRmADAppCredential -ApplicationId <String> -Password <String > [-StartDate <DateTime>]
36
+ New-AzureRmADAppCredential -ApplicationId <String> -Password <SecureString > [-StartDate <DateTime>]
37
37
[-EndDate <DateTime>] [-DefaultProfile <IAzureContextContainer>] [-WhatIf] [-Confirm] [<CommonParameters>]
38
38
```
39
39
@@ -156,7 +156,7 @@ Accept wildcard characters: False
156
156
The password to be associated with the application.
157
157
158
158
` ` ` yaml
159
- Type : String
159
+ Type : SecureString
160
160
Parameter Sets : ApplicationObjectIdWithPasswordParameterSet, ApplicationIdWithPasswordParameterSet
161
161
Aliases :
162
162
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ New-AzureRmADApplication -DisplayName <String> -IdentifierUris <String[]> [-Home
23
23
### ApplicationWithPasswordPlainParameterSet
24
24
```
25
25
New-AzureRmADApplication -DisplayName <String> -IdentifierUris <String[]> [-HomePage <String>]
26
- [-ReplyUrls <String[]>] [-AvailableToOtherTenants <Boolean>] -Password <String > [-StartDate <DateTime>]
26
+ [-ReplyUrls <String[]>] [-AvailableToOtherTenants <Boolean>] -Password <SecureString > [-StartDate <DateTime>]
27
27
[-EndDate <DateTime>] [-DefaultProfile <IAzureContextContainer>] [-WhatIf] [-Confirm] [<CommonParameters>]
28
28
```
29
29
@@ -197,7 +197,7 @@ Accept wildcard characters: False
197
197
The password to be associated with the application.
198
198
199
199
` ` ` yaml
200
- Type : String
200
+ Type : SecureString
201
201
Parameter Sets : ApplicationWithPasswordPlainParameterSet
202
202
Aliases :
203
203
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ New-AzureRmADServicePrincipal -ApplicationId <Guid> [-DefaultProfile <IAzureCont
21
21
22
22
### ApplicationWithPasswordPlainParameterSet
23
23
```
24
- New-AzureRmADServicePrincipal -ApplicationId <Guid> -Password <String > [-StartDate <DateTime>]
24
+ New-AzureRmADServicePrincipal -ApplicationId <Guid> -Password <SecureString > [-StartDate <DateTime>]
25
25
[-EndDate <DateTime>] [-DefaultProfile <IAzureContextContainer>] [-WhatIf] [-Confirm] [<CommonParameters>]
26
26
```
27
27
@@ -51,7 +51,7 @@ New-AzureRmADServicePrincipal -DisplayName <String> [-DefaultProfile <IAzureCont
51
51
52
52
### DisplayNameWithPasswordPlainParameterSet
53
53
```
54
- New-AzureRmADServicePrincipal -DisplayName <String> -Password <String > [-StartDate <DateTime>]
54
+ New-AzureRmADServicePrincipal -DisplayName <String> -Password <SecureString > [-StartDate <DateTime>]
55
55
[-EndDate <DateTime>] [-DefaultProfile <IAzureContextContainer>] [-WhatIf] [-Confirm] [<CommonParameters>]
56
56
```
57
57
@@ -205,7 +205,7 @@ Accept wildcard characters: False
205
205
The password to be associated with the service principal.
206
206
207
207
` ` ` yaml
208
- Type : String
208
+ Type : SecureString
209
209
Parameter Sets : ApplicationWithPasswordPlainParameterSet, DisplayNameWithPasswordPlainParameterSet
210
210
Aliases :
211
211
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ Adds a credential to an existing service principal.
15
15
16
16
### SpObjectIdWithPasswordParameterSet (Default)
17
17
```
18
- New-AzureRmADSpCredential -ObjectId <String> -Password <String > [-StartDate <DateTime>] [-EndDate <DateTime>]
18
+ New-AzureRmADSpCredential -ObjectId <String> -Password <SecureString > [-StartDate <DateTime>] [-EndDate <DateTime>]
19
19
[-DefaultProfile <IAzureContextContainer>] [-WhatIf] [-Confirm] [<CommonParameters>]
20
20
```
21
21
@@ -33,7 +33,7 @@ New-AzureRmADSpCredential -ServicePrincipalName <String> -CertValue <String> [-S
33
33
34
34
### SPNWithPasswordParameterSet
35
35
```
36
- New-AzureRmADSpCredential -ServicePrincipalName <String> -Password <String > [-StartDate <DateTime>]
36
+ New-AzureRmADSpCredential -ServicePrincipalName <String> -Password <SecureString > [-StartDate <DateTime>]
37
37
[-EndDate <DateTime>] [-DefaultProfile <IAzureContextContainer>] [-WhatIf] [-Confirm] [<CommonParameters>]
38
38
```
39
39
@@ -149,7 +149,7 @@ Accept wildcard characters: False
149
149
The password to be associated with the application.
150
150
151
151
` ` ` yaml
152
- Type : String
152
+ Type : SecureString
153
153
Parameter Sets : SpObjectIdWithPasswordParameterSet, SPNWithPasswordParameterSet
154
154
Aliases :
155
155
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ Creates a new active directory user.
14
14
## SYNTAX
15
15
16
16
```
17
- New-AzureRmADUser -DisplayName <String> -UserPrincipalName <String> -Password <String > [-ImmutableId <String>]
17
+ New-AzureRmADUser -DisplayName <String> -UserPrincipalName <String> -Password <SecureString > [-ImmutableId <String>]
18
18
[-ForceChangePasswordNextLogin] [-DefaultProfile <IAzureContextContainer>] [-WhatIf] [-Confirm]
19
19
[<CommonParameters>]
20
20
```
@@ -102,7 +102,7 @@ It must meet the tenant's password complexity requirements.
102
102
It is recommended to set a strong password.
103
103
104
104
` ` ` yaml
105
- Type : String
105
+ Type : SecureString
106
106
Parameter Sets : (All)
107
107
Aliases :
108
108
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ Updates an existing active directory user.
15
15
16
16
```
17
17
Set-AzureRmADUser -UPNOrObjectId <String> [-DisplayName <String>] [-EnableAccount <Boolean>]
18
- [-Password <String >] [-ForceChangePasswordNextLogin] [-DefaultProfile <IAzureContextContainer>] [-WhatIf]
18
+ [-Password <SecureString >] [-ForceChangePasswordNextLogin] [-DefaultProfile <IAzureContextContainer>] [-WhatIf]
19
19
[-Confirm] [<CommonParameters>]
20
20
```
21
21
@@ -104,7 +104,7 @@ It must meet the tenant's password complexity requirements.
104
104
It is recommended to set a strong password.
105
105
106
106
` ` ` yaml
107
- Type : String
107
+ Type : SecureString
108
108
Parameter Sets : (All)
109
109
Aliases :
110
110
You can’t perform that action at this time.
0 commit comments