1. Packages
  2. Azure Native v2
  3. API Docs
  4. mobilenetwork
  5. PacketCapture
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.mobilenetwork.PacketCapture

Explore with Pulumi AI

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

Packet capture session resource. Azure REST API version: 2023-06-01.

Other available API versions: 2023-09-01, 2024-02-01, 2024-04-01.

Example Usage

Create packet capture

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

return await Deployment.RunAsync(() => 
{
    var packetCapture = new AzureNative.MobileNetwork.PacketCapture("packetCapture", new()
    {
        BytesToCapturePerPacket = 10000,
        NetworkInterfaces = new[]
        {
            "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/TestPacketCoreCP",
            "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/TestPacketCoreCP/packetCoreDataPlanes/TestPacketCoreDP",
            "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/TestPacketCoreCP/packetCoreDataPlanes/TestPacketCoreDP/attachedDataNetworks/TestADN",
        },
        PacketCaptureName = "pc1",
        PacketCoreControlPlaneName = "TestPacketCoreCP",
        ResourceGroupName = "rg1",
        TimeLimitInSeconds = 100,
        TotalBytesPerSession = 100000,
    });

});
Copy
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := mobilenetwork.NewPacketCapture(ctx, "packetCapture", &mobilenetwork.PacketCaptureArgs{
			BytesToCapturePerPacket: pulumi.Float64(10000),
			NetworkInterfaces: pulumi.StringArray{
				pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/TestPacketCoreCP"),
				pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/TestPacketCoreCP/packetCoreDataPlanes/TestPacketCoreDP"),
				pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/TestPacketCoreCP/packetCoreDataPlanes/TestPacketCoreDP/attachedDataNetworks/TestADN"),
			},
			PacketCaptureName:          pulumi.String("pc1"),
			PacketCoreControlPlaneName: pulumi.String("TestPacketCoreCP"),
			ResourceGroupName:          pulumi.String("rg1"),
			TimeLimitInSeconds:         pulumi.Int(100),
			TotalBytesPerSession:       pulumi.Float64(100000),
		})
		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.mobilenetwork.PacketCapture;
import com.pulumi.azurenative.mobilenetwork.PacketCaptureArgs;
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 packetCapture = new PacketCapture("packetCapture", PacketCaptureArgs.builder()
            .bytesToCapturePerPacket(10000)
            .networkInterfaces(            
                "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/TestPacketCoreCP",
                "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/TestPacketCoreCP/packetCoreDataPlanes/TestPacketCoreDP",
                "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/TestPacketCoreCP/packetCoreDataPlanes/TestPacketCoreDP/attachedDataNetworks/TestADN")
            .packetCaptureName("pc1")
            .packetCoreControlPlaneName("TestPacketCoreCP")
            .resourceGroupName("rg1")
            .timeLimitInSeconds(100)
            .totalBytesPerSession(100000)
            .build());

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

const packetCapture = new azure_native.mobilenetwork.PacketCapture("packetCapture", {
    bytesToCapturePerPacket: 10000,
    networkInterfaces: [
        "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/TestPacketCoreCP",
        "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/TestPacketCoreCP/packetCoreDataPlanes/TestPacketCoreDP",
        "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/TestPacketCoreCP/packetCoreDataPlanes/TestPacketCoreDP/attachedDataNetworks/TestADN",
    ],
    packetCaptureName: "pc1",
    packetCoreControlPlaneName: "TestPacketCoreCP",
    resourceGroupName: "rg1",
    timeLimitInSeconds: 100,
    totalBytesPerSession: 100000,
});
Copy
import pulumi
import pulumi_azure_native as azure_native

packet_capture = azure_native.mobilenetwork.PacketCapture("packetCapture",
    bytes_to_capture_per_packet=10000,
    network_interfaces=[
        "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/TestPacketCoreCP",
        "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/TestPacketCoreCP/packetCoreDataPlanes/TestPacketCoreDP",
        "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/TestPacketCoreCP/packetCoreDataPlanes/TestPacketCoreDP/attachedDataNetworks/TestADN",
    ],
    packet_capture_name="pc1",
    packet_core_control_plane_name="TestPacketCoreCP",
    resource_group_name="rg1",
    time_limit_in_seconds=100,
    total_bytes_per_session=100000)
