@kengachu-pulumi/azure-native-apimanagement
Version:
Pulumi Azure Native package for apimanagement
95 lines (94 loc) • 4.06 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as types from "./types";
/**
* A single API Management gateway hostname binding resource in List or Get response.
*
* Uses Azure REST API version 2025-03-01-preview.
*/
export declare class ApiGatewayHostnameBinding extends pulumi.CustomResource {
/**
* Get an existing ApiGatewayHostnameBinding 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<pulumi.ID>, opts?: pulumi.CustomResourceOptions): ApiGatewayHostnameBinding;
/** @internal */
static readonly __pulumiType = "azure-native:apimanagement:ApiGatewayHostnameBinding";
/**
* Returns true if the given object is an instance of ApiGatewayHostnameBinding. 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 ApiGatewayHostnameBinding;
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: pulumi.Output<string>;
/**
* The hostnames of the data-plane gateway to which requests can be sent.
*/
readonly certificate: pulumi.Output<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: pulumi.Output<string>;
/**
* The default hostname of the data-plane gateway.
*/
readonly hostname: pulumi.Output<string>;
/**
* The link to the API Management service workspace.
*/
readonly keyVault: pulumi.Output<types.outputs.GatewayHostnameBindingKeyVaultResponse>;
/**
* The name of the resource
*/
readonly name: pulumi.Output<string>;
/**
* The current provisioning state of the API Management gateway hostname binding.
*/
readonly provisioningState: pulumi.Output<string>;
/**
* Azure Resource Manager metadata containing createdBy and modifiedBy information.
*/
readonly systemData: pulumi.Output<types.outputs.SystemDataResponse>;
/**
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
*/
readonly type: pulumi.Output<string>;
/**
* Create a ApiGatewayHostnameBinding 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: ApiGatewayHostnameBindingArgs, opts?: pulumi.CustomResourceOptions);
}
/**
* The set of arguments for constructing a ApiGatewayHostnameBinding resource.
*/
export interface ApiGatewayHostnameBindingArgs {
/**
* The name of the API Management gateway.
*/
gatewayName: pulumi.Input<string>;
/**
* The default hostname of the data-plane gateway.
*/
hostname: pulumi.Input<string>;
/**
* Gateway hostname binding identifier. Must be unique in the scope of parent Gateway entity.
*/
hostnameBindingName?: pulumi.Input<string>;
/**
* The link to the API Management service workspace.
*/
keyVault: pulumi.Input<types.inputs.GatewayHostnameBindingKeyVaultArgs>;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: pulumi.Input<string>;
}