1. Packages
  2. Azure Native
  3. API Docs
  4. apimanagement
  5. ApiGatewayHostnameBinding
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.13.0 published on Wednesday, Jan 28, 2026 by Pulumi
azure-native logo
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.13.0 published on Wednesday, Jan 28, 2026 by Pulumi

    A single API Management gateway hostname binding resource in List or Get response.

    Uses Azure REST API version 2025-03-01-preview.

    Example Usage

    ApiManagementCreateGatewayHostnameBinding

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var apiGatewayHostnameBinding = new AzureNative.ApiManagement.ApiGatewayHostnameBinding("apiGatewayHostnameBinding", new()
        {
            GatewayName = "apimGateway1",
            Hostname = "primary.cotoso.com",
            HostnameBindingName = "hb-1",
            KeyVault = new AzureNative.ApiManagement.Inputs.GatewayHostnameBindingKeyVaultArgs
            {
                IdentityClientId = "00000000-0000-0000-0000-000000000000",
                SecretId = "https://myvault.keyvault.azure.net/secrets/contosoprimarycert",
            },
            ResourceGroupName = "rg1",
        });
    
    });
    
    package main
    
    import (
    	apimanagement "github.com/pulumi/pulumi-azure-native-sdk/apimanagement/v3"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := apimanagement.NewApiGatewayHostnameBinding(ctx, "apiGatewayHostnameBinding", &apimanagement.ApiGatewayHostnameBindingArgs{
    			GatewayName:         pulumi.String("apimGateway1"),
    			Hostname:            pulumi.String("primary.cotoso.com"),
    			HostnameBindingName: pulumi.String("hb-1"),
    			KeyVault: &apimanagement.GatewayHostnameBindingKeyVaultArgs{
    				IdentityClientId: pulumi.String("00000000-0000-0000-0000-000000000000"),
    				SecretId:         pulumi.String("https://myvault.keyvault.azure.net/secrets/contosoprimarycert"),
    			},
    			ResourceGroupName: pulumi.String("rg1"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.apimanagement.ApiGatewayHostnameBinding;
    import com.pulumi.azurenative.apimanagement.ApiGatewayHostnameBindingArgs;
    import com.pulumi.azurenative.apimanagement.inputs.GatewayHostnameBindingKeyVaultArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var apiGatewayHostnameBinding = new ApiGatewayHostnameBinding("apiGatewayHostnameBinding", ApiGatewayHostnameBindingArgs.builder()
                .gatewayName("apimGateway1")
                .hostname("primary.cotoso.com")
                .hostnameBindingName("hb-1")
                .keyVault(GatewayHostnameBindingKeyVaultArgs.builder()
                    .identityClientId("00000000-0000-0000-0000-000000000000")
                    .secretId("https://myvault.keyvault.azure.net/secrets/contosoprimarycert")
                    .build())
                .resourceGroupName("rg1")
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const apiGatewayHostnameBinding = new azure_native.apimanagement.ApiGatewayHostnameBinding("apiGatewayHostnameBinding", {
        gatewayName: "apimGateway1",
        hostname: "primary.cotoso.com",
        hostnameBindingName: "hb-1",
        keyVault: {
            identityClientId: "00000000-0000-0000-0000-000000000000",
            secretId: "https://myvault.keyvault.azure.net/secrets/contosoprimarycert",
        },
        resourceGroupName: "rg1",
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    api_gateway_hostname_binding = azure_native.apimanagement.ApiGatewayHostnameBinding("apiGatewayHostnameBinding",
        gateway_name="apimGateway1",
        hostname="primary.cotoso.com",
        hostname_binding_name="hb-1",
        key_vault={
            "identity_client_id": "00000000-0000-0000-0000-000000000000",
            "secret_id": "https://myvault.keyvault.azure.net/secrets/contosoprimarycert",
        },
        resource_group_name="rg1")
    
    resources:
      apiGatewayHostnameBinding:
        type: azure-native:apimanagement:ApiGatewayHostnameBinding
        properties:
          gatewayName: apimGateway1
          hostname: primary.cotoso.com
          hostnameBindingName: hb-1
          keyVault:
            identityClientId: 00000000-0000-0000-0000-000000000000
            secretId: https://myvault.keyvault.azure.net/secrets/contosoprimarycert
          resourceGroupName: rg1
    

    Create ApiGatewayHostnameBinding Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new ApiGatewayHostnameBinding(name: string, args: ApiGatewayHostnameBindingArgs, opts?: CustomResourceOptions);
    @overload
    def ApiGatewayHostnameBinding(resource_name: str,
                                  args: ApiGatewayHostnameBindingArgs,
                                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def ApiGatewayHostnameBinding(resource_name: str,
                                  opts: Optional[ResourceOptions] = None,
                                  gateway_name: Optional[str] = None,
                                  hostname: Optional[str] = None,
                                  key_vault: Optional[GatewayHostnameBindingKeyVaultArgs] = None,
                                  resource_group_name: Optional[str] = None,
                                  hostname_binding_name: Optional[str] = None)
    func NewApiGatewayHostnameBinding(ctx *Context, name string, args ApiGatewayHostnameBindingArgs, opts ...ResourceOption) (*ApiGatewayHostnameBinding, error)
    public ApiGatewayHostnameBinding(string name, ApiGatewayHostnameBindingArgs args, CustomResourceOptions? opts = null)
    public ApiGatewayHostnameBinding(String name, ApiGatewayHostnameBindingArgs args)
    public ApiGatewayHostnameBinding(String name, ApiGatewayHostnameBindingArgs args, CustomResourceOptions options)
    
    type: azure-native:apimanagement:ApiGatewayHostnameBinding
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args ApiGatewayHostnameBindingArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args ApiGatewayHostnameBindingArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args ApiGatewayHostnameBindingArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ApiGatewayHostnameBindingArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ApiGatewayHostnameBindingArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var apiGatewayHostnameBindingResource = new AzureNative.ApiManagement.ApiGatewayHostnameBinding("apiGatewayHostnameBindingResource", new()
    {
        GatewayName = "string",
        Hostname = "string",
        KeyVault = new AzureNative.ApiManagement.Inputs.GatewayHostnameBindingKeyVaultArgs
        {
            SecretId = "string",
            IdentityClientId = "string",
        },
        ResourceGroupName = "string",
        HostnameBindingName = "string",
    });
    
    example, err := apimanagement.NewApiGatewayHostnameBinding(ctx, "apiGatewayHostnameBindingResource", &apimanagement.ApiGatewayHostnameBindingArgs{
    	GatewayName: pulumi.String("string"),
    	Hostname:    pulumi.String("string"),
    	KeyVault: &apimanagement.GatewayHostnameBindingKeyVaultArgs{
    		SecretId:         pulumi.String("string"),
    		IdentityClientId: pulumi.String("string"),
    	},
    	ResourceGroupName:   pulumi.String("string"),
    	HostnameBindingName: pulumi.String("string"),
    })
    
    var apiGatewayHostnameBindingResource = new ApiGatewayHostnameBinding("apiGatewayHostnameBindingResource", ApiGatewayHostnameBindingArgs.builder()
        .gatewayName("string")
        .hostname("string")
        .keyVault(GatewayHostnameBindingKeyVaultArgs.builder()
            .secretId("string")
            .identityClientId("string")
            .build())
        .resourceGroupName("string")
        .hostnameBindingName("string")
        .build());
    
    api_gateway_hostname_binding_resource = azure_native.apimanagement.ApiGatewayHostnameBinding("apiGatewayHostnameBindingResource",
        gateway_name="string",
        hostname="string",
        key_vault={
            "secret_id": "string",
            "identity_client_id": "string",
        },
        resource_group_name="string",
        hostname_binding_name="string")
    
    const apiGatewayHostnameBindingResource = new azure_native.apimanagement.ApiGatewayHostnameBinding("apiGatewayHostnameBindingResource", {
        gatewayName: "string",
        hostname: "string",
        keyVault: {
            secretId: "string",
            identityClientId: "string",
        },
        resourceGroupName: "string",
        hostnameBindingName: "string",
    });
    
    type: azure-native:apimanagement:ApiGatewayHostnameBinding
    properties:
        gatewayName: string
        hostname: string
        hostnameBindingName: string
        keyVault:
            identityClientId: string
            secretId: string
        resourceGroupName: string
    

    ApiGatewayHostnameBinding Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The ApiGatewayHostnameBinding resource accepts the following input properties:

    GatewayName string
    The name of the API Management gateway.
    Hostname string
    The default hostname of the data-plane gateway.
    KeyVault Pulumi.AzureNative.ApiManagement.Inputs.GatewayHostnameBindingKeyVault
    The link to the API Management service workspace.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    HostnameBindingName string
    Gateway hostname binding identifier. Must be unique in the scope of parent Gateway entity.
    GatewayName string
    The name of the API Management gateway.
    Hostname string
    The default hostname of the data-plane gateway.
    KeyVault GatewayHostnameBindingKeyVaultArgs
    The link to the API Management service workspace.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    HostnameBindingName string
    Gateway hostname binding identifier. Must be unique in the scope of parent Gateway entity.
    gatewayName String
    The name of the API Management gateway.
    hostname String
    The default hostname of the data-plane gateway.
    keyVault GatewayHostnameBindingKeyVault
    The link to the API Management service workspace.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    hostnameBindingName String
    Gateway hostname binding identifier. Must be unique in the scope of parent Gateway entity.
    gatewayName string
    The name of the API Management gateway.
    hostname string
    The default hostname of the data-plane gateway.
    keyVault GatewayHostnameBindingKeyVault
    The link to the API Management service workspace.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    hostnameBindingName string
    Gateway hostname binding identifier. Must be unique in the scope of parent Gateway entity.
    gateway_name str
    The name of the API Management gateway.
    hostname str
    The default hostname of the data-plane gateway.
    key_vault GatewayHostnameBindingKeyVaultArgs
    The link to the API Management service workspace.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    hostname_binding_name str
    Gateway hostname binding identifier. Must be unique in the scope of parent Gateway entity.
    gatewayName String
    The name of the API Management gateway.
    hostname String
    The default hostname of the data-plane gateway.
    keyVault Property Map
    The link to the API Management service workspace.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    hostnameBindingName String
    Gateway hostname binding identifier. Must be unique in the scope of parent Gateway entity.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ApiGatewayHostnameBinding resource produces the following output properties:

    AzureApiVersion string
    The Azure API version of the resource.
    Certificate Pulumi.AzureNative.ApiManagement.Outputs.GatewayHostnameBindingCertificateResponse
    The hostnames of the data-plane gateway to which requests can be sent.
    ETag string
    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.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    ProvisioningState string
    The current provisioning state of the API Management gateway hostname binding.
    SystemData Pulumi.AzureNative.ApiManagement.Outputs.SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    AzureApiVersion string
    The Azure API version of the resource.
    Certificate GatewayHostnameBindingCertificateResponse
    The hostnames of the data-plane gateway to which requests can be sent.
    ETag string
    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.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    ProvisioningState string
    The current provisioning state of the API Management gateway hostname binding.
    SystemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion String
    The Azure API version of the resource.
    certificate GatewayHostnameBindingCertificateResponse
    The hostnames of the data-plane gateway to which requests can be sent.
    eTag String
    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.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    provisioningState String
    The current provisioning state of the API Management gateway hostname binding.
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion string
    The Azure API version of the resource.
    certificate GatewayHostnameBindingCertificateResponse
    The hostnames of the data-plane gateway to which requests can be sent.
    eTag string
    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.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    provisioningState string
    The current provisioning state of the API Management gateway hostname binding.
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azure_api_version str
    The Azure API version of the resource.
    certificate GatewayHostnameBindingCertificateResponse
    The hostnames of the data-plane gateway to which requests can be sent.
    e_tag str
    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.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource
    provisioning_state str
    The current provisioning state of the API Management gateway hostname binding.
    system_data SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion String
    The Azure API version of the resource.
    certificate Property Map
    The hostnames of the data-plane gateway to which requests can be sent.
    eTag String
    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.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    provisioningState String
    The current provisioning state of the API Management gateway hostname binding.
    systemData Property Map
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    Supporting Types

    GatewayHostnameBindingCertificateResponse, GatewayHostnameBindingCertificateResponseArgs

    Expiry string
    The expiration date of the certificate.
    Subject string
    The subject of the certificate.
    Thumbprint string
    The thumbprint of the certificate.
    Expiry string
    The expiration date of the certificate.
    Subject string
    The subject of the certificate.
    Thumbprint string
    The thumbprint of the certificate.
    expiry String
    The expiration date of the certificate.
    subject String
    The subject of the certificate.
    thumbprint String
    The thumbprint of the certificate.
    expiry string
    The expiration date of the certificate.
    subject string
    The subject of the certificate.
    thumbprint string
    The thumbprint of the certificate.
    expiry str
    The expiration date of the certificate.
    subject str
    The subject of the certificate.
    thumbprint str
    The thumbprint of the certificate.
    expiry String
    The expiration date of the certificate.
    subject String
    The subject of the certificate.
    thumbprint String
    The thumbprint of the certificate.

    GatewayHostnameBindingKeyVault, GatewayHostnameBindingKeyVaultArgs

    SecretId string
    The current provisioning state of the API Management gateway hostname binding.
    IdentityClientId string
    The default hostname of the data-plane gateway.
    SecretId string
    The current provisioning state of the API Management gateway hostname binding.
    IdentityClientId string
    The default hostname of the data-plane gateway.
    secretId String
    The current provisioning state of the API Management gateway hostname binding.
    identityClientId String
    The default hostname of the data-plane gateway.
    secretId string
    The current provisioning state of the API Management gateway hostname binding.
    identityClientId string
    The default hostname of the data-plane gateway.
    secret_id str
    The current provisioning state of the API Management gateway hostname binding.
    identity_client_id str
    The default hostname of the data-plane gateway.
    secretId String
    The current provisioning state of the API Management gateway hostname binding.
    identityClientId String
    The default hostname of the data-plane gateway.

    GatewayHostnameBindingKeyVaultLastStatusResponse, GatewayHostnameBindingKeyVaultLastStatusResponseArgs

    Code string
    The last status of the Key Vault certificate fetch process.
    LastSuccessTimeStampUtc string
    The last time the Key Vault certificate fetch process was successful. Only when the fetch process has succeeded at least once and current state is failed. The date conforms to the following format: yyyy-MM-ddTHH:mm:ssZ as specified by the ISO 8601 standard.
    TimeStampUtc string
    The last time the Key Vault certificate fetch process was attempted. The date conforms to the following format: yyyy-MM-ddTHH:mm:ssZ as specified by the ISO 8601 standard.
    Code string
    The last status of the Key Vault certificate fetch process.
    LastSuccessTimeStampUtc string
    The last time the Key Vault certificate fetch process was successful. Only when the fetch process has succeeded at least once and current state is failed. The date conforms to the following format: yyyy-MM-ddTHH:mm:ssZ as specified by the ISO 8601 standard.
    TimeStampUtc string
    The last time the Key Vault certificate fetch process was attempted. The date conforms to the following format: yyyy-MM-ddTHH:mm:ssZ as specified by the ISO 8601 standard.
    code String
    The last status of the Key Vault certificate fetch process.
    lastSuccessTimeStampUtc String
    The last time the Key Vault certificate fetch process was successful. Only when the fetch process has succeeded at least once and current state is failed. The date conforms to the following format: yyyy-MM-ddTHH:mm:ssZ as specified by the ISO 8601 standard.
    timeStampUtc String
    The last time the Key Vault certificate fetch process was attempted. The date conforms to the following format: yyyy-MM-ddTHH:mm:ssZ as specified by the ISO 8601 standard.
    code string
    The last status of the Key Vault certificate fetch process.
    lastSuccessTimeStampUtc string
    The last time the Key Vault certificate fetch process was successful. Only when the fetch process has succeeded at least once and current state is failed. The date conforms to the following format: yyyy-MM-ddTHH:mm:ssZ as specified by the ISO 8601 standard.
    timeStampUtc string
    The last time the Key Vault certificate fetch process was attempted. The date conforms to the following format: yyyy-MM-ddTHH:mm:ssZ as specified by the ISO 8601 standard.
    code str
    The last status of the Key Vault certificate fetch process.
    last_success_time_stamp_utc str
    The last time the Key Vault certificate fetch process was successful. Only when the fetch process has succeeded at least once and current state is failed. The date conforms to the following format: yyyy-MM-ddTHH:mm:ssZ as specified by the ISO 8601 standard.
    time_stamp_utc str
    The last time the Key Vault certificate fetch process was attempted. The date conforms to the following format: yyyy-MM-ddTHH:mm:ssZ as specified by the ISO 8601 standard.
    code String
    The last status of the Key Vault certificate fetch process.
    lastSuccessTimeStampUtc String
    The last time the Key Vault certificate fetch process was successful. Only when the fetch process has succeeded at least once and current state is failed. The date conforms to the following format: yyyy-MM-ddTHH:mm:ssZ as specified by the ISO 8601 standard.
    timeStampUtc String
    The last time the Key Vault certificate fetch process was attempted. The date conforms to the following format: yyyy-MM-ddTHH:mm:ssZ as specified by the ISO 8601 standard.

    GatewayHostnameBindingKeyVaultResponse, GatewayHostnameBindingKeyVaultResponseArgs

    SecretId string
    The current provisioning state of the API Management gateway hostname binding.
    IdentityClientId string
    The default hostname of the data-plane gateway.
    LastStatus Pulumi.AzureNative.ApiManagement.Inputs.GatewayHostnameBindingKeyVaultLastStatusResponse
    The last status of the Key Vault certificate fetch process.
    SecretId string
    The current provisioning state of the API Management gateway hostname binding.
    IdentityClientId string
    The default hostname of the data-plane gateway.
    LastStatus GatewayHostnameBindingKeyVaultLastStatusResponse
    The last status of the Key Vault certificate fetch process.
    secretId String
    The current provisioning state of the API Management gateway hostname binding.
    identityClientId String
    The default hostname of the data-plane gateway.
    lastStatus GatewayHostnameBindingKeyVaultLastStatusResponse
    The last status of the Key Vault certificate fetch process.
    secretId string
    The current provisioning state of the API Management gateway hostname binding.
    identityClientId string
    The default hostname of the data-plane gateway.
    lastStatus GatewayHostnameBindingKeyVaultLastStatusResponse
    The last status of the Key Vault certificate fetch process.
    secret_id str
    The current provisioning state of the API Management gateway hostname binding.
    identity_client_id str
    The default hostname of the data-plane gateway.
    last_status GatewayHostnameBindingKeyVaultLastStatusResponse
    The last status of the Key Vault certificate fetch process.
    secretId String
    The current provisioning state of the API Management gateway hostname binding.
    identityClientId String
    The default hostname of the data-plane gateway.
    lastStatus Property Map
    The last status of the Key Vault certificate fetch process.

    SystemDataResponse, SystemDataResponseArgs

    Metadata pertaining to creation and last modification of the resource.
    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.
    createdAt string
    The timestamp of resource creation (UTC).
    createdBy string
    The identity that created the resource.
    createdByType string
    The type of identity that created the resource.
    lastModifiedAt string
    The timestamp of resource last modification (UTC)
    lastModifiedBy string
    The identity that last modified the resource.
    lastModifiedByType string
    The type of identity that last modified the resource.
    created_at str
    The timestamp of resource creation (UTC).
    created_by str
    The identity that created the resource.
    created_by_type str
    The type of identity that created the resource.
    last_modified_at str
    The timestamp of resource last modification (UTC)
    last_modified_by str
    The identity that last modified the resource.
    last_modified_by_type str
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.

    Import

    An existing resource can be imported using its type token, name, and identifier, e.g.

    $ pulumi import azure-native:apimanagement:ApiGatewayHostnameBinding hb-1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/gateways/{gatewayName}/hostnameBindings/{hostnameBindingName} 
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
    Azure Native v3.13.0 published on Wednesday, Jan 28, 2026 by Pulumi
      Meet Neo: Your AI Platform Teammate