Skip to content

Commit a0e3abb

Browse files
author
TaraMeyer
authored
Merge pull request Azure#186 from Azure/master
Adding new updates to AzureAD and AzureAd Preview
2 parents 171b009 + 3b107b3 commit a0e3abb

33 files changed

+3141
-3
lines changed

azureadps-2.0-preview/AzureAD/AzureADPreview.md

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -554,3 +554,53 @@ Set the thumbnail photo for a user
554554
### [Update-AzureADSignedInUserPassword](Update-AzureADSignedInUserPassword.md)
555555
Updates the password for the signed-in user.
556556

557+
### [Get-AzureADApplicationProxyApplication](Get-AzureADApplicationProxyApplication.md)
558+
Retrieve one or more Application Proxy applications
559+
560+
### [Get-AzureADApplicationProxyApplicationConnectorGroup](Get-AzureADApplicationProxyApplicationConnectorGroup.md)
561+
Retrieve the Application Proxy connector group for an Application Proxy application
562+
563+
### [Get-AzureADApplicationProxyConnector](Get-AzureADApplicationProxyConnector.md)
564+
Retrieve an Application Proxy connector
565+
566+
### [Get-AzureADApplicationProxyConnectorGroup](Get-AzureADApplicationProxyConnectorGroup.md)
567+
Retrieve an Application Proxy connector group
568+
569+
### [Get-AzureADApplicationProxyConnectorGroupMember](sGet-AzureADApplicationProxyConnectorGroupMembers.md)
570+
Retrieve the members of an Application Proxy connector group
571+
572+
### [Get-AzureADApplicationProxyConnectorMemberOf](Get-AzureADApplicationProxyConnectorMemberOf.md)
573+
Retrieve the Application Proxy connector group an Application Proxy application is a member of
574+
575+
### [New-AzureADApplicationProxyApplication](New-AzureADApplicationProxyApplication.md)
576+
Create a new Application Proxy Application
577+
578+
### [New-AzureADApplicationProxyConnectorGroup](New-AzureADApplicationProxyConnectorGroup.md)
579+
Create a new Application Proxy Connector group
580+
581+
### [Remove-AzureADApplicationProxyApplication](Remove-AzureADApplicationProxyApplication.md)
582+
Remove an Application Proxy Application
583+
584+
### [Remove-AzureADApplicationProxyApplicationConnectorGroup](Remove-AzureADApplicationProxyApplicationConnectorGroup.md)
585+
586+
Remove the Application Proxy Connector group from an Application Proxy Application
587+
### [Remove-AzureADApplicationProxyConnectorGroup](Remove-AzureADApplicationProxyConnectorGroup.md)
588+
Remove an Application Proxy Connector group
589+
590+
### [Set-AzureADApplicationProxyApplication](Set-AzureADApplicationProxyApplication.md)
591+
Set the properties of an Application Proxy Application
592+
593+
### [Set-AzureADApplicationProxyApplicationConnectorGroup](Set-AzureADApplicationProxyApplicationConnectorGroup.md)
594+
Set the properties of an Application Proxy Application Connector group
595+
596+
### [Set-AzureADApplicationProxyApplicationCustomDomainCertificate](Set-AzureADApplicationProxyApplicationCustomDomainCertificate.md)
597+
Set the custom domain certificate for an Application Proxy Application
598+
599+
### [Set-AzureADApplicationProxyApplicationSingleSignOn](Set-AzureADApplicationProxyApplicationSingleSignOn.md)
600+
Set the single sign-on properties for an Application Proxy Application
601+
602+
### [Set-AzureADApplicationProxyConnector](Set-AzureADApplicationProxyConnector.md)
603+
Set the properties for an Application Proxy Connector
604+
605+
### [Set-AzureADApplicationProxyConnectorGroup](Set-AzureADApplicationProxyConnectorGroup.md)
606+
Set the properties for an Application Proxy Connector group
Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
---
2+
external help file: Microsoft.Open.MS.GraphBeta.PowerShell.dll-Help.xml
3+
online version:
4+
schema: 2.0.0
5+
---
6+
7+
# Get-AzureADApplicationProxyApplication
8+
9+
## SYNOPSIS
10+
The Get-AzureADApplicationProxyApplication cmdlet retrieves an application configured for Application Proxy in Azure Active Directory.
11+
12+
## SYNTAX
13+
14+
```
15+
Get-AzureADApplicationProxyApplication -ObjectId <String>
16+
```
17+
18+
## DESCRIPTION
19+
The Get-AzureADApplicationProxyApplication cmdlet retrieves an application configured for Application Proxy in Azure Active Directory.
20+
21+
## EXAMPLES
22+
23+
### Example 1
24+
```
25+
PS C:\> Get-AzureADApplicationProxyApplication -ObjectId 8d6c6684-6f8c-42e2-8914-32ed2adf9ccf
26+
27+
28+
ExternalAuthenticationType : AadPreAuthentication
29+
ApplicationServerTimeout : Default
30+
ExternalUrl : https://travel.cycles.adventure-works.com/
31+
InternalUrl : https://awcyclesapps.adventure-works.com:3000/
32+
IsTranslateHostHeaderEnabled : False
33+
IsTranslateLinksInBodyEnabled : False
34+
IsOnPremPublishingEnabled : True
35+
VerifiedCustomDomainCertificatesMetadata : class OnPremisesPublishingVerifiedCustomDomainCertificatesMetadataObject {
36+
Thumbprint: [XXXXX]
37+
SubjectName: [XXXXX]
38+
Issuer:
39+
IssueDate: 11/9/2017 5:54:29
40+
ExpiryDate: 11/9/2019 5:54:29
41+
}
42+
43+
VerifiedCustomDomainKeyCredential :
44+
VerifiedCustomDomainPasswordCredential :
45+
SingleSignOnSettings :
46+
47+
```
48+
49+
## PARAMETERS
50+
51+
### -ObjectId
52+
This is the unique application Id of the application. This can be found using the Get-AzureADApplication command. You can also find this in the Azure Portal by navigating to AAD, Enterprise Applications, All Applications, Select your application, go to the properties tab, and use the ObjectId on that page.
53+
54+
```yaml
55+
Type: String
56+
Parameter Sets: (All)
57+
Aliases:
58+
59+
Required: True
60+
Position: Named
61+
Default value: None
62+
Accept pipeline input: True (ByPropertyName, ByValue)
63+
Accept wildcard characters: False
64+
```
65+
66+
## INPUTS
67+
68+
### System.String
69+
70+
71+
## OUTPUTS
72+
73+
### System.Object
74+
75+
## NOTES
76+
77+
## RELATED LINKS
78+
Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
---
2+
external help file: Microsoft.Open.MS.GraphBeta.PowerShell.dll-Help.xml
3+
online version:
4+
schema: 2.0.0
5+
---
6+
7+
# Get-AzureADApplicationProxyApplicationConnectorGroup
8+
9+
## SYNOPSIS
10+
The Get-AzureADApplicationProxyApplicationConnectorGroup cmdlet retrieves the connector group assigned for a specific application.
11+
12+
## SYNTAX
13+
14+
```
15+
Get-AzureADApplicationProxyApplicationConnectorGroup -ObjectId <String>
16+
```
17+
18+
## DESCRIPTION
19+
The Get-AzureADApplicationProxyApplicationConnectorGroup cmdlet retrieves the connector group assigned for the specified application. The application must be configured for Application Proxy in Azure Active Directory (AD).
20+
21+
## EXAMPLES
22+
23+
### Example 1
24+
```
25+
PS C:\> Get-AzureADApplicationProxyApplicationConnectorGroup -ObjectId 8d6c6684-6f8c-42e2-8914-32ed2adf9ccf
26+
27+
Id Name ConnectorGroupType IsDefault
28+
-- ---- ------------------ ---------
29+
a39b9095-8dc8-4d3a-86c3-e7b5c3f0fb84 Application Servers applicationProxy False
30+
31+
32+
```
33+
34+
## PARAMETERS
35+
36+
### -ObjectId
37+
ObjectId is the Id of the application. This can be found using the Get-AzureADApplication command. You can also find this in the Azure Portal by navigating to AAD, Enterprise Applications, All Applications, Select your application, go to the properties tab, and use the ObjectId on that page.
38+
39+
```yaml
40+
Type: String
41+
Parameter Sets: (All)
42+
Aliases:
43+
44+
Required: True
45+
Position: Named
46+
Default value: None
47+
Accept pipeline input: True (ByPropertyName, ByValue)
48+
Accept wildcard characters: False
49+
```
50+
51+
## INPUTS
52+
53+
### System.String
54+
55+
56+
## OUTPUTS
57+
58+
### System.Object
59+
60+
## NOTES
61+
62+
## RELATED LINKS
63+
Lines changed: 149 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,149 @@
1+
---
2+
external help file: Microsoft.Open.MS.GraphBeta.PowerShell.dll-Help.xml
3+
online version:
4+
schema: 2.0.0
5+
---
6+
7+
# Get-AzureADApplicationProxyConnector
8+
9+
## SYNOPSIS
10+
The Get-AzureADApplicationProxyApplicationConnector cmdlet a list of all connectors, or if specified, details of a specific connector.
11+
12+
## SYNTAX
13+
14+
### GetQuery (Default)
15+
```
16+
Get-AzureADApplicationProxyConnector [-All <Boolean>] [-Top <Int32>] [-Filter <String>]
17+
```
18+
19+
### GetVague
20+
```
21+
Get-AzureADApplicationProxyConnector [-SearchString <String>] [-All <Boolean>]
22+
```
23+
24+
### GetById
25+
```
26+
Get-AzureADApplicationProxyConnector -Id <String> [-All <Boolean>]
27+
```
28+
29+
## DESCRIPTION
30+
The Get-AzureADApplicationProxyApplicationConnector cmdlet retrieves the details for a given connector. If no connectorId is specified, it retrieves all the connectors assigned to the tenant.
31+
32+
## EXAMPLES
33+
34+
### Example 1
35+
```
36+
PS C:\> Get-AzureADApplicationProxyConnector
37+
38+
Id MachineName ExternalIp Status
39+
-- ----------- ---------- ------
40+
4c8b06e7-9751-41d5-8e5e-48e9b9bc2c66 AWCyclesApps.adventure-works.com 52.165.149.115 active
41+
834c5dd6-f2e8-47ae-973a-9fc769289b3d AWCyclesAD.adventure-works.com 52.165.149.131 active
42+
```
43+
Example 1: Retrieve all connectors
44+
45+
46+
### Example 2
47+
```
48+
PS C:\> Get-AzureADApplicationProxyConnector -Id 4c8b06e7-9751-41d5-8e5e-48e9b9bc2c66
49+
50+
Id MachineName ExternalIp Status
51+
-- ----------- ---------- ------
52+
4c8b06e7-9751-41d5-8e5e-48e9b9bc2c66 AWCyclesApps.adventure-works.com 52.165.149.115 active
53+
54+
55+
```
56+
Example 2: Retrieve information for a specific connector
57+
58+
## PARAMETERS
59+
60+
### -All
61+
If true, return all users. If false, return the number of objects specified by the Top parameter
62+
63+
```yaml
64+
Type: Boolean
65+
Parameter Sets: (All)
66+
Aliases:
67+
68+
Required: False
69+
Position: Named
70+
Default value: None
71+
Accept pipeline input: True (ByPropertyName, ByValue)
72+
Accept wildcard characters: False
73+
```
74+
75+
### -Filter
76+
Specifies an oData v3.0 filter statement. This parameter controls which objects are returned. Details on querying with oData can be found here: http://www.odata.org/documentation/odata-version-3-0/odata-version-3-0-core-protocol/#queryingcollections
77+
78+
```yaml
79+
Type: String
80+
Parameter Sets: GetQuery
81+
Aliases:
82+
83+
Required: False
84+
Position: Named
85+
Default value: None
86+
Accept pipeline input: True (ByPropertyName, ByValue)
87+
Accept wildcard characters: False
88+
```
89+
90+
### -Id
91+
The Id of the specific connector. You can find this by running the command without this parameter to get the desired Id, or by going into the portal and viewing connector details.
92+
93+
```yaml
94+
Type: String
95+
Parameter Sets: GetById
96+
Aliases:
97+
98+
Required: True
99+
Position: Named
100+
Default value: None
101+
Accept pipeline input: True (ByPropertyName, ByValue)
102+
Accept wildcard characters: False
103+
```
104+
105+
### -SearchString
106+
Specifies a search string.
107+
108+
```yaml
109+
Type: String
110+
Parameter Sets: GetVague
111+
Aliases:
112+
113+
Required: False
114+
Position: Named
115+
Default value: None
116+
Accept pipeline input: True (ByPropertyName, ByValue)
117+
Accept wildcard characters: False
118+
```
119+
120+
### -Top
121+
Specifies the maximum number of records to return.
122+
123+
```yaml
124+
Type: Int32
125+
Parameter Sets: GetQuery
126+
Aliases:
127+
128+
Required: False
129+
Position: Named
130+
Default value: None
131+
Accept pipeline input: True (ByPropertyName, ByValue)
132+
Accept wildcard characters: False
133+
```
134+
135+
## INPUTS
136+
137+
### System.String
138+
System.Nullable`1[[System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]
139+
System.Nullable`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]
140+
141+
142+
## OUTPUTS
143+
144+
### System.Object
145+
146+
## NOTES
147+
148+
## RELATED LINKS
149+

0 commit comments

Comments
 (0)