Viewing docs for fivetran 1.9.25
published on Tuesday, Feb 24, 2026 by fivetran
published on Tuesday, Feb 24, 2026 by fivetran
Viewing docs for fivetran 1.9.25
published on Tuesday, Feb 24, 2026 by fivetran
published on Tuesday, Feb 24, 2026 by fivetran
This data source returns a list of all proxy agents within your Fivetran account.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fivetran from "@pulumi/fivetran";
const proxyAgents = fivetran.getProxyAgents({});
import pulumi
import pulumi_fivetran as fivetran
proxy_agents = fivetran.get_proxy_agents()
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.GetProxyAgents(ctx, &fivetran.GetProxyAgentsArgs{}, 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 proxyAgents = Fivetran.GetProxyAgents.Invoke();
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fivetran.FivetranFunctions;
import com.pulumi.fivetran.inputs.GetProxyAgentsArgs;
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 proxyAgents = FivetranFunctions.getProxyAgents(GetProxyAgentsArgs.builder()
.build());
}
}
variables:
proxyAgents:
fn::invoke:
function: fivetran:getProxyAgents
arguments: {}
Using getProxyAgents
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 getProxyAgents(args: GetProxyAgentsArgs, opts?: InvokeOptions): Promise<GetProxyAgentsResult>
function getProxyAgentsOutput(args: GetProxyAgentsOutputArgs, opts?: InvokeOptions): Output<GetProxyAgentsResult>def get_proxy_agents(items: Optional[Sequence[GetProxyAgentsItem]] = None,
opts: Optional[InvokeOptions] = None) -> GetProxyAgentsResult
def get_proxy_agents_output(items: Optional[pulumi.Input[Sequence[pulumi.Input[GetProxyAgentsItemArgs]]]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetProxyAgentsResult]func GetProxyAgents(ctx *Context, args *GetProxyAgentsArgs, opts ...InvokeOption) (*GetProxyAgentsResult, error)
func GetProxyAgentsOutput(ctx *Context, args *GetProxyAgentsOutputArgs, opts ...InvokeOption) GetProxyAgentsResultOutput> Note: This function is named GetProxyAgents in the Go SDK.
public static class GetProxyAgents
{
public static Task<GetProxyAgentsResult> InvokeAsync(GetProxyAgentsArgs args, InvokeOptions? opts = null)
public static Output<GetProxyAgentsResult> Invoke(GetProxyAgentsInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetProxyAgentsResult> getProxyAgents(GetProxyAgentsArgs args, InvokeOptions options)
public static Output<GetProxyAgentsResult> getProxyAgents(GetProxyAgentsArgs args, InvokeOptions options)
fn::invoke:
function: fivetran:index/getProxyAgents:getProxyAgents
arguments:
# arguments dictionaryThe following arguments are supported:
getProxyAgents Result
The following output properties are available:
- Id string
- The provider-assigned unique ID for this managed resource.
- Items
List<Get
Proxy Agents Item>
- Id string
- The provider-assigned unique ID for this managed resource.
- Items
[]Get
Proxy Agents Item
- id String
- The provider-assigned unique ID for this managed resource.
- items
List<Get
Proxy Agents Item>
- id string
- The provider-assigned unique ID for this managed resource.
- items
Get
Proxy Agents Item[]
- id str
- The provider-assigned unique ID for this managed resource.
- items
Sequence[Get
Proxy Agents Item]
- id String
- The provider-assigned unique ID for this managed resource.
- items List<Property Map>
Supporting Types
GetProxyAgentsItem
- Created
By string - The actor who created the proxy agent.
- Display
Name string - Proxy agent name.
- Group
Region string - Data processing location. This is where Fivetran will operate and run computation on data.
- Id string
- The unique identifier for the proxy within your account.
- Registred
At string - The timestamp of the time the proxy agent was created in your account.
- Created
By string - The actor who created the proxy agent.
- Display
Name string - Proxy agent name.
- Group
Region string - Data processing location. This is where Fivetran will operate and run computation on data.
- Id string
- The unique identifier for the proxy within your account.
- Registred
At string - The timestamp of the time the proxy agent was created in your account.
- created
By String - The actor who created the proxy agent.
- display
Name String - Proxy agent name.
- group
Region String - Data processing location. This is where Fivetran will operate and run computation on data.
- id String
- The unique identifier for the proxy within your account.
- registred
At String - The timestamp of the time the proxy agent was created in your account.
- created
By string - The actor who created the proxy agent.
- display
Name string - Proxy agent name.
- group
Region string - Data processing location. This is where Fivetran will operate and run computation on data.
- id string
- The unique identifier for the proxy within your account.
- registred
At string - The timestamp of the time the proxy agent was created in your account.
- created_
by str - The actor who created the proxy agent.
- display_
name str - Proxy agent name.
- group_
region str - Data processing location. This is where Fivetran will operate and run computation on data.
- id str
- The unique identifier for the proxy within your account.
- registred_
at str - The timestamp of the time the proxy agent was created in your account.
- created
By String - The actor who created the proxy agent.
- display
Name String - Proxy agent name.
- group
Region String - Data processing location. This is where Fivetran will operate and run computation on data.
- id String
- The unique identifier for the proxy within your account.
- registred
At String - The timestamp of the time the proxy agent was created in your account.
Package Details
- Repository
- fivetran fivetran/terraform-provider-fivetran
- License
- Notes
- This Pulumi package is based on the
fivetranTerraform Provider.
Viewing docs for fivetran 1.9.25
published on Tuesday, Feb 24, 2026 by fivetran
published on Tuesday, Feb 24, 2026 by fivetran
