import * as pulumi from "@pulumi/pulumi"; /** * Data source for AWS Autostopping proxy * * ## Example Usage */ export declare function getAwsAlb(args: GetAwsAlbArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getAwsAlb. */ export interface GetAwsAlbArgs { /** * Arn of AWS ALB to be imported. Required only for importing existing ALB */ albArn?: string; certificateId?: string; /** * Id of the cloud connector */ cloudConnectorId: string; /** * Governs how the loadabalancer entity will be deleted on Terraform destroy. When set to true, the associated ALB will be deleted permanently from AWS account. Be fully aware of the consequneces of settting this to true, as the action is irreversible. When set to false, solely the Harness LB representation will be deleted, leaving the cloud resources intact. */ deleteCloudResourcesOnDestroy: boolean; /** * Name of the proxy */ name: string; /** * Region in which cloud resources are hosted */ region: string; /** * Security Group to define the security rules that determine the inbound and outbound traffic */ securityGroups?: string[]; /** * VPC in which cloud resources are hosted */ vpc: string; } /** * A collection of values returned by getAwsAlb. */ export interface GetAwsAlbResult { /** * Arn of AWS ALB to be imported. Required only for importing existing ALB */ readonly albArn?: string; readonly certificateId?: string; /** * Id of the cloud connector */ readonly cloudConnectorId: string; /** * Governs how the loadabalancer entity will be deleted on Terraform destroy. When set to true, the associated ALB will be deleted permanently from AWS account. Be fully aware of the consequneces of settting this to true, as the action is irreversible. When set to false, solely the Harness LB representation will be deleted, leaving the cloud resources intact. */ readonly deleteCloudResourcesOnDestroy: boolean; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Unique identifier of the resource */ readonly identifier: string; /** * Name of the proxy */ readonly name: string; /** * Region in which cloud resources are hosted */ readonly region: string; /** * Security Group to define the security rules that determine the inbound and outbound traffic */ readonly securityGroups?: string[]; /** * VPC in which cloud resources are hosted */ readonly vpc: string; } /** * Data source for AWS Autostopping proxy * * ## Example Usage */ export declare function getAwsAlbOutput(args: GetAwsAlbOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getAwsAlb. */ export interface GetAwsAlbOutputArgs { /** * Arn of AWS ALB to be imported. Required only for importing existing ALB */ albArn?: pulumi.Input; certificateId?: pulumi.Input; /** * Id of the cloud connector */ cloudConnectorId: pulumi.Input; /** * Governs how the loadabalancer entity will be deleted on Terraform destroy. When set to true, the associated ALB will be deleted permanently from AWS account. Be fully aware of the consequneces of settting this to true, as the action is irreversible. When set to false, solely the Harness LB representation will be deleted, leaving the cloud resources intact. */ deleteCloudResourcesOnDestroy: pulumi.Input; /** * Name of the proxy */ name: pulumi.Input; /** * Region in which cloud resources are hosted */ region: pulumi.Input; /** * Security Group to define the security rules that determine the inbound and outbound traffic */ securityGroups?: pulumi.Input[] | undefined>; /** * VPC in which cloud resources are hosted */ vpc: pulumi.Input; } //# sourceMappingURL=getAwsAlb.d.ts.map