1. Packages
  2. Azure Native
  3. API Docs
  4. network
  5. ReachabilityAnalysisIntent
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.63.0 published on Tuesday, Sep 24, 2024 by Pulumi

azure-native.network.ReachabilityAnalysisIntent

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.63.0 published on Tuesday, Sep 24, 2024 by Pulumi

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

    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",
        });
    
    });
    
    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
    	})
    }
    
    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());
    
        }
    }
    
    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")
    
    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",
    });
    
    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
    

    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 string
    The unique name of the resource.
    args ReachabilityAnalysisIntentArgs
    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 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 string
    The unique name of the resource.
    args ReachabilityAnalysisIntentArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ReachabilityAnalysisIntentArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args 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 = new AzureNative.Network.Inputs.ReachabilityAnalysisIntentPropertiesArgs
        {
            DestinationResourceId = "string",
            IpTraffic = new AzureNative.Network.Inputs.IPTrafficArgs
            {
                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",
    });
    
    example, err := network.NewReachabilityAnalysisIntent(ctx, "reachabilityAnalysisIntentResource", &network.ReachabilityAnalysisIntentArgs{
    	NetworkManagerName: pulumi.String("string"),
    	Properties: &network.ReachabilityAnalysisIntentPropertiesArgs{
    		DestinationResourceId: pulumi.String("string"),
    		IpTraffic: &network.IPTrafficArgs{
    			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"),
    		Description:      pulumi.String("string"),
    	},
    	ResourceGroupName:              pulumi.String("string"),
    	WorkspaceName:                  pulumi.String("string"),
    	ReachabilityAnalysisIntentName: pulumi.String("string"),
    })
    
    var reachabilityAnalysisIntentResource = new ReachabilityAnalysisIntent("reachabilityAnalysisIntentResource", ReachabilityAnalysisIntentArgs.builder()
        .networkManagerName("string")
        .properties(ReachabilityAnalysisIntentPropertiesArgs.builder()
            .destinationResourceId("string")
            .ipTraffic(IPTrafficArgs.builder()
                .destinationIps("string")
                .destinationPorts("string")
                .protocols("string")
                .sourceIps("string")
                .sourcePorts("string")
                .build())
            .sourceResourceId("string")
            .description("string")
            .build())
        .resourceGroupName("string")
        .workspaceName("string")
        .reachabilityAnalysisIntentName("string")
        .build());
    
    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")
    
    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",
    });
    
    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
    

    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

    The ReachabilityAnalysisIntent resource accepts the following input properties:

    NetworkManagerName string
    The name of the network manager.
    Properties Pulumi.AzureNative.Network.Inputs.ReachabilityAnalysisIntentProperties
    Represents the Reachability Analysis Intent properties.
    ResourceGroupName string
    The name of the resource group.
    WorkspaceName string
    Workspace name.
    ReachabilityAnalysisIntentName string
    Reachability Analysis Intent name.
    NetworkManagerName string
    The name of the network manager.
    Properties ReachabilityAnalysisIntentPropertiesArgs
    Represents the Reachability Analysis Intent properties.
    ResourceGroupName string
    The name of the resource group.
    WorkspaceName string
    Workspace name.
    ReachabilityAnalysisIntentName string
    Reachability Analysis Intent name.
    networkManagerName String
    The name of the network manager.
    properties ReachabilityAnalysisIntentProperties
    Represents the Reachability Analysis Intent properties.
    resourceGroupName String
    The name of the resource group.
    workspaceName String
    Workspace name.
    reachabilityAnalysisIntentName String
    Reachability Analysis Intent name.
    networkManagerName string
    The name of the network manager.
    properties ReachabilityAnalysisIntentProperties
    Represents the Reachability Analysis Intent properties.
    resourceGroupName string
    The name of the resource group.
    workspaceName string
    Workspace name.
    reachabilityAnalysisIntentName string
    Reachability Analysis Intent name.
    network_manager_name str
    The name of the network manager.
    properties ReachabilityAnalysisIntentPropertiesArgs
    Represents the Reachability Analysis Intent properties.
    resource_group_name str
    The name of the resource group.
    workspace_name str
    Workspace name.
    reachability_analysis_intent_name str
    Reachability Analysis Intent name.
    networkManagerName String
    The name of the network manager.
    properties Property Map
    Represents the Reachability Analysis Intent properties.
    resourceGroupName String
    The name of the resource group.
    workspaceName String
    Workspace name.
    reachabilityAnalysisIntentName 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 List<string>
    List of destination IP addresses of the traffic..
    DestinationPorts List<string>
    The destination ports of the traffic.
    Protocols List<Union<string, Pulumi.AzureNative.Network.NetworkProtocol>>
    SourceIps List<string>
    List of source IP addresses of the traffic..
    SourcePorts List<string>
    The source ports of the traffic.
    DestinationIps []string
    List of destination IP addresses of the traffic..
    DestinationPorts []string
    The destination ports of the traffic.
    Protocols []string
    SourceIps []string
    List of source IP addresses of the traffic..
    SourcePorts []string
    The source ports of the traffic.
    destinationIps List<String>
    List of destination IP addresses of the traffic..
    destinationPorts List<String>
    The destination ports of the traffic.
    protocols List<Either<String,NetworkProtocol>>
    sourceIps List<String>
    List of source IP addresses of the traffic..
    sourcePorts List<String>
    The source ports of the traffic.
    destinationIps string[]
    List of destination IP addresses of the traffic..
    destinationPorts string[]
    The destination ports of the traffic.
    protocols (string | NetworkProtocol)[]
    sourceIps string[]
    List of source IP addresses of the traffic..
    sourcePorts string[]
    The source ports of the traffic.
    destination_ips Sequence[str]
    List of destination IP addresses of the traffic..
    destination_ports Sequence[str]
    The destination ports of the traffic.
    protocols Sequence[Union[str, NetworkProtocol]]
    source_ips Sequence[str]
    List of source IP addresses of the traffic..
    source_ports Sequence[str]
    The source ports of the traffic.
    destinationIps List<String>
    List of destination IP addresses of the traffic..
    destinationPorts List<String>
    The destination ports of the traffic.
    protocols List<String | "Any" | "TCP" | "UDP" | "ICMP">
    sourceIps List<String>
    List of source IP addresses of the traffic..
    sourcePorts List<String>
    The source ports of the traffic.

    IPTrafficResponse, IPTrafficResponseArgs

    DestinationIps List<string>
    List of destination IP addresses of the traffic..
    DestinationPorts List<string>
    The destination ports of the traffic.
    Protocols List<string>
    SourceIps List<string>
    List of source IP addresses of the traffic..
    SourcePorts List<string>
    The source ports of the traffic.
    DestinationIps []string
    List of destination IP addresses of the traffic..
    DestinationPorts []string
    The destination ports of the traffic.
    Protocols []string
    SourceIps []string
    List of source IP addresses of the traffic..
    SourcePorts []string
    The source ports of the traffic.
    destinationIps List<String>
    List of destination IP addresses of the traffic..
    destinationPorts List<String>
    The destination ports of the traffic.
    protocols List<String>
    sourceIps List<String>
    List of source IP addresses of the traffic..
    sourcePorts List<String>
    The source ports of the traffic.
    destinationIps string[]
    List of destination IP addresses of the traffic..
    destinationPorts string[]
    The destination ports of the traffic.
    protocols string[]
    sourceIps string[]
    List of source IP addresses of the traffic..
    sourcePorts string[]
    The source ports of the traffic.
    destination_ips Sequence[str]
    List of destination IP addresses of the traffic..
    destination_ports Sequence[str]
    The destination ports of the traffic.
    protocols Sequence[str]
    source_ips Sequence[str]
    List of source IP addresses of the traffic..
    source_ports Sequence[str]
    The source ports of the traffic.
    destinationIps List<String>
    List of destination IP addresses of the traffic..
    destinationPorts List<String>
    The destination ports of the traffic.
    protocols List<String>
    sourceIps List<String>
    List of source IP addresses of the traffic..
    sourcePorts 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 string
    Destination resource id to verify the reachability path of.
    IpTraffic Pulumi.AzureNative.Network.Inputs.IPTraffic
    IP traffic information.
    SourceResourceId string
    Source resource id to verify the reachability path of.
    Description string
    DestinationResourceId string
    Destination resource id to verify the reachability path of.
    IpTraffic IPTraffic
    IP traffic information.
    SourceResourceId string
    Source resource id to verify the reachability path of.
    Description string
    destinationResourceId String
    Destination resource id to verify the reachability path of.
    ipTraffic IPTraffic
    IP traffic information.
    sourceResourceId String
    Source resource id to verify the reachability path of.
    description String
    destinationResourceId string
    Destination resource id to verify the reachability path of.
    ipTraffic IPTraffic
    IP traffic information.
    sourceResourceId string
    Source resource id to verify the reachability path of.
    description string
    destination_resource_id str
    Destination resource id to verify the reachability path of.
    ip_traffic IPTraffic
    IP traffic information.
    source_resource_id str
    Source resource id to verify the reachability path of.
    description str
    destinationResourceId String
    Destination resource id to verify the reachability path of.
    ipTraffic Property Map
    IP traffic information.
    sourceResourceId String
    Source resource id to verify the reachability path of.
    description String

    ReachabilityAnalysisIntentPropertiesResponse, ReachabilityAnalysisIntentPropertiesResponseArgs

    DestinationResourceId string
    Destination resource id to verify the reachability path of.
    IpTraffic Pulumi.AzureNative.Network.Inputs.IPTrafficResponse
    IP traffic information.
    ProvisioningState string
    Provisioning states of a resource.
    SourceResourceId string
    Source resource id to verify the reachability path of.
    Description string
    DestinationResourceId string
    Destination resource id to verify the reachability path of.
    IpTraffic IPTrafficResponse
    IP traffic information.
    ProvisioningState string
    Provisioning states of a resource.
    SourceResourceId string
    Source resource id to verify the reachability path of.
    Description string
    destinationResourceId String
    Destination resource id to verify the reachability path of.
    ipTraffic IPTrafficResponse
    IP traffic information.
    provisioningState String
    Provisioning states of a resource.
    sourceResourceId String
    Source resource id to verify the reachability path of.
    description String
    destinationResourceId string
    Destination resource id to verify the reachability path of.
    ipTraffic IPTrafficResponse
    IP traffic information.
    provisioningState string
    Provisioning states of a resource.
    sourceResourceId string
    Source resource id to verify the reachability path of.
    description string
    destination_resource_id str
    Destination resource id to verify the reachability path of.
    ip_traffic IPTrafficResponse
    IP traffic information.
    provisioning_state str
    Provisioning states of a resource.
    source_resource_id str
    Source resource id to verify the reachability path of.
    description str
    destinationResourceId String
    Destination resource id to verify the reachability path of.
    ipTraffic Property Map
    IP traffic information.
    provisioningState String
    Provisioning states of a resource.
    sourceResourceId 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} 
    

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

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.63.0 published on Tuesday, Sep 24, 2024 by Pulumi