1. Packages
  2. Fivetran Provider
  3. API Docs
  4. ProxyAgent
fivetran 1.6.1 published on Monday, Mar 31, 2025 by fivetran

fivetran.ProxyAgent

Explore with Pulumi AI

This resource allows you to create, update, and delete proxy agent.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as fivetran from "@pulumi/fivetran";

const testProxyAgent = new fivetran.ProxyAgent("testProxyAgent", {
    displayName: "display_name",
    groupRegion: "group_region",
}, {
    provider: fivetran_provider,
});
Copy
import pulumi
import pulumi_fivetran as fivetran

test_proxy_agent = fivetran.ProxyAgent("testProxyAgent",
    display_name="display_name",
    group_region="group_region",
    opts = pulumi.ResourceOptions(provider=fivetran_provider))
Copy
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.NewProxyAgent(ctx, "testProxyAgent", &fivetran.ProxyAgentArgs{
			DisplayName: pulumi.String("display_name"),
			GroupRegion: pulumi.String("group_region"),
		}, pulumi.Provider(fivetran_provider))
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Fivetran = Pulumi.Fivetran;

return await Deployment.RunAsync(() => 
{
    var testProxyAgent = new Fivetran.ProxyAgent("testProxyAgent", new()
    {
        DisplayName = "display_name",
        GroupRegion = "group_region",
    }, new CustomResourceOptions
    {
        Provider = fivetran_provider,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fivetran.ProxyAgent;
import com.pulumi.fivetran.ProxyAgentArgs;
import com.pulumi.resources.CustomResourceOptions;
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) {
        var testProxyAgent = new ProxyAgent("testProxyAgent", ProxyAgentArgs.builder()
            .displayName("display_name")
            .groupRegion("group_region")
            .build(), CustomResourceOptions.builder()
                .provider(fivetran_provider)
                .build());

    }
}
Copy
resources:
  testProxyAgent:
    type: fivetran:ProxyAgent
    properties:
      displayName: display_name
      groupRegion: group_region
    options:
      provider: ${["fivetran-provider"]}
Copy

Create ProxyAgent Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new ProxyAgent(name: string, args: ProxyAgentArgs, opts?: CustomResourceOptions);
@overload
def ProxyAgent(resource_name: str,
               args: ProxyAgentArgs,
               opts: Optional[ResourceOptions] = None)

@overload
def ProxyAgent(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               display_name: Optional[str] = None,
               group_region: Optional[str] = None)
func NewProxyAgent(ctx *Context, name string, args ProxyAgentArgs, opts ...ResourceOption) (*ProxyAgent, error)
public ProxyAgent(string name, ProxyAgentArgs args, CustomResourceOptions? opts = null)
public ProxyAgent(String name, ProxyAgentArgs args)
public ProxyAgent(String name, ProxyAgentArgs args, CustomResourceOptions options)
type: fivetran:ProxyAgent
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. ProxyAgentArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. ProxyAgentArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. ProxyAgentArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. ProxyAgentArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. ProxyAgentArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var proxyAgentResource = new Fivetran.ProxyAgent("proxyAgentResource", new()
{
    DisplayName = "string",
    GroupRegion = "string",
});
Copy
example, err := fivetran.NewProxyAgent(ctx, "proxyAgentResource", &fivetran.ProxyAgentArgs{
DisplayName: pulumi.String("string"),
GroupRegion: pulumi.String("string"),
})
Copy
var proxyAgentResource = new ProxyAgent("proxyAgentResource", ProxyAgentArgs.builder()
    .displayName("string")
    .groupRegion("string")
    .build());
Copy
proxy_agent_resource = fivetran.ProxyAgent("proxyAgentResource",
    display_name="string",
    group_region="string")
Copy
const proxyAgentResource = new fivetran.ProxyAgent("proxyAgentResource", {
    displayName: "string",
    groupRegion: "string",
});
Copy
type: fivetran:ProxyAgent
properties:
    displayName: string
    groupRegion: string
Copy

ProxyAgent Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The ProxyAgent resource accepts the following input properties:

DisplayName This property is required. string
Proxy agent name.
GroupRegion This property is required. string
Data processing location. This is where Fivetran will operate and run computation on data.
DisplayName This property is required. string
Proxy agent name.
GroupRegion This property is required. string
Data processing location. This is where Fivetran will operate and run computation on data.
displayName This property is required. String
Proxy agent name.
groupRegion This property is required. String
Data processing location. This is where Fivetran will operate and run computation on data.
displayName This property is required. string
Proxy agent name.
groupRegion This property is required. string
Data processing location. This is where Fivetran will operate and run computation on data.
display_name This property is required. str
Proxy agent name.
group_region This property is required. str
Data processing location. This is where Fivetran will operate and run computation on data.
displayName This property is required. String
Proxy agent name.
groupRegion This property is required. String
Data processing location. This is where Fivetran will operate and run computation on data.

Outputs

All input properties are implicitly available as output properties. Additionally, the ProxyAgent resource produces the following output properties:

CreatedBy string
The actor who created the proxy agent.
Id string
The provider-assigned unique ID for this managed resource.
ProxyServerUri string
The proxy server URI.
RegistredAt string
The timestamp of the time the proxy agent was created in your account.
Salt string
The salt.
Token string
The auth token.
CreatedBy string
The actor who created the proxy agent.
Id string
The provider-assigned unique ID for this managed resource.
ProxyServerUri string
The proxy server URI.
RegistredAt string
The timestamp of the time the proxy agent was created in your account.
Salt string
The salt.
Token string
The auth token.
createdBy String
The actor who created the proxy agent.
id String
The provider-assigned unique ID for this managed resource.
proxyServerUri String
The proxy server URI.
registredAt String
The timestamp of the time the proxy agent was created in your account.
salt String
The salt.
token String
The auth token.
createdBy string
The actor who created the proxy agent.
id string
The provider-assigned unique ID for this managed resource.
proxyServerUri string
The proxy server URI.
registredAt 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.
id str
The provider-assigned unique ID for this managed resource.
proxy_server_uri str
The proxy server URI.
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.
createdBy String
The actor who created the proxy agent.
id String
The provider-assigned unique ID for this managed resource.
proxyServerUri String
The proxy server URI.
registredAt String
The timestamp of the time the proxy agent was created in your account.
salt String
The salt.
token String
The auth token.

Look up Existing ProxyAgent Resource

Get an existing ProxyAgent resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: ProxyAgentState, opts?: CustomResourceOptions): ProxyAgent
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        created_by: Optional[str] = None,
        display_name: Optional[str] = None,
        group_region: Optional[str] = None,
        proxy_server_uri: Optional[str] = None,
        registred_at: Optional[str] = None,
        salt: Optional[str] = None,
        token: Optional[str] = None) -> ProxyAgent
