fivetran 1.6.0 published on Tuesday, Mar 25, 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 dictionary
getWebhooks Result
The following output properties are available:
- Id string
- The provider-assigned unique ID for this managed resource.
- Webhooks
List<Get
Webhooks Webhook>
- Id string
- The provider-assigned unique ID for this managed resource.
- Webhooks
[]Get
Webhooks Webhook
- id String
- The provider-assigned unique ID for this managed resource.
- webhooks
List<Get
Webhooks Webhook>
- id string
- The provider-assigned unique ID for this managed resource.
- webhooks
Get
Webhooks Webhook[]
- id str
- The provider-assigned unique ID for this managed resource.
- webhooks
Sequence[Get
Webhooks 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
- Created
At string - The webhook creation timestamp
- Created
By string - The ID of the user who created the webhook.
- Events List<string>
- The array of event types
- Group
Id string - The group ID
- Id string
- The webhook ID
- Run
Tests 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
- Created
At string - The webhook creation timestamp
- Created
By string - The ID of the user who created the webhook.
- Events []string
- The array of event types
- Group
Id string - The group ID
- Id string
- The webhook ID
- Run
Tests 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
- created
At String - The webhook creation timestamp
- created
By String - The ID of the user who created the webhook.
- events List<String>
- The array of event types
- group
Id String - The group ID
- id String
- The webhook ID
- run
Tests 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
- created
At string - The webhook creation timestamp
- created
By string - The ID of the user who created the webhook.
- events string[]
- The array of event types
- group
Id string - The group ID
- id string
- The webhook ID
- run
Tests 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
- created
At String - The webhook creation timestamp
- created
By String - The ID of the user who created the webhook.
- events List<String>
- The array of event types
- group
Id String - The group ID
- id String
- The webhook ID
- run
Tests 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
fivetran
Terraform Provider.