<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Programmatically Create Fabric Data Pipeline Cloud Connection in Data Engineering</title>
    <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Programmatically-Create-Fabric-Data-Pipeline-Cloud-Connection/m-p/5349636#M17540</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1340679"&gt;@tayloramy&lt;/a&gt;&amp;nbsp;yes, I realised this was the reason and then had to add a role assignment using my own credentials. Thanks for the help.&lt;/P&gt;</description>
    <pubDate>Fri, 07 Aug 2026 09:35:10 GMT</pubDate>
    <dc:creator>CoulterJames2</dc:creator>
    <dc:date>2026-08-07T09:35:10Z</dc:date>
    <item>
      <title>Programmatically Create Fabric Data Pipeline Cloud Connection</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Programmatically-Create-Fabric-Data-Pipeline-Cloud-Connection/m-p/5347076#M17530</link>
      <description>&lt;P&gt;Is it possible to create a Fabric Data Pipelines cloud connection via the Create Connection API or is this connection type not supported for creation? I can retrieve the details of such connections, but not create them. In the response details for an existing connection, I see the type and path parameters as follows:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;Connection '{
'allowConnectionUsageInGateway': False, 
'allowUsageInUserControlledCode': False, 
'id': 'a1b2c3d4-aaaa-bcbc-dddd-a1b2c3d4e5f6', 
'displayName': 'Fabric Data Pipeline demo', 
'connectivityType': 'ShareableCloud', 
'connectionDetails': {'path': 'FabricDataPipelines', 'type': 'FabricDataPipelines'}, 'privacyLevel': 'Organizational', 
'credentialDetails': {'credentialType': 'OAuth2', 'singleSignOnType': 'None', 'connectionEncryption': 'NotEncrypted', 'skipTestConnection': False}}'&lt;/LI-CODE&gt;&lt;P&gt;But when I try to pass these same values to the Create Connection API, I get an error telling me that the creationMethod parameter is missing. What is the creationMethod for this type of connection? The only info I can find on this relates to SQL connections.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/rest/api/fabric/core/connections/create-connection" target="_blank"&gt;https://learn.microsoft.com/en-us/rest/api/fabric/core/connections/create-connection&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Aug 2026 13:21:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Programmatically-Create-Fabric-Data-Pipeline-Cloud-Connection/m-p/5347076#M17530</guid>
      <dc:creator>CoulterJames2</dc:creator>
      <dc:date>2026-08-06T13:21:47Z</dc:date>
    </item>
    <item>
      <title>Re: Programmatically Create Fabric Data Pipeline Cloud Connection</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Programmatically-Create-Fabric-Data-Pipeline-Cloud-Connection/m-p/5347165#M17531</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/204992"&gt;@CoulterJames2&lt;/a&gt;,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It is possible. The creationMethod is the type of connection to create. If you look at the examples in the documentation,&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;POST https://api.fabric.microsoft.com/v1/connections

{
  "connectivityType": "ShareableCloud",
  "displayName": "ContosoCloudConnection",
  "connectionDetails": {
    "type": "SQL",
    "creationMethod": "SQL",
    "parameters": [
      {
        "dataType": "Text",
        "name": "server",
        "value": "contoso.database.windows.net"
      },
      {
        "dataType": "Text",
        "name": "database",
        "value": "sales"
      }
    ]
  },
  "privacyLevel": "Organizational",
  "credentialDetails": {
    "singleSignOnType": "None",
    "connectionEncryption": "NotEncrypted",
    "skipTestConnection": false,
    "credentials": {
      "credentialType": "Basic",
      "username": "admin",
      "passwordReference": {
        "connectionId": "4399ab2c-7551-4c0e-8aa7-18fc2f217626",
        "secretName": "some-secret"
      }
    }
  },
  "allowUsageInUserControlledCode": true
}&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;You can see that for this example, this is a SQL Server connection, and the CreationMethod is SQL.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is another API to list all the supported CreationMethods:&amp;nbsp;&lt;BR /&gt;&lt;A href="https://learn.microsoft.com/en-us/rest/api/fabric/core/connections/list-supported-connection-types?tabs=HTTP" target="_blank"&gt;https://learn.microsoft.com/en-us/rest/api/fabric/core/connections/list-supported-connection-types?tabs=HTTP&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Aug 2026 13:45:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Programmatically-Create-Fabric-Data-Pipeline-Cloud-Connection/m-p/5347165#M17531</guid>
      <dc:creator>tayloramy</dc:creator>
      <dc:date>2026-08-06T13:45:10Z</dc:date>
    </item>
    <item>
      <title>Re: Programmatically Create Fabric Data Pipeline Cloud Connection</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Programmatically-Create-Fabric-Data-Pipeline-Cloud-Connection/m-p/5347569#M17533</link>
      <description>&lt;P&gt;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1340679"&gt;@tayloramy&lt;/a&gt;&amp;nbsp;thanks for the tip - I called the API to view all connection types and found that the creationMethod for a Fabric Data Pipeline is FabricDataPipeline.Actions. I have a follow-up question though - having created the connection, it is not visible in the 'Manage connection and gateways page'. Is there a delay until it is visible?&lt;/P&gt;</description>
      <pubDate>Thu, 06 Aug 2026 15:56:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Programmatically-Create-Fabric-Data-Pipeline-Cloud-Connection/m-p/5347569#M17533</guid>
      <dc:creator>CoulterJames2</dc:creator>
      <dc:date>2026-08-06T15:56:16Z</dc:date>
    </item>
    <item>
      <title>Re: Programmatically Create Fabric Data Pipeline Cloud Connection</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Programmatically-Create-Fabric-Data-Pipeline-Cloud-Connection/m-p/5347588#M17534</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/204992"&gt;@CoulterJames2&lt;/a&gt;,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For cloud connections, only the owner can see them. So whatever crednetials you used to send the POST request is the account that can manage them, even as a fabric admin you cannot see someone's cloud connections.&amp;nbsp;&lt;BR /&gt;I recommend using the REST API to also share the connection with yourself so you can see them, but editing them will need to be done only through the API using the credentials that created the connection.&amp;nbsp;&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Aug 2026 16:02:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Programmatically-Create-Fabric-Data-Pipeline-Cloud-Connection/m-p/5347588#M17534</guid>
      <dc:creator>tayloramy</dc:creator>
      <dc:date>2026-08-06T16:02:57Z</dc:date>
    </item>
    <item>
      <title>Re: Programmatically Create Fabric Data Pipeline Cloud Connection</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Programmatically-Create-Fabric-Data-Pipeline-Cloud-Connection/m-p/5349636#M17540</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1340679"&gt;@tayloramy&lt;/a&gt;&amp;nbsp;yes, I realised this was the reason and then had to add a role assignment using my own credentials. Thanks for the help.&lt;/P&gt;</description>
      <pubDate>Fri, 07 Aug 2026 09:35:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Programmatically-Create-Fabric-Data-Pipeline-Cloud-Connection/m-p/5349636#M17540</guid>
      <dc:creator>CoulterJames2</dc:creator>
      <dc:date>2026-08-07T09:35:10Z</dc:date>
    </item>
  </channel>
</rss>

