import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Data source for Azure Autostopping proxy * * ## Example Usage */ export declare function getAzureProxy(args: GetAzureProxyArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getAzureProxy. */ export interface GetAzureProxyArgs { /** * Boolean value to indicate if proxy vm needs to have static IP */ allocateStaticIp?: boolean; /** * Harness NG API key */ apiKey: string; certificateId?: string; certificates?: inputs.autostopping.GetAzureProxyCertificates; /** * Id of the cloud connector */ cloudConnectorId: string; /** * Governs how the proxy entity will be deleted on Terraform destroy. When set to true, the associated VM will be deleted permanently from Azure 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, which leaves the proxy VM in Azure account itself. */ deleteCloudResourcesOnDestroy: boolean; /** * Name of SSH Key to be used for proxy VM */ keypair: string; /** * Type of instance to be used for proxy */ machineType: string; /** * Name of the proxy */ name: string; /** * Region in which cloud resources are hosted */ region: string; /** * Resource group in which cloud resources are hosted */ resourceGroup: string; /** * Security Group to define the security rules that determine the inbound and outbound traffic */ securityGroups?: string[]; /** * Subnet in which cloud resources are hosted */ subnetId: string; /** * VPC in which cloud resources are hosted */ vpc: string; } /** * A collection of values returned by getAzureProxy. */ export interface GetAzureProxyResult { /** * Boolean value to indicate if proxy vm needs to have static IP */ readonly allocateStaticIp?: boolean; /** * Harness NG API key */ readonly apiKey: string; readonly certificateId?: string; readonly certificates?: outputs.autostopping.GetAzureProxyCertificates; /** * Id of the cloud connector */ readonly cloudConnectorId: string; /** * Governs how the proxy entity will be deleted on Terraform destroy. When set to true, the associated VM will be deleted permanently from Azure 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, which leaves the proxy VM in Azure account itself. */ 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 SSH Key to be used for proxy VM */ readonly keypair: string; /** * Type of instance to be used for proxy */ readonly machineType: string; /** * Name of the proxy */ readonly name: string; /** * Private IP address of the proxy */ readonly privateIp: string; /** * Public IP address of the proxy */ readonly publicIp: string; /** * Region in which cloud resources are hosted */ readonly region: string; /** * Resource group in which cloud resources are hosted */ readonly resourceGroup: string; /** * Security Group to define the security rules that determine the inbound and outbound traffic */ readonly securityGroups?: string[]; /** * Subnet in which cloud resources are hosted */ readonly subnetId: string; /** * VPC in which cloud resources are hosted */ readonly vpc: string; } /** * Data source for Azure Autostopping proxy * * ## Example Usage */ export declare function getAzureProxyOutput(args: GetAzureProxyOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getAzureProxy. */ export interface GetAzureProxyOutputArgs { /** * Boolean value to indicate if proxy vm needs to have static IP */ allocateStaticIp?: pulumi.Input; /** * Harness NG API key */ apiKey: pulumi.Input; certificateId?: pulumi.Input; certificates?: pulumi.Input; /** * Id of the cloud connector */ cloudConnectorId: pulumi.Input; /** * Governs how the proxy entity will be deleted on Terraform destroy. When set to true, the associated VM will be deleted permanently from Azure 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, which leaves the proxy VM in Azure account itself. */ deleteCloudResourcesOnDestroy: pulumi.Input; /** * Name of SSH Key to be used for proxy VM */ keypair: pulumi.Input; /** * Type of instance to be used for proxy */ machineType: pulumi.Input; /** * Name of the proxy */ name: pulumi.Input; /** * Region in which cloud resources are hosted */ region: pulumi.Input; /** * Resource group in which cloud resources are hosted */ resourceGroup: pulumi.Input; /** * Security Group to define the security rules that determine the inbound and outbound traffic */ securityGroups?: pulumi.Input[] | undefined>; /** * Subnet in which cloud resources are hosted */ subnetId: pulumi.Input; /** * VPC in which cloud resources are hosted */ vpc: pulumi.Input; } //# sourceMappingURL=getAzureProxy.d.ts.map