@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 2.29 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Gets an existing target group within a profile.
*
* Uses Azure REST API version 2024-06-01-preview.
*/
export declare function getAFDTargetGroup(args: GetAFDTargetGroupArgs, opts?: pulumi.InvokeOptions): Promise<GetAFDTargetGroupResult>;
export interface GetAFDTargetGroupArgs {
/**
* Name of the Azure Front Door Standard or Azure Front Door Premium which is unique within the resource group.
*/
profileName: string;
/**
* Name of the Resource group within the Azure subscription.
*/
resourceGroupName: string;
/**
* Name of the Target Group under the profile.
*/
targetGroupName: string;
}
/**
* AFDTargetGroup comprises a list of Endpoints that is used for tunnelling protocols to allow certain traffic.
*/
export interface GetAFDTargetGroupResult {
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: string;
readonly deploymentStatus: string;
/**
* Resource ID.
*/
readonly id: string;
/**
* Resource name.
*/
readonly name: string;
/**
* Provisioning status
*/
readonly provisioningState: string;
/**
* Read only system data
*/
readonly systemData: outputs.cdn.SystemDataResponse;
/**
* TargetEndpoint list referenced by this target group.
*/
readonly targetEndpoints: outputs.cdn.TargetEndpointResponse[];
/**
* Resource type.
*/
readonly type: string;
}
/**
* Gets an existing target group within a profile.
*
* Uses Azure REST API version 2024-06-01-preview.
*/
export declare function getAFDTargetGroupOutput(args: GetAFDTargetGroupOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetAFDTargetGroupResult>;
export interface GetAFDTargetGroupOutputArgs {
/**
* Name of the Azure Front Door Standard or Azure Front Door Premium which is unique within the resource group.
*/
profileName: pulumi.Input<string>;
/**
* Name of the Resource group within the Azure subscription.
*/
resourceGroupName: pulumi.Input<string>;
/**
* Name of the Target Group under the profile.
*/
targetGroupName: pulumi.Input<string>;
}