fivetran 1.6.0 published on Tuesday, Mar 25, 2025 by fivetran
fivetran.getProxyAgents
Explore with Pulumi AI
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();
}
}
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 dictionary
The 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.
- Salt string
- The salt.
- Token string
- The auth token.
- 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.
- Salt string
- The salt.
- Token string
- The auth token.
- 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.
- salt String
- The salt.
- token String
- The auth token.
- 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.
- salt string
- The salt.
- token string
- The auth token.
- 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.
- salt str
- The salt.
- token str
- The auth token.
- 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.
- salt String
- The salt.
- token String
- The auth token.
Package Details
- Repository
- fivetran fivetran/terraform-provider-fivetran
- License
- Notes
- This Pulumi package is based on the
fivetran
Terraform Provider.