import * as pulumi from "@pulumi/pulumi"; /** * Manages the association between a Network Interface and a Application Security Group. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = new azure.core.ResourceGroup("example", { * name: "example-resources", * location: "West Europe", * }); * const exampleVirtualNetwork = new azure.network.VirtualNetwork("example", { * name: "example-network", * addressSpaces: ["10.0.0.0/16"], * location: example.location, * resourceGroupName: example.name, * }); * const exampleSubnet = new azure.network.Subnet("example", { * name: "internal", * resourceGroupName: example.name, * virtualNetworkName: exampleVirtualNetwork.name, * addressPrefixes: ["10.0.1.0/24"], * }); * const exampleApplicationSecurityGroup = new azure.network.ApplicationSecurityGroup("example", { * name: "example-asg", * location: example.location, * resourceGroupName: example.name, * }); * const exampleNetworkInterface = new azure.network.NetworkInterface("example", { * name: "example-nic", * location: example.location, * resourceGroupName: example.name, * ipConfigurations: [{ * name: "testconfiguration1", * subnetId: exampleSubnet.id, * privateIpAddressAllocation: "Dynamic", * }], * }); * const exampleNetworkInterfaceApplicationSecurityGroupAssociation = new azure.network.NetworkInterfaceApplicationSecurityGroupAssociation("example", { * networkInterfaceId: exampleNetworkInterface.id, * applicationSecurityGroupId: exampleApplicationSecurityGroup.id, * }); * ``` * * ## API Providers * * * This resource uses the following Azure API Providers: * * * `Microsoft.Network` - 2025-01-01 * * ## Import * * Associations between Network Interfaces and Application Security Groups can be imported using the `resource id`, e.g. * * ```sh * $ pulumi import azure:network/networkInterfaceApplicationSecurityGroupAssociation:NetworkInterfaceApplicationSecurityGroupAssociation association1 "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Network/networkInterfaces/nic1|/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.Network/applicationSecurityGroups/securityGroup1" * ``` * * > **Note:** This ID is specific to this provider - and is of the format `{networkInterfaceId}|{applicationSecurityGroupId}`. */ export declare class NetworkInterfaceApplicationSecurityGroupAssociation extends pulumi.CustomResource { /** * Get an existing NetworkInterfaceApplicationSecurityGroupAssociation resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: NetworkInterfaceApplicationSecurityGroupAssociationState, opts?: pulumi.CustomResourceOptions): NetworkInterfaceApplicationSecurityGroupAssociation; /** * Returns true if the given object is an instance of NetworkInterfaceApplicationSecurityGroupAssociation. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is NetworkInterfaceApplicationSecurityGroupAssociation; /** * The ID of the Application Security Group which this Network Interface which should be connected to. Changing this forces a new resource to be created. */ readonly applicationSecurityGroupId: pulumi.Output; /** * The ID of the Network Interface. Changing this forces a new resource to be created. */ readonly networkInterfaceId: pulumi.Output; /** * Create a NetworkInterfaceApplicationSecurityGroupAssociation resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: NetworkInterfaceApplicationSecurityGroupAssociationArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering NetworkInterfaceApplicationSecurityGroupAssociation resources. */ export interface NetworkInterfaceApplicationSecurityGroupAssociationState { /** * The ID of the Application Security Group which this Network Interface which should be connected to. Changing this forces a new resource to be created. */ applicationSecurityGroupId?: pulumi.Input; /** * The ID of the Network Interface. Changing this forces a new resource to be created. */ networkInterfaceId?: pulumi.Input; } /** * The set of arguments for constructing a NetworkInterfaceApplicationSecurityGroupAssociation resource. */ export interface NetworkInterfaceApplicationSecurityGroupAssociationArgs { /** * The ID of the Application Security Group which this Network Interface which should be connected to. Changing this forces a new resource to be created. */ applicationSecurityGroupId: pulumi.Input; /** * The ID of the Network Interface. Changing this forces a new resource to be created. */ networkInterfaceId: pulumi.Input; }