import * as pulumi from "@pulumi/pulumi"; /** * Gets an API Management gateway config connection resource description. * * Uses Azure REST API version 2024-06-01-preview. * * Other available API versions: 2023-09-01-preview, 2024-05-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native apimanagement [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function getApiGatewayConfigConnection(args: GetApiGatewayConfigConnectionArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetApiGatewayConfigConnectionArgs { /** * The name of the API Management gateway config connection. */ configConnectionName: string; /** * The name of the API Management gateway. */ gatewayName: string; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: string; } /** * A single API Management gateway resource in List or Get response. */ export interface GetApiGatewayConfigConnectionResult { /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * The default hostname of the data-plane gateway. */ readonly defaultHostname: string; /** * ETag of the resource. */ readonly etag: string; /** * The hostnames of the data-plane gateway to which requests can be sent. */ readonly hostnames?: string[]; /** * Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} */ readonly id: string; /** * The name of the resource */ readonly name: string; /** * The current provisioning state of the API Management gateway config connection */ readonly provisioningState: string; /** * The link to the API Management service workspace. */ readonly sourceId?: string; /** * The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" */ readonly type: string; } /** * Gets an API Management gateway config connection resource description. * * Uses Azure REST API version 2024-06-01-preview. * * Other available API versions: 2023-09-01-preview, 2024-05-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native apimanagement [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function getApiGatewayConfigConnectionOutput(args: GetApiGatewayConfigConnectionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetApiGatewayConfigConnectionOutputArgs { /** * The name of the API Management gateway config connection. */ configConnectionName: pulumi.Input; /** * The name of the API Management gateway. */ gatewayName: pulumi.Input; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: pulumi.Input; }