1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Core
  5. getVtaps
Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi

oci.Core.getVtaps

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi

    This data source provides the list of Vtaps in Oracle Cloud Infrastructure Core service.

    Lists the virtual test access points (VTAPs) in the specified compartment.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testVtaps = oci.Core.getVtaps({
        compartmentId: _var.compartment_id,
        displayName: _var.vtap_display_name,
        isVtapEnabled: _var.vtap_is_vtap_enabled,
        source: _var.vtap_source,
        state: _var.vtap_state,
        targetId: oci_cloud_guard_target.test_target.id,
        targetIp: _var.vtap_target_ip,
        vcnId: oci_core_vcn.test_vcn.id,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_vtaps = oci.Core.get_vtaps(compartment_id=var["compartment_id"],
        display_name=var["vtap_display_name"],
        is_vtap_enabled=var["vtap_is_vtap_enabled"],
        source=var["vtap_source"],
        state=var["vtap_state"],
        target_id=oci_cloud_guard_target["test_target"]["id"],
        target_ip=var["vtap_target_ip"],
        vcn_id=oci_core_vcn["test_vcn"]["id"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/go/oci/Core"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := Core.GetVtaps(ctx, &core.GetVtapsArgs{
    			CompartmentId: _var.Compartment_id,
    			DisplayName:   pulumi.StringRef(_var.Vtap_display_name),
    			IsVtapEnabled: pulumi.BoolRef(_var.Vtap_is_vtap_enabled),
    			Source:        pulumi.StringRef(_var.Vtap_source),
    			State:         pulumi.StringRef(_var.Vtap_state),
    			TargetId:      pulumi.StringRef(oci_cloud_guard_target.Test_target.Id),
    			TargetIp:      pulumi.StringRef(_var.Vtap_target_ip),
    			VcnId:         pulumi.StringRef(oci_core_vcn.Test_vcn.Id),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Oci = Pulumi.Oci;
    
    return await Deployment.RunAsync(() => 
    {
        var testVtaps = Oci.Core.GetVtaps.Invoke(new()
        {
            CompartmentId = @var.Compartment_id,
            DisplayName = @var.Vtap_display_name,
            IsVtapEnabled = @var.Vtap_is_vtap_enabled,
            Source = @var.Vtap_source,
            State = @var.Vtap_state,
            TargetId = oci_cloud_guard_target.Test_target.Id,
            TargetIp = @var.Vtap_target_ip,
            VcnId = oci_core_vcn.Test_vcn.Id,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.Core.CoreFunctions;
    import com.pulumi.oci.Core.inputs.GetVtapsArgs;
    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) {
            final var testVtaps = CoreFunctions.getVtaps(GetVtapsArgs.builder()
                .compartmentId(var_.compartment_id())
                .displayName(var_.vtap_display_name())
                .isVtapEnabled(var_.vtap_is_vtap_enabled())
                .source(var_.vtap_source())
                .state(var_.vtap_state())
                .targetId(oci_cloud_guard_target.test_target().id())
                .targetIp(var_.vtap_target_ip())
                .vcnId(oci_core_vcn.test_vcn().id())
                .build());
    
        }
    }
    
    variables:
      testVtaps:
        fn::invoke:
          Function: oci:Core:getVtaps
          Arguments:
            compartmentId: ${var.compartment_id}
            displayName: ${var.vtap_display_name}
            isVtapEnabled: ${var.vtap_is_vtap_enabled}
            source: ${var.vtap_source}
            state: ${var.vtap_state}
            targetId: ${oci_cloud_guard_target.test_target.id}
            targetIp: ${var.vtap_target_ip}
            vcnId: ${oci_core_vcn.test_vcn.id}
    

    Using getVtaps

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getVtaps(args: GetVtapsArgs, opts?: InvokeOptions): Promise<GetVtapsResult>
    function getVtapsOutput(args: GetVtapsOutputArgs, opts?: InvokeOptions): Output<GetVtapsResult>
    def get_vtaps(compartment_id: Optional[str] = None,
                  display_name: Optional[str] = None,
                  filters: Optional[Sequence[_core.GetVtapsFilter]] = None,
                  is_vtap_enabled: Optional[bool] = None,
                  source: Optional[str] = None,
                  state: Optional[str] = None,
                  target_id: Optional[str] = None,
                  target_ip: Optional[str] = None,
                  vcn_id: Optional[str] = None,
                  opts: Optional[InvokeOptions] = None) -> GetVtapsResult
    def get_vtaps_output(compartment_id: Optional[pulumi.Input[str]] = None,
                  display_name: Optional[pulumi.Input[str]] = None,
                  filters: Optional[pulumi.Input[Sequence[pulumi.Input[_core.GetVtapsFilterArgs]]]] = None,
                  is_vtap_enabled: Optional[pulumi.Input[bool]] = None,
                  source: Optional[pulumi.Input[str]] = None,
                  state: Optional[pulumi.Input[str]] = None,
                  target_id: Optional[pulumi.Input[str]] = None,
                  target_ip: Optional[pulumi.Input[str]] = None,
                  vcn_id: Optional[pulumi.Input[str]] = None,
                  opts: Optional[InvokeOptions] = None) -> Output[GetVtapsResult]
    func GetVtaps(ctx *Context, args *GetVtapsArgs, opts ...InvokeOption) (*GetVtapsResult, error)
    func GetVtapsOutput(ctx *Context, args *GetVtapsOutputArgs, opts ...InvokeOption) GetVtapsResultOutput

    > Note: This function is named GetVtaps in the Go SDK.

    public static class GetVtaps 
    {
        public static Task<GetVtapsResult> InvokeAsync(GetVtapsArgs args, InvokeOptions? opts = null)
        public static Output<GetVtapsResult> Invoke(GetVtapsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetVtapsResult> getVtaps(GetVtapsArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: oci:Core/getVtaps:getVtaps
      arguments:
        # arguments dictionary

    The following arguments are supported:

    CompartmentId string
    The OCID of the compartment.
    DisplayName string
    A filter to return only resources that match the given display name exactly.
    Filters List<GetVtapsFilter>
    IsVtapEnabled bool
    Indicates whether to list all VTAPs or only running VTAPs.

    • When FALSE, lists ALL running and stopped VTAPs.
    • When TRUE, lists only running VTAPs (VTAPs where isVtapEnabled = TRUE).
    Source string
    The OCID of the VTAP source.
    State string
    A filter to return only resources that match the given VTAP administrative lifecycle state. The state value is case-insensitive.
    TargetId string
    The OCID of the VTAP target.
    TargetIp string
    The IP address of the VTAP target.
    VcnId string
    The OCID of the VCN.
    CompartmentId string
    The OCID of the compartment.
    DisplayName string
    A filter to return only resources that match the given display name exactly.
    Filters []GetVtapsFilter
    IsVtapEnabled bool
    Indicates whether to list all VTAPs or only running VTAPs.

    • When FALSE, lists ALL running and stopped VTAPs.
    • When TRUE, lists only running VTAPs (VTAPs where isVtapEnabled = TRUE).
    Source string
    The OCID of the VTAP source.
    State string
    A filter to return only resources that match the given VTAP administrative lifecycle state. The state value is case-insensitive.
    TargetId string
    The OCID of the VTAP target.
    TargetIp string
    The IP address of the VTAP target.
    VcnId string
    The OCID of the VCN.
    compartmentId String
    The OCID of the compartment.
    displayName String
    A filter to return only resources that match the given display name exactly.
    filters List<GetVtapsFilter>
    isVtapEnabled Boolean
    Indicates whether to list all VTAPs or only running VTAPs.

    • When FALSE, lists ALL running and stopped VTAPs.
    • When TRUE, lists only running VTAPs (VTAPs where isVtapEnabled = TRUE).
    source String
    The OCID of the VTAP source.
    state String
    A filter to return only resources that match the given VTAP administrative lifecycle state. The state value is case-insensitive.
    targetId String
    The OCID of the VTAP target.
    targetIp String
    The IP address of the VTAP target.
    vcnId String
    The OCID of the VCN.
    compartmentId string
    The OCID of the compartment.
    displayName string
    A filter to return only resources that match the given display name exactly.
    filters GetVtapsFilter[]
    isVtapEnabled boolean
    Indicates whether to list all VTAPs or only running VTAPs.

    • When FALSE, lists ALL running and stopped VTAPs.
    • When TRUE, lists only running VTAPs (VTAPs where isVtapEnabled = TRUE).
    source string
    The OCID of the VTAP source.
    state string
    A filter to return only resources that match the given VTAP administrative lifecycle state. The state value is case-insensitive.
    targetId string
    The OCID of the VTAP target.
    targetIp string
    The IP address of the VTAP target.
    vcnId string
    The OCID of the VCN.
    compartment_id str
    The OCID of the compartment.
    display_name str
    A filter to return only resources that match the given display name exactly.
    filters Sequence[core.GetVtapsFilter]
    is_vtap_enabled bool
    Indicates whether to list all VTAPs or only running VTAPs.

    • When FALSE, lists ALL running and stopped VTAPs.
    • When TRUE, lists only running VTAPs (VTAPs where isVtapEnabled = TRUE).
    source str
    The OCID of the VTAP source.
    state str
    A filter to return only resources that match the given VTAP administrative lifecycle state. The state value is case-insensitive.
    target_id str
    The OCID of the VTAP target.
    target_ip str
    The IP address of the VTAP target.
    vcn_id str
    The OCID of the VCN.
    compartmentId String
    The OCID of the compartment.
    displayName String
    A filter to return only resources that match the given display name exactly.
    filters List<Property Map>
    isVtapEnabled Boolean
    Indicates whether to list all VTAPs or only running VTAPs.

    • When FALSE, lists ALL running and stopped VTAPs.
    • When TRUE, lists only running VTAPs (VTAPs where isVtapEnabled = TRUE).
    source String
    The OCID of the VTAP source.
    state String
    A filter to return only resources that match the given VTAP administrative lifecycle state. The state value is case-insensitive.
    targetId String
    The OCID of the VTAP target.
    targetIp String
    The IP address of the VTAP target.
    vcnId String
    The OCID of the VCN.

    getVtaps Result

    The following output properties are available:

    CompartmentId string
    The OCID of the compartment containing the Vtap resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    Vtaps List<GetVtapsVtap>
    The list of vtaps.
    DisplayName string
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    Filters List<GetVtapsFilter>
    IsVtapEnabled bool
    Used to start or stop a Vtap resource.
    Source string
    State string
    The VTAP's administrative lifecycle state.
    TargetId string
    The OCID of the destination resource where mirrored packets are sent.
    TargetIp string
    The IP address of the destination resource where mirrored packets are sent.
    VcnId string
    The OCID of the VCN containing the Vtap resource.
    CompartmentId string
    The OCID of the compartment containing the Vtap resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    Vtaps []GetVtapsVtap
    The list of vtaps.
    DisplayName string
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    Filters []GetVtapsFilter
    IsVtapEnabled bool
    Used to start or stop a Vtap resource.
    Source string
    State string
    The VTAP's administrative lifecycle state.
    TargetId string
    The OCID of the destination resource where mirrored packets are sent.
    TargetIp string
    The IP address of the destination resource where mirrored packets are sent.
    VcnId string
    The OCID of the VCN containing the Vtap resource.
    compartmentId String
    The OCID of the compartment containing the Vtap resource.
    id String
    The provider-assigned unique ID for this managed resource.
    vtaps List<GetVtapsVtap>
    The list of vtaps.
    displayName String
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    filters List<GetVtapsFilter>
    isVtapEnabled Boolean
    Used to start or stop a Vtap resource.
    source String
    state String
    The VTAP's administrative lifecycle state.
    targetId String
    The OCID of the destination resource where mirrored packets are sent.
    targetIp String
    The IP address of the destination resource where mirrored packets are sent.
    vcnId String
    The OCID of the VCN containing the Vtap resource.
    compartmentId string
    The OCID of the compartment containing the Vtap resource.
    id string
    The provider-assigned unique ID for this managed resource.
    vtaps GetVtapsVtap[]
    The list of vtaps.
    displayName string
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    filters GetVtapsFilter[]
    isVtapEnabled boolean
    Used to start or stop a Vtap resource.
    source string
    state string
    The VTAP's administrative lifecycle state.
    targetId string
    The OCID of the destination resource where mirrored packets are sent.
    targetIp string
    The IP address of the destination resource where mirrored packets are sent.
    vcnId string
    The OCID of the VCN containing the Vtap resource.
    compartment_id str
    The OCID of the compartment containing the Vtap resource.
    id str
    The provider-assigned unique ID for this managed resource.
    vtaps Sequence[core.GetVtapsVtap]
    The list of vtaps.
    display_name str
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    filters Sequence[core.GetVtapsFilter]
    is_vtap_enabled bool
    Used to start or stop a Vtap resource.
    source str
    state str
    The VTAP's administrative lifecycle state.
    target_id str
    The OCID of the destination resource where mirrored packets are sent.
    target_ip str
    The IP address of the destination resource where mirrored packets are sent.
    vcn_id str
    The OCID of the VCN containing the Vtap resource.
    compartmentId String
    The OCID of the compartment containing the Vtap resource.
    id String
    The provider-assigned unique ID for this managed resource.
    vtaps List<Property Map>
    The list of vtaps.
    displayName String
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    filters List<Property Map>
    isVtapEnabled Boolean
    Used to start or stop a Vtap resource.
    source String
    state String
    The VTAP's administrative lifecycle state.
    targetId String
    The OCID of the destination resource where mirrored packets are sent.
    targetIp String
    The IP address of the destination resource where mirrored packets are sent.
    vcnId String
    The OCID of the VCN containing the Vtap resource.

    Supporting Types

    GetVtapsFilter

    Name string
    Values List<string>
    Regex bool
    Name string
    Values []string
    Regex bool
    name String
    values List<String>
    regex Boolean
    name string
    values string[]
    regex boolean
    name str
    values Sequence[str]
    regex bool
    name String
    values List<String>
    regex Boolean

    GetVtapsVtap

    CaptureFilterId string
    The capture filter's Oracle ID (OCID).
    CompartmentId string
    The OCID of the compartment.
    DefinedTags Dictionary<string, object>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    DisplayName string
    A filter to return only resources that match the given display name exactly.
    EncapsulationProtocol string
    Defines an encapsulation header type for the VTAP's mirrored traffic.
    FreeformTags Dictionary<string, object>
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    Id string
    The VTAP's Oracle ID (OCID).
    IsVtapEnabled bool
    Indicates whether to list all VTAPs or only running VTAPs.

    • When FALSE, lists ALL running and stopped VTAPs.
    • When TRUE, lists only running VTAPs (VTAPs where isVtapEnabled = TRUE).
    LifecycleStateDetails string
    The VTAP's current running state.
    MaxPacketSize int
    The maximum size of the packets to be included in the filter.
    SourceId string
    The OCID of the source point where packets are captured.
    SourcePrivateEndpointIp string
    The IP Address of the source private endpoint.
    SourcePrivateEndpointSubnetId string
    The OCID of the subnet that source private endpoint belongs to.
    SourceType string
    The source type for the VTAP.
    State string
    A filter to return only resources that match the given VTAP administrative lifecycle state. The state value is case-insensitive.
    TargetId string
    The OCID of the VTAP target.
    TargetIp string
    The IP address of the VTAP target.
    TargetType string
    The target type for the VTAP.
    TimeCreated string
    The date and time the VTAP was created, in the format defined by RFC3339. Example: 2020-08-25T21:10:29.600Z
    TrafficMode string
    Used to control the priority of traffic. It is an optional field. If it not passed, the value is DEFAULT
    VcnId string
    The OCID of the VCN.
    VxlanNetworkIdentifier string
    The virtual extensible LAN (VXLAN) network identifier (or VXLAN segment ID) that uniquely identifies the VXLAN.
    CaptureFilterId string
    The capture filter's Oracle ID (OCID).
    CompartmentId string
    The OCID of the compartment.
    DefinedTags map[string]interface{}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    DisplayName string
    A filter to return only resources that match the given display name exactly.
    EncapsulationProtocol string
    Defines an encapsulation header type for the VTAP's mirrored traffic.
    FreeformTags map[string]interface{}
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    Id string
    The VTAP's Oracle ID (OCID).
    IsVtapEnabled bool
    Indicates whether to list all VTAPs or only running VTAPs.

    • When FALSE, lists ALL running and stopped VTAPs.
    • When TRUE, lists only running VTAPs (VTAPs where isVtapEnabled = TRUE).
    LifecycleStateDetails string
    The VTAP's current running state.
    MaxPacketSize int
    The maximum size of the packets to be included in the filter.
    SourceId string
    The OCID of the source point where packets are captured.
    SourcePrivateEndpointIp string
    The IP Address of the source private endpoint.
    SourcePrivateEndpointSubnetId string
    The OCID of the subnet that source private endpoint belongs to.
    SourceType string
    The source type for the VTAP.
    State string
    A filter to return only resources that match the given VTAP administrative lifecycle state. The state value is case-insensitive.
    TargetId string
    The OCID of the VTAP target.
    TargetIp string
    The IP address of the VTAP target.
    TargetType string
    The target type for the VTAP.
    TimeCreated string
    The date and time the VTAP was created, in the format defined by RFC3339. Example: 2020-08-25T21:10:29.600Z
    TrafficMode string
    Used to control the priority of traffic. It is an optional field. If it not passed, the value is DEFAULT
    VcnId string
    The OCID of the VCN.
    VxlanNetworkIdentifier string
    The virtual extensible LAN (VXLAN) network identifier (or VXLAN segment ID) that uniquely identifies the VXLAN.
    captureFilterId String
    The capture filter's Oracle ID (OCID).
    compartmentId String
    The OCID of the compartment.
    definedTags Map<String,Object>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName String
    A filter to return only resources that match the given display name exactly.
    encapsulationProtocol String
    Defines an encapsulation header type for the VTAP's mirrored traffic.
    freeformTags Map<String,Object>
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    id String
    The VTAP's Oracle ID (OCID).
    isVtapEnabled Boolean
    Indicates whether to list all VTAPs or only running VTAPs.

    • When FALSE, lists ALL running and stopped VTAPs.
    • When TRUE, lists only running VTAPs (VTAPs where isVtapEnabled = TRUE).
    lifecycleStateDetails String
    The VTAP's current running state.
    maxPacketSize Integer
    The maximum size of the packets to be included in the filter.
    sourceId String
    The OCID of the source point where packets are captured.
    sourcePrivateEndpointIp String
    The IP Address of the source private endpoint.
    sourcePrivateEndpointSubnetId String
    The OCID of the subnet that source private endpoint belongs to.
    sourceType String
    The source type for the VTAP.
    state String
    A filter to return only resources that match the given VTAP administrative lifecycle state. The state value is case-insensitive.
    targetId String
    The OCID of the VTAP target.
    targetIp String
    The IP address of the VTAP target.
    targetType String
    The target type for the VTAP.
    timeCreated String
    The date and time the VTAP was created, in the format defined by RFC3339. Example: 2020-08-25T21:10:29.600Z
    trafficMode String
    Used to control the priority of traffic. It is an optional field. If it not passed, the value is DEFAULT
    vcnId String
    The OCID of the VCN.
    vxlanNetworkIdentifier String
    The virtual extensible LAN (VXLAN) network identifier (or VXLAN segment ID) that uniquely identifies the VXLAN.
    captureFilterId string
    The capture filter's Oracle ID (OCID).
    compartmentId string
    The OCID of the compartment.
    definedTags {[key: string]: any}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName string
    A filter to return only resources that match the given display name exactly.
    encapsulationProtocol string
    Defines an encapsulation header type for the VTAP's mirrored traffic.
    freeformTags {[key: string]: any}
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    id string
    The VTAP's Oracle ID (OCID).
    isVtapEnabled boolean
    Indicates whether to list all VTAPs or only running VTAPs.

    • When FALSE, lists ALL running and stopped VTAPs.
    • When TRUE, lists only running VTAPs (VTAPs where isVtapEnabled = TRUE).
    lifecycleStateDetails string
    The VTAP's current running state.
    maxPacketSize number
    The maximum size of the packets to be included in the filter.
    sourceId string
    The OCID of the source point where packets are captured.
    sourcePrivateEndpointIp string
    The IP Address of the source private endpoint.
    sourcePrivateEndpointSubnetId string
    The OCID of the subnet that source private endpoint belongs to.
    sourceType string
    The source type for the VTAP.
    state string
    A filter to return only resources that match the given VTAP administrative lifecycle state. The state value is case-insensitive.
    targetId string
    The OCID of the VTAP target.
    targetIp string
    The IP address of the VTAP target.
    targetType string
    The target type for the VTAP.
    timeCreated string
    The date and time the VTAP was created, in the format defined by RFC3339. Example: 2020-08-25T21:10:29.600Z
    trafficMode string
    Used to control the priority of traffic. It is an optional field. If it not passed, the value is DEFAULT
    vcnId string
    The OCID of the VCN.
    vxlanNetworkIdentifier string
    The virtual extensible LAN (VXLAN) network identifier (or VXLAN segment ID) that uniquely identifies the VXLAN.
    capture_filter_id str
    The capture filter's Oracle ID (OCID).
    compartment_id str
    The OCID of the compartment.
    defined_tags Mapping[str, Any]
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    display_name str
    A filter to return only resources that match the given display name exactly.
    encapsulation_protocol str
    Defines an encapsulation header type for the VTAP's mirrored traffic.
    freeform_tags Mapping[str, Any]
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    id str
    The VTAP's Oracle ID (OCID).
    is_vtap_enabled bool
    Indicates whether to list all VTAPs or only running VTAPs.

    • When FALSE, lists ALL running and stopped VTAPs.
    • When TRUE, lists only running VTAPs (VTAPs where isVtapEnabled = TRUE).
    lifecycle_state_details str
    The VTAP's current running state.
    max_packet_size int
    The maximum size of the packets to be included in the filter.
    source_id str
    The OCID of the source point where packets are captured.
    source_private_endpoint_ip str
    The IP Address of the source private endpoint.
    source_private_endpoint_subnet_id str
    The OCID of the subnet that source private endpoint belongs to.
    source_type str
    The source type for the VTAP.
    state str
    A filter to return only resources that match the given VTAP administrative lifecycle state. The state value is case-insensitive.
    target_id str
    The OCID of the VTAP target.
    target_ip str
    The IP address of the VTAP target.
    target_type str
    The target type for the VTAP.
    time_created str
    The date and time the VTAP was created, in the format defined by RFC3339. Example: 2020-08-25T21:10:29.600Z
    traffic_mode str
    Used to control the priority of traffic. It is an optional field. If it not passed, the value is DEFAULT
    vcn_id str
    The OCID of the VCN.
    vxlan_network_identifier str
    The virtual extensible LAN (VXLAN) network identifier (or VXLAN segment ID) that uniquely identifies the VXLAN.
    captureFilterId String
    The capture filter's Oracle ID (OCID).
    compartmentId String
    The OCID of the compartment.
    definedTags Map<Any>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName String
    A filter to return only resources that match the given display name exactly.
    encapsulationProtocol String
    Defines an encapsulation header type for the VTAP's mirrored traffic.
    freeformTags Map<Any>
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    id String
    The VTAP's Oracle ID (OCID).
    isVtapEnabled Boolean
    Indicates whether to list all VTAPs or only running VTAPs.

    • When FALSE, lists ALL running and stopped VTAPs.
    • When TRUE, lists only running VTAPs (VTAPs where isVtapEnabled = TRUE).
    lifecycleStateDetails String
    The VTAP's current running state.
    maxPacketSize Number
    The maximum size of the packets to be included in the filter.
    sourceId String
    The OCID of the source point where packets are captured.
    sourcePrivateEndpointIp String
    The IP Address of the source private endpoint.
    sourcePrivateEndpointSubnetId String
    The OCID of the subnet that source private endpoint belongs to.
    sourceType String
    The source type for the VTAP.
    state String
    A filter to return only resources that match the given VTAP administrative lifecycle state. The state value is case-insensitive.
    targetId String
    The OCID of the VTAP target.
    targetIp String
    The IP address of the VTAP target.
    targetType String
    The target type for the VTAP.
    timeCreated String
    The date and time the VTAP was created, in the format defined by RFC3339. Example: 2020-08-25T21:10:29.600Z
    trafficMode String
    Used to control the priority of traffic. It is an optional field. If it not passed, the value is DEFAULT
    vcnId String
    The OCID of the VCN.
    vxlanNetworkIdentifier String
    The virtual extensible LAN (VXLAN) network identifier (or VXLAN segment ID) that uniquely identifies the VXLAN.

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi