1. Packages
  2. Cisco IOS XE Resource Provider
  3. API Docs
  4. LoggingIpv6HostVrfTransport
Cisco IOS XE v0.0.1 published on Friday, Sep 22, 2023 by lbrlabs

iosxe.LoggingIpv6HostVrfTransport

Explore with Pulumi AI

This resource can manage the Logging IPv6 Host VRF Transport configuration.

Example Usage

Coming soon!

Coming soon!

package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.iosxe.LoggingIpv6HostVrfTransport;
import com.pulumi.iosxe.LoggingIpv6HostVrfTransportArgs;
import com.pulumi.iosxe.inputs.LoggingIpv6HostVrfTransportTransportTcpPortArgs;
import com.pulumi.iosxe.inputs.LoggingIpv6HostVrfTransportTransportTlsPortArgs;
import com.pulumi.iosxe.inputs.LoggingIpv6HostVrfTransportTransportUdpPortArgs;
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 example = new LoggingIpv6HostVrfTransport("example", LoggingIpv6HostVrfTransportArgs.builder()        
            .ipv6Host("2001::1")
            .transportTcpPorts(LoggingIpv6HostVrfTransportTransportTcpPortArgs.builder()
                .port_number(10001)
                .build())
            .transportTlsPorts(LoggingIpv6HostVrfTransportTransportTlsPortArgs.builder()
                .port_number(10002)
                .build())
            .transportUdpPorts(LoggingIpv6HostVrfTransportTransportUdpPortArgs.builder()
                .port_number(10000)
                .build())
            .vrf("VRF1")
            .build());

    }
}
Copy

Coming soon!

Coming soon!

resources:
  example:
    type: iosxe:LoggingIpv6HostVrfTransport
    properties:
      ipv6Host: 2001::1
      transportTcpPorts:
        - port_number: 10001
      transportTlsPorts:
        - port_number: 10002
      transportUdpPorts:
        - port_number: 10000
      vrf: VRF1
Copy

Create LoggingIpv6HostVrfTransport Resource

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

Constructor syntax

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

@overload
def LoggingIpv6HostVrfTransport(resource_name: str,
                                opts: Optional[ResourceOptions] = None,
                                ipv6_host: Optional[str] = None,
                                vrf: Optional[str] = None,
                                delete_mode: Optional[str] = None,
                                device: Optional[str] = None,
                                transport_tcp_ports: Optional[Sequence[LoggingIpv6HostVrfTransportTransportTcpPortArgs]] = None,
                                transport_tls_ports: Optional[Sequence[LoggingIpv6HostVrfTransportTransportTlsPortArgs]] = None,
                                transport_udp_ports: Optional[Sequence[LoggingIpv6HostVrfTransportTransportUdpPortArgs]] = None)
func NewLoggingIpv6HostVrfTransport(ctx *Context, name string, args LoggingIpv6HostVrfTransportArgs, opts ...ResourceOption) (*LoggingIpv6HostVrfTransport, error)
public LoggingIpv6HostVrfTransport(string name, LoggingIpv6HostVrfTransportArgs args, CustomResourceOptions? opts = null)
public LoggingIpv6HostVrfTransport(String name, LoggingIpv6HostVrfTransportArgs args)
public LoggingIpv6HostVrfTransport(String name, LoggingIpv6HostVrfTransportArgs args, CustomResourceOptions options)
type: iosxe:LoggingIpv6HostVrfTransport
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. LoggingIpv6HostVrfTransportArgs
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. LoggingIpv6HostVrfTransportArgs
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. LoggingIpv6HostVrfTransportArgs
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. LoggingIpv6HostVrfTransportArgs
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. LoggingIpv6HostVrfTransportArgs
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 loggingIpv6HostVrfTransportResource = new Iosxe.LoggingIpv6HostVrfTransport("loggingIpv6HostVrfTransportResource", new()
{
    Ipv6Host = "string",
    Vrf = "string",
    DeleteMode = "string",
    Device = "string",
    TransportTcpPorts = new[]
    {
        new Iosxe.Inputs.LoggingIpv6HostVrfTransportTransportTcpPortArgs
        {
            PortNumber = 0,
        },
    },
    TransportTlsPorts = new[]
    {
        new Iosxe.Inputs.LoggingIpv6HostVrfTransportTransportTlsPortArgs
        {
            PortNumber = 0,
            Profile = "string",
        },
    },
    TransportUdpPorts = new[]
    {
        new Iosxe.Inputs.LoggingIpv6HostVrfTransportTransportUdpPortArgs
        {
            PortNumber = 0,
        },
    },
});
Copy
example, err := iosxe.NewLoggingIpv6HostVrfTransport(ctx, "loggingIpv6HostVrfTransportResource", &iosxe.LoggingIpv6HostVrfTransportArgs{
	Ipv6Host:   pulumi.String("string"),
	Vrf:        pulumi.String("string"),
	DeleteMode: pulumi.String("string"),
	Device:     pulumi.String("string"),
	TransportTcpPorts: iosxe.LoggingIpv6HostVrfTransportTransportTcpPortArray{
		&iosxe.LoggingIpv6HostVrfTransportTransportTcpPortArgs{
			PortNumber: pulumi.Int(0),
		},
	},
	TransportTlsPorts: iosxe.LoggingIpv6HostVrfTransportTransportTlsPortArray{
		&iosxe.LoggingIpv6HostVrfTransportTransportTlsPortArgs{
			PortNumber: pulumi.Int(0),
			Profile:    pulumi.String("string"),
		},
	},
	TransportUdpPorts: iosxe.LoggingIpv6HostVrfTransportTransportUdpPortArray{
		&iosxe.LoggingIpv6HostVrfTransportTransportUdpPortArgs{
			PortNumber: pulumi.Int(0),
		},
	},
})
Copy
var loggingIpv6HostVrfTransportResource = new LoggingIpv6HostVrfTransport("loggingIpv6HostVrfTransportResource", LoggingIpv6HostVrfTransportArgs.builder()
    .ipv6Host("string")
    .vrf("string")
    .deleteMode("string")
    .device("string")
    .transportTcpPorts(LoggingIpv6HostVrfTransportTransportTcpPortArgs.builder()
        .portNumber(0)
        .build())
    .transportTlsPorts(LoggingIpv6HostVrfTransportTransportTlsPortArgs.builder()
        .portNumber(0)
        .profile("string")
        .build())
    .transportUdpPorts(LoggingIpv6HostVrfTransportTransportUdpPortArgs.builder()
        .portNumber(0)
        .build())
    .build());
Copy
logging_ipv6_host_vrf_transport_resource = iosxe.LoggingIpv6HostVrfTransport("loggingIpv6HostVrfTransportResource",
    ipv6_host="string",
    vrf="string",
    delete_mode="string",
    device="string",
    transport_tcp_ports=[{
        "port_number": 0,
    }],
    transport_tls_ports=[{
        "port_number": 0,
        "profile": "string",
    }],
    transport_udp_ports=[{
        "port_number": 0,
    }])
Copy
const loggingIpv6HostVrfTransportResource = new iosxe.LoggingIpv6HostVrfTransport("loggingIpv6HostVrfTransportResource", {
    ipv6Host: "string",
    vrf: "string",
    deleteMode: "string",
    device: "string",
    transportTcpPorts: [{
        portNumber: 0,
    }],
    transportTlsPorts: [{
        portNumber: 0,
        profile: "string",
    }],
    transportUdpPorts: [{
        portNumber: 0,
    }],
});
Copy
type: iosxe:LoggingIpv6HostVrfTransport
properties:
    deleteMode: string
    device: string
    ipv6Host: string
    transportTcpPorts:
        - portNumber: 0
    transportTlsPorts:
        - portNumber: 0
          profile: string
    transportUdpPorts:
        - portNumber: 0
    vrf: string
Copy

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

