import * as pulumi from "@pulumi/pulumi"; import * as types from "./types"; /** * A single API Management gateway resource in List or Get response. * * Uses Azure REST API version 2024-06-01-preview. In version 2.x of the Azure Native provider, it used API version 2023-09-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 class ApiGateway extends pulumi.CustomResource { /** * Get an existing ApiGateway resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): ApiGateway; /** @internal */ static readonly __pulumiType = "azure-native:apimanagement:ApiGateway"; /** * Returns true if the given object is an instance of ApiGateway. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is ApiGateway; /** * The Azure API version of the resource. */ readonly azureApiVersion: pulumi.Output; /** * Information regarding how the gateway should integrate with backend systems. */ readonly backend: pulumi.Output; /** * Information regarding the Configuration API of the API Management gateway. This is only applicable for API gateway with Standard SKU. */ readonly configurationApi: pulumi.Output; /** * Creation UTC date of the API Management gateway.The date conforms to the following format: `yyyy-MM-ddTHH:mm:ssZ` as specified by the ISO 8601 standard. */ readonly createdAtUtc: pulumi.Output; /** * ETag of the resource. */ readonly etag: pulumi.Output; /** * Information regarding how the gateway should be exposed. */ readonly frontend: pulumi.Output; /** * Resource location. */ readonly location: pulumi.Output; /** * Resource name. */ readonly name: pulumi.Output; /** * The current provisioning state of the API Management gateway which can be one of the following: Created/Activating/Succeeded/Updating/Failed/Stopped/Terminating/TerminationFailed/Deleted. */ readonly provisioningState: pulumi.Output; /** * SKU properties of the API Management gateway. */ readonly sku: pulumi.Output; /** * Metadata pertaining to creation and last modification of the resource. */ readonly systemData: pulumi.Output; /** * Resource tags. */ readonly tags: pulumi.Output<{ [key: string]: string; } | undefined>; /** * The provisioning state of the API Management gateway, which is targeted by the long running operation started on the gateway. */ readonly targetProvisioningState: pulumi.Output; /** * Resource type for API Management resource is set to Microsoft.ApiManagement. */ readonly type: pulumi.Output; /** * The type of VPN in which API Management gateway needs to be configured in. */ readonly virtualNetworkType: pulumi.Output; /** * Create a ApiGateway resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: ApiGatewayArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a ApiGateway resource. */ export interface ApiGatewayArgs { /** * Information regarding how the gateway should integrate with backend systems. */ backend?: pulumi.Input; /** * The name of the API Management gateway. */ gatewayName?: pulumi.Input; /** * Resource location. */ location?: pulumi.Input; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: pulumi.Input; /** * SKU properties of the API Management gateway. */ sku: pulumi.Input; /** * Resource tags. */ tags?: pulumi.Input<{ [key: string]: pulumi.Input; }>; /** * The type of VPN in which API Management gateway needs to be configured in. */ virtualNetworkType?: pulumi.Input; }