1. Packages
  2. Azure Native v2
  3. API Docs
  4. network
  5. ReachabilityAnalysisIntent
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

azure-native-v2.network.ReachabilityAnalysisIntent

Explore with Pulumi AI

Configuration information or intent on which to do the analysis on. Azure REST API version: 2024-01-01-preview.

Other available API versions: 2024-05-01.

Example Usage

ReachabilityAnalysisIntentCreate

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var reachabilityAnalysisIntent = new AzureNative.Network.ReachabilityAnalysisIntent("reachabilityAnalysisIntent", new()
    {
        NetworkManagerName = "testNetworkManager",
        Properties = new AzureNative.Network.Inputs.ReachabilityAnalysisIntentPropertiesArgs
        {
            Description = "A sample reachability analysis intent",
            DestinationResourceId = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Compute/virtualMachines/testVmDest",
            IpTraffic = new AzureNative.Network.Inputs.IPTrafficArgs
            {
                DestinationIps = new[]
                {
                    "10.4.0.1",
                },
                DestinationPorts = new[]
                {
                    "0",
                },
                Protocols = new[]
                {
                    AzureNative.Network.NetworkProtocol.Any,
                },
                SourceIps = new[]
                {
                    "10.4.0.0",
                },
                SourcePorts = new[]
                {
                    "0",
                },
            },
            SourceResourceId = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Compute/virtualMachines/testVmSrc",
        },
        ReachabilityAnalysisIntentName = "testAnalysisIntentName",
        ResourceGroupName = "rg1",
        WorkspaceName = "testWorkspace",
    });

});
Copy
package main

