Skip to content

Commit 344af16

Browse files
committed
2 parents 678949d + eb42479 commit 344af16

File tree

157 files changed

+8435
-3032
lines changed

Some content is hidden

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

157 files changed

+8435
-3032
lines changed
Lines changed: 47 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,66 @@
11
---
2-
external help file: azuread.help.xml
3-
online version: https://blogs.technet.microsoft.com/enterprisemobility/2016/07/18/azuread-certificate-based-authentication-for-ios-and-android-now-in-preview/
2+
external help file: Microsoft.Open.AzureADBeta.Graph.PowerShell.dll-Help.xml
3+
ms.assetid: C2254A89-1700-4321-99FD-529E481705A3
4+
online version:
45
schema: 2.0.0
56
---
67

78
# Add-AzureADAdministrativeUnitMember
89

910
## SYNOPSIS
10-
Add an administrativeUnit member
11+
Adds an administrative unit member.
1112

1213
## SYNTAX
1314

1415
```
1516
Add-AzureADAdministrativeUnitMember -ObjectId <String> -RefObjectId <String>
17+
[-InformationAction <ActionPreference>] [-InformationVariable <String>] [<CommonParameters>]
1618
```
1719

1820
## DESCRIPTION
21+
The **Add-AzureADAdministrativeUnitMember** cmdlet adds an Active Directory administrative unit member.
1922

2023
## EXAMPLES
2124

22-
### EXAMPLE 1
23-
```
25+
## PARAMETERS
26+
27+
### -InformationAction
28+
Specifies how this cmdlet responds to an information event.
29+
The acceptable values for this parameter are:
30+
* Continue
31+
* Ignore
32+
* Inquire
33+
* SilentlyContinue
34+
* Stop
35+
* Suspend
36+
```yaml
37+
Type: ActionPreference
38+
Parameter Sets: (All)
39+
Aliases: infa
2440

41+
Required: False
42+
Position: Named
43+
Default value: None
44+
Accept pipeline input: False
45+
Accept wildcard characters: False
2546
```
2647
27-
## PARAMETERS
48+
### -InformationVariable
49+
Specifies a variable in which to store an information event message.
50+
```yaml
51+
Type: String
52+
Parameter Sets: (All)
53+
Aliases: iv
2854

