Skip to content

Commit f02dc46

Browse files
committed
Added files for testing
1 parent 6d38d9d commit f02dc46

15 files changed

+1921
-35
lines changed
Lines changed: 124 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,124 @@
1+
---
2+
external help file: Microsoft.Graph.Authentication.dll-Help.xml
3+
Module Name: Microsoft.Graph.Authentication
4+
online version: https://learn.microsoft.com/en-us/powershell/module/microsoft.graph.authentication/add-mgenvironment
5+
schema: 2.0.0
6+
---
7+
8+
# Add-MgEnvironment
9+
10+
## SYNOPSIS
11+
{{ Fill in the Synopsis }}
12+
13+
## SYNTAX
14+
15+
```
16+
Add-MgEnvironment [-Name] <String> [-AzureADEndpoint] <String> [-GraphEndpoint] <String> [-WhatIf] [-Confirm]
17+
[<CommonParameters>]
18+
```
19+
20+
## DESCRIPTION
21+
{{ Fill in the Description }}
22+
23+
## EXAMPLES
24+
25+
### Example 1
26+
```powershell
27+
PS C:\> {{ Add example code here }}
28+
```
29+
30+
{{ Add example description here }}
31+
32+
## PARAMETERS
33+
34+
### -AzureADEndpoint
35+
The base URL for Azure AD endpoint to get access tokens for Microsoft Graph endpoint.
36+
37+
```yaml
38+
Type: String
39+
Parameter Sets: (All)
40+
Aliases: AzureADUrl
41+
42+
Required: True
43+
Position: 1
44+
Default value: None
45+
Accept pipeline input: True (ByPropertyName)
46+
Accept wildcard characters: False
47+
```
48+
49+
### -GraphEndpoint
50+
The service root endpoint for Microsoft Graph.
51+
52+
```yaml
53+
Type: String
54+
Parameter Sets: (All)
55+
Aliases: GraphUrl
56+
57+
Required: True
58+
Position: 2
59+
Default value: None
60+
Accept pipeline input: True (ByPropertyName)
61+
Accept wildcard characters: False
62+
```
63+
64+
### -Name
65+
The environment name.
66+
67+
```yaml
68+
Type: String
69+
Parameter Sets: (All)
70+
Aliases:
71+
72+
Required: True
73+
Position: 0
74+
Default value: None
75+
Accept pipeline input: True (ByPropertyName)
76+
Accept wildcard characters: False
77+
```
78+
79+
### -Confirm
80+
Prompts you for confirmation before running the cmdlet.
81+
82+
```yaml
83+
Type: SwitchParameter
84+
Parameter Sets: (All)
85+
Aliases: cf
86+
87+
Required: False
88+
Position: Named
89+
Default value: None
90+
Accept pipeline input: False
91+
Accept wildcard characters: False
92+
```
93+
94+
### -WhatIf
95+
Shows what would happen if the cmdlet runs.
96+
The cmdlet is not run.
97+
98+
```yaml
99+
Type: SwitchParameter
100+
Parameter Sets: (All)
101+
Aliases: wi
102+
103+
Required: False
104+
Position: Named
105+
Default value: None
106+
Accept pipeline input: False
107+
Accept wildcard characters: False
108+
```
109+
110+
### CommonParameters
111+
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).
112+
113+
## INPUTS
114+
115+
### System.String
116+
## OUTPUTS
117+
118+
### Microsoft.Graph.PowerShell.Authentication.Models.GraphEnvironment
119+
## NOTES
120+
121+
## RELATED LINKS
122+
123+
[https://learn.microsoft.com/en-us/powershell/module/microsoft.graph.authentication/add-mgenvironment](https://learn.microsoft.com/en-us/powershell/module/microsoft.graph.authentication/add-mgenvironment)
124+

0 commit comments

Comments
 (0)