We recommend using Azure Native.
azure.network.NetworkManagerVerifierWorkspaceReachabilityAnalysisIntent
Explore with Pulumi AI
Manages a Network Manager Verifier Workspace Reachability Analysis Intent.
Example Usage
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"],
},
});
import pulumi
import pulumi_azure as azure
example = azure.core.ResourceGroup("example",
name="example-resources",
location="West Europe")
current = azure.core.get_subscription()
example_network_manager = azure.network.NetworkManager("example",
name="example-nm",
resource_group_name=example.name,
location=example.location,
scope={
"subscription_ids": [current.id],
},
scope_accesses=["Connectivity"])
example_network_manager_verifier_workspace = azure.network.NetworkManagerVerifierWorkspace("example",
name="example",
network_manager_id=example_network_manager.id,
location=example.location)
example_virtual_network = azure.network.VirtualNetwork("example",
name="example-network",
address_spaces=["10.0.0.0/16"],
location=example.location,
resource_group_name=example.name)
example_subnet = azure.network.Subnet("example",
name="internal",
resource_group_name=example.name,
virtual_network_name=example_virtual_network.name,
address_prefixes=["10.0.2.0/24"])
example_network_interface = azure.network.NetworkInterface("example",
name="example-nic",
location=example.location,
resource_group_name=example.name,
ip_configurations=[{
"name": "internal",
"subnet_id": example_subnet.id,
"private_ip_address_allocation": "Dynamic",
}])
example_linux_virtual_machine = azure.compute.LinuxVirtualMachine("example",
name="example-machine",
resource_group_name=example.name,
location=example.location,
size="Standard_B1ls",
admin_username="adminuser",
admin_password="P@ssw0rd1234!",
disable_password_authentication=False,
network_interface_ids=[example_network_interface.id],
os_disk={
"caching": "ReadWrite",
"storage_account_type": "Standard_LRS",
},
source_image_reference={
"publisher": "Canonical",
"offer": "0001-com-ubuntu-server-jammy",
"sku": "22_04-lts",
"version": "latest",
})
example_network_manager_verifier_workspace_reachability_analysis_intent = azure.network.NetworkManagerVerifierWorkspaceReachabilityAnalysisIntent("example",
name="example-intent",
verifier_workspace_id=example_network_manager_verifier_workspace.id,
source_resource_id=example_linux_virtual_machine.id,
destination_resource_id=example_linux_virtual_machine.id,
description="example",
ip_traffic={
"source_ips": ["10.0.2.1"],
"source_ports": ["80"],
"destination_ips": ["10.0.2.2"],
"destination_ports": ["*"],
"protocols": ["Any"],
})
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/compute"
"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/core"
"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/network"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
Name: pulumi.String("example-resources"),
Location: pulumi.String("West Europe"),
})
if err != nil {
return err
}
current, err := core.LookupSubscription(ctx, &core.LookupSubscriptionArgs{}, nil)
if err != nil {
return err
}
exampleNetworkManager, err := network.NewNetworkManager(ctx, "example", &network.NetworkManagerArgs{
Name: pulumi.String("example-nm"),
ResourceGroupName: example.Name,
Location: example.Location,
Scope: &network.NetworkManagerScopeArgs{
SubscriptionIds: pulumi.StringArray{
pulumi.String(current.Id),
},
},
ScopeAccesses: pulumi.StringArray{
pulumi.String("Connectivity"),
},
})
if err != nil {
return err
}
exampleNetworkManagerVerifierWorkspace, err := network.NewNetworkManagerVerifierWorkspace(ctx, "example", &network.NetworkManagerVerifierWorkspaceArgs{
Name: pulumi.String("example"),
NetworkManagerId: exampleNetworkManager.ID(),
Location: example.Location,
})
if err != nil {
return err
}
exampleVirtualNetwork, err := network.NewVirtualNetwork(ctx, "example", &network.VirtualNetworkArgs{
Name: pulumi.String("example-network"),
AddressSpaces: pulumi.StringArray{
pulumi.String("10.0.0.0/16"),
},
Location: example.Location,
ResourceGroupName: example.Name,
})
if err != nil {
return err
}
exampleSubnet, err := network.NewSubnet(ctx, "example", &network.SubnetArgs{
Name: pulumi.String("internal"),
ResourceGroupName: example.Name,
VirtualNetworkName: exampleVirtualNetwork.Name,
AddressPrefixes: pulumi.StringArray{
pulumi.String("10.0.2.0/24"),
},
})
if err != nil {
return err
}
exampleNetworkInterface, err := network.NewNetworkInterface(ctx, "example", &network.NetworkInterfaceArgs{
Name: pulumi.String("example-nic"),
Location: example.Location,
ResourceGroupName: example.Name,
IpConfigurations: network.NetworkInterfaceIpConfigurationArray{
&network.NetworkInterfaceIpConfigurationArgs{
Name: pulumi.String("internal"),
SubnetId: exampleSubnet.ID(),
PrivateIpAddressAllocation: pulumi.String("Dynamic"),
},
},
})
if err != nil {
return err
}
exampleLinuxVirtualMachine, err := compute.NewLinuxVirtualMachine(ctx, "example", &compute.LinuxVirtualMachineArgs{
Name: pulumi.String("example-machine"),
ResourceGroupName: example.Name,
Location: example.Location,
Size: pulumi.String("Standard_B1ls"),
AdminUsername: pulumi.String("adminuser"),
AdminPassword: pulumi.String("P@ssw0rd1234!"),
DisablePasswordAuthentication: pulumi.Bool(false),
NetworkInterfaceIds: pulumi.StringArray{
exampleNetworkInterface.ID(),
},
OsDisk: &compute.LinuxVirtualMachineOsDiskArgs{
Caching: pulumi.String("ReadWrite"),
StorageAccountType: pulumi.String("Standard_LRS"),
},
SourceImageReference: &compute.LinuxVirtualMachineSourceImageReferenceArgs{
Publisher: pulumi.String("Canonical"),
Offer: pulumi.String("0001-com-ubuntu-server-jammy"),
Sku: pulumi.String("22_04-lts"),
Version: pulumi.String("latest"),
},
})
if err != nil {
return err
}
_, err = network.NewNetworkManagerVerifierWorkspaceReachabilityAnalysisIntent(ctx, "example", &network.NetworkManagerVerifierWorkspaceReachabilityAnalysisIntentArgs{
Name: pulumi.String("example-intent"),
VerifierWorkspaceId: exampleNetworkManagerVerifierWorkspace.ID(),
SourceResourceId: exampleLinuxVirtualMachine.ID(),
DestinationResourceId: exampleLinuxVirtualMachine.ID(),
Description: pulumi.String("example"),
IpTraffic: &network.NetworkManagerVerifierWorkspaceReachabilityAnalysisIntentIpTrafficArgs{
SourceIps: pulumi.StringArray{
pulumi.String("10.0.2.1"),
},
SourcePorts: pulumi.StringArray{
pulumi.String("80"),
},
DestinationIps: pulumi.StringArray{
pulumi.String("10.0.2.2"),
},
DestinationPorts: pulumi.StringArray{
pulumi.String("*"),
},
Protocols: pulumi.StringArray{
pulumi.String("Any"),
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;
return await Deployment.RunAsync(() =>
{
var example = new Azure.Core.ResourceGroup("example", new()
{
Name = "example-resources",
Location = "West Europe",
});
var current = Azure.Core.GetSubscription.Invoke();
var exampleNetworkManager = new Azure.Network.NetworkManager("example", new()
{
Name = "example-nm",
ResourceGroupName = example.Name,
Location = example.Location,
Scope = new Azure.Network.Inputs.NetworkManagerScopeArgs
{
SubscriptionIds = new[]
{
current.Apply(getSubscriptionResult => getSubscriptionResult.Id),
},
},
ScopeAccesses = new[]
{
"Connectivity",
},
});
var exampleNetworkManagerVerifierWorkspace = new Azure.Network.NetworkManagerVerifierWorkspace("example", new()
{
Name = "example",
NetworkManagerId = exampleNetworkManager.Id,
Location = example.Location,
});
var exampleVirtualNetwork = new Azure.Network.VirtualNetwork("example", new()
{
Name = "example-network",
AddressSpaces = new[]
{
"10.0.0.0/16",
},
Location = example.Location,
ResourceGroupName = example.Name,
});
var exampleSubnet = new Azure.Network.Subnet("example", new()
{
Name = "internal",
ResourceGroupName = example.Name,
VirtualNetworkName = exampleVirtualNetwork.Name,
AddressPrefixes = new[]
{
"10.0.2.0/24",
},
});
var exampleNetworkInterface = new Azure.Network.NetworkInterface("example", new()
{
Name = "example-nic",
Location = example.Location,
ResourceGroupName = example.Name,
IpConfigurations = new[]
{
new Azure.Network.Inputs.NetworkInterfaceIpConfigurationArgs
{
Name = "internal",
SubnetId = exampleSubnet.Id,
PrivateIpAddressAllocation = "Dynamic",
},
},
});
var exampleLinuxVirtualMachine = new Azure.Compute.LinuxVirtualMachine("example", new()
{
Name = "example-machine",
ResourceGroupName = example.Name,
Location = example.Location,
Size = "Standard_B1ls",
AdminUsername = "adminuser",
AdminPassword = "P@ssw0rd1234!",
DisablePasswordAuthentication = false,
NetworkInterfaceIds = new[]
{
exampleNetworkInterface.Id,
},
OsDisk = new Azure.Compute.Inputs.LinuxVirtualMachineOsDiskArgs
{
Caching = "ReadWrite",
StorageAccountType = "Standard_LRS",
},
SourceImageReference = new Azure.Compute.Inputs.LinuxVirtualMachineSourceImageReferenceArgs
{
Publisher = "Canonical",
Offer = "0001-com-ubuntu-server-jammy",
Sku = "22_04-lts",
Version = "latest",
},
});
var exampleNetworkManagerVerifierWorkspaceReachabilityAnalysisIntent = new Azure.Network.NetworkManagerVerifierWorkspaceReachabilityAnalysisIntent("example", new()
{
Name = "example-intent",
VerifierWorkspaceId = exampleNetworkManagerVerifierWorkspace.Id,
SourceResourceId = exampleLinuxVirtualMachine.Id,
DestinationResourceId = exampleLinuxVirtualMachine.Id,
Description = "example",
IpTraffic = new Azure.Network.Inputs.NetworkManagerVerifierWorkspaceReachabilityAnalysisIntentIpTrafficArgs
{
SourceIps = new[]
{
"10.0.2.1",
},
SourcePorts = new[]
{
"80",
},
DestinationIps = new[]
{
"10.0.2.2",
},
DestinationPorts = new[]
{
"*",
},
Protocols = new[]
{
"Any",
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.core.ResourceGroup;
import com.pulumi.azure.core.ResourceGroupArgs;
import com.pulumi.azure.core.CoreFunctions;
import com.pulumi.azure.core.inputs.GetSubscriptionArgs;
import com.pulumi.azure.network.NetworkManager;
import com.pulumi.azure.network.NetworkManagerArgs;
import com.pulumi.azure.network.inputs.NetworkManagerScopeArgs;
import com.pulumi.azure.network.NetworkManagerVerifierWorkspace;
import com.pulumi.azure.network.NetworkManagerVerifierWorkspaceArgs;
import com.pulumi.azure.network.VirtualNetwork;
import com.pulumi.azure.network.VirtualNetworkArgs;
import com.pulumi.azure.network.Subnet;
import com.pulumi.azure.network.SubnetArgs;
import com.pulumi.azure.network.NetworkInterface;
import com.pulumi.azure.network.NetworkInterfaceArgs;
import com.pulumi.azure.network.inputs.NetworkInterfaceIpConfigurationArgs;
import com.pulumi.azure.compute.LinuxVirtualMachine;
import com.pulumi.azure.compute.LinuxVirtualMachineArgs;
import com.pulumi.azure.compute.inputs.LinuxVirtualMachineOsDiskArgs;
import com.pulumi.azure.compute.inputs.LinuxVirtualMachineSourceImageReferenceArgs;
import com.pulumi.azure.network.NetworkManagerVerifierWorkspaceReachabilityAnalysisIntent;
import com.pulumi.azure.network.NetworkManagerVerifierWorkspaceReachabilityAnalysisIntentArgs;
import com.pulumi.azure.network.inputs.NetworkManagerVerifierWorkspaceReachabilityAnalysisIntentIpTrafficArgs;
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 example = new ResourceGroup("example", ResourceGroupArgs.builder()
.name("example-resources")
.location("West Europe")
.build());
final var current = CoreFunctions.getSubscription(GetSubscriptionArgs.builder()
.build());
var exampleNetworkManager = new NetworkManager("exampleNetworkManager", NetworkManagerArgs.builder()
.name("example-nm")
.resourceGroupName(example.name())
.location(example.location())
.scope(NetworkManagerScopeArgs.builder()
.subscriptionIds(current.id())
.build())
.scopeAccesses("Connectivity")
.build());
var exampleNetworkManagerVerifierWorkspace = new NetworkManagerVerifierWorkspace("exampleNetworkManagerVerifierWorkspace", NetworkManagerVerifierWorkspaceArgs.builder()
.name("example")
.networkManagerId(exampleNetworkManager.id())
.location(example.location())
.build());
var exampleVirtualNetwork = new VirtualNetwork("exampleVirtualNetwork", VirtualNetworkArgs.builder()
.name("example-network")
.addressSpaces("10.0.0.0/16")
.location(example.location())
.resourceGroupName(example.name())
.build());
var exampleSubnet = new Subnet("exampleSubnet", SubnetArgs.builder()
.name("internal")
.resourceGroupName(example.name())
.virtualNetworkName(exampleVirtualNetwork.name())
.addressPrefixes("10.0.2.0/24")
.build());
var exampleNetworkInterface = new NetworkInterface("exampleNetworkInterface", NetworkInterfaceArgs.builder()
.name("example-nic")
.location(example.location())
.resourceGroupName(example.name())
.ipConfigurations(NetworkInterfaceIpConfigurationArgs.builder()
.name("internal")
.subnetId(exampleSubnet.id())
.privateIpAddressAllocation("Dynamic")
.build())
.build());
var exampleLinuxVirtualMachine = new LinuxVirtualMachine("exampleLinuxVirtualMachine", LinuxVirtualMachineArgs.builder()
.name("example-machine")
.resourceGroupName(example.name())
.location(example.location())
.size("Standard_B1ls")
.adminUsername("adminuser")
.adminPassword("P@ssw0rd1234!")
.disablePasswordAuthentication(false)
.networkInterfaceIds(exampleNetworkInterface.id())
.osDisk(LinuxVirtualMachineOsDiskArgs.builder()
.caching("ReadWrite")
.storageAccountType("Standard_LRS")
.build())
.sourceImageReference(LinuxVirtualMachineSourceImageReferenceArgs.builder()
.publisher("Canonical")
.offer("0001-com-ubuntu-server-jammy")
.sku("22_04-lts")
.version("latest")
.build())
.build());
var exampleNetworkManagerVerifierWorkspaceReachabilityAnalysisIntent = new NetworkManagerVerifierWorkspaceReachabilityAnalysisIntent("exampleNetworkManagerVerifierWorkspaceReachabilityAnalysisIntent", NetworkManagerVerifierWorkspaceReachabilityAnalysisIntentArgs.builder()
.name("example-intent")
.verifierWorkspaceId(exampleNetworkManagerVerifierWorkspace.id())
.sourceResourceId(exampleLinuxVirtualMachine.id())
.destinationResourceId(exampleLinuxVirtualMachine.id())
.description("example")
.ipTraffic(NetworkManagerVerifierWorkspaceReachabilityAnalysisIntentIpTrafficArgs.builder()
.sourceIps("10.0.2.1")
.sourcePorts("80")
.destinationIps("10.0.2.2")
.destinationPorts("*")
.protocols("Any")
.build())
.build());
}
}
resources:
example:
type: azure:core:ResourceGroup
properties:
name: example-resources
location: West Europe
exampleNetworkManager:
type: azure:network:NetworkManager
name: example
properties:
name: example-nm
resourceGroupName: ${example.name}
location: ${example.location}
scope:
subscriptionIds:
- ${current.id}
scopeAccesses:
- Connectivity
exampleNetworkManagerVerifierWorkspace:
type: azure:network:NetworkManagerVerifierWorkspace
name: example
properties:
name: example
networkManagerId: ${exampleNetworkManager.id}
location: ${example.location}
exampleVirtualNetwork:
type: azure:network:VirtualNetwork
name: example
properties:
name: example-network
addressSpaces:
- 10.0.0.0/16
location: ${example.location}
resourceGroupName: ${example.name}
exampleSubnet:
type: azure:network:Subnet
name: example
properties:
name: internal
resourceGroupName: ${example.name}
virtualNetworkName: ${exampleVirtualNetwork.name}
addressPrefixes:
- 10.0.2.0/24
exampleNetworkInterface:
type: azure:network:NetworkInterface
name: example
properties:
name: example-nic
location: ${example.location}
resourceGroupName: ${example.name}
ipConfigurations:
- name: internal
subnetId: ${exampleSubnet.id}
privateIpAddressAllocation: Dynamic
exampleLinuxVirtualMachine:
type: azure:compute:LinuxVirtualMachine
name: example
properties:
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
exampleNetworkManagerVerifierWorkspaceReachabilityAnalysisIntent:
type: azure:network:NetworkManagerVerifierWorkspaceReachabilityAnalysisIntent
name: example
properties:
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
variables:
current:
fn::invoke:
function: azure:core:getSubscription
arguments: {}
API Providers
This resource uses the following Azure API Providers:
Microsoft.Network
- 2024-05-01
Create NetworkManagerVerifierWorkspaceReachabilityAnalysisIntent Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new NetworkManagerVerifierWorkspaceReachabilityAnalysisIntent(name: string, args: NetworkManagerVerifierWorkspaceReachabilityAnalysisIntentArgs, opts?: CustomResourceOptions);
@overload
def NetworkManagerVerifierWorkspaceReachabilityAnalysisIntent(resource_name: str,
args: NetworkManagerVerifierWorkspaceReachabilityAnalysisIntentArgs,
opts: Optional[ResourceOptions] = None)
@overload
def NetworkManagerVerifierWorkspaceReachabilityAnalysisIntent(resource_name: str,
opts: Optional[ResourceOptions] = None,
destination_resource_id: Optional[str] = None,
ip_traffic: Optional[NetworkManagerVerifierWorkspaceReachabilityAnalysisIntentIpTrafficArgs] = None,
source_resource_id: Optional[str] = None,
verifier_workspace_id: Optional[str] = None,
description: Optional[str] = None,
name: Optional[str] = None)
func NewNetworkManagerVerifierWorkspaceReachabilityAnalysisIntent(ctx *Context, name string, args NetworkManagerVerifierWorkspaceReachabilityAnalysisIntentArgs, opts ...ResourceOption) (*NetworkManagerVerifierWorkspaceReachabilityAnalysisIntent, error)
public NetworkManagerVerifierWorkspaceReachabilityAnalysisIntent(string name, NetworkManagerVerifierWorkspaceReachabilityAnalysisIntentArgs args, CustomResourceOptions? opts = null)
public NetworkManagerVerifierWorkspaceReachabilityAnalysisIntent(String name, NetworkManagerVerifierWorkspaceReachabilityAnalysisIntentArgs args)
public NetworkManagerVerifierWorkspaceReachabilityAnalysisIntent(String name, NetworkManagerVerifierWorkspaceReachabilityAnalysisIntentArgs args, CustomResourceOptions options)
type: azure:network:NetworkManagerVerifierWorkspaceReachabilityAnalysisIntent
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 NetworkManagerVerifierWorkspaceReachabilityAnalysisIntentArgs
- 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 NetworkManagerVerifierWorkspaceReachabilityAnalysisIntentArgs
- 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 NetworkManagerVerifierWorkspaceReachabilityAnalysisIntentArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args NetworkManagerVerifierWorkspaceReachabilityAnalysisIntentArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args NetworkManagerVerifierWorkspaceReachabilityAnalysisIntentArgs
- 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 networkManagerVerifierWorkspaceReachabilityAnalysisIntentResource = new Azure.Network.NetworkManagerVerifierWorkspaceReachabilityAnalysisIntent("networkManagerVerifierWorkspaceReachabilityAnalysisIntentResource", new()
{
DestinationResourceId = "string",
IpTraffic = new Azure.Network.Inputs.NetworkManagerVerifierWorkspaceReachabilityAnalysisIntentIpTrafficArgs
{
DestinationIps = new[]
{
"string",
},
DestinationPorts = new[]
{
"string",
},
Protocols = new[]
{
"string",
},
SourceIps = new[]
{
"string",
},
SourcePorts = new[]
{
"string",
},
},
SourceResourceId = "string",
VerifierWorkspaceId = "string",
Description = "string",
Name = "string",
});
example, err := network.NewNetworkManagerVerifierWorkspaceReachabilityAnalysisIntent(ctx, "networkManagerVerifierWorkspaceReachabilityAnalysisIntentResource", &network.NetworkManagerVerifierWorkspaceReachabilityAnalysisIntentArgs{
DestinationResourceId: pulumi.String("string"),
IpTraffic: &network.NetworkManagerVerifierWorkspaceReachabilityAnalysisIntentIpTrafficArgs{
DestinationIps: pulumi.StringArray{
pulumi.String("string"),
},
DestinationPorts: pulumi.StringArray{
pulumi.String("string"),
},
Protocols: pulumi.StringArray{
pulumi.String("string"),
},
SourceIps: pulumi.StringArray{
pulumi.String("string"),
},
SourcePorts: pulumi.StringArray{
pulumi.String("string"),
},
},
SourceResourceId: pulumi.String("string"),
VerifierWorkspaceId: pulumi.String("string"),
Description: pulumi.String("string"),
Name: pulumi.String("string"),
})
var networkManagerVerifierWorkspaceReachabilityAnalysisIntentResource = new NetworkManagerVerifierWorkspaceReachabilityAnalysisIntent("networkManagerVerifierWorkspaceReachabilityAnalysisIntentResource", NetworkManagerVerifierWorkspaceReachabilityAnalysisIntentArgs.builder()
.destinationResourceId("string")
.ipTraffic(NetworkManagerVerifierWorkspaceReachabilityAnalysisIntentIpTrafficArgs.builder()
.destinationIps("string")
.destinationPorts("string")
.protocols("string")
.sourceIps("string")
.sourcePorts("string")
.build())
.sourceResourceId("string")
.verifierWorkspaceId("string")
.description("string")
.name("string")
.build());
network_manager_verifier_workspace_reachability_analysis_intent_resource = azure.network.NetworkManagerVerifierWorkspaceReachabilityAnalysisIntent("networkManagerVerifierWorkspaceReachabilityAnalysisIntentResource",
destination_resource_id="string",
ip_traffic={
"destination_ips": ["string"],
"destination_ports": ["string"],
"protocols": ["string"],
"source_ips": ["string"],
"source_ports": ["string"],
},
source_resource_id="string",
verifier_workspace_id="string",
description="string",
name="string")
const networkManagerVerifierWorkspaceReachabilityAnalysisIntentResource = new azure.network.NetworkManagerVerifierWorkspaceReachabilityAnalysisIntent("networkManagerVerifierWorkspaceReachabilityAnalysisIntentResource", {
destinationResourceId: "string",
ipTraffic: {
destinationIps: ["string"],
destinationPorts: ["string"],
protocols: ["string"],
sourceIps: ["string"],
sourcePorts: ["string"],
},
sourceResourceId: "string",
verifierWorkspaceId: "string",
description: "string",
name: "string",
});
type: azure:network:NetworkManagerVerifierWorkspaceReachabilityAnalysisIntent
properties:
description: string
destinationResourceId: string
ipTraffic:
destinationIps:
- string
destinationPorts:
- string
protocols:
- string
sourceIps:
- string
sourcePorts:
- string
name: string
sourceResourceId: string
verifierWorkspaceId: string
NetworkManagerVerifierWorkspaceReachabilityAnalysisIntent 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 NetworkManagerVerifierWorkspaceReachabilityAnalysisIntent resource accepts the following input properties:
- Destination
Resource stringId - 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.
- Ip
Traffic NetworkManager Verifier Workspace Reachability Analysis Intent Ip Traffic - An
ip_traffic
block as defined below. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created. - Source
Resource stringId - 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.
- Verifier
Workspace stringId - The ID of the Network Manager Verifier Workspace. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created.
- Description string
- The description of the resource. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created.
- Name string
- 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.
- Destination
Resource stringId - 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.
- Ip
Traffic NetworkManager Verifier Workspace Reachability Analysis Intent Ip Traffic Args - An
ip_traffic
block as defined below. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created. - Source
Resource stringId - 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.
- Verifier
Workspace stringId - The ID of the Network Manager Verifier Workspace. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created.
- Description string
- The description of the resource. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created.
- Name string
- 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.
- destination
Resource StringId - 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.
- ip
Traffic NetworkManager Verifier Workspace Reachability Analysis Intent Ip Traffic - An
ip_traffic
block as defined below. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created. - source
Resource StringId - 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.
- verifier
Workspace StringId - The ID of the Network Manager Verifier Workspace. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created.
- description String
- The description of the resource. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created.
- name String
- 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.
- destination
Resource stringId - 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.
- ip
Traffic NetworkManager Verifier Workspace Reachability Analysis Intent Ip Traffic - An
ip_traffic
block as defined below. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created. - source
Resource stringId - 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.
- verifier
Workspace stringId - The ID of the Network Manager Verifier Workspace. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created.
- description string
- The description of the resource. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created.
- name string
- 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.
- destination_
resource_ strid - 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.
- ip_
traffic NetworkManager Verifier Workspace Reachability Analysis Intent Ip Traffic Args - An
ip_traffic
block as defined below. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created. - source_
resource_ strid - 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.
- verifier_
workspace_ strid - The ID of the Network Manager Verifier Workspace. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created.
- description str
- The description of the resource. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created.
- name str
- 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.
- destination
Resource StringId - 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.
- ip
Traffic Property Map - An
ip_traffic
block as defined below. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created. - source
Resource StringId - 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.
- verifier
Workspace StringId - The ID of the Network Manager Verifier Workspace. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created.
- description String
- The description of the resource. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created.
- name String
- 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.
Outputs
All input properties are implicitly available as output properties. Additionally, the NetworkManagerVerifierWorkspaceReachabilityAnalysisIntent resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing NetworkManagerVerifierWorkspaceReachabilityAnalysisIntent Resource
Get an existing NetworkManagerVerifierWorkspaceReachabilityAnalysisIntent resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: NetworkManagerVerifierWorkspaceReachabilityAnalysisIntentState, opts?: CustomResourceOptions): NetworkManagerVerifierWorkspaceReachabilityAnalysisIntent
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
description: Optional[str] = None,
destination_resource_id: Optional[str] = None,
ip_traffic: Optional[NetworkManagerVerifierWorkspaceReachabilityAnalysisIntentIpTrafficArgs] = None,
name: Optional[str] = None,
source_resource_id: Optional[str] = None,
verifier_workspace_id: Optional[str] = None) -> NetworkManagerVerifierWorkspaceReachabilityAnalysisIntent
func GetNetworkManagerVerifierWorkspaceReachabilityAnalysisIntent(ctx *Context, name string, id IDInput, state *NetworkManagerVerifierWorkspaceReachabilityAnalysisIntentState, opts ...ResourceOption) (*NetworkManagerVerifierWorkspaceReachabilityAnalysisIntent, error)
public static NetworkManagerVerifierWorkspaceReachabilityAnalysisIntent Get(string name, Input<string> id, NetworkManagerVerifierWorkspaceReachabilityAnalysisIntentState? state, CustomResourceOptions? opts = null)
public static NetworkManagerVerifierWorkspaceReachabilityAnalysisIntent get(String name, Output<String> id, NetworkManagerVerifierWorkspaceReachabilityAnalysisIntentState state, CustomResourceOptions options)
resources: _: type: azure:network:NetworkManagerVerifierWorkspaceReachabilityAnalysisIntent get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Description string
- The description of the resource. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created.
- Destination
Resource stringId - 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.
- Ip
Traffic NetworkManager Verifier Workspace Reachability Analysis Intent Ip Traffic - An
ip_traffic
block as defined below. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created. - Name string
- 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.
- Source
Resource stringId - 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.
- Verifier
Workspace stringId - The ID of the Network Manager Verifier Workspace. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created.
- Description string
- The description of the resource. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created.
- Destination
Resource stringId - 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.
- Ip
Traffic NetworkManager Verifier Workspace Reachability Analysis Intent Ip Traffic Args - An
ip_traffic
block as defined below. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created. - Name string
- 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.
- Source
Resource stringId - 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.
- Verifier
Workspace stringId - The ID of the Network Manager Verifier Workspace. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created.
- description String
- The description of the resource. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created.
- destination
Resource StringId - 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.
- ip
Traffic NetworkManager Verifier Workspace Reachability Analysis Intent Ip Traffic - An
ip_traffic
block as defined below. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created. - name String
- 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.
- source
Resource StringId - 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.
- verifier
Workspace StringId - The ID of the Network Manager Verifier Workspace. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created.
- description string
- The description of the resource. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created.
- destination
Resource stringId - 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.
- ip
Traffic NetworkManager Verifier Workspace Reachability Analysis Intent Ip Traffic - An
ip_traffic
block as defined below. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created. - name string
- 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.
- source
Resource stringId - 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.
- verifier
Workspace stringId - The ID of the Network Manager Verifier Workspace. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created.
- description str
- The description of the resource. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created.
- destination_
resource_ strid - 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.
- ip_
traffic NetworkManager Verifier Workspace Reachability Analysis Intent Ip Traffic Args - An
ip_traffic
block as defined below. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created. - name str
- 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.
- source_
resource_ strid - 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.
- verifier_
workspace_ strid - The ID of the Network Manager Verifier Workspace. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created.
- description String
- The description of the resource. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created.
- destination
Resource StringId - 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.
- ip
Traffic Property Map - An
ip_traffic
block as defined below. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created. - name String
- 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.
- source
Resource StringId - 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.
- verifier
Workspace StringId - The ID of the Network Manager Verifier Workspace. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created.
Supporting Types
NetworkManagerVerifierWorkspaceReachabilityAnalysisIntentIpTraffic, NetworkManagerVerifierWorkspaceReachabilityAnalysisIntentIpTrafficArgs
- Destination
Ips List<string> - Specifies a list of IPv4 or IPv6 addresses or ranges using CIDR notation of the source you want to verify. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created.
- Destination
Ports List<string> - Specifies a list of ports or ranges of the destination you want to verify. To specify any port, use
["*"]
. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created. - Protocols List<string>
- Specifies a list of network protocols. Possible values are
Any
,TCP
,UDP
andICMP
. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created. - Source
Ips List<string> - Specifies a list of IPv4 or IPv6 addresses or ranges using CIDR notation of the source you want to verify. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created.
- Source
Ports List<string> - Specifies a list of ports or ranges of the source you want to verify. To specify any port, use
["*"]
. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created.
- Destination
Ips []string - Specifies a list of IPv4 or IPv6 addresses or ranges using CIDR notation of the source you want to verify. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created.
- Destination
Ports []string - Specifies a list of ports or ranges of the destination you want to verify. To specify any port, use
["*"]
. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created. - Protocols []string
- Specifies a list of network protocols. Possible values are
Any
,TCP
,UDP
andICMP
. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created. - Source
Ips []string - Specifies a list of IPv4 or IPv6 addresses or ranges using CIDR notation of the source you want to verify. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created.
- Source
Ports []string - Specifies a list of ports or ranges of the source you want to verify. To specify any port, use
["*"]
. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created.
- destination
Ips List<String> - Specifies a list of IPv4 or IPv6 addresses or ranges using CIDR notation of the source you want to verify. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created.
- destination
Ports List<String> - Specifies a list of ports or ranges of the destination you want to verify. To specify any port, use
["*"]
. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created. - protocols List<String>
- Specifies a list of network protocols. Possible values are
Any
,TCP
,UDP
andICMP
. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created. - source
Ips List<String> - Specifies a list of IPv4 or IPv6 addresses or ranges using CIDR notation of the source you want to verify. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created.
- source
Ports List<String> - Specifies a list of ports or ranges of the source you want to verify. To specify any port, use
["*"]
. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created.
- destination
Ips string[] - Specifies a list of IPv4 or IPv6 addresses or ranges using CIDR notation of the source you want to verify. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created.
- destination
Ports string[] - Specifies a list of ports or ranges of the destination you want to verify. To specify any port, use
["*"]
. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created. - protocols string[]
- Specifies a list of network protocols. Possible values are
Any
,TCP
,UDP
andICMP
. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created. - source
Ips string[] - Specifies a list of IPv4 or IPv6 addresses or ranges using CIDR notation of the source you want to verify. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created.
- source
Ports string[] - Specifies a list of ports or ranges of the source you want to verify. To specify any port, use
["*"]
. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created.
- destination_
ips Sequence[str] - Specifies a list of IPv4 or IPv6 addresses or ranges using CIDR notation of the source you want to verify. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created.
- destination_
ports Sequence[str] - Specifies a list of ports or ranges of the destination you want to verify. To specify any port, use
["*"]
. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created. - protocols Sequence[str]
- Specifies a list of network protocols. Possible values are
Any
,TCP
,UDP
andICMP
. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created. - source_
ips Sequence[str] - Specifies a list of IPv4 or IPv6 addresses or ranges using CIDR notation of the source you want to verify. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created.
- source_
ports Sequence[str] - Specifies a list of ports or ranges of the source you want to verify. To specify any port, use
["*"]
. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created.
- destination
Ips List<String> - Specifies a list of IPv4 or IPv6 addresses or ranges using CIDR notation of the source you want to verify. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created.
- destination
Ports List<String> - Specifies a list of ports or ranges of the destination you want to verify. To specify any port, use
["*"]
. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created. - protocols List<String>
- Specifies a list of network protocols. Possible values are
Any
,TCP
,UDP
andICMP
. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created. - source
Ips List<String> - Specifies a list of IPv4 or IPv6 addresses or ranges using CIDR notation of the source you want to verify. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created.
- source
Ports List<String> - Specifies a list of ports or ranges of the source you want to verify. To specify any port, use
["*"]
. Changing this forces a new Network Manager Verifier Workspace Reachability Analysis Intent to be created.
Import
Network Manager Verifier Workspace Reachability Analysis Intents can be imported using the resource id
, e.g.
$ pulumi import azure:network/networkManagerVerifierWorkspaceReachabilityAnalysisIntent:NetworkManagerVerifierWorkspaceReachabilityAnalysisIntent example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Network/networkManagers/manager1/verifierWorkspaces/workspace1/reachabilityAnalysisIntents/intent1
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Classic pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
azurerm
Terraform Provider.