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:
- Gateway
Name string - The name of the API Management gateway.
- Hostname string
- The default hostname of the data-plane gateway.
- Key
Vault Pulumi.Azure Native. Api Management. Inputs. Gateway Hostname Binding Key Vault - The link to the API Management service workspace.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Hostname
Binding stringName - Gateway hostname binding identifier. Must be unique in the scope of parent Gateway entity.
- Gateway
Name string - The name of the API Management gateway.
- Hostname string
- The default hostname of the data-plane gateway.
- Key
Vault GatewayHostname Binding Key Vault Args - The link to the API Management service workspace.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Hostname
Binding stringName - Gateway hostname binding identifier. Must be unique in the scope of parent Gateway entity.
- gateway
Name String - The name of the API Management gateway.
- hostname String
- The default hostname of the data-plane gateway.
- key
Vault GatewayHostname Binding Key Vault - The link to the API Management service workspace.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- hostname
Binding StringName - Gateway hostname binding identifier. Must be unique in the scope of parent Gateway entity.
- gateway
Name string - The name of the API Management gateway.
- hostname string
- The default hostname of the data-plane gateway.
- key
Vault GatewayHostname Binding Key Vault - The link to the API Management service workspace.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- hostname
Binding stringName - 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 GatewayHostname Binding Key Vault Args - The link to the API Management service workspace.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- hostname_
binding_ strname - Gateway hostname binding identifier. Must be unique in the scope of parent Gateway entity.
- gateway
Name String - The name of the API Management gateway.
- hostname String
- The default hostname of the data-plane gateway.
- key
Vault Property Map - The link to the API Management service workspace.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- hostname
Binding StringName - 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:
- Azure
Api stringVersion - The Azure API version of the resource.
- Certificate
Pulumi.
Azure Native. Api Management. Outputs. Gateway Hostname Binding Certificate Response - 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
- Provisioning
State string - The current provisioning state of the API Management gateway hostname binding.
- System
Data Pulumi.Azure Native. Api Management. Outputs. System Data Response - 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 stringVersion - The Azure API version of the resource.
- Certificate
Gateway
Hostname Binding Certificate Response - 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
- Provisioning
State string - The current provisioning state of the API Management gateway hostname binding.
- System
Data SystemData Response - 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 StringVersion - The Azure API version of the resource.
- certificate
Gateway
Hostname Binding Certificate Response - The hostnames of the data-plane gateway to which requests can be sent.
- e
Tag 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
- provisioning
State String - The current provisioning state of the API Management gateway hostname binding.
- system
Data SystemData Response - 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 stringVersion - The Azure API version of the resource.
- certificate
Gateway
Hostname Binding Certificate Response - The hostnames of the data-plane gateway to which requests can be sent.
- e
Tag 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
- provisioning
State string - The current provisioning state of the API Management gateway hostname binding.
- system
Data SystemData Response - 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_ strversion - The Azure API version of the resource.
- certificate
Gateway
Hostname Binding Certificate Response - 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 SystemData Response - 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"
- azure
Api StringVersion - The Azure API version of the resource.
- certificate Property Map
- The hostnames of the data-plane gateway to which requests can be sent.
- e
Tag 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
- provisioning
State String - The current provisioning state of the API Management gateway hostname binding.
- system
Data 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
- Secret
Id string - The current provisioning state of the API Management gateway hostname binding.
- Identity
Client stringId - The default hostname of the data-plane gateway.
- Secret
Id string - The current provisioning state of the API Management gateway hostname binding.
- Identity
Client stringId - The default hostname of the data-plane gateway.
- secret
Id String - The current provisioning state of the API Management gateway hostname binding.
- identity
Client StringId - The default hostname of the data-plane gateway.
- secret
Id string - The current provisioning state of the API Management gateway hostname binding.
- identity
Client stringId - The default hostname of the data-plane gateway.
- secret_
id str - The current provisioning state of the API Management gateway hostname binding.
- identity_
client_ strid - The default hostname of the data-plane gateway.
- secret
Id String - The current provisioning state of the API Management gateway hostname binding.
- identity
Client StringId - The default hostname of the data-plane gateway.
GatewayHostnameBindingKeyVaultLastStatusResponse, GatewayHostnameBindingKeyVaultLastStatusResponseArgs
- Code string
- The last status of the Key Vault certificate fetch process.
- Last
Success stringTime Stamp Utc - 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:ssZas specified by the ISO 8601 standard. - Time
Stamp stringUtc - The last time the Key Vault certificate fetch process was attempted. The date conforms to the following format:
yyyy-MM-ddTHH:mm:ssZas specified by the ISO 8601 standard.
- Code string
- The last status of the Key Vault certificate fetch process.
- Last
Success stringTime Stamp Utc - 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:ssZas specified by the ISO 8601 standard. - Time
Stamp stringUtc - The last time the Key Vault certificate fetch process was attempted. The date conforms to the following format:
yyyy-MM-ddTHH:mm:ssZas specified by the ISO 8601 standard.
- code String
- The last status of the Key Vault certificate fetch process.
- last
Success StringTime Stamp Utc - 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:ssZas specified by the ISO 8601 standard. - time
Stamp StringUtc - The last time the Key Vault certificate fetch process was attempted. The date conforms to the following format:
yyyy-MM-ddTHH:mm:ssZas specified by the ISO 8601 standard.
- code string
- The last status of the Key Vault certificate fetch process.
- last
Success stringTime Stamp Utc - 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:ssZas specified by the ISO 8601 standard. - time
Stamp stringUtc - The last time the Key Vault certificate fetch process was attempted. The date conforms to the following format:
yyyy-MM-ddTHH:mm:ssZas specified by the ISO 8601 standard.
- code str
- The last status of the Key Vault certificate fetch process.
- last_
success_ strtime_ stamp_ utc - 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:ssZas specified by the ISO 8601 standard. - time_
stamp_ strutc - The last time the Key Vault certificate fetch process was attempted. The date conforms to the following format:
yyyy-MM-ddTHH:mm:ssZas specified by the ISO 8601 standard.
- code String
- The last status of the Key Vault certificate fetch process.
- last
Success StringTime Stamp Utc - 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:ssZas specified by the ISO 8601 standard. - time
Stamp StringUtc - The last time the Key Vault certificate fetch process was attempted. The date conforms to the following format:
yyyy-MM-ddTHH:mm:ssZas specified by the ISO 8601 standard.
GatewayHostnameBindingKeyVaultResponse, GatewayHostnameBindingKeyVaultResponseArgs
- Secret
Id string - The current provisioning state of the API Management gateway hostname binding.
- Identity
Client stringId - The default hostname of the data-plane gateway.
- Last
Status Pulumi.Azure Native. Api Management. Inputs. Gateway Hostname Binding Key Vault Last Status Response - The last status of the Key Vault certificate fetch process.
- Secret
Id string - The current provisioning state of the API Management gateway hostname binding.
- Identity
Client stringId - The default hostname of the data-plane gateway.
- Last
Status GatewayHostname Binding Key Vault Last Status Response - The last status of the Key Vault certificate fetch process.
- secret
Id String - The current provisioning state of the API Management gateway hostname binding.
- identity
Client StringId - The default hostname of the data-plane gateway.
- last
Status GatewayHostname Binding Key Vault Last Status Response - The last status of the Key Vault certificate fetch process.
- secret
Id string - The current provisioning state of the API Management gateway hostname binding.
- identity
Client stringId - The default hostname of the data-plane gateway.
- last
Status GatewayHostname Binding Key Vault Last Status Response - 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_ strid - The default hostname of the data-plane gateway.
- last_
status GatewayHostname Binding Key Vault Last Status Response - The last status of the Key Vault certificate fetch process.
- secret
Id String - The current provisioning state of the API Management gateway hostname binding.
- identity
Client StringId - The default hostname of the data-plane gateway.
- last
Status Property Map - The last status of the Key Vault certificate fetch process.
SystemDataResponse, SystemDataResponseArgs
Metadata pertaining to creation and last modification of the resource.- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - 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_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - 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
