azure-native.network.ReachabilityAnalysisRun
Explore with Pulumi AI
Configuration information for analysis run. Azure REST API version: 2024-01-01-preview.
Example Usage
ReachabilityAnalysisRunCreate
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var reachabilityAnalysisRun = new AzureNative.Network.ReachabilityAnalysisRun("reachabilityAnalysisRun", new()
{
NetworkManagerName = "testNetworkManager",
Properties = new AzureNative.Network.Inputs.ReachabilityAnalysisRunPropertiesArgs
{
Description = "A sample reachability analysis run",
IntentId = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Network/networkManagers/testNetworkManager/verifierWorkspaces/testVerifierWorkspace1/reachabilityAnalysisIntents/testReachabilityAnalysisIntenant1",
},
ReachabilityAnalysisRunName = "testAnalysisRunName",
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.NewReachabilityAnalysisRun(ctx, "reachabilityAnalysisRun", &network.ReachabilityAnalysisRunArgs{
NetworkManagerName: pulumi.String("testNetworkManager"),
Properties: &network.ReachabilityAnalysisRunPropertiesArgs{
Description: pulumi.String("A sample reachability analysis run"),
IntentId: pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Network/networkManagers/testNetworkManager/verifierWorkspaces/testVerifierWorkspace1/reachabilityAnalysisIntents/testReachabilityAnalysisIntenant1"),
},
ReachabilityAnalysisRunName: pulumi.String("testAnalysisRunName"),
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.ReachabilityAnalysisRun;
import com.pulumi.azurenative.network.ReachabilityAnalysisRunArgs;
import com.pulumi.azurenative.network.inputs.ReachabilityAnalysisRunPropertiesArgs;
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 reachabilityAnalysisRun = new ReachabilityAnalysisRun("reachabilityAnalysisRun", ReachabilityAnalysisRunArgs.builder()
.networkManagerName("testNetworkManager")
.properties(ReachabilityAnalysisRunPropertiesArgs.builder()
.description("A sample reachability analysis run")
.intentId("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Network/networkManagers/testNetworkManager/verifierWorkspaces/testVerifierWorkspace1/reachabilityAnalysisIntents/testReachabilityAnalysisIntenant1")
.build())
.reachabilityAnalysisRunName("testAnalysisRunName")
.resourceGroupName("rg1")
.workspaceName("testWorkspace")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
reachability_analysis_run = azure_native.network.ReachabilityAnalysisRun("reachabilityAnalysisRun",
network_manager_name="testNetworkManager",
properties={
"description": "A sample reachability analysis run",
"intent_id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Network/networkManagers/testNetworkManager/verifierWorkspaces/testVerifierWorkspace1/reachabilityAnalysisIntents/testReachabilityAnalysisIntenant1",
},
reachability_analysis_run_name="testAnalysisRunName",
resource_group_name="rg1",
workspace_name="testWorkspace")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const reachabilityAnalysisRun = new azure_native.network.ReachabilityAnalysisRun("reachabilityAnalysisRun", {
networkManagerName: "testNetworkManager",
properties: {
description: "A sample reachability analysis run",
intentId: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Network/networkManagers/testNetworkManager/verifierWorkspaces/testVerifierWorkspace1/reachabilityAnalysisIntents/testReachabilityAnalysisIntenant1",
},
reachabilityAnalysisRunName: "testAnalysisRunName",
resourceGroupName: "rg1",
workspaceName: "testWorkspace",
});
resources:
reachabilityAnalysisRun:
type: azure-native:network:ReachabilityAnalysisRun
properties:
networkManagerName: testNetworkManager
properties:
description: A sample reachability analysis run
intentId: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Network/networkManagers/testNetworkManager/verifierWorkspaces/testVerifierWorkspace1/reachabilityAnalysisIntents/testReachabilityAnalysisIntenant1
reachabilityAnalysisRunName: testAnalysisRunName
resourceGroupName: rg1
workspaceName: testWorkspace
Create ReachabilityAnalysisRun Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ReachabilityAnalysisRun(name: string, args: ReachabilityAnalysisRunArgs, opts?: CustomResourceOptions);
@overload
def ReachabilityAnalysisRun(resource_name: str,
args: ReachabilityAnalysisRunArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ReachabilityAnalysisRun(resource_name: str,
opts: Optional[ResourceOptions] = None,
network_manager_name: Optional[str] = None,
properties: Optional[ReachabilityAnalysisRunPropertiesArgs] = None,
resource_group_name: Optional[str] = None,
workspace_name: Optional[str] = None,
reachability_analysis_run_name: Optional[str] = None)
func NewReachabilityAnalysisRun(ctx *Context, name string, args ReachabilityAnalysisRunArgs, opts ...ResourceOption) (*ReachabilityAnalysisRun, error)
public ReachabilityAnalysisRun(string name, ReachabilityAnalysisRunArgs args, CustomResourceOptions? opts = null)
public ReachabilityAnalysisRun(String name, ReachabilityAnalysisRunArgs args)
public ReachabilityAnalysisRun(String name, ReachabilityAnalysisRunArgs args, CustomResourceOptions options)
type: azure-native:network:ReachabilityAnalysisRun
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 ReachabilityAnalysisRunArgs
- 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 ReachabilityAnalysisRunArgs
- 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 ReachabilityAnalysisRunArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ReachabilityAnalysisRunArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ReachabilityAnalysisRunArgs
- 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 reachabilityAnalysisRunResource = new AzureNative.Network.ReachabilityAnalysisRun("reachabilityAnalysisRunResource", new()
{
NetworkManagerName = "string",
Properties = new AzureNative.Network.Inputs.ReachabilityAnalysisRunPropertiesArgs
{
IntentId = "string",
Description = "string",
},
ResourceGroupName = "string",
WorkspaceName = "string",
ReachabilityAnalysisRunName = "string",
});
example, err := network.NewReachabilityAnalysisRun(ctx, "reachabilityAnalysisRunResource", &network.ReachabilityAnalysisRunArgs{
NetworkManagerName: pulumi.String("string"),
Properties: &network.ReachabilityAnalysisRunPropertiesArgs{
IntentId: pulumi.String("string"),
Description: pulumi.String("string"),
},
ResourceGroupName: pulumi.String("string"),
WorkspaceName: pulumi.String("string"),
ReachabilityAnalysisRunName: pulumi.String("string"),
})
var reachabilityAnalysisRunResource = new ReachabilityAnalysisRun("reachabilityAnalysisRunResource", ReachabilityAnalysisRunArgs.builder()
.networkManagerName("string")
.properties(ReachabilityAnalysisRunPropertiesArgs.builder()
.intentId("string")
.description("string")
.build())
.resourceGroupName("string")
.workspaceName("string")
.reachabilityAnalysisRunName("string")
.build());
reachability_analysis_run_resource = azure_native.network.ReachabilityAnalysisRun("reachabilityAnalysisRunResource",
network_manager_name="string",
properties={
"intentId": "string",
"description": "string",
},
resource_group_name="string",
workspace_name="string",
reachability_analysis_run_name="string")
const reachabilityAnalysisRunResource = new azure_native.network.ReachabilityAnalysisRun("reachabilityAnalysisRunResource", {
networkManagerName: "string",
properties: {
intentId: "string",
description: "string",
},
resourceGroupName: "string",
workspaceName: "string",
reachabilityAnalysisRunName: "string",
});
type: azure-native:network:ReachabilityAnalysisRun
properties:
networkManagerName: string
properties:
description: string
intentId: string
reachabilityAnalysisRunName: string
resourceGroupName: string
workspaceName: string
ReachabilityAnalysisRun 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 ReachabilityAnalysisRun resource accepts the following input properties:
- Network
Manager stringName - The name of the network manager.
- Properties
Pulumi.
Azure Native. Network. Inputs. Reachability Analysis Run Properties - Represents the Reachability Analysis Run properties.
- Resource
Group stringName - The name of the resource group.
- Workspace
Name string - Workspace name.
- Reachability
Analysis stringRun Name - Reachability Analysis Run name.
- Network
Manager stringName - The name of the network manager.
- Properties
Reachability
Analysis Run Properties Args - Represents the Reachability Analysis Run properties.
- Resource
Group stringName - The name of the resource group.
- Workspace
Name string - Workspace name.
- Reachability
Analysis stringRun Name - Reachability Analysis Run name.
- network
Manager StringName - The name of the network manager.
- properties
Reachability
Analysis Run Properties - Represents the Reachability Analysis Run properties.
- resource
Group StringName - The name of the resource group.
- workspace
Name String - Workspace name.
- reachability
Analysis StringRun Name - Reachability Analysis Run name.
- network
Manager stringName - The name of the network manager.
- properties
Reachability
Analysis Run Properties - Represents the Reachability Analysis Run properties.
- resource
Group stringName - The name of the resource group.
- workspace
Name string - Workspace name.
- reachability
Analysis stringRun Name - Reachability Analysis Run name.
- network_
manager_ strname - The name of the network manager.
- properties
Reachability
Analysis Run Properties Args - Represents the Reachability Analysis Run properties.
- resource_
group_ strname - The name of the resource group.
- workspace_
name str - Workspace name.
- reachability_
analysis_ strrun_ name - Reachability Analysis Run name.
- network
Manager StringName - The name of the network manager.
- properties Property Map
- Represents the Reachability Analysis Run properties.
- resource
Group StringName - The name of the resource group.
- workspace
Name String - Workspace name.
- reachability
Analysis StringRun Name - Reachability Analysis Run name.
Outputs
All input properties are implicitly available as output properties. Additionally, the ReachabilityAnalysisRun resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- System
Data Pulumi.Azure Native. Network. Outputs. System Data Response - 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
- System
Data SystemData Response - 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
- system
Data SystemData Response - 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
- system
Data SystemData Response - 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 SystemData Response - 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
- system
Data 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
IPTrafficResponse, IPTrafficResponseArgs
- Destination
Ips List<string> - List of destination IP addresses of the traffic..
- Destination
Ports List<string> - The destination ports of the traffic.
- Protocols List<string>
- Source
Ips List<string> - List of source IP addresses of the traffic..
- Source
Ports List<string> - The source ports of the traffic.
- Destination
Ips []string - List of destination IP addresses of the traffic..
- Destination
Ports []string - The destination ports of the traffic.
- Protocols []string
- Source
Ips []string - List of source IP addresses of the traffic..
- Source
Ports []string - The source ports of the traffic.
- destination
Ips List<String> - List of destination IP addresses of the traffic..
- destination
Ports List<String> - The destination ports of the traffic.
- protocols List<String>
- source
Ips List<String> - List of source IP addresses of the traffic..
- source
Ports List<String> - The source ports of the traffic.
- destination
Ips string[] - List of destination IP addresses of the traffic..
- destination
Ports string[] - The destination ports of the traffic.
- protocols string[]
- source
Ips string[] - List of source IP addresses of the traffic..
- source
Ports 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.
- destination
Ips List<String> - List of destination IP addresses of the traffic..
- destination
Ports List<String> - The destination ports of the traffic.
- protocols List<String>
- source
Ips List<String> - List of source IP addresses of the traffic..
- source
Ports List<String> - The source ports of the traffic.
IntentContentResponse, IntentContentResponseArgs
- Destination
Resource stringId - Destination resource id of the intent.
- Ip
Traffic Pulumi.Azure Native. Network. Inputs. IPTraffic Response - IP traffic information.
- Source
Resource stringId - Source resource id of the intent.
- Description string
- Destination
Resource stringId - Destination resource id of the intent.
- Ip
Traffic IPTrafficResponse - IP traffic information.
- Source
Resource stringId - Source resource id of the intent.
- Description string
- destination
Resource StringId - Destination resource id of the intent.
- ip
Traffic IPTrafficResponse - IP traffic information.
- source
Resource StringId - Source resource id of the intent.
- description String
- destination
Resource stringId - Destination resource id of the intent.
- ip
Traffic IPTrafficResponse - IP traffic information.
- source
Resource stringId - Source resource id of the intent.
- description string
- destination_
resource_ strid - Destination resource id of the intent.
- ip_
traffic IPTrafficResponse - IP traffic information.
- source_
resource_ strid - Source resource id of the intent.
- description str
- destination
Resource StringId - Destination resource id of the intent.
- ip
Traffic Property Map - IP traffic information.
- source
Resource StringId - Source resource id of the intent.
- description String
ReachabilityAnalysisRunProperties, ReachabilityAnalysisRunPropertiesArgs
- Intent
Id string - Id of the intent resource to run analysis on.
- Description string
- Intent
Id string - Id of the intent resource to run analysis on.
- Description string
- intent
Id String - Id of the intent resource to run analysis on.
- description String
- intent
Id string - Id of the intent resource to run analysis on.
- description string
- intent_
id str - Id of the intent resource to run analysis on.
- description str
- intent
Id String - Id of the intent resource to run analysis on.
- description String
ReachabilityAnalysisRunPropertiesResponse, ReachabilityAnalysisRunPropertiesResponseArgs
- Analysis
Result string - Error
Message string - Intent
Content Pulumi.Azure Native. Network. Inputs. Intent Content Response - Intent information.
- Intent
Id string - Id of the intent resource to run analysis on.
- Provisioning
State string - Provisioning states of a resource.
- Description string
- Analysis
Result string - Error
Message string - Intent
Content IntentContent Response - Intent information.
- Intent
Id string - Id of the intent resource to run analysis on.
- Provisioning
State string - Provisioning states of a resource.
- Description string
- analysis
Result String - error
Message String - intent
Content IntentContent Response - Intent information.
- intent
Id String - Id of the intent resource to run analysis on.
- provisioning
State String - Provisioning states of a resource.
- description String
- analysis
Result string - error
Message string - intent
Content IntentContent Response - Intent information.
- intent
Id string - Id of the intent resource to run analysis on.
- provisioning
State string - Provisioning states of a resource.
- description string
- analysis_
result str - error_
message str - intent_
content IntentContent Response - Intent information.
- intent_
id str - Id of the intent resource to run analysis on.
- provisioning_
state str - Provisioning states of a resource.
- description str
- analysis
Result String - error
Message String - intent
Content Property Map - Intent information.
- intent
Id String - Id of the intent resource to run analysis on.
- provisioning
State String - Provisioning states of a resource.
- description String
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The type of identity that last modified the resource.
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The type of identity that last modified the resource.
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The type of identity that last modified the resource.
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The type of identity that last modified the resource.
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - 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_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The type of identity that last modified the resource.
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The type of identity that last modified the resource.
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - 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:ReachabilityAnalysisRun testAnalysisRunName /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkManagers/{networkManagerName}/verifierWorkspaces/{workspaceName}/reachabilityAnalysisRuns/{reachabilityAnalysisRunName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0