@kengachu-pulumi/azure-native-apimanagement
Version:
Pulumi Azure Native package for apimanagement
88 lines (87 loc) • 3.42 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as types from "./types";
/**
* Gets an API Management gateway hostname binding resource description.
*
* Uses Azure REST API version 2025-03-01-preview.
*/
export declare function getApiGatewayHostnameBinding(args: GetApiGatewayHostnameBindingArgs, opts?: pulumi.InvokeOptions): Promise<GetApiGatewayHostnameBindingResult>;
export interface GetApiGatewayHostnameBindingArgs {
/**
* The name of the API Management gateway.
*/
gatewayName: string;
/**
* Gateway hostname binding identifier. Must be unique in the scope of parent Gateway entity.
*/
hostnameBindingName: string;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: string;
}
/**
* A single API Management gateway hostname binding resource in List or Get response.
*/
export interface GetApiGatewayHostnameBindingResult {
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: string;
/**
* The hostnames of the data-plane gateway to which requests can be sent.
*/
readonly certificate: types.outputs.GatewayHostnameBindingCertificateResponse;
/**
* If eTag is provided in the response body, it may also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
*/
readonly eTag: string;
/**
* The default hostname of the data-plane gateway.
*/
readonly hostname: string;
/**
* Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
*/
readonly id: string;
/**
* The link to the API Management service workspace.
*/
readonly keyVault: types.outputs.GatewayHostnameBindingKeyVaultResponse;
/**
* The name of the resource
*/
readonly name: string;
/**
* The current provisioning state of the API Management gateway hostname binding.
*/
readonly provisioningState: string;
/**
* Azure Resource Manager metadata containing createdBy and modifiedBy information.
*/
readonly systemData: types.outputs.SystemDataResponse;
/**
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
*/
readonly type: string;
}
/**
* Gets an API Management gateway hostname binding resource description.
*
* Uses Azure REST API version 2025-03-01-preview.
*/
export declare function getApiGatewayHostnameBindingOutput(args: GetApiGatewayHostnameBindingOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetApiGatewayHostnameBindingResult>;
export interface GetApiGatewayHostnameBindingOutputArgs {
/**
* The name of the API Management gateway.
*/
gatewayName: pulumi.Input<string>;
/**
* Gateway hostname binding identifier. Must be unique in the scope of parent Gateway entity.
*/
hostnameBindingName: pulumi.Input<string>;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: pulumi.Input<string>;
}