fivetran 1.6.0 published on Tuesday, Mar 25, 2025 by fivetran
fivetran.getProxyAgent
Explore with Pulumi AI
This data source returns a proxy agent object.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fivetran from "@pulumi/fivetran";
const proxyAgent = fivetran.getProxyAgent({
id: "proxy_id",
});
import pulumi
import pulumi_fivetran as fivetran
proxy_agent = fivetran.get_proxy_agent(id="proxy_id")
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.LookupProxyAgent(ctx, &fivetran.LookupProxyAgentArgs{
Id: "proxy_id",
}, 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 proxyAgent = Fivetran.GetProxyAgent.Invoke(new()
{
Id = "proxy_id",
});
});
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.GetProxyAgentArgs;
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 proxyAgent = FivetranFunctions.getProxyAgent(GetProxyAgentArgs.builder()
.id("proxy_id")
.build());
}
}
variables:
proxyAgent:
fn::invoke:
function: fivetran:getProxyAgent
arguments:
id: proxy_id
Using getProxyAgent
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 getProxyAgent(args: GetProxyAgentArgs, opts?: InvokeOptions): Promise<GetProxyAgentResult>
function getProxyAgentOutput(args: GetProxyAgentOutputArgs, opts?: InvokeOptions): Output<GetProxyAgentResult>
def get_proxy_agent(id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetProxyAgentResult
def get_proxy_agent_output(id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetProxyAgentResult]
func LookupProxyAgent(ctx *Context, args *LookupProxyAgentArgs, opts ...InvokeOption) (*LookupProxyAgentResult, error)
func LookupProxyAgentOutput(ctx *Context, args *LookupProxyAgentOutputArgs, opts ...InvokeOption) LookupProxyAgentResultOutput
> Note: This function is named LookupProxyAgent
in the Go SDK.
public static class GetProxyAgent
{
public static Task<GetProxyAgentResult> InvokeAsync(GetProxyAgentArgs args, InvokeOptions? opts = null)
public static Output<GetProxyAgentResult> Invoke(GetProxyAgentInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetProxyAgentResult> getProxyAgent(GetProxyAgentArgs args, InvokeOptions options)
public static Output<GetProxyAgentResult> getProxyAgent(GetProxyAgentArgs args, InvokeOptions options)
fn::invoke:
function: fivetran:index/getProxyAgent:getProxyAgent
arguments:
# arguments dictionary
The following arguments are supported:
- Id string
- The unique identifier for the proxy within your account.
- Id string
- The unique identifier for the proxy within your account.
- id String
- The unique identifier for the proxy within your account.
- id string
- The unique identifier for the proxy within your account.
- id str
- The unique identifier for the proxy within your account.
- id String
- The unique identifier for the proxy within your account.
getProxyAgent Result
The following output properties are available:
- 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.