func GetProxyAgent(ctx *Context, name string, id IDInput, state *ProxyAgentState, opts ...ResourceOption) (*ProxyAgent, error)
public static ProxyAgent Get(string name, Input<string> id, ProxyAgentState? state, CustomResourceOptions? opts = null)
public static ProxyAgent get(String name, Output<String> id, ProxyAgentState state, CustomResourceOptions options)
resources:  _:    type: fivetran:ProxyAgent    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
CreatedBy string
The actor who created the proxy agent.
DisplayName string
Proxy agent name.
GroupRegion string
Data processing location. This is where Fivetran will operate and run computation on data.
ProxyServerUri string
The proxy server URI.
RegistredAt string
The timestamp of the time the proxy agent was created in your account.
Salt string
The salt.
Token string
The auth token.
CreatedBy string
The actor who created the proxy agent.
DisplayName string
Proxy agent name.
GroupRegion string
Data processing location. This is where Fivetran will operate and run computation on data.
ProxyServerUri string
The proxy server URI.
RegistredAt string
The timestamp of the time the proxy agent was created in your account.
Salt string
The salt.
Token string
The auth token.
createdBy String
The actor who created the proxy agent.
displayName String
Proxy agent name.
groupRegion String
Data processing location. This is where Fivetran will operate and run computation on data.
proxyServerUri String
The proxy server URI.
registredAt String
The timestamp of the time the proxy agent was created in your account.
salt String
The salt.
token String
The auth token.
createdBy string
The actor who created the proxy agent.
displayName string
Proxy agent name.
groupRegion string
Data processing location. This is where Fivetran will operate and run computation on data.
proxyServerUri string
The proxy server URI.
registredAt 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.
proxy_server_uri str
The proxy server URI.
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.
createdBy String
The actor who created the proxy agent.
displayName String
Proxy agent name.
groupRegion String
Data processing location. This is where Fivetran will operate and run computation on data.
proxyServerUri String
The proxy server URI.
registredAt 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.