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 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",
})
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",
},
});
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
The AzureTrafficCollector resource accepts the following input properties:
- Resource
Group stringName - The name of the resource group.
- Azure
Traffic stringCollector Name - Azure Traffic Collector name
- Collector
Policies List<Pulumi.Azure Native. Network Function. Inputs. Collector Policy> - Collector Policies for Azure Traffic Collector.
- Location string
- Resource location.
- Dictionary<string, string>
- Resource tags.
- Resource
Group stringName - The name of the resource group.
- Azure
Traffic stringCollector Name - Azure Traffic Collector name
- Collector
Policies []CollectorPolicy Type Args - Collector Policies for Azure Traffic Collector.
- Location string
- Resource location.
- map[string]string
- Resource tags.
- resource
Group StringName - The name of the resource group.
- azure
Traffic StringCollector Name - Azure Traffic Collector name
- collector
Policies List<CollectorPolicy> - Collector Policies for Azure Traffic Collector.
- location String
- Resource location.
- Map<String,String>
- Resource tags.
- resource
Group stringName - The name of the resource group.
- azure
Traffic stringCollector Name - Azure Traffic Collector name
- collector
Policies 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.
- resource
Group StringName - The name of the resource group.
- azure
Traffic StringCollector Name - Azure Traffic Collector name
- collector
Policies 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.
- Provisioning
State string - The provisioning state of the application rule collection resource.
- System
Data 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.
- Virtual
Hub 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.
- Provisioning
State string - 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 string
- 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.
- provisioning
State String - 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 String
- 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.
- provisioning
State string - 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 string
- Resource type.
- virtual
Hub 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.
- provisioning
State String - The provisioning state of the application rule collection resource.
- system
Data Property Map - Metadata pertaining to creation and last modification of the resource.
- type String
- Resource type.
- virtual
Hub Property Map - The virtualHub to which the Azure Traffic Collector belongs.
Supporting Types
CollectorPolicy, CollectorPolicyArgs
- Emission
Policies []EmissionPolicies Properties Format - Emission policies.
- Ingestion
Policy IngestionPolicy Properties Format - Ingestion policies.
- emission
Policies List<EmissionPolicies Properties Format> - Emission policies.
- ingestion
Policy IngestionPolicy Properties Format - Ingestion policies.
- emission
Policies EmissionPolicies Properties Format[] - Emission policies.
- ingestion
Policy IngestionPolicy Properties Format - Ingestion policies.
- emission_
policies Sequence[EmissionPolicies Properties Format] - Emission policies.
- ingestion_
policy IngestionPolicy Properties Format - Ingestion policies.
- emission
Policies List<Property Map> - Emission policies.
- ingestion
Policy 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
- Provisioning
State string - The provisioning state.
- System
Data 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
- Emission
Policies List<Pulumi.Azure Native. Network Function. Inputs. Emission Policies Properties Format Response> - Emission policies.
- Ingestion
Policy 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
- Provisioning
State string - The provisioning state.
- System
Data CollectorPolicy Response System Data - Metadata pertaining to creation and last modification of the resource.
- Type string
- Azure resource type
- Emission
Policies []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
- provisioning
State String - The provisioning state.
- system
Data CollectorPolicy Response System Data - Metadata pertaining to creation and last modification of the resource.
- type String
- Azure resource type
- emission
Policies List<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
- provisioning
State string - The provisioning state.
- system
Data CollectorPolicy Response System Data - Metadata pertaining to creation and last modification of the resource.
- type string
- Azure resource type
- emission
Policies EmissionPolicies Properties Format Response[] - Emission policies.
- ingestion
Policy 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
- provisioning
State String - The provisioning state.
- system
Data Property Map - Metadata pertaining to creation and last modification of the resource.
- type String
- Azure resource type
- emission
Policies List<Property Map> - Emission policies.
- ingestion
Policy Property Map - Ingestion policies.
CollectorPolicyResponseSystemData, CollectorPolicyResponseSystemDataArgs
- 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 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 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 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 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_ 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 StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
DestinationType, DestinationTypeArgs
- Azure
Monitor - AzureMonitor
- Destination
Type Azure Monitor - AzureMonitor
- Azure
Monitor - AzureMonitor
- Azure
Monitor - AzureMonitor
- AZURE_MONITOR
- AzureMonitor
- "Azure
Monitor" - AzureMonitor
EmissionPoliciesPropertiesFormat, EmissionPoliciesPropertiesFormatArgs
- Emission
Destinations List<Pulumi.Azure Native. Network Function. Inputs. Emission Policy Destination> - Emission policy destinations.
- Emission
Type string | Pulumi.Azure Native. Network Function. Emission Type - Emission format type.
- Emission
Destinations []EmissionPolicy Destination - Emission policy destinations.
- Emission
Type string | EmissionType - Emission format type.
- emission
Destinations List<EmissionPolicy Destination> - Emission policy destinations.
- emission
Type String | EmissionType - Emission format type.
- emission
Destinations EmissionPolicy Destination[] - Emission policy destinations.
- emission
Type string | EmissionType - Emission format type.
- emission_
destinations Sequence[EmissionPolicy Destination] - Emission policy destinations.
- emission_
type str | EmissionType - Emission format type.
- emission
Destinations List<Property Map> - Emission policy destinations.
- emission
Type String | "IPFIX" - Emission format type.
EmissionPoliciesPropertiesFormatResponse, EmissionPoliciesPropertiesFormatResponseArgs
- Emission
Destinations List<Pulumi.Azure Native. Network Function. Inputs. Emission Policy Destination Response> - Emission policy destinations.
- Emission
Type string - Emission format type.
- Emission
Destinations []EmissionPolicy Destination Response - Emission policy destinations.
- Emission
Type string - Emission format type.
- emission
Destinations List<EmissionPolicy Destination Response> - Emission policy destinations.
- emission
Type String - Emission format type.
- emission
Destinations EmissionPolicy Destination Response[] - Emission policy destinations.
- emission
Type string - Emission format type.
- emission_
destinations Sequence[EmissionPolicy Destination Response] - Emission policy destinations.
- emission_
type str - Emission format type.
- emission
Destinations List<Property Map> - Emission policy destinations.
- emission
Type String - Emission format type.
EmissionPolicyDestination, EmissionPolicyDestinationArgs
- Destination
Type string | Pulumi.Azure Native. Network Function. Destination Type - Emission destination type.
- Destination
Type string | DestinationType - Emission destination type.
- destination
Type String | DestinationType - Emission destination type.
- destination
Type string | DestinationType - Emission destination type.
- destination_
type str | DestinationType - Emission destination type.
- destination
Type String | "AzureMonitor" - Emission destination type.
EmissionPolicyDestinationResponse, EmissionPolicyDestinationResponseArgs
- Destination
Type string - Emission destination type.
- Destination
Type string - Emission destination type.
- destination
Type String - Emission destination type.
- destination
Type string - Emission destination type.
- destination_
type str - Emission destination type.
- destination
Type String - Emission destination type.
EmissionType, EmissionTypeArgs
- IPFIX
- IPFIX
- Emission
Type IPFIX - IPFIX
- IPFIX
- IPFIX
- IPFIX
- IPFIX
- IPFIX
- IPFIX
- "IPFIX"
- IPFIX
IngestionPolicyPropertiesFormat, IngestionPolicyPropertiesFormatArgs
- Ingestion
Sources List<Pulumi.Azure Native. Network Function. Inputs. Ingestion Sources Properties Format> - Ingestion Sources.
- Ingestion
Type string | Pulumi.Azure Native. Network Function. Ingestion Type - The ingestion type.
- Ingestion
Sources []IngestionSources Properties Format - Ingestion Sources.
- Ingestion
Type string | IngestionType - The ingestion type.
- ingestion
Sources List<IngestionSources Properties Format> - Ingestion Sources.
- ingestion
Type String | IngestionType - The ingestion type.
- ingestion
Sources IngestionSources Properties Format[] - Ingestion Sources.
- ingestion
Type string | IngestionType - The ingestion type.
- ingestion_
sources Sequence[IngestionSources Properties Format] - Ingestion Sources.
- ingestion_
type str | IngestionType - The ingestion type.
- ingestion
Sources List<Property Map> - Ingestion Sources.
- ingestion
Type String | "IPFIX" - The ingestion type.
IngestionPolicyPropertiesFormatResponse, IngestionPolicyPropertiesFormatResponseArgs
- Ingestion
Sources List<Pulumi.Azure Native. Network Function. Inputs. Ingestion Sources Properties Format Response> - Ingestion Sources.
- Ingestion
Type string - The ingestion type.
- Ingestion
Sources []IngestionSources Properties Format Response - Ingestion Sources.
- Ingestion
Type string - The ingestion type.
- ingestion
Sources List<IngestionSources Properties Format Response> - Ingestion Sources.
- ingestion
Type String - The ingestion type.
- ingestion
Sources IngestionSources Properties Format Response[] - Ingestion Sources.
- ingestion
Type string - The ingestion type.
- ingestion_
sources Sequence[IngestionSources Properties Format Response] - Ingestion Sources.
- ingestion_
type str - The ingestion type.
- ingestion
Sources List<Property Map> - Ingestion Sources.
- ingestion
Type String - The ingestion type.
IngestionSourcesPropertiesFormat, IngestionSourcesPropertiesFormatArgs
- Resource
Id string - Resource ID.
- Source
Type string | Pulumi.Azure Native. Network Function. Source Type - Ingestion source type.
- Resource
Id string - Resource ID.
- Source
Type string | SourceType - Ingestion source type.
- resource
Id String - Resource ID.
- source
Type String | SourceType - Ingestion source type.
- resource
Id string - Resource ID.
- source
Type string | SourceType - Ingestion source type.
- resource_
id str - Resource ID.
- source_
type str | SourceType - Ingestion source type.
- resource
Id String - Resource ID.
- source
Type String | "Resource" - Ingestion source type.
IngestionSourcesPropertiesFormatResponse, IngestionSourcesPropertiesFormatResponseArgs
- Resource
Id string - Resource ID.
- Source
Type string - Ingestion source type.
- Resource
Id string - Resource ID.
- Source
Type string - Ingestion source type.
- resource
Id String - Resource ID.
- source
Type String - Ingestion source type.
- resource
Id string - Resource ID.
- source
Type string - Ingestion source type.
- resource_
id str - Resource ID.
- source_
type str - Ingestion source type.
- resource
Id String - Resource ID.
- source
Type String - Ingestion source type.
IngestionType, IngestionTypeArgs
- IPFIX
- IPFIX
- Ingestion
Type 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
- Source
Type Resource - Resource
- Resource
- Resource
- Resource
- Resource
- RESOURCE
- Resource
- "Resource"
- Resource
TrackedResourceResponseSystemData, TrackedResourceResponseSystemDataArgs
- 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 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 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 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 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_ 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 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: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