import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Capture Filter resource in Oracle Cloud Infrastructure Core service. * * Gets information about the specified VTAP capture filter. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testCaptureFilter = oci.core.getCaptureFilter({ * captureFilterId: testCaptureFilterOciCoreCaptureFilter.id, * }); * ``` */ export declare function getCaptureFilter(args: GetCaptureFilterArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCaptureFilter. */ export interface GetCaptureFilterArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the capture filter. */ captureFilterId: string; } /** * A collection of values returned by getCaptureFilter. */ export interface GetCaptureFilterResult { readonly captureFilterId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the capture filter. */ readonly compartmentId: string; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}` */ readonly definedTags: { [key: string]: string; }; /** * A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. */ readonly displayName: string; /** * Indicates which service will use this capture filter */ readonly filterType: string; /** * The set of rules governing what traffic the Flow Log collects when creating a flow log capture filter. */ readonly flowLogCaptureFilterRules: outputs.Core.GetCaptureFilterFlowLogCaptureFilterRule[]; /** * 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](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` */ readonly freeformTags: { [key: string]: string; }; /** * The capture filter's Oracle ID ([OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm)). */ readonly id: string; /** * The capture filter's current administrative state. */ readonly state: string; /** * The date and time the capture filter was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: `2021-08-25T21:10:29.600Z` */ readonly timeCreated: string; /** * The set of rules governing what traffic a VTAP mirrors. */ readonly vtapCaptureFilterRules: outputs.Core.GetCaptureFilterVtapCaptureFilterRule[]; } /** * This data source provides details about a specific Capture Filter resource in Oracle Cloud Infrastructure Core service. * * Gets information about the specified VTAP capture filter. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testCaptureFilter = oci.core.getCaptureFilter({ * captureFilterId: testCaptureFilterOciCoreCaptureFilter.id, * }); * ``` */ export declare function getCaptureFilterOutput(args: GetCaptureFilterOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getCaptureFilter. */ export interface GetCaptureFilterOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the capture filter. */ captureFilterId: pulumi.Input; } //# sourceMappingURL=getCaptureFilter.d.ts.map