Ipv6Host This property is required. string
Vrf This property is required. string
Set VRF option
DeleteMode string
Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. Default value is all. - Choices: all, attributes
Device string
A device name from the provider configuration.
TransportTcpPorts List<Lbrlabs.PulumiPackage.Iosxe.Inputs.LoggingIpv6HostVrfTransportTransportTcpPort>
Port Number List
TransportTlsPorts List<Lbrlabs.PulumiPackage.Iosxe.Inputs.LoggingIpv6HostVrfTransportTransportTlsPort>
Port Number List
TransportUdpPorts List<Lbrlabs.PulumiPackage.Iosxe.Inputs.LoggingIpv6HostVrfTransportTransportUdpPort>
Port Number List
Ipv6Host This property is required. string
Vrf This property is required. string
Set VRF option
DeleteMode string
Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. Default value is all. - Choices: all, attributes
Device string
A device name from the provider configuration.
TransportTcpPorts []LoggingIpv6HostVrfTransportTransportTcpPortArgs
Port Number List
TransportTlsPorts []LoggingIpv6HostVrfTransportTransportTlsPortArgs
Port Number List
TransportUdpPorts []LoggingIpv6HostVrfTransportTransportUdpPortArgs
Port Number List
ipv6Host This property is required. String
vrf This property is required. String
Set VRF option
deleteMode String
Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. Default value is all. - Choices: all, attributes
device String
A device name from the provider configuration.
transportTcpPorts List<LoggingIpv6HostVrfTransportTransportTcpPort>
Port Number List
transportTlsPorts List<LoggingIpv6HostVrfTransportTransportTlsPort>
Port Number List
transportUdpPorts List<LoggingIpv6HostVrfTransportTransportUdpPort>
Port Number List
ipv6Host This property is required. string
vrf This property is required. string
Set VRF option
deleteMode string
Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. Default value is all. - Choices: all, attributes
device string
A device name from the provider configuration.
transportTcpPorts LoggingIpv6HostVrfTransportTransportTcpPort[]
Port Number List
transportTlsPorts LoggingIpv6HostVrfTransportTransportTlsPort[]
Port Number List
transportUdpPorts LoggingIpv6HostVrfTransportTransportUdpPort[]
Port Number List
ipv6_host This property is required. str
vrf This property is required. str
Set VRF option
delete_mode str
Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. Default value is all. - Choices: all, attributes
device str
A device name from the provider configuration.
transport_tcp_ports Sequence[LoggingIpv6HostVrfTransportTransportTcpPortArgs]
Port Number List
transport_tls_ports Sequence[LoggingIpv6HostVrfTransportTransportTlsPortArgs]
Port Number List
transport_udp_ports Sequence[LoggingIpv6HostVrfTransportTransportUdpPortArgs]
Port Number List
ipv6Host This property is required. String
vrf This property is required. String
Set VRF option
deleteMode String
Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. Default value is all. - Choices: all, attributes
device String
A device name from the provider configuration.
transportTcpPorts List<Property Map>
Port Number List
transportTlsPorts List<Property Map>
Port Number List
transportUdpPorts List<Property Map>
Port Number List

Outputs

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

Id string
The provider-assigned unique ID for this managed resource.
Id string
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.
id string
The provider-assigned unique ID for this managed resource.
id str
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.

Look up Existing LoggingIpv6HostVrfTransport Resource

Get an existing LoggingIpv6HostVrfTransport resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: LoggingIpv6HostVrfTransportState, opts?: CustomResourceOptions): LoggingIpv6HostVrfTransport
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        delete_mode: Optional[str] = None,
        device: Optional[str] = None,
        ipv6_host: Optional[str] = None,
        transport_tcp_ports: Optional[Sequence[LoggingIpv6HostVrfTransportTransportTcpPortArgs]] = None,
        transport_tls_ports: Optional[Sequence[LoggingIpv6HostVrfTransportTransportTlsPortArgs]] = None,
        transport_udp_ports: Optional[Sequence[LoggingIpv6HostVrfTransportTransportUdpPortArgs]] = None,
        vrf: Optional[str] = None) -> LoggingIpv6HostVrfTransport
