fivetran 1.6.0 published on Tuesday, Mar 25, 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({});
import pulumi
import pulumi_fivetran as fivetran
hybrid_deployment_agents = fivetran.get_hybrid_deployment_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.GetHybridDeploymentAgents(ctx, map[string]interface{}{}, 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 hybridDeploymentAgents = Fivetran.GetHybridDeploymentAgents.Invoke();
});
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();
}
}
variables:
hybridDeploymentAgents:
fn::invoke:
function: fivetran:getHybridDeploymentAgents
arguments: {}
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>
def get_hybrid_deployment_agents(opts: Optional[InvokeOptions] = None) -> GetHybridDeploymentAgentsResult
def get_hybrid_deployment_agents_output(opts: Optional[InvokeOptions] = None) -> Output[GetHybridDeploymentAgentsResult]
func GetHybridDeploymentAgents(ctx *Context, opts ...InvokeOption) (*GetHybridDeploymentAgentsResult, error)
func GetHybridDeploymentAgentsOutput(ctx *Context, opts ...InvokeOption) GetHybridDeploymentAgentsResultOutput
> 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)
}
public static CompletableFuture<GetHybridDeploymentAgentsResult> getHybridDeploymentAgents(InvokeOptions options)
public static Output<GetHybridDeploymentAgentsResult> getHybridDeploymentAgents(InvokeOptions options)
fn::invoke:
function: fivetran:index/getHybridDeploymentAgents:getHybridDeploymentAgents
arguments:
# arguments dictionary
getHybridDeploymentAgents Result
The following output properties are available:
- Id string
- The provider-assigned unique ID for this managed resource.
- Items
List<Get
Hybrid Deployment Agents Item>
- Id string
- The provider-assigned unique ID for this managed resource.
- Items
[]Get
Hybrid Deployment Agents Item
- id String
- The provider-assigned unique ID for this managed resource.
- items
List<Get
Hybrid Deployment Agents Item>
- id string
- The provider-assigned unique ID for this managed resource.
- items
Get
Hybrid Deployment Agents Item[]
- id str
- The provider-assigned unique ID for this managed resource.
- items
Sequence[Get
Hybrid Deployment Agents Item]
- id String
- The provider-assigned unique ID for this managed resource.
- items List<Property Map>
Supporting Types
GetHybridDeploymentAgentsItem
- Display
Name string - The unique name for the hybrid deployment agent.
- Group
Id string - The unique identifier for the Group within the Fivetran system.
- Id string
- The unique identifier for the hybrid deployment agent within your account.
- Registered
At string - The timestamp of the time the hybrid deployment agent was created in your account.
- Display
Name string - The unique name for the hybrid deployment agent.
- Group
Id string - The unique identifier for the Group within the Fivetran system.
- Id string
- The unique identifier for the hybrid deployment agent within your account.
- Registered
At string - The timestamp of the time the hybrid deployment agent was created in your account.
- display
Name String - The unique name for the hybrid deployment agent.
- group
Id String - The unique identifier for the Group within the Fivetran system.
- id String
- The unique identifier for the hybrid deployment agent within your account.
- registered
At String - The timestamp of the time the hybrid deployment agent was created in your account.
- display
Name string - The unique name for the hybrid deployment agent.
- group
Id string - The unique identifier for the Group within the Fivetran system.
- id string
- The unique identifier for the hybrid deployment agent within your account.
- registered
At string - The timestamp of the time the hybrid deployment agent was created in your account.
- display_
name str - The unique name for the hybrid deployment agent.
- group_
id str - The unique identifier for the Group within the Fivetran system.
- id str
- The unique identifier for the hybrid deployment agent within your account.
- registered_
at str - The timestamp of the time the hybrid deployment agent was created in your account.
- display
Name String - The unique name for the hybrid deployment agent.
- group
Id String - The unique identifier for the Group within the Fivetran system.
- id String
- The unique identifier for the hybrid deployment agent within your account.
- registered
At 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.