import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Manages a Network Manager Verifier Workspace Reachability Analysis Intent. * * ## 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 current = azure.core.getSubscription({}); * const exampleNetworkManager = new azure.network.NetworkManager("example", { * name: "example-nm", * resourceGroupName: example.name, * location: example.location, * scope: { * subscriptionIds: [current.then(current => current.id)], * }, * scopeAccesses: ["Connectivity"], * }); * const exampleNetworkManagerVerifierWorkspace = new azure.network.NetworkManagerVerifierWorkspace("example", { * name: "example", * networkManagerId: exampleNetworkManager.id, * location: example.location, * }); * 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.2.0/24"], * }); * const exampleNetworkInterface = new azure.network.NetworkInterface("example", { * name: "example-nic", * location: example.location, * resourceGroupName: example.name, * ipConfigurations: [{ * name: "internal", * subnetId: exampleSubnet.id, * privateIpAddressAllocation: "Dynamic", * }], * }); * const exampleLinuxVirtualMachine = new azure.compute.LinuxVirtualMachine("example", { * name: "example-machine", * resourceGroupName: example.name, * location: example.location, * size: "Standard_B1ls", * adminUsername: "adminuser", * adminPassword: "P@ssw0rd1234!", * disablePasswordAuthentication: false, * networkInterfaceIds: [exampleNetworkInterface.id], * osDisk: { * caching: "ReadWrite", * storageAccountType: "Standard_LRS", * }, * sourceImageReference: { * publisher: "Canonical", * offer: "0001-com-ubuntu-server-jammy", * sku: "22_04-lts", * version: "latest", * }, * }); * const exampleNetworkManagerVerifierWorkspaceReachabilityAnalysisIntent = new azure.network.NetworkManagerVerifierWorkspaceReachabilityAnalysisIntent("example", { * name: "example-intent", * verifierWorkspaceId: exampleNetworkManagerVerifierWorkspace.id, * sourceResourceId: exampleLinuxVirtualMachine.id, * destinationResourceId: exampleLinuxVirtualMachine.id, * description: "example", * ipTraffic: { * sourceIps: ["10.0.2.1"], * sourcePorts: ["80"], * destinationIps: ["10.0.2.2"], * destinationPorts: ["*"], * protocols: ["Any"], * }, * }); * ``` * * ## API Providers * * * This resource uses the following Azure API Providers: * * * `Microsoft.Network` - 2025-01-01 * * ## Import * * Network Manager Verifier Workspace Reachability Analysis Intents can be imported using the `resource id`, e.g. * * ```sh * $ pulumi import azure:network/networkManagerVerifierWorkspaceReachabilityAnalysisIntent:NetworkManagerVerifierWorkspaceReachabilityAnalysisIntent example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Network/networkManagers/manager1/verifierWorkspaces/workspace1/reachabilityAnalysisIntents/intent1 * ``` */ export declare class NetworkManagerVerifierWorkspaceReachabilityAnalysisIntent extends pulumi.CustomResource { /** * Get an existing NetworkManagerVerifierWorkspaceReachabilityAnalysisIntent 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?: NetworkManagerVerifierWorkspaceReachabilityAnalysisIntentState, opts?: pulumi.CustomResourceOptions): NetworkManagerVerifierWorkspaceReachabilityAnalysisIntent; /** * Returns true if the given object is an instance of NetworkManagerVerifierWorkspaceReachabilityAnalysisIntent. 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 NetworkManagerVerifierWorkspaceReachabilityAnalysisIntent; /** * The description of the resource. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created. */ readonly description: pulumi.Output; /** * The ID of the destination resource. The value can be the ID of either Public internet, Cosmos DB, Storage Account, SQL Server, Virtual machines, or Subnet. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created. */ readonly destinationResourceId: pulumi.Output; /** * An `ipTraffic` block as defined below. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created. */ readonly ipTraffic: pulumi.Output; /** * The name which should be used for this Network Manager Verifier Workspace Reachability Analysis Intent. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created. */ readonly name: pulumi.Output; /** * The ID of the source resource. The value can be the ID of either Public internet, Virtual machines, or Subnet. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created. */ readonly sourceResourceId: pulumi.Output; /** * The ID of the Network Manager Verifier Workspace. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created. */ readonly verifierWorkspaceId: pulumi.Output; /** * Create a NetworkManagerVerifierWorkspaceReachabilityAnalysisIntent 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: NetworkManagerVerifierWorkspaceReachabilityAnalysisIntentArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering NetworkManagerVerifierWorkspaceReachabilityAnalysisIntent resources. */ export interface NetworkManagerVerifierWorkspaceReachabilityAnalysisIntentState { /** * The description of the resource. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created. */ description?: pulumi.Input; /** * The ID of the destination resource. The value can be the ID of either Public internet, Cosmos DB, Storage Account, SQL Server, Virtual machines, or Subnet. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created. */ destinationResourceId?: pulumi.Input; /** * An `ipTraffic` block as defined below. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created. */ ipTraffic?: pulumi.Input; /** * The name which should be used for this Network Manager Verifier Workspace Reachability Analysis Intent. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created. */ name?: pulumi.Input; /** * The ID of the source resource. The value can be the ID of either Public internet, Virtual machines, or Subnet. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created. */ sourceResourceId?: pulumi.Input; /** * The ID of the Network Manager Verifier Workspace. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created. */ verifierWorkspaceId?: pulumi.Input; } /** * The set of arguments for constructing a NetworkManagerVerifierWorkspaceReachabilityAnalysisIntent resource. */ export interface NetworkManagerVerifierWorkspaceReachabilityAnalysisIntentArgs { /** * The description of the resource. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created. */ description?: pulumi.Input; /** * The ID of the destination resource. The value can be the ID of either Public internet, Cosmos DB, Storage Account, SQL Server, Virtual machines, or Subnet. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created. */ destinationResourceId: pulumi.Input; /** * An `ipTraffic` block as defined below. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created. */ ipTraffic: pulumi.Input; /** * The name which should be used for this Network Manager Verifier Workspace Reachability Analysis Intent. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created. */ name?: pulumi.Input; /** * The ID of the source resource. The value can be the ID of either Public internet, Virtual machines, or Subnet. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created. */ sourceResourceId: pulumi.Input; /** * The ID of the Network Manager Verifier Workspace. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created. */ verifierWorkspaceId: pulumi.Input; }