Copy
resources:
  packetCapture:
    type: azure-native:mobilenetwork:PacketCapture
    properties:
      bytesToCapturePerPacket: 10000
      networkInterfaces:
        - /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/TestPacketCoreCP
        - /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/TestPacketCoreCP/packetCoreDataPlanes/TestPacketCoreDP
        - /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/TestPacketCoreCP/packetCoreDataPlanes/TestPacketCoreDP/attachedDataNetworks/TestADN
      packetCaptureName: pc1
      packetCoreControlPlaneName: TestPacketCoreCP
      resourceGroupName: rg1
      timeLimitInSeconds: 100
      totalBytesPerSession: 100000
Copy

Create PacketCapture Resource

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

Constructor syntax

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

@overload
def PacketCapture(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  packet_core_control_plane_name: Optional[str] = None,
                  resource_group_name: Optional[str] = None,
                  bytes_to_capture_per_packet: Optional[float] = None,
                  network_interfaces: Optional[Sequence[str]] = None,
                  packet_capture_name: Optional[str] = None,
                  time_limit_in_seconds: Optional[int] = None,
                  total_bytes_per_session: Optional[float] = None)
func NewPacketCapture(ctx *Context, name string, args PacketCaptureArgs, opts ...ResourceOption) (*PacketCapture, error)
public PacketCapture(string name, PacketCaptureArgs args, CustomResourceOptions? opts = null)
public PacketCapture(String name, PacketCaptureArgs args)
public PacketCapture(String name, PacketCaptureArgs args, CustomResourceOptions options)
type: azure-native:mobilenetwork:PacketCapture
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. PacketCaptureArgs
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. PacketCaptureArgs
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. PacketCaptureArgs
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. PacketCaptureArgs
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. PacketCaptureArgs
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 packetCaptureResource = new AzureNative.Mobilenetwork.PacketCapture("packetCaptureResource", new()
{
    PacketCoreControlPlaneName = "string",
    ResourceGroupName = "string",
    BytesToCapturePerPacket = 0,
    NetworkInterfaces = new[]
    {
        "string",
    },
    PacketCaptureName = "string",
    TimeLimitInSeconds = 0,
    TotalBytesPerSession = 0,
});
Copy
example, err := mobilenetwork.NewPacketCapture(ctx, "packetCaptureResource", &mobilenetwork.PacketCaptureArgs{
	PacketCoreControlPlaneName: "string",
	ResourceGroupName:          "string",
	BytesToCapturePerPacket:    0,
	NetworkInterfaces: []string{
		"string",
	},
	PacketCaptureName:    "string",
	TimeLimitInSeconds:   0,
	TotalBytesPerSession: 0,
})
Copy
var packetCaptureResource = new PacketCapture("packetCaptureResource", PacketCaptureArgs.builder()
    .packetCoreControlPlaneName("string")
    .resourceGroupName("string")
    .bytesToCapturePerPacket(0)
    .networkInterfaces("string")
    .packetCaptureName("string")
    .timeLimitInSeconds(0)
    .totalBytesPerSession(0)
    .build());
Copy
packet_capture_resource = azure_native.mobilenetwork.PacketCapture("packetCaptureResource",
    packet_core_control_plane_name=string,
    resource_group_name=string,
    bytes_to_capture_per_packet=0,
    network_interfaces=[string],
    packet_capture_name=string,
    time_limit_in_seconds=0,
    total_bytes_per_session=0)
Copy
const packetCaptureResource = new azure_native.mobilenetwork.PacketCapture("packetCaptureResource", {
    packetCoreControlPlaneName: "string",
    resourceGroupName: "string",
    bytesToCapturePerPacket: 0,
    networkInterfaces: ["string"],
    packetCaptureName: "string",
    timeLimitInSeconds: 0,
    totalBytesPerSession: 0,
});
Copy
type: azure-native:mobilenetwork:PacketCapture
properties:
    bytesToCapturePerPacket: 0
    networkInterfaces:
        - string
    packetCaptureName: string
    packetCoreControlPlaneName: string
    resourceGroupName: string
    timeLimitInSeconds: 0
    totalBytesPerSession: 0
Copy

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

