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

fivetran.getHybridDeploymentAgents

Explore with Pulumi AI

This data source returns a list of all hybrid deployment agents within your Fivetran account.

Example Usage

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

const hybridDeploymentAgents = fivetran.getHybridDeploymentAgents({});
Copy
import pulumi
import pulumi_fivetran as fivetran

hybrid_deployment_agents = fivetran.get_hybrid_deployment_agents()
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.GetHybridDeploymentAgents(ctx, map[string]interface{}{}, nil)
		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 hybridDeploymentAgents = Fivetran.GetHybridDeploymentAgents.Invoke();

});
Copy
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 hybridDeploymentAgents = FivetranFunctions.getHybridDeploymentAgents();

    }
}
Copy
variables:
  hybridDeploymentAgents:
    fn::invoke:
      function: fivetran:getHybridDeploymentAgents
      arguments: {}
Copy

Using getHybridDeploymentAgents

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 getHybridDeploymentAgents(opts?: InvokeOptions): Promise<GetHybridDeploymentAgentsResult>
function getHybridDeploymentAgentsOutput(opts?: InvokeOptions): Output<GetHybridDeploymentAgentsResult>
Copy
def get_hybrid_deployment_agents(opts: Optional[InvokeOptions] = None) -> GetHybridDeploymentAgentsResult
def get_hybrid_deployment_agents_output(opts: Optional[InvokeOptions] = None) -> Output[GetHybridDeploymentAgentsResult]
Copy
func GetHybridDeploymentAgents(ctx *Context, opts ...InvokeOption) (*GetHybridDeploymentAgentsResult, error)
func GetHybridDeploymentAgentsOutput(ctx *Context, opts ...InvokeOption) GetHybridDeploymentAgentsResultOutput
Copy

> Note: This function is named GetHybridDeploymentAgents in the Go SDK.

public static class GetHybridDeploymentAgents 
{
    public static Task<GetHybridDeploymentAgentsResult> InvokeAsync(InvokeOptions? opts = null)
    public static Output<GetHybridDeploymentAgentsResult> Invoke(InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetHybridDeploymentAgentsResult> getHybridDeploymentAgents(InvokeOptions options)
public static Output<GetHybridDeploymentAgentsResult> getHybridDeploymentAgents(InvokeOptions options)
Copy
fn::invoke:
  function: fivetran:index/getHybridDeploymentAgents:getHybridDeploymentAgents
  arguments:
    # arguments dictionary
Copy

getHybridDeploymentAgents Result

The following output properties are available:

Id string
The provider-assigned unique ID for this managed resource.
Items List<GetHybridDeploymentAgentsItem>
Id string
The provider-assigned unique ID for this managed resource.
Items []GetHybridDeploymentAgentsItem
id String
The provider-assigned unique ID for this managed resource.
items List<GetHybridDeploymentAgentsItem>
id string
The provider-assigned unique ID for this managed resource.
items GetHybridDeploymentAgentsItem[]
id str
The provider-assigned unique ID for this managed resource.
items Sequence[GetHybridDeploymentAgentsItem]
id String
The provider-assigned unique ID for this managed resource.
items List<Property Map>

Supporting Types

GetHybridDeploymentAgentsItem

DisplayName This property is required. string
The unique name for the hybrid deployment agent.
GroupId This property is required. string
The unique identifier for the Group within the Fivetran system.
Id This property is required. string
The unique identifier for the hybrid deployment agent within your account.
RegisteredAt This property is required. string
The timestamp of the time the hybrid deployment agent was created in your account.
DisplayName This property is required. string
The unique name for the hybrid deployment agent.
GroupId This property is required. string
The unique identifier for the Group within the Fivetran system.
Id This property is required. string
The unique identifier for the hybrid deployment agent within your account.
RegisteredAt This property is required. string
The timestamp of the time the hybrid deployment agent was created in your account.
displayName This property is required. String
The unique name for the hybrid deployment agent.
groupId This property is required. String
The unique identifier for the Group within the Fivetran system.
id This property is required. String
The unique identifier for the hybrid deployment agent within your account.
registeredAt This property is required. String
The timestamp of the time the hybrid deployment agent was created in your account.
displayName This property is required. string
The unique name for the hybrid deployment agent.
groupId This property is required. string
The unique identifier for the Group within the Fivetran system.
id This property is required. string
The unique identifier for the hybrid deployment agent within your account.
registeredAt This property is required. string
The timestamp of the time the hybrid deployment agent was created in your account.
display_name This property is required. str
The unique name for the hybrid deployment agent.
group_id This property is required. str
The unique identifier for the Group within the Fivetran system.
id This property is required. str
The unique identifier for the hybrid deployment agent within your account.
registered_at This property is required. str
The timestamp of the time the hybrid deployment agent was created in your account.
displayName This property is required. String
The unique name for the hybrid deployment agent.
groupId This property is required. String
The unique identifier for the Group within the Fivetran system.
id This property is required. String
The unique identifier for the hybrid deployment agent within your account.
registeredAt This property is required. String
The timestamp of the time the hybrid deployment agent was created in your account.

Package Details

Repository
fivetran fivetran/terraform-provider-fivetran
License
Notes
This Pulumi package is based on the fivetran Terraform Provider.