published on Saturday, Jul 18, 2026 by Pulumi
published on Saturday, Jul 18, 2026 by Pulumi
AppLink Member resource
Uses Azure REST API version 2025-08-01-preview.
Example Usage
AppLinkMembers_CreateOrUpdate
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var appLinkMember = new AzureNative.AppLink.AppLinkMember("appLinkMember", new()
{
AppLinkMemberName = "member-01",
AppLinkName = "applink-test-01",
Location = "westus2",
Properties = new AzureNative.AppLink.Inputs.AppLinkMemberPropertiesArgs
{
ClusterType = AzureNative.AppLink.ClusterType.AKS,
ConnectivityProfile = new AzureNative.AppLink.Inputs.ConnectivityProfileArgs
{
EastWestGateway = new AzureNative.AppLink.Inputs.EastWestGatewayProfileArgs
{
Visibility = AzureNative.AppLink.EastWestGatewayVisibility.Internal,
},
PrivateConnect = new AzureNative.AppLink.Inputs.PrivateConnectProfileArgs
{
SubnetResourceId = "/subscriptions/bc7e0da9-5e4c-4a91-9252-9658837006cf/resourceGroups/applink-vnet-rg/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1",
},
},
Metadata = new AzureNative.AppLink.Inputs.MetadataArgs
{
ResourceId = "/subscriptions/bc7e0da9-5e4c-4a91-9252-9658837006cf/resourcegroups/applink-rg/providers/Microsoft.ContainerService/managedClusters/applink-member1",
},
UpgradeProfile = new AzureNative.AppLink.Inputs.UpgradeProfileArgs
{
FullyManagedUpgradeProfile = new AzureNative.AppLink.Inputs.FullyManagedUpgradeProfileArgs
{
ReleaseChannel = AzureNative.AppLink.UpgradeReleaseChannel.Stable,
},
Mode = AzureNative.AppLink.UpgradeMode.FullyManaged,
},
},
ResourceGroupName = "test_rg",
Tags =
{
{ "key2913", "test_tag" },
},
});
});
package main
import (
applink "github.com/pulumi/pulumi-azure-native-sdk/applink/v3"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := applink.NewAppLinkMember(ctx, "appLinkMember", &applink.AppLinkMemberArgs{
AppLinkMemberName: pulumi.String("member-01"),
AppLinkName: pulumi.String("applink-test-01"),
Location: pulumi.String("westus2"),
Properties: &applink.AppLinkMemberPropertiesArgs{
ClusterType: pulumi.String(applink.ClusterTypeAKS),
ConnectivityProfile: &applink.ConnectivityProfileArgs{
EastWestGateway: &applink.EastWestGatewayProfileArgs{
Visibility: pulumi.String(applink.EastWestGatewayVisibilityInternal),
},
PrivateConnect: &applink.PrivateConnectProfileArgs{
SubnetResourceId: pulumi.String("/subscriptions/bc7e0da9-5e4c-4a91-9252-9658837006cf/resourceGroups/applink-vnet-rg/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"),
},
},
Metadata: &applink.MetadataArgs{
ResourceId: pulumi.String("/subscriptions/bc7e0da9-5e4c-4a91-9252-9658837006cf/resourcegroups/applink-rg/providers/Microsoft.ContainerService/managedClusters/applink-member1"),
},
UpgradeProfile: &applink.UpgradeProfileArgs{
FullyManagedUpgradeProfile: &applink.FullyManagedUpgradeProfileArgs{
ReleaseChannel: pulumi.String(applink.UpgradeReleaseChannelStable),
},
Mode: pulumi.String(applink.UpgradeModeFullyManaged),
},
},
ResourceGroupName: pulumi.String("test_rg"),
Tags: pulumi.StringMap{
"key2913": pulumi.String("test_tag"),
},
})
if err != nil {
return err
}
return nil
})
}
pulumi {
required_providers {
azure-native = {
source = "pulumi/azure-native"
}
}
}
resource "azure-native_applink_applinkmember" "appLinkMember" {
app_link_member_name = "member-01"
app_link_name = "applink-test-01"
location = "westus2"
properties = {
cluster_type = "AKS"
connectivity_profile = {
east_west_gateway = {
visibility = "Internal"
}
private_connect = {
subnet_resource_id = "/subscriptions/bc7e0da9-5e4c-4a91-9252-9658837006cf/resourceGroups/applink-vnet-rg/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"
}
}
metadata = {
resource_id = "/subscriptions/bc7e0da9-5e4c-4a91-9252-9658837006cf/resourcegroups/applink-rg/providers/Microsoft.ContainerService/managedClusters/applink-member1"
}
upgrade_profile = {
fully_managed_upgrade_profile = {
release_channel = "Stable"
}
mode = "FullyManaged"
}
}
resource_group_name = "test_rg"
tags = {
"key2913" = "test_tag"
}
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.applink.AppLinkMember;
import com.pulumi.azurenative.applink.AppLinkMemberArgs;
import com.pulumi.azurenative.applink.inputs.AppLinkMemberPropertiesArgs;
import com.pulumi.azurenative.applink.inputs.ConnectivityProfileArgs;
import com.pulumi.azurenative.applink.inputs.EastWestGatewayProfileArgs;
import com.pulumi.azurenative.applink.inputs.PrivateConnectProfileArgs;
import com.pulumi.azurenative.applink.inputs.MetadataArgs;
import com.pulumi.azurenative.applink.inputs.UpgradeProfileArgs;
import com.pulumi.azurenative.applink.inputs.FullyManagedUpgradeProfileArgs;
import java.util.ArrayList;
import java.util.Arrays;
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 appLinkMember = new AppLinkMember("appLinkMember", AppLinkMemberArgs.builder()
.appLinkMemberName("member-01")
.appLinkName("applink-test-01")
.location("westus2")
.properties(AppLinkMemberPropertiesArgs.builder()
.clusterType("AKS")
.connectivityProfile(ConnectivityProfileArgs.builder()
.eastWestGateway(EastWestGatewayProfileArgs.builder()
.visibility("Internal")
.build())
.privateConnect(PrivateConnectProfileArgs.builder()
.subnetResourceId("/subscriptions/bc7e0da9-5e4c-4a91-9252-9658837006cf/resourceGroups/applink-vnet-rg/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1")
.build())
.build())
.metadata(MetadataArgs.builder()
.resourceId("/subscriptions/bc7e0da9-5e4c-4a91-9252-9658837006cf/resourcegroups/applink-rg/providers/Microsoft.ContainerService/managedClusters/applink-member1")
.build())
.upgradeProfile(UpgradeProfileArgs.builder()
.fullyManagedUpgradeProfile(FullyManagedUpgradeProfileArgs.builder()
.releaseChannel("Stable")
.build())
.mode("FullyManaged")
.build())
.build())
.resourceGroupName("test_rg")
.tags(Map.of("key2913", "test_tag"))
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const appLinkMember = new azure_native.applink.AppLinkMember("appLinkMember", {
appLinkMemberName: "member-01",
appLinkName: "applink-test-01",
location: "westus2",
properties: {
clusterType: azure_native.applink.ClusterType.AKS,
connectivityProfile: {
eastWestGateway: {
visibility: azure_native.applink.EastWestGatewayVisibility.Internal,
},
privateConnect: {
subnetResourceId: "/subscriptions/bc7e0da9-5e4c-4a91-9252-9658837006cf/resourceGroups/applink-vnet-rg/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1",
},
},
metadata: {
resourceId: "/subscriptions/bc7e0da9-5e4c-4a91-9252-9658837006cf/resourcegroups/applink-rg/providers/Microsoft.ContainerService/managedClusters/applink-member1",
},
upgradeProfile: {
fullyManagedUpgradeProfile: {
releaseChannel: azure_native.applink.UpgradeReleaseChannel.Stable,
},
mode: azure_native.applink.UpgradeMode.FullyManaged,
},
},
resourceGroupName: "test_rg",
tags: {
key2913: "test_tag",
},
});
import pulumi
import pulumi_azure_native as azure_native
app_link_member = azure_native.applink.AppLinkMember("appLinkMember",
app_link_member_name="member-01",
app_link_name="applink-test-01",
location="westus2",
properties={
"cluster_type": azure_native.applink.ClusterType.AKS,
"connectivity_profile": {
"east_west_gateway": {
"visibility": azure_native.applink.EastWestGatewayVisibility.INTERNAL,
},
"private_connect": {
"subnet_resource_id": "/subscriptions/bc7e0da9-5e4c-4a91-9252-9658837006cf/resourceGroups/applink-vnet-rg/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1",
},
},
"metadata": {
"resource_id": "/subscriptions/bc7e0da9-5e4c-4a91-9252-9658837006cf/resourcegroups/applink-rg/providers/Microsoft.ContainerService/managedClusters/applink-member1",
},
"upgrade_profile": {
"fully_managed_upgrade_profile": {
"release_channel": azure_native.applink.UpgradeReleaseChannel.STABLE,
},
"mode": azure_native.applink.UpgradeMode.FULLY_MANAGED,
},
},
resource_group_name="test_rg",
tags={
"key2913": "test_tag",
})
resources:
appLinkMember:
type: azure-native:applink:AppLinkMember
properties:
appLinkMemberName: member-01
appLinkName: applink-test-01
location: westus2
properties:
clusterType: AKS
connectivityProfile:
eastWestGateway:
visibility: Internal
privateConnect:
subnetResourceId: /subscriptions/bc7e0da9-5e4c-4a91-9252-9658837006cf/resourceGroups/applink-vnet-rg/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1
metadata:
resourceId: /subscriptions/bc7e0da9-5e4c-4a91-9252-9658837006cf/resourcegroups/applink-rg/providers/Microsoft.ContainerService/managedClusters/applink-member1
upgradeProfile:
fullyManagedUpgradeProfile:
releaseChannel: Stable
mode: FullyManaged
resourceGroupName: test_rg
tags:
key2913: test_tag
Create AppLinkMember Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AppLinkMember(name: string, args: AppLinkMemberArgs, opts?: CustomResourceOptions);@overload
def AppLinkMember(resource_name: str,
args: AppLinkMemberArgs,
opts: Optional[ResourceOptions] = None)
@overload
def AppLinkMember(resource_name: str,
opts: Optional[ResourceOptions] = None,
app_link_name: Optional[str] = None,
resource_group_name: Optional[str] = None,
app_link_member_name: Optional[str] = None,
location: Optional[str] = None,
properties: Optional[AppLinkMemberPropertiesArgs] = None,
tags: Optional[Mapping[str, str]] = None)func NewAppLinkMember(ctx *Context, name string, args AppLinkMemberArgs, opts ...ResourceOption) (*AppLinkMember, error)public AppLinkMember(string name, AppLinkMemberArgs args, CustomResourceOptions? opts = null)
public AppLinkMember(String name, AppLinkMemberArgs args)
public AppLinkMember(String name, AppLinkMemberArgs args, CustomResourceOptions options)
type: azure-native:applink:AppLinkMember
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "azure-native_applink_app_link_member" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args AppLinkMemberArgs
- 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 AppLinkMemberArgs
- 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 AppLinkMemberArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AppLinkMemberArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AppLinkMemberArgs
- 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 appLinkMemberResource = new AzureNative.AppLink.AppLinkMember("appLinkMemberResource", new()
{
AppLinkName = "string",
ResourceGroupName = "string",
AppLinkMemberName = "string",
Location = "string",
Properties = new AzureNative.AppLink.Inputs.AppLinkMemberPropertiesArgs
{
Metadata = new AzureNative.AppLink.Inputs.MetadataArgs
{
ResourceId = "string",
},
ClusterType = "string",
ConnectivityProfile = new AzureNative.AppLink.Inputs.ConnectivityProfileArgs
{
EastWestGateway = new AzureNative.AppLink.Inputs.EastWestGatewayProfileArgs
{
Visibility = "string",
},
PrivateConnect = new AzureNative.AppLink.Inputs.PrivateConnectProfileArgs
{
SubnetResourceId = "string",
},
},
UpgradeProfile = new AzureNative.AppLink.Inputs.UpgradeProfileArgs
{
Mode = "string",
FullyManagedUpgradeProfile = new AzureNative.AppLink.Inputs.FullyManagedUpgradeProfileArgs
{
ReleaseChannel = "string",
},
SelfManagedUpgradeProfile = new AzureNative.AppLink.Inputs.SelfManagedUpgradeProfileArgs
{
Version = "string",
},
},
},
Tags =
{
{ "string", "string" },
},
});
example, err := applink.NewAppLinkMember(ctx, "appLinkMemberResource", &applink.AppLinkMemberArgs{
AppLinkName: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
AppLinkMemberName: pulumi.String("string"),
Location: pulumi.String("string"),
Properties: &applink.AppLinkMemberPropertiesArgs{
Metadata: &applink.MetadataArgs{
ResourceId: pulumi.String("string"),
},
ClusterType: pulumi.String("string"),
ConnectivityProfile: &applink.ConnectivityProfileArgs{
EastWestGateway: &applink.EastWestGatewayProfileArgs{
Visibility: pulumi.String("string"),
},
PrivateConnect: &applink.PrivateConnectProfileArgs{
SubnetResourceId: pulumi.String("string"),
},
},
UpgradeProfile: &applink.UpgradeProfileArgs{
Mode: pulumi.String("string"),
FullyManagedUpgradeProfile: &applink.FullyManagedUpgradeProfileArgs{
ReleaseChannel: pulumi.String("string"),
},
SelfManagedUpgradeProfile: &applink.SelfManagedUpgradeProfileArgs{
Version: pulumi.String("string"),
},
},
},
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
resource "azure-native_applink_app_link_member" "appLinkMemberResource" {
lifecycle {
create_before_destroy = true
}
app_link_name = "string"
resource_group_name = "string"
app_link_member_name = "string"
location = "string"
properties = {
metadata = {
resource_id = "string"
}
cluster_type = "string"
connectivity_profile = {
east_west_gateway = {
visibility = "string"
}
private_connect = {
subnet_resource_id = "string"
}
}
upgrade_profile = {
mode = "string"
fully_managed_upgrade_profile = {
release_channel = "string"
}
self_managed_upgrade_profile = {
version = "string"
}
}
}
tags = {
"string" = "string"
}
}
var appLinkMemberResource = new AppLinkMember("appLinkMemberResource", AppLinkMemberArgs.builder()
.appLinkName("string")
.resourceGroupName("string")
.appLinkMemberName("string")
.location("string")
.properties(AppLinkMemberPropertiesArgs.builder()
.metadata(com.pulumi.azurenative.applink.inputs.MetadataArgs.builder()
.resourceId("string")
.build())
.clusterType("string")
.connectivityProfile(ConnectivityProfileArgs.builder()
.eastWestGateway(EastWestGatewayProfileArgs.builder()
.visibility("string")
.build())
.privateConnect(PrivateConnectProfileArgs.builder()
.subnetResourceId("string")
.build())
.build())
.upgradeProfile(UpgradeProfileArgs.builder()
.mode("string")
.fullyManagedUpgradeProfile(FullyManagedUpgradeProfileArgs.builder()
.releaseChannel("string")
.build())
.selfManagedUpgradeProfile(SelfManagedUpgradeProfileArgs.builder()
.version("string")
.build())
.build())
.build())
.tags(Map.of("string", "string"))
.build());
app_link_member_resource = azure_native.applink.AppLinkMember("appLinkMemberResource",
app_link_name="string",
resource_group_name="string",
app_link_member_name="string",
location="string",
properties={
"metadata": {
"resource_id": "string",
},
"cluster_type": "string",
"connectivity_profile": {
"east_west_gateway": {
"visibility": "string",
},
"private_connect": {
"subnet_resource_id": "string",
},
},
"upgrade_profile": {
"mode": "string",
"fully_managed_upgrade_profile": {
"release_channel": "string",
},
"self_managed_upgrade_profile": {
"version": "string",
},
},
},
tags={
"string": "string",
})
const appLinkMemberResource = new azure_native.applink.AppLinkMember("appLinkMemberResource", {
appLinkName: "string",
resourceGroupName: "string",
appLinkMemberName: "string",
location: "string",
properties: {
metadata: {
resourceId: "string",
},
clusterType: "string",
connectivityProfile: {
eastWestGateway: {
visibility: "string",
},
privateConnect: {
subnetResourceId: "string",
},
},
upgradeProfile: {
mode: "string",
fullyManagedUpgradeProfile: {
releaseChannel: "string",
},
selfManagedUpgradeProfile: {
version: "string",
},
},
},
tags: {
string: "string",
},
});
type: azure-native:applink:AppLinkMember
properties:
appLinkMemberName: string
appLinkName: string
location: string
properties:
clusterType: string
connectivityProfile:
eastWestGateway:
visibility: string
privateConnect:
subnetResourceId: string
metadata:
resourceId: string
upgradeProfile:
fullyManagedUpgradeProfile:
releaseChannel: string
mode: string
selfManagedUpgradeProfile:
version: string
resourceGroupName: string
tags:
string: string
AppLinkMember 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 AppLinkMember resource accepts the following input properties:
- App
Link stringName - The name of the AppLink
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- App
Link stringMember Name - The name of the AppLinkMember
- Location string
- The geo-location where the resource lives
- Properties
Pulumi.
Azure Native. App Link. Inputs. App Link Member Properties - The resource-specific properties for this resource.
- Dictionary<string, string>
- Resource tags.
- App
Link stringName - The name of the AppLink
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- App
Link stringMember Name - The name of the AppLinkMember
- Location string
- The geo-location where the resource lives
- Properties
App
Link Member Properties Args - The resource-specific properties for this resource.
- map[string]string
- Resource tags.
- app_
link_ stringname - The name of the AppLink
- resource_
group_ stringname - The name of the resource group. The name is case insensitive.
- app_
link_ stringmember_ name - The name of the AppLinkMember
- location string
- The geo-location where the resource lives
- properties object
- The resource-specific properties for this resource.
- map(string)
- Resource tags.
- app
Link StringName - The name of the AppLink
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- app
Link StringMember Name - The name of the AppLinkMember
- location String
- The geo-location where the resource lives
- properties
App
Link Member Properties - The resource-specific properties for this resource.
- Map<String,String>
- Resource tags.
- app
Link stringName - The name of the AppLink
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- app
Link stringMember Name - The name of the AppLinkMember
- location string
- The geo-location where the resource lives
- properties
App
Link Member Properties - The resource-specific properties for this resource.
- {[key: string]: string}
- Resource tags.
- app_
link_ strname - The name of the AppLink
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- app_
link_ strmember_ name - The name of the AppLinkMember
- location str
- The geo-location where the resource lives
- properties
App
Link Member Properties Args - The resource-specific properties for this resource.
- Mapping[str, str]
- Resource tags.
- app
Link StringName - The name of the AppLink
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- app
Link StringMember Name - The name of the AppLinkMember
- location String
- The geo-location where the resource lives
- properties Property Map
- The resource-specific properties for this resource.
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the AppLinkMember resource produces the following output properties:
- Azure
Api stringVersion - The Azure API version of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- System
Data Pulumi.Azure Native. App Link. 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.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- 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.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- system_
data object - 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.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- 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.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- 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.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- 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.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- 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
AppLinkMemberProperties, AppLinkMemberPropertiesArgs
AppLink Member properties- Metadata
Pulumi.
Azure Native. App Link. Inputs. Metadata - AppLink Member Metadata
- Cluster
Type string | Pulumi.Azure Native. App Link. Cluster Type - Cluster type
- Connectivity
Profile Pulumi.Azure Native. App Link. Inputs. Connectivity Profile - Connectivity profile.
- Upgrade
Profile Pulumi.Azure Native. App Link. Inputs. Upgrade Profile - Upgrade profile.
- Metadata Metadata
- AppLink Member Metadata
- Cluster
Type string | ClusterType - Cluster type
- Connectivity
Profile ConnectivityProfile - Connectivity profile.
- Upgrade
Profile UpgradeProfile - Upgrade profile.
- metadata object
- AppLink Member Metadata
- cluster_
type string | "AKS" - Cluster type
- connectivity_
profile object - Connectivity profile.
- upgrade_
profile object - Upgrade profile.
- metadata Metadata
- AppLink Member Metadata
- cluster
Type String | ClusterType - Cluster type
- connectivity
Profile ConnectivityProfile - Connectivity profile.
- upgrade
Profile UpgradeProfile - Upgrade profile.
- metadata Metadata
- AppLink Member Metadata
- cluster
Type string | ClusterType - Cluster type
- connectivity
Profile ConnectivityProfile - Connectivity profile.
- upgrade
Profile UpgradeProfile - Upgrade profile.
- metadata Metadata
- AppLink Member Metadata
- cluster_
type str | ClusterType - Cluster type
- connectivity_
profile ConnectivityProfile - Connectivity profile.
- upgrade_
profile UpgradeProfile - Upgrade profile.
- metadata Property Map
- AppLink Member Metadata
- cluster
Type String | "AKS" - Cluster type
- connectivity
Profile Property Map - Connectivity profile.
- upgrade
Profile Property Map - Upgrade profile.
AppLinkMemberPropertiesResponse, AppLinkMemberPropertiesResponseArgs
AppLink Member properties- Metadata
Pulumi.
Azure Native. App Link. Inputs. Metadata Response - AppLink Member Metadata
- Provisioning
State string - Provisioning state
- Cluster
Type string - Cluster type
- Connectivity
Profile Pulumi.Azure Native. App Link. Inputs. Connectivity Profile Response - Connectivity profile.
- Observability
Profile Pulumi.Azure Native. App Link. Inputs. Observability Profile Response - Observability profile
- Upgrade
Profile Pulumi.Azure Native. App Link. Inputs. Upgrade Profile Response - Upgrade profile.
- Metadata
Metadata
Response - AppLink Member Metadata
- Provisioning
State string - Provisioning state
- Cluster
Type string - Cluster type
- Connectivity
Profile ConnectivityProfile Response - Connectivity profile.
- Observability
Profile ObservabilityProfile Response - Observability profile
- Upgrade
Profile UpgradeProfile Response - Upgrade profile.
- metadata object
- AppLink Member Metadata
- provisioning_
state string - Provisioning state
- cluster_
type string - Cluster type
- connectivity_
profile object - Connectivity profile.
- observability_
profile object - Observability profile
- upgrade_
profile object - Upgrade profile.
- metadata
Metadata
Response - AppLink Member Metadata
- provisioning
State String - Provisioning state
- cluster
Type String - Cluster type
- connectivity
Profile ConnectivityProfile Response - Connectivity profile.
- observability
Profile ObservabilityProfile Response - Observability profile
- upgrade
Profile UpgradeProfile Response - Upgrade profile.
- metadata
Metadata
Response - AppLink Member Metadata
- provisioning
State string - Provisioning state
- cluster
Type string - Cluster type
- connectivity
Profile ConnectivityProfile Response - Connectivity profile.
- observability
Profile ObservabilityProfile Response - Observability profile
- upgrade
Profile UpgradeProfile Response - Upgrade profile.
- metadata
Metadata
Response - AppLink Member Metadata
- provisioning_
state str - Provisioning state
- cluster_
type str - Cluster type
- connectivity_
profile ConnectivityProfile Response - Connectivity profile.
- observability_
profile ObservabilityProfile Response - Observability profile
- upgrade_
profile UpgradeProfile Response - Upgrade profile.
- metadata Property Map
- AppLink Member Metadata
- provisioning
State String - Provisioning state
- cluster
Type String - Cluster type
- connectivity
Profile Property Map - Connectivity profile.
- observability
Profile Property Map - Observability profile
- upgrade
Profile Property Map - Upgrade profile.
ClusterType, ClusterTypeArgs
- AKS
AKSAzure Kubernetes Service
- Cluster
Type AKS AKSAzure Kubernetes Service
- "AKS"
AKSAzure Kubernetes Service
- AKS
AKSAzure Kubernetes Service
- AKS
AKSAzure Kubernetes Service
- AKS
AKSAzure Kubernetes Service
- "AKS"
AKSAzure Kubernetes Service
ConnectivityProfile, ConnectivityProfileArgs
AppLinkMember connectivity profile.- East
West Pulumi.Gateway Azure Native. App Link. Inputs. East West Gateway Profile - East-West gateway profile.
- Private
Connect Pulumi.Azure Native. App Link. Inputs. Private Connect Profile - Private connect profile.
- East
West EastGateway West Gateway Profile - East-West gateway profile.
- Private
Connect PrivateConnect Profile - Private connect profile.
- east_
west_ objectgateway - East-West gateway profile.
- private_
connect object - Private connect profile.
- east
West EastGateway West Gateway Profile - East-West gateway profile.
- private
Connect PrivateConnect Profile - Private connect profile.
- east
West EastGateway West Gateway Profile - East-West gateway profile.
- private
Connect PrivateConnect Profile - Private connect profile.
- east_
west_ Eastgateway West Gateway Profile - East-West gateway profile.
- private_
connect PrivateConnect Profile - Private connect profile.
- east
West Property MapGateway - East-West gateway profile.
- private
Connect Property Map - Private connect profile.
ConnectivityProfileResponse, ConnectivityProfileResponseArgs
AppLinkMember connectivity profile.- East
West Pulumi.Gateway Azure Native. App Link. Inputs. East West Gateway Profile Response - East-West gateway profile.
- Private
Connect Pulumi.Azure Native. App Link. Inputs. Private Connect Profile Response - Private connect profile.
- East
West EastGateway West Gateway Profile Response - East-West gateway profile.
- Private
Connect PrivateConnect Profile Response - Private connect profile.
- east_
west_ objectgateway - East-West gateway profile.
- private_
connect object - Private connect profile.
- east
West EastGateway West Gateway Profile Response - East-West gateway profile.
- private
Connect PrivateConnect Profile Response - Private connect profile.
- east
West EastGateway West Gateway Profile Response - East-West gateway profile.
- private
Connect PrivateConnect Profile Response - Private connect profile.
- east_
west_ Eastgateway West Gateway Profile Response - East-West gateway profile.
- private_
connect PrivateConnect Profile Response - Private connect profile.
- east
West Property MapGateway - East-West gateway profile.
- private
Connect Property Map - Private connect profile.
EastWestGatewayProfile, EastWestGatewayProfileArgs
AppLinkMember east-west gateway profile.- Visibility
string | Pulumi.
Azure Native. App Link. East West Gateway Visibility - East-West gateway visibility.
- Visibility
string | East
West Gateway Visibility - East-West gateway visibility.
- visibility string | "Internal" | "External"
- East-West gateway visibility.
- visibility
String | East
West Gateway Visibility - East-West gateway visibility.
- visibility
string | East
West Gateway Visibility - East-West gateway visibility.
- visibility
str | East
West Gateway Visibility - East-West gateway visibility.
- visibility String | "Internal" | "External"
- East-West gateway visibility.
EastWestGatewayProfileResponse, EastWestGatewayProfileResponseArgs
AppLinkMember east-west gateway profile.- Visibility string
- East-West gateway visibility.
- Visibility string
- East-West gateway visibility.
- visibility string
- East-West gateway visibility.
- visibility String
- East-West gateway visibility.
- visibility string
- East-West gateway visibility.
- visibility str
- East-West gateway visibility.
- visibility String
- East-West gateway visibility.
EastWestGatewayVisibility, EastWestGatewayVisibilityArgs
- Internal
InternalUse an internal load balancer for the east-west gateway.- External
ExternalUse an external load balancer for the east-west gateway.
- East
West Gateway Visibility Internal InternalUse an internal load balancer for the east-west gateway.- East
West Gateway Visibility External ExternalUse an external load balancer for the east-west gateway.
- "Internal"
InternalUse an internal load balancer for the east-west gateway.- "External"
ExternalUse an external load balancer for the east-west gateway.
- Internal
InternalUse an internal load balancer for the east-west gateway.- External
ExternalUse an external load balancer for the east-west gateway.
- Internal
InternalUse an internal load balancer for the east-west gateway.- External
ExternalUse an external load balancer for the east-west gateway.
- INTERNAL
InternalUse an internal load balancer for the east-west gateway.- EXTERNAL
ExternalUse an external load balancer for the east-west gateway.
- "Internal"
InternalUse an internal load balancer for the east-west gateway.- "External"
ExternalUse an external load balancer for the east-west gateway.
FullyManagedUpgradeProfile, FullyManagedUpgradeProfileArgs
AppLinkMember fully managed upgrade profile- Release
Channel string | Pulumi.Azure Native. App Link. Upgrade Release Channel - Release channel
- Release
Channel string | UpgradeRelease Channel - Release channel
- release_
channel string | "Rapid" | "Stable" - Release channel
- release
Channel String | UpgradeRelease Channel - Release channel
- release
Channel string | UpgradeRelease Channel - Release channel
- release_
channel str | UpgradeRelease Channel - Release channel
- release
Channel String | "Rapid" | "Stable" - Release channel
FullyManagedUpgradeProfileResponse, FullyManagedUpgradeProfileResponseArgs
AppLinkMember fully managed upgrade profile- Release
Channel string - Release channel
- Release
Channel string - Release channel
- release_
channel string - Release channel
- release
Channel String - Release channel
- release
Channel string - Release channel
- release_
channel str - Release channel
- release
Channel String - Release channel
Metadata, MetadataArgs
AppLinkMember metadata- Resource
Id string - Resource ID
- Resource
Id string - Resource ID
- resource_
id string - Resource ID
- resource
Id String - Resource ID
- resource
Id string - Resource ID
- resource_
id str - Resource ID
- resource
Id String - Resource ID
MetadataResponse, MetadataResponseArgs
AppLinkMember metadata- Resource
Id string - Resource ID
- Resource
Id string - Resource ID
- resource_
id string - Resource ID
- resource
Id String - Resource ID
- resource
Id string - Resource ID
- resource_
id str - Resource ID
- resource
Id String - Resource ID
MetricsProfileResponse, MetricsProfileResponseArgs
AppLinkMember metrics profile- Metrics
Endpoint string - Metrics endpoint URL
- Metrics
Endpoint string - Metrics endpoint URL
- metrics_
endpoint string - Metrics endpoint URL
- metrics
Endpoint String - Metrics endpoint URL
- metrics
Endpoint string - Metrics endpoint URL
- metrics_
endpoint str - Metrics endpoint URL
- metrics
Endpoint String - Metrics endpoint URL
ObservabilityProfileResponse, ObservabilityProfileResponseArgs
AppLinkMember observability profile- Metrics
Pulumi.
Azure Native. App Link. Inputs. Metrics Profile Response - Metrics configuration
- Metrics
Metrics
Profile Response - Metrics configuration
- metrics
Metrics
Profile Response - Metrics configuration
- metrics
Metrics
Profile Response - Metrics configuration
- metrics
Metrics
Profile Response - Metrics configuration
- metrics Property Map
- Metrics configuration
PrivateConnectProfile, PrivateConnectProfileArgs
AppLinkMember private connect profile.- Subnet
Resource stringId - Delegated Subnet to AppLink.
- Subnet
Resource stringId - Delegated Subnet to AppLink.
- subnet_
resource_ stringid - Delegated Subnet to AppLink.
- subnet
Resource StringId - Delegated Subnet to AppLink.
- subnet
Resource stringId - Delegated Subnet to AppLink.
- subnet_
resource_ strid - Delegated Subnet to AppLink.
- subnet
Resource StringId - Delegated Subnet to AppLink.
PrivateConnectProfileResponse, PrivateConnectProfileResponseArgs
AppLinkMember private connect profile.- Subnet
Resource stringId - Delegated Subnet to AppLink.
- Subnet
Resource stringId - Delegated Subnet to AppLink.
- subnet_
resource_ stringid - Delegated Subnet to AppLink.
- subnet
Resource StringId - Delegated Subnet to AppLink.
- subnet
Resource stringId - Delegated Subnet to AppLink.
- subnet_
resource_ strid - Delegated Subnet to AppLink.
- subnet
Resource StringId - Delegated Subnet to AppLink.
SelfManagedUpgradeProfile, SelfManagedUpgradeProfileArgs
AppLinkMember self managed upgrade profile- Version string
- Istio version
- Version string
- Istio version
- version string
- Istio version
- version String
- Istio version
- version string
- Istio version
- version str
- Istio version
- version String
- Istio version
SelfManagedUpgradeProfileResponse, SelfManagedUpgradeProfileResponseArgs
AppLinkMember self managed upgrade profile- Version string
- Istio version
- Version string
- Istio version
- version string
- Istio version
- version String
- Istio version
- version string
- Istio version
- version str
- Istio version
- version String
- Istio version
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 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.
UpgradeMode, UpgradeModeArgs
- Fully
Managed FullyManagedFully managed upgrade mode- Self
Managed SelfManagedSelf managed upgrade mode
- Upgrade
Mode Fully Managed FullyManagedFully managed upgrade mode- Upgrade
Mode Self Managed SelfManagedSelf managed upgrade mode
- "Fully
Managed" FullyManagedFully managed upgrade mode- "Self
Managed" SelfManagedSelf managed upgrade mode
- Fully
Managed FullyManagedFully managed upgrade mode- Self
Managed SelfManagedSelf managed upgrade mode
- Fully
Managed FullyManagedFully managed upgrade mode- Self
Managed SelfManagedSelf managed upgrade mode
- FULLY_MANAGED
FullyManagedFully managed upgrade mode- SELF_MANAGED
SelfManagedSelf managed upgrade mode
- "Fully
Managed" FullyManagedFully managed upgrade mode- "Self
Managed" SelfManagedSelf managed upgrade mode
UpgradeProfile, UpgradeProfileArgs
AppLinkMember upgrade profile.- Mode
string | Pulumi.
Azure Native. App Link. Upgrade Mode - Upgrade mode.
- Fully
Managed Pulumi.Upgrade Profile Azure Native. App Link. Inputs. Fully Managed Upgrade Profile - Fully managed upgrade profile.
- Self
Managed Pulumi.Upgrade Profile Azure Native. App Link. Inputs. Self Managed Upgrade Profile - Self managed upgrade profile.
- Mode
string | Upgrade
Mode - Upgrade mode.
- Fully
Managed FullyUpgrade Profile Managed Upgrade Profile - Fully managed upgrade profile.
- Self
Managed SelfUpgrade Profile Managed Upgrade Profile - Self managed upgrade profile.
- mode
string | "Fully
Managed" | "Self Managed" - Upgrade mode.
- fully_
managed_ objectupgrade_ profile - Fully managed upgrade profile.
- self_
managed_ objectupgrade_ profile - Self managed upgrade profile.
- mode
String | Upgrade
Mode - Upgrade mode.
- fully
Managed FullyUpgrade Profile Managed Upgrade Profile - Fully managed upgrade profile.
- self
Managed SelfUpgrade Profile Managed Upgrade Profile - Self managed upgrade profile.
- mode
string | Upgrade
Mode - Upgrade mode.
- fully
Managed FullyUpgrade Profile Managed Upgrade Profile - Fully managed upgrade profile.
- self
Managed SelfUpgrade Profile Managed Upgrade Profile - Self managed upgrade profile.
- mode
str | Upgrade
Mode - Upgrade mode.
- fully_
managed_ Fullyupgrade_ profile Managed Upgrade Profile - Fully managed upgrade profile.
- self_
managed_ Selfupgrade_ profile Managed Upgrade Profile - Self managed upgrade profile.
- mode
String | "Fully
Managed" | "Self Managed" - Upgrade mode.
- fully
Managed Property MapUpgrade Profile - Fully managed upgrade profile.
- self
Managed Property MapUpgrade Profile - Self managed upgrade profile.
UpgradeProfileResponse, UpgradeProfileResponseArgs
AppLinkMember upgrade profile.- Mode string
- Upgrade mode.
- Fully
Managed Pulumi.Upgrade Profile Azure Native. App Link. Inputs. Fully Managed Upgrade Profile Response - Fully managed upgrade profile.
- Self
Managed Pulumi.Upgrade Profile Azure Native. App Link. Inputs. Self Managed Upgrade Profile Response - Self managed upgrade profile.
- Mode string
- Upgrade mode.
- Fully
Managed FullyUpgrade Profile Managed Upgrade Profile Response - Fully managed upgrade profile.
- Self
Managed SelfUpgrade Profile Managed Upgrade Profile Response - Self managed upgrade profile.
- mode string
- Upgrade mode.
- fully_
managed_ objectupgrade_ profile - Fully managed upgrade profile.
- self_
managed_ objectupgrade_ profile - Self managed upgrade profile.
- mode String
- Upgrade mode.
- fully
Managed FullyUpgrade Profile Managed Upgrade Profile Response - Fully managed upgrade profile.
- self
Managed SelfUpgrade Profile Managed Upgrade Profile Response - Self managed upgrade profile.
- mode string
- Upgrade mode.
- fully
Managed FullyUpgrade Profile Managed Upgrade Profile Response - Fully managed upgrade profile.
- self
Managed SelfUpgrade Profile Managed Upgrade Profile Response - Self managed upgrade profile.
- mode str
- Upgrade mode.
- fully_
managed_ Fullyupgrade_ profile Managed Upgrade Profile Response - Fully managed upgrade profile.
- self_
managed_ Selfupgrade_ profile Managed Upgrade Profile Response - Self managed upgrade profile.
- mode String
- Upgrade mode.
- fully
Managed Property MapUpgrade Profile - Fully managed upgrade profile.
- self
Managed Property MapUpgrade Profile - Self managed upgrade profile.
UpgradeReleaseChannel, UpgradeReleaseChannelArgs
- Rapid
RapidRapid release channel- Stable
StableStable release channel
- Upgrade
Release Channel Rapid RapidRapid release channel- Upgrade
Release Channel Stable StableStable release channel
- "Rapid"
RapidRapid release channel- "Stable"
StableStable release channel
- Rapid
RapidRapid release channel- Stable
StableStable release channel
- Rapid
RapidRapid release channel- Stable
StableStable release channel
- RAPID
RapidRapid release channel- STABLE
StableStable release channel
- "Rapid"
RapidRapid release channel- "Stable"
StableStable release channel
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:applink:AppLinkMember member-01 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AppLink/appLinks/{appLinkName}/appLinkMembers/{appLinkMemberName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0
published on Saturday, Jul 18, 2026 by Pulumi