-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgetHybridDeploymentAgent.ts
More file actions
42 lines (37 loc) · 1.57 KB
/
getHybridDeploymentAgent.ts
File metadata and controls
42 lines (37 loc) · 1.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
import * as pulumi from "@pulumi/pulumi";
import * as utilities from "./utilities";
export function getHybridDeploymentAgent(args: GetHybridDeploymentAgentArgs, opts?: pulumi.InvokeOptions): Promise<GetHybridDeploymentAgentResult> {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("fivetran:index/getHybridDeploymentAgent:getHybridDeploymentAgent", {
"id": args.id,
}, opts, utilities.getPackage());
}
/**
* A collection of arguments for invoking getHybridDeploymentAgent.
*/
export interface GetHybridDeploymentAgentArgs {
id: string;
}
/**
* A collection of values returned by getHybridDeploymentAgent.
*/
export interface GetHybridDeploymentAgentResult {
readonly displayName: string;
readonly groupId: string;
readonly id: string;
readonly registeredAt: string;
}
export function getHybridDeploymentAgentOutput(args: GetHybridDeploymentAgentOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetHybridDeploymentAgentResult> {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invokeOutput("fivetran:index/getHybridDeploymentAgent:getHybridDeploymentAgent", {
"id": args.id,
}, opts, utilities.getPackage());
}
/**
* A collection of arguments for invoking getHybridDeploymentAgent.
*/
export interface GetHybridDeploymentAgentOutputArgs {
id: pulumi.Input<string>;
}