azure-native.networkfunction.AzureTrafficCollector
Explore with Pulumi AI
Azure Traffic Collector resource. API Version: 2022-05-01.
Example Usage
Create a traffic collector
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var azureTrafficCollector = new AzureNative.NetworkFunction.AzureTrafficCollector("azureTrafficCollector", new()
    {
        AzureTrafficCollectorName = "atc",
        CollectorPolicies = new[] {},
        Location = "West US",
        ResourceGroupName = "rg1",
        Tags = 
        {
            { "key1", "value1" },
        },
    });
});
package main
import (
	networkfunction "github.com/pulumi/pulumi-azure-native-sdk/networkfunction"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := networkfunction.NewAzureTrafficCollector(ctx, "azureTrafficCollector", &networkfunction.AzureTrafficCollectorArgs{
			AzureTrafficCollectorName: pulumi.String("atc"),
			CollectorPolicies:         networkfunction.CollectorPolicyTypeArray{},
			Location:                  pulumi.String("West US"),
			ResourceGroupName:         pulumi.String("rg1"),
			Tags: pulumi.StringMap{
				"key1": pulumi.String("value1"),
			},
		})
		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.networkfunction.AzureTrafficCollector;
import com.pulumi.azurenative.networkfunction.AzureTrafficCollectorArgs;
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 azureTrafficCollector = new AzureTrafficCollector("azureTrafficCollector", AzureTrafficCollectorArgs.builder()        
            .azureTrafficCollectorName("atc")
            .collectorPolicies()
            .location("West US")
            .resourceGroupName("rg1")
            .tags(Map.of("key1", "value1"))
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const azureTrafficCollector = new azure_native.networkfunction.AzureTrafficCollector("azureTrafficCollector", {
    azureTrafficCollectorName: "atc",
    collectorPolicies: [],
    location: "West US",
    resourceGroupName: "rg1",
    tags: {
        key1: "value1",
    },
});
import pulumi
import pulumi_azure_native as azure_native
azure_traffic_collector = azure_native.networkfunction.AzureTrafficCollector("azureTrafficCollector",
    azure_traffic_collector_name="atc",
    collector_policies=[],
    location="West US",
    resource_group_name="rg1",
    tags={
        "key1": "value1",
    })
resources:
  azureTrafficCollector:
    type: azure-native:networkfunction:AzureTrafficCollector
    properties:
      azureTrafficCollectorName: atc
      collectorPolicies: []
      location: West US
      resourceGroupName: rg1
      tags:
        key1: value1
Create AzureTrafficCollector Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AzureTrafficCollector(name: string, args: AzureTrafficCollectorArgs, opts?: CustomResourceOptions);@overload
def AzureTrafficCollector(resource_name: str,
                          args: AzureTrafficCollectorArgs,
                          opts: Optional[ResourceOptions] = None)
@overload
def AzureTrafficCollector(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          resource_group_name: Optional[str] = None,
                          azure_traffic_collector_name: Optional[str] = None,
                          collector_policies: Optional[Sequence[CollectorPolicyArgs]] = None,
                          location: Optional[str] = None,
                          tags: Optional[Mapping[str, str]] = None)func NewAzureTrafficCollector(ctx *Context, name string, args AzureTrafficCollectorArgs, opts ...ResourceOption) (*AzureTrafficCollector, error)public AzureTrafficCollector(string name, AzureTrafficCollectorArgs args, CustomResourceOptions? opts = null)
public AzureTrafficCollector(String name, AzureTrafficCollectorArgs args)
public AzureTrafficCollector(String name, AzureTrafficCollectorArgs args, CustomResourceOptions options)
type: azure-native:networkfunction:AzureTrafficCollector
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 AzureTrafficCollectorArgs
- 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 AzureTrafficCollectorArgs
- 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 AzureTrafficCollectorArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AzureTrafficCollectorArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AzureTrafficCollectorArgs
- 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 azureTrafficCollectorResource = new AzureNative.Networkfunction.AzureTrafficCollector("azureTrafficCollectorResource", new()
{
    ResourceGroupName = "string",
    AzureTrafficCollectorName = "string",
    CollectorPolicies = new[]
    {
        
        {
            { "emissionPolicies", new[]
            {
                
                {
                    { "emissionDestinations", new[]
                    {
                        
                        {
                            { "destinationType", "string" },
                        },
                    } },
                    { "emissionType", "string" },
                },
            } },
            { "ingestionPolicy", 
            {
                { "ingestionSources", new[]
                {
                    
                    {
                        { "resourceId", "string" },
                        { "sourceType", "string" },
                    },
                } },
                { "ingestionType", "string" },
            } },
        },
    },
    Location = "string",
    Tags = 
    {
        { "string", "string" },
    },
});
example, err := networkfunction.NewAzureTrafficCollector(ctx, "azureTrafficCollectorResource", &networkfunction.AzureTrafficCollectorArgs{
	ResourceGroupName:         "string",
	AzureTrafficCollectorName: "string",
	CollectorPolicies: []map[string]interface{}{
		map[string]interface{}{
			"emissionPolicies": []map[string]interface{}{
				map[string]interface{}{
					"emissionDestinations": []map[string]interface{}{
						map[string]interface{}{
							"destinationType": "string",
						},
					},
					"emissionType": "string",
				},
			},
			"ingestionPolicy": map[string]interface{}{
				"ingestionSources": []map[string]interface{}{
					map[string]interface{}{
						"resourceId": "string",
						"sourceType": "string",
					},
				},
				"ingestionType": "string",
			},
		},
	},
	Location: "string",
	Tags: map[string]interface{}{
		"string": "string",
	},
})
var azureTrafficCollectorResource = new AzureTrafficCollector("azureTrafficCollectorResource", AzureTrafficCollectorArgs.builder()
    .resourceGroupName("string")
    .azureTrafficCollectorName("string")
    .collectorPolicies(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .location("string")
    .tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .build());
azure_traffic_collector_resource = azure_native.networkfunction.AzureTrafficCollector("azureTrafficCollectorResource",
    resource_group_name=string,
    azure_traffic_collector_name=string,
    collector_policies=[{
        emissionPolicies: [{
            emissionDestinations: [{
                destinationType: string,
            }],
            emissionType: string,
        }],
        ingestionPolicy: {
            ingestionSources: [{
                resourceId: string,
                sourceType: string,
            }],
            ingestionType: string,
        },
    }],
    location=string,
    tags={
        string: string,
    })
const azureTrafficCollectorResource = new azure_native.networkfunction.AzureTrafficCollector("azureTrafficCollectorResource", {
    resourceGroupName: "string",
    azureTrafficCollectorName: "string",
    collectorPolicies: [{
        emissionPolicies: [{
            emissionDestinations: [{
                destinationType: "string",
            }],
            emissionType: "string",
        }],
        ingestionPolicy: {
            ingestionSources: [{
                resourceId: "string",
                sourceType: "string",
            }],
            ingestionType: "string",
        },
    }],
    location: "string",
    tags: {
        string: "string",
    },
});
type: azure-native:networkfunction:AzureTrafficCollector
properties:
    azureTrafficCollectorName: string
    collectorPolicies:
        - emissionPolicies:
            - emissionDestinations:
                - destinationType: string
              emissionType: string
          ingestionPolicy:
            ingestionSources:
                - resourceId: string
                  sourceType: string
            ingestionType: string
    location: string
    resourceGroupName: string
    tags:
        string: string
AzureTrafficCollector 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 AzureTrafficCollector resource accepts the following input properties:
- ResourceGroup stringName 
- The name of the resource group.
- AzureTraffic stringCollector Name 
- Azure Traffic Collector name
- CollectorPolicies List<Pulumi.Azure Native. Network Function. Inputs. Collector Policy> 
- Collector Policies for Azure Traffic Collector.
- Location string
- Resource location.
- Dictionary<string, string>
- Resource tags.
- ResourceGroup stringName 
- The name of the resource group.
- AzureTraffic stringCollector Name 
- Azure Traffic Collector name
- CollectorPolicies []CollectorPolicy Type Args 
- Collector Policies for Azure Traffic Collector.
- Location string
- Resource location.
- map[string]string
- Resource tags.
- resourceGroup StringName 
- The name of the resource group.
- azureTraffic StringCollector Name 
- Azure Traffic Collector name
- collectorPolicies List<CollectorPolicy> 
- Collector Policies for Azure Traffic Collector.
- location String
- Resource location.
- Map<String,String>
- Resource tags.
- resourceGroup stringName 
- The name of the resource group.
- azureTraffic stringCollector Name 
- Azure Traffic Collector name
- collectorPolicies CollectorPolicy[] 
- Collector Policies for Azure Traffic Collector.
- location string
- Resource location.
- {[key: string]: string}
- Resource tags.
- resource_group_ strname 
- The name of the resource group.
- azure_traffic_ strcollector_ name 
- Azure Traffic Collector name
- collector_policies Sequence[CollectorPolicy Args] 
- Collector Policies for Azure Traffic Collector.
- location str
- Resource location.
- Mapping[str, str]
- Resource tags.
- resourceGroup StringName 
- The name of the resource group.
- azureTraffic StringCollector Name 
- Azure Traffic Collector name
- collectorPolicies List<Property Map>
- Collector Policies for Azure Traffic Collector.
- location String
- Resource location.
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the AzureTrafficCollector resource produces the following output properties:
- Etag string
- A unique read-only string that changes whenever the resource is updated.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Resource name.
- ProvisioningState string
- The provisioning state of the application rule collection resource.
- SystemData Pulumi.Azure Native. Network Function. Outputs. Tracked Resource Response System Data 
- Metadata pertaining to creation and last modification of the resource.
- Type string
- Resource type.
- VirtualHub Pulumi.Azure Native. Network Function. Outputs. Resource Reference Response 
- The virtualHub to which the Azure Traffic Collector belongs.
- Etag string
- A unique read-only string that changes whenever the resource is updated.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Resource name.
- ProvisioningState string
- The provisioning state of the application rule collection resource.
- SystemData TrackedResource Response System Data 
- Metadata pertaining to creation and last modification of the resource.
- Type string
- Resource type.
- VirtualHub ResourceReference Response 
- The virtualHub to which the Azure Traffic Collector belongs.
- etag String
- A unique read-only string that changes whenever the resource is updated.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Resource name.
- provisioningState String
- The provisioning state of the application rule collection resource.
- systemData TrackedResource Response System Data 
- Metadata pertaining to creation and last modification of the resource.
- type String
- Resource type.
- virtualHub ResourceReference Response 
- The virtualHub to which the Azure Traffic Collector belongs.
- etag string
- A unique read-only string that changes whenever the resource is updated.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- Resource name.
- provisioningState string
- The provisioning state of the application rule collection resource.
- systemData TrackedResource Response System Data 
- Metadata pertaining to creation and last modification of the resource.
- type string
- Resource type.
- virtualHub ResourceReference Response 
- The virtualHub to which the Azure Traffic Collector belongs.
- etag str
- A unique read-only string that changes whenever the resource is updated.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- Resource name.
- provisioning_state str
- The provisioning state of the application rule collection resource.
- system_data TrackedResource Response System Data 
- Metadata pertaining to creation and last modification of the resource.
- type str
- Resource type.
- virtual_hub ResourceReference Response 
- The virtualHub to which the Azure Traffic Collector belongs.
- etag String
- A unique read-only string that changes whenever the resource is updated.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Resource name.
- provisioningState String
- The provisioning state of the application rule collection resource.
- systemData Property Map
- Metadata pertaining to creation and last modification of the resource.
- type String
- Resource type.
- virtualHub Property Map
- The virtualHub to which the Azure Traffic Collector belongs.
Supporting Types
CollectorPolicy, CollectorPolicyArgs    
- EmissionPolicies []EmissionPolicies Properties Format 
- Emission policies.
- IngestionPolicy IngestionPolicy Properties Format 
- Ingestion policies.
- emissionPolicies List<EmissionPolicies Properties Format> 
- Emission policies.
- ingestionPolicy IngestionPolicy Properties Format 
- Ingestion policies.
- emissionPolicies EmissionPolicies Properties Format[] 
- Emission policies.
- ingestionPolicy IngestionPolicy Properties Format 
- Ingestion policies.
- emission_policies Sequence[EmissionPolicies Properties Format] 
- Emission policies.
- ingestion_policy IngestionPolicy Properties Format 
- Ingestion policies.
- emissionPolicies List<Property Map>
- Emission policies.
- ingestionPolicy Property Map
- Ingestion policies.
CollectorPolicyResponse, CollectorPolicyResponseArgs      
- Etag string
- A unique read-only string that changes whenever the resource is updated.
- Id string
- Azure resource Id
- Name string
- Azure resource name
- ProvisioningState string
- The provisioning state.
- SystemData Pulumi.Azure Native. Network Function. Inputs. Collector Policy Response System Data 
- Metadata pertaining to creation and last modification of the resource.
- Type string
- Azure resource type
- EmissionPolicies List<Pulumi.Azure Native. Network Function. Inputs. Emission Policies Properties Format Response> 
- Emission policies.
- IngestionPolicy Pulumi.Azure Native. Network Function. Inputs. Ingestion Policy Properties Format Response 
- Ingestion policies.
- Etag string
- A unique read-only string that changes whenever the resource is updated.
- Id string
- Azure resource Id
- Name string
- Azure resource name
- ProvisioningState string
- The provisioning state.
- SystemData CollectorPolicy Response System Data 
- Metadata pertaining to creation and last modification of the resource.
- Type string
- Azure resource type
- EmissionPolicies []EmissionPolicies Properties Format Response 
- Emission policies.
- IngestionPolicy IngestionPolicy Properties Format Response 
- Ingestion policies.
- etag String
- A unique read-only string that changes whenever the resource is updated.
- id String
- Azure resource Id
- name String
- Azure resource name
- provisioningState String
- The provisioning state.
- systemData CollectorPolicy Response System Data 
- Metadata pertaining to creation and last modification of the resource.
- type String
- Azure resource type
- emissionPolicies List<EmissionPolicies Properties Format Response> 
- Emission policies.
- ingestionPolicy IngestionPolicy Properties Format Response 
- Ingestion policies.
- etag string
- A unique read-only string that changes whenever the resource is updated.
- id string
- Azure resource Id
- name string
- Azure resource name
- provisioningState string
- The provisioning state.
- systemData CollectorPolicy Response System Data 
- Metadata pertaining to creation and last modification of the resource.
- type string
- Azure resource type
- emissionPolicies EmissionPolicies Properties Format Response[] 
- Emission policies.
- ingestionPolicy IngestionPolicy Properties Format Response 
- Ingestion policies.
- etag str
- A unique read-only string that changes whenever the resource is updated.
- id str
- Azure resource Id
- name str
- Azure resource name
- provisioning_state str
- The provisioning state.
- system_data CollectorPolicy Response System Data 
- Metadata pertaining to creation and last modification of the resource.
- type str
- Azure resource type
- emission_policies Sequence[EmissionPolicies Properties Format Response] 
- Emission policies.
- ingestion_policy IngestionPolicy Properties Format Response 
- Ingestion policies.
- etag String
- A unique read-only string that changes whenever the resource is updated.
- id String
- Azure resource Id
- name String
- Azure resource name
- provisioningState String
- The provisioning state.
- systemData Property Map
- Metadata pertaining to creation and last modification of the resource.
- type String
- Azure resource type
- emissionPolicies List<Property Map>
- Emission policies.
- ingestionPolicy Property Map
- Ingestion policies.
CollectorPolicyResponseSystemData, CollectorPolicyResponseSystemDataArgs          
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- 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.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified 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_ strby 
- The identity that last modified the resource.
- last_modified_ strby_ type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
DestinationType, DestinationTypeArgs    
- AzureMonitor 
- AzureMonitor
- DestinationType Azure Monitor 
- AzureMonitor
- AzureMonitor 
- AzureMonitor
- AzureMonitor 
- AzureMonitor
- AZURE_MONITOR
- AzureMonitor
- "AzureMonitor" 
- AzureMonitor
EmissionPoliciesPropertiesFormat, EmissionPoliciesPropertiesFormatArgs        
- EmissionDestinations List<Pulumi.Azure Native. Network Function. Inputs. Emission Policy Destination> 
- Emission policy destinations.
- EmissionType string | Pulumi.Azure Native. Network Function. Emission Type 
- Emission format type.
- EmissionDestinations []EmissionPolicy Destination 
- Emission policy destinations.
- EmissionType string | EmissionType 
- Emission format type.
- emissionDestinations List<EmissionPolicy Destination> 
- Emission policy destinations.
- emissionType String | EmissionType 
- Emission format type.
- emissionDestinations EmissionPolicy Destination[] 
- Emission policy destinations.
- emissionType string | EmissionType 
- Emission format type.
- emission_destinations Sequence[EmissionPolicy Destination] 
- Emission policy destinations.
- emission_type str | EmissionType 
- Emission format type.
- emissionDestinations List<Property Map>
- Emission policy destinations.
- emissionType String | "IPFIX"
- Emission format type.
EmissionPoliciesPropertiesFormatResponse, EmissionPoliciesPropertiesFormatResponseArgs          
- EmissionDestinations List<Pulumi.Azure Native. Network Function. Inputs. Emission Policy Destination Response> 
- Emission policy destinations.
- EmissionType string
- Emission format type.
- EmissionDestinations []EmissionPolicy Destination Response 
- Emission policy destinations.
- EmissionType string
- Emission format type.
- emissionDestinations List<EmissionPolicy Destination Response> 
- Emission policy destinations.
- emissionType String
- Emission format type.
- emissionDestinations EmissionPolicy Destination Response[] 
- Emission policy destinations.
- emissionType string
- Emission format type.
- emission_destinations Sequence[EmissionPolicy Destination Response] 
- Emission policy destinations.
- emission_type str
- Emission format type.
- emissionDestinations List<Property Map>
- Emission policy destinations.
- emissionType String
- Emission format type.
EmissionPolicyDestination, EmissionPolicyDestinationArgs      
- DestinationType string | Pulumi.Azure Native. Network Function. Destination Type 
- Emission destination type.
- DestinationType string | DestinationType 
- Emission destination type.
- destinationType String | DestinationType 
- Emission destination type.
- destinationType string | DestinationType 
- Emission destination type.
- destination_type str | DestinationType 
- Emission destination type.
- destinationType String | "AzureMonitor" 
- Emission destination type.
EmissionPolicyDestinationResponse, EmissionPolicyDestinationResponseArgs        
- DestinationType string
- Emission destination type.
- DestinationType string
- Emission destination type.
- destinationType String
- Emission destination type.
- destinationType string
- Emission destination type.
- destination_type str
- Emission destination type.
- destinationType String
- Emission destination type.
EmissionType, EmissionTypeArgs    
- IPFIX
- IPFIX
- EmissionType IPFIX 
- IPFIX
- IPFIX
- IPFIX
- IPFIX
- IPFIX
- IPFIX
- IPFIX
- "IPFIX"
- IPFIX
IngestionPolicyPropertiesFormat, IngestionPolicyPropertiesFormatArgs        
- IngestionSources List<Pulumi.Azure Native. Network Function. Inputs. Ingestion Sources Properties Format> 
- Ingestion Sources.
- IngestionType string | Pulumi.Azure Native. Network Function. Ingestion Type 
- The ingestion type.
- IngestionSources []IngestionSources Properties Format 
- Ingestion Sources.
- IngestionType string | IngestionType 
- The ingestion type.
- ingestionSources List<IngestionSources Properties Format> 
- Ingestion Sources.
- ingestionType String | IngestionType 
- The ingestion type.
- ingestionSources IngestionSources Properties Format[] 
- Ingestion Sources.
- ingestionType string | IngestionType 
- The ingestion type.
- ingestion_sources Sequence[IngestionSources Properties Format] 
- Ingestion Sources.
- ingestion_type str | IngestionType 
- The ingestion type.
- ingestionSources List<Property Map>
- Ingestion Sources.
- ingestionType String | "IPFIX"
- The ingestion type.
IngestionPolicyPropertiesFormatResponse, IngestionPolicyPropertiesFormatResponseArgs          
- IngestionSources List<Pulumi.Azure Native. Network Function. Inputs. Ingestion Sources Properties Format Response> 
- Ingestion Sources.
- IngestionType string
- The ingestion type.
- IngestionSources []IngestionSources Properties Format Response 
- Ingestion Sources.
- IngestionType string
- The ingestion type.
- ingestionSources List<IngestionSources Properties Format Response> 
- Ingestion Sources.
- ingestionType String
- The ingestion type.
- ingestionSources IngestionSources Properties Format Response[] 
- Ingestion Sources.
- ingestionType string
- The ingestion type.
- ingestion_sources Sequence[IngestionSources Properties Format Response] 
- Ingestion Sources.
- ingestion_type str
- The ingestion type.
- ingestionSources List<Property Map>
- Ingestion Sources.
- ingestionType String
- The ingestion type.
IngestionSourcesPropertiesFormat, IngestionSourcesPropertiesFormatArgs        
- ResourceId string
- Resource ID.
- SourceType string | Pulumi.Azure Native. Network Function. Source Type 
- Ingestion source type.
- ResourceId string
- Resource ID.
- SourceType string | SourceType 
- Ingestion source type.
- resourceId String
- Resource ID.
- sourceType String | SourceType 
- Ingestion source type.
- resourceId string
- Resource ID.
- sourceType string | SourceType 
- Ingestion source type.
- resource_id str
- Resource ID.
- source_type str | SourceType 
- Ingestion source type.
- resourceId String
- Resource ID.
- sourceType String | "Resource"
- Ingestion source type.
IngestionSourcesPropertiesFormatResponse, IngestionSourcesPropertiesFormatResponseArgs          
- ResourceId string
- Resource ID.
- SourceType string
- Ingestion source type.
- ResourceId string
- Resource ID.
- SourceType string
- Ingestion source type.
- resourceId String
- Resource ID.
- sourceType String
- Ingestion source type.
- resourceId string
- Resource ID.
- sourceType string
- Ingestion source type.
- resource_id str
- Resource ID.
- source_type str
- Ingestion source type.
- resourceId String
- Resource ID.
- sourceType String
- Ingestion source type.
IngestionType, IngestionTypeArgs    
- IPFIX
- IPFIX
- IngestionType IPFIX 
- IPFIX
- IPFIX
- IPFIX
- IPFIX
- IPFIX
- IPFIX
- IPFIX
- "IPFIX"
- IPFIX
ResourceReferenceResponse, ResourceReferenceResponseArgs      
- Id string
- Resource ID.
- Id string
- Resource ID.
- id String
- Resource ID.
- id string
- Resource ID.
- id str
- Resource ID.
- id String
- Resource ID.
SourceType, SourceTypeArgs    
- Resource
- Resource
- SourceType Resource 
- Resource
- Resource
- Resource
- Resource
- Resource
- RESOURCE
- Resource
- "Resource"
- Resource
TrackedResourceResponseSystemData, TrackedResourceResponseSystemDataArgs          
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- 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.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified 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_ strby 
- The identity that last modified the resource.
- last_modified_ strby_ type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified 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:networkfunction:AzureTrafficCollector atc /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.NetworkFunction/azureTrafficCollectors/atc 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0