1. Packages
  2. Fivetran Provider
  3. API Docs
  4. getHybridDeploymentAgents
fivetran 1.6.0 published on Tuesday, Mar 25, 2025 by fivetran

fivetran.getHybridDeploymentAgents

Explore with Pulumi AI

fivetran logo
fivetran 1.6.0 published on Tuesday, Mar 25, 2025 by fivetran

    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<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 string
    The unique name for the hybrid deployment agent.
    GroupId string
    The unique identifier for the Group within the Fivetran system.
    Id string
    The unique identifier for the hybrid deployment agent within your account.
    RegisteredAt string
    The timestamp of the time the hybrid deployment agent was created in your account.
    DisplayName string
    The unique name for the hybrid deployment agent.
    GroupId string
    The unique identifier for the Group within the Fivetran system.
    Id string
    The unique identifier for the hybrid deployment agent within your account.
    RegisteredAt string
    The timestamp of the time the hybrid deployment agent was created in your account.
    displayName String
    The unique name for the hybrid deployment agent.
    groupId String
    The unique identifier for the Group within the Fivetran system.
    id String
    The unique identifier for the hybrid deployment agent within your account.
    registeredAt String
    The timestamp of the time the hybrid deployment agent was created in your account.
    displayName string
    The unique name for the hybrid deployment agent.
    groupId string
    The unique identifier for the Group within the Fivetran system.
    id string
    The unique identifier for the hybrid deployment agent within your account.
    registeredAt 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.
    displayName String
    The unique name for the hybrid deployment agent.
    groupId String
    The unique identifier for the Group within the Fivetran system.
    id String
    The unique identifier for the hybrid deployment agent within your account.
    registeredAt 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.
    fivetran logo
    fivetran 1.6.0 published on Tuesday, Mar 25, 2025 by fivetran