29-
### -ObjectId
30-
The unique idenfier of an administrative unit in Azure Active Directory
55+
Required: False
56+
Position: Named
57+
Default value: None
58+
Accept pipeline input: False
59+
Accept wildcard characters: False
60+
```
3161
62+
### -ObjectId
63+
Specifies the ID of an Active Directory administrative unit.
3264
```yaml
3365
Type: String
3466
Parameter Sets: (All)
@@ -42,8 +74,7 @@ Accept wildcard characters: False
4274
```
4375
4476
### -RefObjectId
45-
The unique identifier of the specific Azure Active Directory object that will be assigned as Member
46-
77+
Specifies the unique ID of the specific Azure Active Directory object that will be assigned as owner/manager/member.
4778
```yaml
4879
Type: String
4980
Parameter Sets: (All)
@@ -56,14 +87,17 @@ Accept pipeline input: True (ByPropertyName, ByValue)
5687
Accept wildcard characters: False
5788
```
5889
90+
### CommonParameters
91+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
92+
5993
## INPUTS
6094
6195
## OUTPUTS
6296
6397
## NOTES
64-
Please note that this cmdlet is currently in Public Preview.
65-
While a cmdlet is in Public Preview we may still need to make changes to the cmdlet which could potentially cause unexpected effects.
66-
We discourage customers from using this cmdlet in a production environment.
6798
6899
## RELATED LINKS
69100
101+
[Get-AzureADAdministrativeUnitMember](./Get-AzureADAdministrativeUnitMember.md)
102+
103+
[Remove-AzureADAdministrativeUnitMember](./Remove-AzureADAdministrativeUnitMember.md)
Lines changed: 57 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,74 @@
11
---
2-
external help file: azuread.help.xml
2+
external help file: Microsoft.Open.AzureAD16.Graph.PowerShell.dll-Help.xml
3+
ms.assetid: 27EA6A45-9227-4E87-AC85-0A6C4B2AE620
34
online version:
45
schema: 2.0.0
56
---
67

78
# Add-AzureADApplicationOwner
89

910
## SYNOPSIS
10-
Add an owner to an application
11+
Adds an owner to an application.
1112

1213
## SYNTAX
1314

1415
```
15-
Add-AzureADApplicationOwner -ObjectId <String> -RefObjectId <String>
16+
Add-AzureADApplicationOwner -ObjectId <String> -RefObjectId <String> [-InformationAction <ActionPreference>]
17+
[-InformationVariable <String>] [<CommonParameters>]
1618
```
1719

1820
## DESCRIPTION
21+
The **Add-AzureADApplicationOwner** cmdlet adds an owner to an Azure Active Directory application.
1922

2023
## EXAMPLES
2124

22-
### Add an owner to an application
25+
### Example 1: Add an owner to an application
2326
```
24-
$App = Get-AzureADApplication -Top 1
25-
$Owner = Get-AzureADUser -Top 1
26-
Add-AzureADApplicationOwner -ObjectId $App -RefObjectId $Owner
27+
PS C:\>Add-AzureADApplicationOwner -ObjectId 3ddd22e7-a150-4bb3-b100-e410dea1cb84 -RefObjectId c13dd34a-492b-4561-b171-40fcce2916c5
2728
```
2829

30+
This command adds an owner to an application.
31+
2932
## PARAMETERS
3033

34+
### -InformationAction
35+
Specifies how this cmdlet responds to an information event.
36+
The acceptable values for this parameter are:
37+
* Continue
38+
* Ignore
39+
* Inquire
40+
* SilentlyContinue
41+
* Stop
42+
* Suspend
43+
44+
```yaml
45+
Type: ActionPreference
46+
Parameter Sets: (All)
47+
Aliases: infa
48+
49+
Required: False
50+
Position: Named
51+
Default value: None
52+
Accept pipeline input: False
53+
Accept wildcard characters: False
54+
```
55+
56+
### -InformationVariable
57+
Specifies a variable in which to store an information event message.
58+
```yaml
59+
Type: String
60+
Parameter Sets: (All)
61+
Aliases: iv
62+
63+
Required: False
64+
Position: Named
65+
Default value: None
66+
Accept pipeline input: False
67+
Accept wildcard characters: False
68+
```
69+
3170
### -ObjectId
32-
The unique idenfier of an application in Azure Active Directory
71+
Specifies the ID of an application in Azure Active Directory.
3372
3473
```yaml
3574
Type: String
@@ -39,12 +78,12 @@ Aliases:
3978
Required: True
4079
Position: Named
4180
Default value: None
42-
Accept pipeline input: True (ByValue, ByPropertyName)
81+
Accept pipeline input: True (ByPropertyName, ByValue)
4382
Accept wildcard characters: False
4483
```
4584
4685
### -RefObjectId
47-
The unique identifier of the specific Azure Active Directory object that will be assigned as owner
86+
Specifies the ID of the Active Directory object to assign as owner/manager/member.
4887
4988
```yaml
5089
Type: String
@@ -54,10 +93,13 @@ Aliases:
5493
Required: True
5594
Position: Named
5695
Default value: None
57-
Accept pipeline input: True (ByValue, ByPropertyName)
96+
Accept pipeline input: True (ByPropertyName, ByValue)
5897
Accept wildcard characters: False
5998
```
6099
100+
### CommonParameters
101+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
102+
61103
## INPUTS
62104
63105
## OUTPUTS
@@ -66,3 +108,7 @@ Accept wildcard characters: False
66108
67109
## RELATED LINKS
68110
111+
[Get-AzureADApplicationOwner](./Get-AzureADApplicationOwner.md)
112+
113+
[Remove-AzureADApplicationOwner](./Remove-AzureADApplicationOwner.md)
114+

Azure AD Cmdlets/AzureAD/v2/Add-AzureADApplicationPolicy.md

Lines changed: 56 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,74 @@
11
---
2-
external help file: azuread.help.xml
3-
online version: https://blogs.technet.microsoft.com/enterprisemobility/2016/07/18/azuread-certificate-based-authentication-for-ios-and-android-now-in-preview/
2+
external help file: Microsoft.Open.AzureAD16.Graph.PowerShell.dll-Help.xml
3+
ms.assetid: 1E76B8D2-A7DF-49EE-8E22-6BFEE24A8B7F
4+
online version:
45
schema: 2.0.0
56
---
67

78
# Add-AzureADApplicationPolicy
89

910
## SYNOPSIS
11+
Adds an application policy.
1012

1113
## SYNTAX
1214

1315
```
14-
Add-AzureADApplicationPolicy -ObjectId <String> -RefObjectId <String>
16+
Add-AzureADApplicationPolicy -ObjectId <String> -RefObjectId <String> [-InformationAction <ActionPreference>]
17+
[-InformationVariable <String>] [<CommonParameters>]
1518
```
1619

1720
## DESCRIPTION
21+
The **Add-AzureADApplicationPolicy** cmdlet adds an Azure Active Directory application policy.
1822

1923
## EXAMPLES
2024

21-
### EXAMPLE 1
25+
### Example 1: Add an applicaton policy
2226
```
23-
Add-AzureADApplicationPolicy -ObjectId <object id of application> -RefObjectId <object id of policy>
27+
PS C:\>Add-AzureADApplicationPolicy -ObjectId <object id of application> -RefObjectId <object id of policy>
2428
```
2529

30+
This command adds an application policy.
31+
2632
## PARAMETERS
2733

34+
### -InformationAction
35+
Specifies how this cmdlet responds to an information event.
36+
The acceptable values for this parameter are:
37+
* Continue
38+
* Ignore
39+
* Inquire
40+
* SilentlyContinue
41+
* Stop
42+
* Suspend
43+
44+
```yaml
45+
Type: ActionPreference
46+
Parameter Sets: (All)
47+
Aliases: infa
48+
49+
Required: False
50+
Position: Named
51+
Default value: None
52+
Accept pipeline input: False
53+
Accept wildcard characters: False
54+
```
55+
56+
### -InformationVariable
57+
Specifies a variable in which to store an information event message.
58+
```yaml
59+
Type: String
60+
Parameter Sets: (All)
61+
Aliases: iv
62+
63+
Required: False
64+
Position: Named
65+
Default value: None
66+
Accept pipeline input: False
67+
Accept wildcard characters: False
68+
```
69+
2870
### -ObjectId
29-
The object Id of the Application
71+
Specifies the ID of the application.
3072
3173
```yaml
3274
Type: String
@@ -41,7 +83,7 @@ Accept wildcard characters: False
4183
```
4284
4385
### -RefObjectId
44-
The object Id of the Policy
86+
Specifies the ID of the policy.
4587
4688
```yaml
4789
Type: String
@@ -55,14 +97,18 @@ Accept pipeline input: True (ByPropertyName, ByValue)
5597
Accept wildcard characters: False
5698
```
5799
100+
### CommonParameters
101+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
102+
58103
## INPUTS
59104
60105
## OUTPUTS
61106
62107
## NOTES
63-
Please note that this cmdlet is currently in Public Preview.
64-
While a cmdlet is in Public Preview we may still need to make changes to the cmdlet which could potentially cause unexpected effects.
65-
We discourage customers from using this cmdlet in a production environment.
66108
67109
## RELATED LINKS
68110
111+
[Get-AzureADApplicationPolicy](./Get-AzureADApplicationPolicy.md)
112+
113+
[Remove-AzureADApplicationPolicy](./Remove-AzureADApplicationPolicy.md)
114+

0 commit comments

Comments
 (0)