PacketCoreControlPlaneName
This property is required.
Changes to this property will trigger replacement.
string
The name of the packet core control plane.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
BytesToCapturePerPacket double
Number of bytes captured per packet, the remaining bytes are truncated. The default "0" means the entire packet is captured.
NetworkInterfaces List<string>
List of network interfaces to capture on.
PacketCaptureName Changes to this property will trigger replacement. string
The name of the packet capture session.
TimeLimitInSeconds int
Maximum duration of the capture session in seconds.
TotalBytesPerSession double
Maximum size of the capture output.
PacketCoreControlPlaneName
This property is required.
Changes to this property will trigger replacement.
string
The name of the packet core control plane.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
BytesToCapturePerPacket float64
Number of bytes captured per packet, the remaining bytes are truncated. The default "0" means the entire packet is captured.
NetworkInterfaces []string
List of network interfaces to capture on.
PacketCaptureName Changes to this property will trigger replacement. string
The name of the packet capture session.
TimeLimitInSeconds int
Maximum duration of the capture session in seconds.
TotalBytesPerSession float64
Maximum size of the capture output.
packetCoreControlPlaneName
This property is required.
Changes to this property will trigger replacement.
String
The name of the packet core control plane.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
bytesToCapturePerPacket Double
Number of bytes captured per packet, the remaining bytes are truncated. The default "0" means the entire packet is captured.
networkInterfaces List<String>
List of network interfaces to capture on.
packetCaptureName Changes to this property will trigger replacement. String
The name of the packet capture session.
timeLimitInSeconds Integer
Maximum duration of the capture session in seconds.
totalBytesPerSession Double
Maximum size of the capture output.
packetCoreControlPlaneName
This property is required.
Changes to this property will trigger replacement.
string
The name of the packet core control plane.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
bytesToCapturePerPacket number
Number of bytes captured per packet, the remaining bytes are truncated. The default "0" means the entire packet is captured.
networkInterfaces string[]
List of network interfaces to capture on.
packetCaptureName Changes to this property will trigger replacement. string
The name of the packet capture session.
timeLimitInSeconds number
Maximum duration of the capture session in seconds.
totalBytesPerSession number
Maximum size of the capture output.
packet_core_control_plane_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the packet core control plane.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group. The name is case insensitive.
bytes_to_capture_per_packet float
Number of bytes captured per packet, the remaining bytes are truncated. The default "0" means the entire packet is captured.
network_interfaces Sequence[str]
List of network interfaces to capture on.
packet_capture_name Changes to this property will trigger replacement. str
The name of the packet capture session.
time_limit_in_seconds int
Maximum duration of the capture session in seconds.
total_bytes_per_session float
Maximum size of the capture output.
packetCoreControlPlaneName
This property is required.
Changes to this property will trigger replacement.
String
The name of the packet core control plane.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
bytesToCapturePerPacket Number
Number of bytes captured per packet, the remaining bytes are truncated. The default "0" means the entire packet is captured.
networkInterfaces List<String>
List of network interfaces to capture on.
packetCaptureName Changes to this property will trigger replacement. String
The name of the packet capture session.
timeLimitInSeconds Number
Maximum duration of the capture session in seconds.
totalBytesPerSession Number
Maximum size of the capture output.

Outputs

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

CaptureStartTime string
The start time of the packet capture session.
Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource
ProvisioningState string
The provisioning state of the packet capture session resource.
Reason string
The reason the current packet capture session state.
Status string
The status of the packet capture session.
SystemData Pulumi.AzureNative.MobileNetwork.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"
CaptureStartTime string
The start time of the packet capture session.
Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource
ProvisioningState string
The provisioning state of the packet capture session resource.
Reason string
The reason the current packet capture session state.
Status string
The status of the packet capture session.
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"
captureStartTime String
The start time of the packet capture session.
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource
provisioningState String
The provisioning state of the packet capture session resource.
reason String
The reason the current packet capture session state.
status String
The status of the packet capture session.
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"
captureStartTime string
The start time of the packet capture session.
id string
The provider-assigned unique ID for this managed resource.
name string
The name of the resource
provisioningState string
The provisioning state of the packet capture session resource.
reason string
The reason the current packet capture session state.
status string
The status of the packet capture session.
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"
capture_start_time str
The start time of the packet capture session.
id str
The provider-assigned unique ID for this managed resource.
name str
The name of the resource
provisioning_state str
The provisioning state of the packet capture session resource.
reason str
The reason the current packet capture session state.
status str
The status of the packet capture session.
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"
captureStartTime String
The start time of the packet capture session.
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource
provisioningState String
The provisioning state of the packet capture session resource.
reason String
The reason the current packet capture session state.
status String
The status of the packet capture session.
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

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 timestamp of resource last modification (UTC)
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 timestamp of resource last modification (UTC)
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 timestamp of resource last modification (UTC)
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 timestamp of resource last modification (UTC)
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 timestamp of resource last modification (UTC)
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 timestamp of resource last modification (UTC)
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:mobilenetwork:PacketCapture pc1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}/packetCaptures/{packetCaptureName} 
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
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