File tree Expand file tree Collapse file tree 2 files changed +20
-17
lines changed
source/Public/SQL Database Expand file tree Collapse file tree 2 files changed +20
-17
lines changed Original file line number Diff line number Diff line change @@ -13,8 +13,12 @@ function Get-FabricSQLDatabase {
13
13
Id of the Fabric Workspace for which the SQLDatabases should be retrieved. The value for WorkspaceId is a GUID.
14
14
An example of a GUID is '12345678-1234-1234-1234-123456789012'.
15
15
16
+ . PARAMETER Workspace
17
+ The workspace object. This is a mandatory parameter for the 'WorkspaceObject' parameter set and can be pipelined into the function.
18
+ The object can be easily retrieved by Get-FabricWorkspace function.
19
+
16
20
. PARAMETER SQLDatabaseName
17
- The name of the KQLDatabase to retrieve. This parameter cannot be used together with SQLDatabaseID.
21
+ The name of the SQLDatabase to retrieve. This parameter cannot be used together with SQLDatabaseID.
18
22
19
23
. PARAMETER SQLDatabaseID
20
24
The Id of the SQLDatabase to retrieve. This parameter cannot be used together with SQLDatabaseName.
Original file line number Diff line number Diff line change 3
3
$ModuleName = " FabricTools" ,
4
4
$expectedParams = @ (
5
5
" WorkspaceId"
6
- " SQLDatabaseName "
7
- " SQLDatabaseId "
8
- " Verbose "
9
- " Debug "
10
- " ErrorAction "
11
- " WarningAction "
12
- " InformationAction "
13
- " ProgressAction "
14
- " ErrorVariable "
15
- " WarningVariable "
16
- " InformationVariable "
17
- " OutVariable "
18
- " OutBuffer "
19
- " PipelineVariable "
20
-
6
+ " Workspace "
7
+ " SQLDatabaseName "
8
+ " SQLDatabaseId "
9
+ " Verbose "
10
+ " Debug "
11
+ " ErrorAction "
12
+ " WarningAction "
13
+ " InformationAction "
14
+ " ProgressAction "
15
+ " ErrorVariable "
16
+ " WarningVariable "
17
+ " InformationVariable "
18
+ " OutVariable "
19
+ " OutBuffer "
20
+ " PipelineVariable "
21
21
)
22
22
)
23
23
@@ -45,4 +45,3 @@ Describe "Get-FabricSQLDatabase" -Tag "UnitTests" {
45
45
}
46
46
}
47
47
}
48
-
You can’t perform that action at this time.
0 commit comments