fivetran 1.5.1 published on Friday, Mar 7, 2025 by fivetran
fivetran.getWebhooks
Explore with Pulumi AI
This data source returns a list of all webhooks within your Fivetran account.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fivetran from "@pulumi/fivetran";
const webhooks = fivetran.getWebhooks({});
import pulumi
import pulumi_fivetran as fivetran
webhooks = fivetran.get_webhooks()
package main
import (
	"github.com/pulumi/pulumi-terraform-provider/sdks/go/fivetran/fivetran"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := fivetran.GetWebhooks(ctx, map[string]interface{}{}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Fivetran = Pulumi.Fivetran;
return await Deployment.RunAsync(() => 
{
    var webhooks = Fivetran.GetWebhooks.Invoke();
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fivetran.FivetranFunctions;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        final var webhooks = FivetranFunctions.getWebhooks();
    }
}
variables:
  webhooks:
    fn::invoke:
      function: fivetran:getWebhooks
      arguments: {}
Using getWebhooks
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getWebhooks(opts?: InvokeOptions): Promise<GetWebhooksResult>
function getWebhooksOutput(opts?: InvokeOptions): Output<GetWebhooksResult>def get_webhooks(opts: Optional[InvokeOptions] = None) -> GetWebhooksResult
def get_webhooks_output(opts: Optional[InvokeOptions] = None) -> Output[GetWebhooksResult]func GetWebhooks(ctx *Context, opts ...InvokeOption) (*GetWebhooksResult, error)
func GetWebhooksOutput(ctx *Context, opts ...InvokeOption) GetWebhooksResultOutput> Note: This function is named GetWebhooks in the Go SDK.
public static class GetWebhooks 
{
    public static Task<GetWebhooksResult> InvokeAsync(InvokeOptions? opts = null)
    public static Output<GetWebhooksResult> Invoke(InvokeOptions? opts = null)
}public static CompletableFuture<GetWebhooksResult> getWebhooks(InvokeOptions options)
public static Output<GetWebhooksResult> getWebhooks(InvokeOptions options)
fn::invoke:
  function: fivetran:index/getWebhooks:getWebhooks
  arguments:
    # arguments dictionarygetWebhooks Result
The following output properties are available:
- Id string
- The provider-assigned unique ID for this managed resource.
- Webhooks
List<GetWebhooks Webhook> 
- Id string
- The provider-assigned unique ID for this managed resource.
- Webhooks
[]GetWebhooks Webhook 
- id String
- The provider-assigned unique ID for this managed resource.
- webhooks
List<GetWebhooks Webhook> 
- id string
- The provider-assigned unique ID for this managed resource.
- webhooks
GetWebhooks Webhook[] 
- id str
- The provider-assigned unique ID for this managed resource.
- webhooks
Sequence[GetWebhooks Webhook] 
- id String
- The provider-assigned unique ID for this managed resource.
- webhooks List<Property Map>
Supporting Types
GetWebhooksWebhook  
- Active bool
- Boolean, if set to true, webhooks are immediately sent in response to events
- CreatedAt string
- The webhook creation timestamp
- CreatedBy string
- The ID of the user who created the webhook.
- Events List<string>
- The array of event types
- GroupId string
- The group ID
- Id string
- The webhook ID
- RunTests bool
- Specifies whether the setup tests should be run
- Secret string
- The secret string used for payload signing and masked in the response.
- Type string
- The webhook type (group, account)
- Url string
- Your webhooks URL endpoint for your application
- Active bool
- Boolean, if set to true, webhooks are immediately sent in response to events
- CreatedAt string
- The webhook creation timestamp
- CreatedBy string
- The ID of the user who created the webhook.
- Events []string
- The array of event types
- GroupId string
- The group ID
- Id string
- The webhook ID
- RunTests bool
- Specifies whether the setup tests should be run
- Secret string
- The secret string used for payload signing and masked in the response.
- Type string
- The webhook type (group, account)
- Url string
- Your webhooks URL endpoint for your application
- active Boolean
- Boolean, if set to true, webhooks are immediately sent in response to events
- createdAt String
- The webhook creation timestamp
- createdBy String
- The ID of the user who created the webhook.
- events List<String>
- The array of event types
- groupId String
- The group ID
- id String
- The webhook ID
- runTests Boolean
- Specifies whether the setup tests should be run
- secret String
- The secret string used for payload signing and masked in the response.
- type String
- The webhook type (group, account)
- url String
- Your webhooks URL endpoint for your application
- active boolean
- Boolean, if set to true, webhooks are immediately sent in response to events
- createdAt string
- The webhook creation timestamp
- createdBy string
- The ID of the user who created the webhook.
- events string[]
- The array of event types
- groupId string
- The group ID
- id string
- The webhook ID
- runTests boolean
- Specifies whether the setup tests should be run
- secret string
- The secret string used for payload signing and masked in the response.
- type string
- The webhook type (group, account)
- url string
- Your webhooks URL endpoint for your application
- active bool
- Boolean, if set to true, webhooks are immediately sent in response to events
- created_at str
- The webhook creation timestamp
- created_by str
- The ID of the user who created the webhook.
- events Sequence[str]
- The array of event types
- group_id str
- The group ID
- id str
- The webhook ID
- run_tests bool
- Specifies whether the setup tests should be run
- secret str
- The secret string used for payload signing and masked in the response.
- type str
- The webhook type (group, account)
- url str
- Your webhooks URL endpoint for your application
- active Boolean
- Boolean, if set to true, webhooks are immediately sent in response to events
- createdAt String
- The webhook creation timestamp
- createdBy String
- The ID of the user who created the webhook.
- events List<String>
- The array of event types
- groupId String
- The group ID
- id String
- The webhook ID
- runTests Boolean
- Specifies whether the setup tests should be run
- secret String
- The secret string used for payload signing and masked in the response.
- type String
- The webhook type (group, account)
- url String
- Your webhooks URL endpoint for your application
Package Details
- Repository
- fivetran fivetran/terraform-provider-fivetran
- License
- Notes
- This Pulumi package is based on the fivetranTerraform Provider.