import (
	network "github.com/pulumi/pulumi-azure-native-sdk/network/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := network.NewReachabilityAnalysisIntent(ctx, "reachabilityAnalysisIntent", &network.ReachabilityAnalysisIntentArgs{
			NetworkManagerName: pulumi.String("testNetworkManager"),
			Properties: &network.ReachabilityAnalysisIntentPropertiesArgs{
				Description:           pulumi.String("A sample reachability analysis intent"),
				DestinationResourceId: pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Compute/virtualMachines/testVmDest"),
				IpTraffic: &network.IPTrafficArgs{
					DestinationIps: pulumi.StringArray{
						pulumi.String("10.4.0.1"),
					},
					DestinationPorts: pulumi.StringArray{
						pulumi.String("0"),
					},
					Protocols: pulumi.StringArray{
						pulumi.String(network.NetworkProtocolAny),
					},
					SourceIps: pulumi.StringArray{
						pulumi.String("10.4.0.0"),
					},
					SourcePorts: pulumi.StringArray{
						pulumi.String("0"),
					},
				},
				SourceResourceId: pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Compute/virtualMachines/testVmSrc"),
			},
			ReachabilityAnalysisIntentName: pulumi.String("testAnalysisIntentName"),
			ResourceGroupName:              pulumi.String("rg1"),
			WorkspaceName:                  pulumi.String("testWorkspace"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.network.ReachabilityAnalysisIntent;
import com.pulumi.azurenative.network.ReachabilityAnalysisIntentArgs;
import com.pulumi.azurenative.network.inputs.ReachabilityAnalysisIntentPropertiesArgs;
import com.pulumi.azurenative.network.inputs.IPTrafficArgs;
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 reachabilityAnalysisIntent = new ReachabilityAnalysisIntent("reachabilityAnalysisIntent", ReachabilityAnalysisIntentArgs.builder()
            .networkManagerName("testNetworkManager")
            .properties(ReachabilityAnalysisIntentPropertiesArgs.builder()
                .description("A sample reachability analysis intent")
                .destinationResourceId("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Compute/virtualMachines/testVmDest")
                .ipTraffic(IPTrafficArgs.builder()
                    .destinationIps("10.4.0.1")
                    .destinationPorts("0")
                    .protocols("Any")
                    .sourceIps("10.4.0.0")
                    .sourcePorts("0")
                    .build())
                .sourceResourceId("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Compute/virtualMachines/testVmSrc")
                .build())
            .reachabilityAnalysisIntentName("testAnalysisIntentName")
            .resourceGroupName("rg1")
            .workspaceName("testWorkspace")
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const reachabilityAnalysisIntent = new azure_native.network.ReachabilityAnalysisIntent("reachabilityAnalysisIntent", {
    networkManagerName: "testNetworkManager",
    properties: {
        description: "A sample reachability analysis intent",
        destinationResourceId: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Compute/virtualMachines/testVmDest",
        ipTraffic: {
            destinationIps: ["10.4.0.1"],
            destinationPorts: ["0"],
            protocols: [azure_native.network.NetworkProtocol.Any],
            sourceIps: ["10.4.0.0"],
            sourcePorts: ["0"],
        },
        sourceResourceId: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Compute/virtualMachines/testVmSrc",
    },
    reachabilityAnalysisIntentName: "testAnalysisIntentName",
    resourceGroupName: "rg1",
    workspaceName: "testWorkspace",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

reachability_analysis_intent = azure_native.network.ReachabilityAnalysisIntent("reachabilityAnalysisIntent",
    network_manager_name="testNetworkManager",
    properties={
        "description": "A sample reachability analysis intent",
        "destination_resource_id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Compute/virtualMachines/testVmDest",
        "ip_traffic": {
            "destination_ips": ["10.4.0.1"],
            "destination_ports": ["0"],
            "protocols": [azure_native.network.NetworkProtocol.ANY],
            "source_ips": ["10.4.0.0"],
            "source_ports": ["0"],
        },
        "source_resource_id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Compute/virtualMachines/testVmSrc",
    },
    reachability_analysis_intent_name="testAnalysisIntentName",
    resource_group_name="rg1",
    workspace_name="testWorkspace")
Copy
resources:
  reachabilityAnalysisIntent:
    type: azure-native:network:ReachabilityAnalysisIntent
    properties:
      networkManagerName: testNetworkManager
      properties:
        description: A sample reachability analysis intent
        destinationResourceId: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Compute/virtualMachines/testVmDest
        ipTraffic:
          destinationIps:
            - 10.4.0.1
          destinationPorts:
            - '0'
          protocols:
            - Any
          sourceIps:
            - 10.4.0.0
          sourcePorts:
            - '0'
        sourceResourceId: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Compute/virtualMachines/testVmSrc
      reachabilityAnalysisIntentName: testAnalysisIntentName
      resourceGroupName: rg1
      workspaceName: testWorkspace
Copy

Create ReachabilityAnalysisIntent Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new ReachabilityAnalysisIntent(name: string, args: ReachabilityAnalysisIntentArgs, opts?: CustomResourceOptions);
@overload
def ReachabilityAnalysisIntent(resource_name: str,
                               args: ReachabilityAnalysisIntentArgs,
                               opts: Optional[ResourceOptions] = None)

@overload
def ReachabilityAnalysisIntent(resource_name: str,
                               opts: Optional[ResourceOptions] = None,
                               network_manager_name: Optional[str] = None,
                               properties: Optional[ReachabilityAnalysisIntentPropertiesArgs] = None,
                               resource_group_name: Optional[str] = None,
                               workspace_name: Optional[str] = None,
                               reachability_analysis_intent_name: Optional[str] = None)
func NewReachabilityAnalysisIntent(ctx *Context, name string, args ReachabilityAnalysisIntentArgs, opts ...ResourceOption) (*ReachabilityAnalysisIntent, error)
public ReachabilityAnalysisIntent(string name, ReachabilityAnalysisIntentArgs args, CustomResourceOptions? opts = null)
public ReachabilityAnalysisIntent(String name, ReachabilityAnalysisIntentArgs args)
public ReachabilityAnalysisIntent(String name, ReachabilityAnalysisIntentArgs args, CustomResourceOptions options)
type: azure-native:network:ReachabilityAnalysisIntent
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. ReachabilityAnalysisIntentArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. ReachabilityAnalysisIntentArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. ReachabilityAnalysisIntentArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. ReachabilityAnalysisIntentArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. ReachabilityAnalysisIntentArgs
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 reachabilityAnalysisIntentResource = new AzureNative.Network.ReachabilityAnalysisIntent("reachabilityAnalysisIntentResource", new()
{
    NetworkManagerName = "string",
    Properties = 
    {
        { "destinationResourceId", "string" },
        { "ipTraffic", 
        {
            { "destinationIps", new[]
            {
                "string",
            } },
            { "destinationPorts", new[]
            {
                "string",
            } },
            { "protocols", new[]
            {
                "string",
            } },
            { "sourceIps", new[]
            {
                "string",
            } },
            { "sourcePorts", new[]
            {
                "string",
            } },
        } },
        { "sourceResourceId", "string" },
        { "description", "string" },
    },
    ResourceGroupName = "string",
    WorkspaceName = "string",
    ReachabilityAnalysisIntentName = "string",
});
Copy
example, err := network.NewReachabilityAnalysisIntent(ctx, "reachabilityAnalysisIntentResource", &network.ReachabilityAnalysisIntentArgs{
	NetworkManagerName: "string",
	Properties: map[string]interface{}{
		"destinationResourceId": "string",
		"ipTraffic": map[string]interface{}{
			"destinationIps": []string{
				"string",
			},
			"destinationPorts": []string{
				"string",
			},
			"protocols": []string{
				"string",
			},
			"sourceIps": []string{
				"string",
			},
			"sourcePorts": []string{
				"string",
			},
		},
		"sourceResourceId": "string",
		"description":      "string",
	},
	ResourceGroupName:              "string",
	WorkspaceName:                  "string",
	ReachabilityAnalysisIntentName: "string",
})
Copy
var reachabilityAnalysisIntentResource = new ReachabilityAnalysisIntent("reachabilityAnalysisIntentResource", ReachabilityAnalysisIntentArgs.builder()
    .networkManagerName("string")
    .properties(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .resourceGroupName("string")
    .workspaceName("string")
    .reachabilityAnalysisIntentName("string")
    .build());
Copy
reachability_analysis_intent_resource = azure_native.network.ReachabilityAnalysisIntent("reachabilityAnalysisIntentResource",
    network_manager_name=string,
    properties={
        destinationResourceId: string,
        ipTraffic: {
            destinationIps: [string],
            destinationPorts: [string],
            protocols: [string],
            sourceIps: [string],
            sourcePorts: [string],
        },
        sourceResourceId: string,
        description: string,
    },
    resource_group_name=string,
    workspace_name=string,
    reachability_analysis_intent_name=string)
Copy
const reachabilityAnalysisIntentResource = new azure_native.network.ReachabilityAnalysisIntent("reachabilityAnalysisIntentResource", {
    networkManagerName: "string",
    properties: {
        destinationResourceId: "string",
        ipTraffic: {
            destinationIps: ["string"],
            destinationPorts: ["string"],
            protocols: ["string"],
            sourceIps: ["string"],
            sourcePorts: ["string"],
        },
        sourceResourceId: "string",
        description: "string",
    },
    resourceGroupName: "string",
    workspaceName: "string",
    reachabilityAnalysisIntentName: "string",
});
Copy
type: azure-native:network:ReachabilityAnalysisIntent
properties:
    networkManagerName: string
    properties:
        description: string
        destinationResourceId: string
        ipTraffic:
            destinationIps:
                - string
            destinationPorts:
                - string
            protocols:
                - string
            sourceIps:
                - string
            sourcePorts:
                - string
        sourceResourceId: string
    reachabilityAnalysisIntentName: string
    resourceGroupName: string
    workspaceName: string
Copy

ReachabilityAnalysisIntent 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 ReachabilityAnalysisIntent resource accepts the following input properties:

NetworkManagerName
This property is required.
Changes to this property will trigger replacement.
string
The name of the network manager.
Properties This property is required. Pulumi.AzureNative.Network.Inputs.ReachabilityAnalysisIntentProperties
Represents the Reachability Analysis Intent properties.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group.
WorkspaceName
This property is required.
Changes to this property will trigger replacement.
string
Workspace name.
ReachabilityAnalysisIntentName Changes to this property will trigger replacement. string
Reachability Analysis Intent name.
NetworkManagerName
This property is required.
Changes to this property will trigger replacement.
string
The name of the network manager.
Properties This property is required. ReachabilityAnalysisIntentPropertiesArgs
Represents the Reachability Analysis Intent properties.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group.
WorkspaceName
This property is required.
Changes to this property will trigger replacement.
string
Workspace name.
ReachabilityAnalysisIntentName Changes to this property will trigger replacement. string
Reachability Analysis Intent name.
networkManagerName
This property is required.
Changes to this property will trigger replacement.
String
The name of the network manager.
properties This property is required. ReachabilityAnalysisIntentProperties
Represents the Reachability Analysis Intent properties.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group.
workspaceName
This property is required.
Changes to this property will trigger replacement.
String
Workspace name.
reachabilityAnalysisIntentName Changes to this property will trigger replacement. String
Reachability Analysis Intent name.
networkManagerName
This property is required.
Changes to this property will trigger replacement.
string
The name of the network manager.
properties This property is required. ReachabilityAnalysisIntentProperties
Represents the Reachability Analysis Intent properties.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group.
workspaceName
This property is required.
Changes to this property will trigger replacement.
string
Workspace name.
reachabilityAnalysisIntentName Changes to this property will trigger replacement. string
Reachability Analysis Intent name.
network_manager_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the network manager.
properties This property is required. ReachabilityAnalysisIntentPropertiesArgs
Represents the Reachability Analysis Intent properties.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group.
workspace_name
This property is required.
Changes to this property will trigger replacement.
str
Workspace name.
reachability_analysis_intent_name Changes to this property will trigger replacement. str
Reachability Analysis Intent name.
networkManagerName
This property is required.
Changes to this property will trigger replacement.
String
The name of the network manager.
properties This property is required. Property Map
Represents the Reachability Analysis Intent properties.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group.
workspaceName
This property is required.
Changes to this property will trigger replacement.
String
Workspace name.
reachabilityAnalysisIntentName Changes to this property will trigger replacement. String
Reachability Analysis Intent name.

Outputs

All input properties are implicitly available as output properties. Additionally, the ReachabilityAnalysisIntent resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource
SystemData Pulumi.AzureNative.Network.Outputs.SystemDataResponse
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"
Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource
SystemData SystemDataResponse
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"
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource
systemData SystemDataResponse
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"
id string
The provider-assigned unique ID for this managed resource.
name string
The name of the resource
systemData SystemDataResponse
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"
id str
The provider-assigned unique ID for this managed resource.
name str
The name of the resource
system_data SystemDataResponse
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"
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource
systemData 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

IPTraffic
, IPTrafficArgs

DestinationIps This property is required. List<string>
List of destination IP addresses of the traffic..
DestinationPorts This property is required. List<string>
The destination ports of the traffic.
Protocols This property is required. List<Union<string, Pulumi.AzureNative.Network.NetworkProtocol>>
SourceIps This property is required. List<string>
List of source IP addresses of the traffic..
SourcePorts This property is required. List<string>
The source ports of the traffic.
DestinationIps This property is required. []string
List of destination IP addresses of the traffic..
DestinationPorts This property is required. []string
The destination ports of the traffic.
Protocols This property is required. []string
SourceIps This property is required. []string
List of source IP addresses of the traffic..
SourcePorts This property is required. []string
The source ports of the traffic.
destinationIps This property is required. List<String>
List of destination IP addresses of the traffic..
destinationPorts This property is required. List<String>
The destination ports of the traffic.
protocols This property is required. List<Either<String,NetworkProtocol>>
sourceIps This property is required. List<String>
List of source IP addresses of the traffic..
sourcePorts This property is required. List<String>
The source ports of the traffic.
destinationIps This property is required. string[]
List of destination IP addresses of the traffic..
destinationPorts This property is required. string[]
The destination ports of the traffic.
protocols This property is required. (string | NetworkProtocol)[]
sourceIps This property is required. string[]
List of source IP addresses of the traffic..
sourcePorts This property is required. string[]
The source ports of the traffic.
destination_ips This property is required. Sequence[str]
List of destination IP addresses of the traffic..
destination_ports This property is required. Sequence[str]
The destination ports of the traffic.
protocols This property is required. Sequence[Union[str, NetworkProtocol]]
source_ips This property is required. Sequence[str]
List of source IP addresses of the traffic..
source_ports This property is required. Sequence[str]
The source ports of the traffic.
destinationIps This property is required. List<String>
List of destination IP addresses of the traffic..
destinationPorts This property is required. List<String>
The destination ports of the traffic.
protocols This property is required. List<String | "Any" | "TCP" | "UDP" | "ICMP">
sourceIps This property is required. List<String>
List of source IP addresses of the traffic..
sourcePorts This property is required. List<String>
The source ports of the traffic.

IPTrafficResponse
, IPTrafficResponseArgs

DestinationIps This property is required. List<string>
List of destination IP addresses of the traffic..
DestinationPorts This property is required. List<string>
The destination ports of the traffic.
Protocols This property is required. List<string>
SourceIps This property is required. List<string>
List of source IP addresses of the traffic..
SourcePorts This property is required. List<string>
The source ports of the traffic.
DestinationIps This property is required. []string
List of destination IP addresses of the traffic..
DestinationPorts This property is required. []string
The destination ports of the traffic.
Protocols This property is required. []string
SourceIps This property is required. []string
List of source IP addresses of the traffic..
SourcePorts This property is required. []string
The source ports of the traffic.
destinationIps This property is required. List<String>
List of destination IP addresses of the traffic..
destinationPorts This property is required. List<String>
The destination ports of the traffic.
protocols This property is required. List<String>
sourceIps This property is required. List<String>
List of source IP addresses of the traffic..
sourcePorts This property is required. List<String>
The source ports of the traffic.
destinationIps This property is required. string[]
List of destination IP addresses of the traffic..
destinationPorts This property is required. string[]
The destination ports of the traffic.
protocols This property is required. string[]
sourceIps This property is required. string[]
List of source IP addresses of the traffic..
sourcePorts This property is required. string[]
The source ports of the traffic.
destination_ips This property is required. Sequence[str]
List of destination IP addresses of the traffic..
destination_ports This property is required. Sequence[str]
The destination ports of the traffic.
protocols This property is required. Sequence[str]
source_ips This property is required. Sequence[str]
List of source IP addresses of the traffic..
source_ports This property is required. Sequence[str]
The source ports of the traffic.
destinationIps This property is required. List<String>
List of destination IP addresses of the traffic..
destinationPorts This property is required. List<String>
The destination ports of the traffic.
protocols This property is required. List<String>
sourceIps This property is required. List<String>
List of source IP addresses of the traffic..
sourcePorts This property is required. List<String>
The source ports of the traffic.

NetworkProtocol
, NetworkProtocolArgs

Any
Any
TCP
TCP
UDP
UDP
ICMP
ICMP
NetworkProtocolAny
Any
NetworkProtocolTCP
TCP
NetworkProtocolUDP
UDP
NetworkProtocolICMP
ICMP
Any
Any
TCP
TCP
UDP
UDP
ICMP
ICMP
Any
Any
TCP
TCP
UDP
UDP
ICMP
ICMP
ANY
Any
TCP
TCP
UDP
UDP
ICMP
ICMP
"Any"
Any
"TCP"
TCP
"UDP"
UDP
"ICMP"
ICMP

ReachabilityAnalysisIntentProperties
, ReachabilityAnalysisIntentPropertiesArgs

DestinationResourceId This property is required. string
Destination resource id to verify the reachability path of.
IpTraffic This property is required. Pulumi.AzureNative.Network.Inputs.IPTraffic
IP traffic information.
SourceResourceId This property is required. string
Source resource id to verify the reachability path of.
Description string
DestinationResourceId This property is required. string
Destination resource id to verify the reachability path of.
IpTraffic This property is required. IPTraffic
IP traffic information.
SourceResourceId This property is required. string
Source resource id to verify the reachability path of.
Description string
destinationResourceId This property is required. String
Destination resource id to verify the reachability path of.
ipTraffic This property is required. IPTraffic
IP traffic information.
sourceResourceId This property is required. String
Source resource id to verify the reachability path of.
description String
destinationResourceId This property is required. string
Destination resource id to verify the reachability path of.
ipTraffic This property is required. IPTraffic
IP traffic information.
sourceResourceId This property is required. string
Source resource id to verify the reachability path of.
description string
destination_resource_id This property is required. str
Destination resource id to verify the reachability path of.
ip_traffic This property is required. IPTraffic
IP traffic information.
source_resource_id This property is required. str
Source resource id to verify the reachability path of.
description str
destinationResourceId This property is required. String
Destination resource id to verify the reachability path of.
ipTraffic This property is required. Property Map
IP traffic information.
sourceResourceId This property is required. String
Source resource id to verify the reachability path of.
description String

ReachabilityAnalysisIntentPropertiesResponse
, ReachabilityAnalysisIntentPropertiesResponseArgs

DestinationResourceId This property is required. string
Destination resource id to verify the reachability path of.
IpTraffic This property is required. Pulumi.AzureNative.Network.Inputs.IPTrafficResponse
IP traffic information.
ProvisioningState This property is required. string
Provisioning states of a resource.
SourceResourceId This property is required. string
Source resource id to verify the reachability path of.
Description string
DestinationResourceId This property is required. string
Destination resource id to verify the reachability path of.
IpTraffic This property is required. IPTrafficResponse
IP traffic information.
ProvisioningState This property is required. string
Provisioning states of a resource.
SourceResourceId This property is required. string
Source resource id to verify the reachability path of.
Description string
destinationResourceId This property is required. String
Destination resource id to verify the reachability path of.
ipTraffic This property is required. IPTrafficResponse
IP traffic information.
provisioningState This property is required. String
Provisioning states of a resource.
sourceResourceId This property is required. String
Source resource id to verify the reachability path of.
description String
destinationResourceId This property is required. string
Destination resource id to verify the reachability path of.
ipTraffic This property is required. IPTrafficResponse
IP traffic information.
provisioningState This property is required. string
Provisioning states of a resource.
sourceResourceId This property is required. string
Source resource id to verify the reachability path of.
description string
destination_resource_id This property is required. str
Destination resource id to verify the reachability path of.
ip_traffic This property is required. IPTrafficResponse
IP traffic information.
provisioning_state This property is required. str
Provisioning states of a resource.
source_resource_id This property is required. str
Source resource id to verify the reachability path of.
description str
destinationResourceId This property is required. String
Destination resource id to verify the reachability path of.
ipTraffic This property is required. Property Map
IP traffic information.
provisioningState This property is required. String
Provisioning states of a resource.
sourceResourceId This property is required. String
Source resource id to verify the reachability path of.
description String

SystemDataResponse
, SystemDataResponseArgs

CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The type of identity that last modified the resource.
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The type of identity that last modified the resource.
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The type of identity that last modified the resource.
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.
createdAt string
The timestamp of resource creation (UTC).
createdBy string
The identity that created the resource.
createdByType string
The type of identity that created the resource.
lastModifiedAt string
The type of identity that last modified the resource.
lastModifiedBy string
The identity that last modified the resource.
lastModifiedByType string
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_type str
The type of identity that created the resource.
last_modified_at str
The type of identity that last modified the resource.
last_modified_by str
The identity that last modified the resource.
last_modified_by_type str
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The type of identity that last modified the resource.
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.

Import

An existing resource can be imported using its type token, name, and identifier, e.g.

$ pulumi import azure-native:network:ReachabilityAnalysisIntent testAnalysisIntentName /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkManagers/{networkManagerName}/verifierWorkspaces/{workspaceName}/reachabilityAnalysisIntents/{reachabilityAnalysisIntentName} 
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
azure-native-v2 pulumi/pulumi-azure-native
License
Apache-2.0