You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix for New-FabricDataPipeline - issue with call to Invoke-FabricAPIRequest #39 (#45)
* fix for #39
* contenttype not used so post commands were failign
* correct comment wording
* update api call to fix for New-FabricDataPipeline - issue with call to Invoke-FabricAPIRequest #39
* fix for New-FabricDataPipeline - issue with call to Invoke-FabricAPIRequest #39
* fix for New-FabricDataPipeline - issue with call to Invoke-FabricAPIRequest #39
* fix for New-FabricDataPipeline - issue with call to Invoke-FabricAPIRequest #39
* formatting & spelling
* whitespace changes
* lets have a copyJob when we ask for one not a warehouse
* fix for New-FabricDataPipeline - issue with call to Invoke-FabricAPIRequest #39
* fix for New-FabricDataPipeline - issue with call to Invoke-FabricAPIRequest #39
* change confirmImpact to high so confirm works cc. @SQLDBAWithABeard
* fix for New-FabricDataPipeline - issue with call to Invoke-FabricAPIRequest #39
* fix for #39
* Removed leading slash from $apiEndpointURI #39
* Removed leading slash #39
---------
Copy file name to clipboardExpand all lines: source/Public/Confirm-FabricAuthToken.ps1
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -1,20 +1,20 @@
1
1
<#
2
2
.SYNOPSIS
3
-
Check whether the Fabric API authentication token is set and not expired and reset it if necessary.
3
+
Check whether the Fabric API authentication token is set and not expired and reset it if necessary.
4
4
5
5
.DESCRIPTION
6
-
The Confirm-FabricAuthToken function retrieves the Fabric API authentication token. If the token is not already set, it calls the Set-FabricAuthToken function to set it. It then outputs the token.
6
+
The Confirm-FabricAuthToken function retrieves the Fabric API authentication token. If the token is not already set, it calls the Set-FabricAuthToken function to set it. It then outputs the token.
7
7
8
8
.EXAMPLE
9
-
Confirm-FabricAuthToken
9
+
Confirm-FabricAuthToken
10
10
11
-
This command retrieves the Fabric API authentication token.
11
+
This command retrieves the Fabric API authentication token.
12
12
13
13
.INPUTS
14
-
None. You cannot pipe inputs to this function.
14
+
None. You cannot pipe inputs to this function.
15
15
16
16
.OUTPUTS
17
-
Returns object as Get-FabricDebugInfo function
17
+
Returns object as Get-FabricDebugInfo function
18
18
19
19
.NOTES
20
20
@@ -47,4 +47,4 @@ function Confirm-FabricAuthToken {
Copy file name to clipboardExpand all lines: source/Public/Data Pipeline/New-FabricDataPipeline.ps1
+9-7Lines changed: 9 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@
17
17
An optional description for the DataPipeline.
18
18
19
19
.EXAMPLE
20
-
New-FabricDataPipeline -WorkspaceId "workspace-12345" -DataPipelineName "New DataPipeline"
20
+
New-FabricDataPipeline -WorkspaceId "workspace-12345" -DataPipelineName "New DataPipeline"
21
21
This example creates a new DataPipeline named "New DataPipeline" in the workspace with ID "workspace-12345" and uploads the definition file from the specified path.
0 commit comments