func GetLoggingIpv6HostVrfTransport(ctx *Context, name string, id IDInput, state *LoggingIpv6HostVrfTransportState, opts ...ResourceOption) (*LoggingIpv6HostVrfTransport, error)
public static LoggingIpv6HostVrfTransport Get(string name, Input<string> id, LoggingIpv6HostVrfTransportState? state, CustomResourceOptions? opts = null)
public static LoggingIpv6HostVrfTransport get(String name, Output<String> id, LoggingIpv6HostVrfTransportState state, CustomResourceOptions options)
resources:  _:    type: iosxe:LoggingIpv6HostVrfTransport    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
DeleteMode string
Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. Default value is all. - Choices: all, attributes
Device string
A device name from the provider configuration.
Ipv6Host string
TransportTcpPorts List<Lbrlabs.PulumiPackage.Iosxe.Inputs.LoggingIpv6HostVrfTransportTransportTcpPort>
Port Number List
TransportTlsPorts List<Lbrlabs.PulumiPackage.Iosxe.Inputs.LoggingIpv6HostVrfTransportTransportTlsPort>
Port Number List
TransportUdpPorts List<Lbrlabs.PulumiPackage.Iosxe.Inputs.LoggingIpv6HostVrfTransportTransportUdpPort>
Port Number List
Vrf string
Set VRF option
DeleteMode string
Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. Default value is all. - Choices: all, attributes
Device string
A device name from the provider configuration.
Ipv6Host string
TransportTcpPorts []LoggingIpv6HostVrfTransportTransportTcpPortArgs
Port Number List
TransportTlsPorts []LoggingIpv6HostVrfTransportTransportTlsPortArgs
Port Number List
TransportUdpPorts []LoggingIpv6HostVrfTransportTransportUdpPortArgs
Port Number List
Vrf string
Set VRF option
deleteMode String
Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. Default value is all. - Choices: all, attributes
device String
A device name from the provider configuration.
ipv6Host String
transportTcpPorts List<LoggingIpv6HostVrfTransportTransportTcpPort>
Port Number List
transportTlsPorts List<LoggingIpv6HostVrfTransportTransportTlsPort>
Port Number List
transportUdpPorts List<LoggingIpv6HostVrfTransportTransportUdpPort>
Port Number List
vrf String
Set VRF option
deleteMode string
Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. Default value is all. - Choices: all, attributes
device string
A device name from the provider configuration.
ipv6Host string
transportTcpPorts LoggingIpv6HostVrfTransportTransportTcpPort[]
Port Number List
transportTlsPorts LoggingIpv6HostVrfTransportTransportTlsPort[]
Port Number List
transportUdpPorts LoggingIpv6HostVrfTransportTransportUdpPort[]
Port Number List
vrf string
Set VRF option
delete_mode str
Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. Default value is all. - Choices: all, attributes
device str
A device name from the provider configuration.
ipv6_host str
transport_tcp_ports Sequence[LoggingIpv6HostVrfTransportTransportTcpPortArgs]
Port Number List
transport_tls_ports Sequence[LoggingIpv6HostVrfTransportTransportTlsPortArgs]
Port Number List
transport_udp_ports Sequence[LoggingIpv6HostVrfTransportTransportUdpPortArgs]
Port Number List
vrf str
Set VRF option
deleteMode String
Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. Default value is all. - Choices: all, attributes
device String
A device name from the provider configuration.
ipv6Host String
transportTcpPorts List<Property Map>
Port Number List
transportTlsPorts List<Property Map>
Port Number List
transportUdpPorts List<Property Map>
Port Number List
vrf String
Set VRF option

Supporting Types

LoggingIpv6HostVrfTransportTransportTcpPort
, LoggingIpv6HostVrfTransportTransportTcpPortArgs

PortNumber This property is required. int
PortNumber This property is required. int
portNumber This property is required. Integer
portNumber This property is required. number
port_number This property is required. int
portNumber This property is required. Number

LoggingIpv6HostVrfTransportTransportTlsPort
, LoggingIpv6HostVrfTransportTransportTlsPortArgs

PortNumber This property is required. int
Profile string
PortNumber This property is required. int
Profile string
portNumber This property is required. Integer
profile String
portNumber This property is required. number
profile string
port_number This property is required. int
profile str
portNumber This property is required. Number
profile String

LoggingIpv6HostVrfTransportTransportUdpPort
, LoggingIpv6HostVrfTransportTransportUdpPortArgs

PortNumber This property is required. int
PortNumber This property is required. int
portNumber This property is required. Integer
portNumber This property is required. number
port_number This property is required. int
portNumber This property is required. Number

Import

 $ pulumi import iosxe:index/loggingIpv6HostVrfTransport:LoggingIpv6HostVrfTransport example "Cisco-IOS-XE-native:native/logging/host/ipv6/ipv6-host-vrf-transport-list=2001::1,VRF1"
Copy

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

Package Details

Repository
iosxe lbrlabs/pulumi-iosxe
License
Apache-2.0
Notes
This Pulumi package is based on the iosxe Terraform Provider.