import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This data source provides the list of Protection Capability Group Tags in Oracle Cloud Infrastructure Waf service. * * Lists of available group tags filtered by query parameters. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testProtectionCapabilityGroupTags = oci.waf.getProtectionCapabilityGroupTags({ * compartmentId: compartmentId, * name: protectionCapabilityGroupTagName, * type: protectionCapabilityGroupTagType, * }); * ``` */ export declare function getProtectionCapabilityGroupTags(args: GetProtectionCapabilityGroupTagsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getProtectionCapabilityGroupTags. */ export interface GetProtectionCapabilityGroupTagsArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources. */ compartmentId: string; filters?: inputs.Waf.GetProtectionCapabilityGroupTagsFilter[]; /** * A filter to return only resources that match the entire name given. */ name?: string; /** * A filter to return only resources that matches given type. */ type?: string; } /** * A collection of values returned by getProtectionCapabilityGroupTags. */ export interface GetProtectionCapabilityGroupTagsResult { readonly compartmentId: string; readonly filters?: outputs.Waf.GetProtectionCapabilityGroupTagsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Unique name of protection capability group tag. */ readonly name?: string; /** * The list of protection_capability_group_tag_collection. */ readonly protectionCapabilityGroupTagCollections: outputs.Waf.GetProtectionCapabilityGroupTagsProtectionCapabilityGroupTagCollection[]; readonly type?: string; } /** * This data source provides the list of Protection Capability Group Tags in Oracle Cloud Infrastructure Waf service. * * Lists of available group tags filtered by query parameters. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testProtectionCapabilityGroupTags = oci.waf.getProtectionCapabilityGroupTags({ * compartmentId: compartmentId, * name: protectionCapabilityGroupTagName, * type: protectionCapabilityGroupTagType, * }); * ``` */ export declare function getProtectionCapabilityGroupTagsOutput(args: GetProtectionCapabilityGroupTagsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getProtectionCapabilityGroupTags. */ export interface GetProtectionCapabilityGroupTagsOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources. */ compartmentId: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * A filter to return only resources that match the entire name given. */ name?: pulumi.Input; /** * A filter to return only resources that matches given type. */ type?: pulumi.Input; } //# sourceMappingURL=getProtectionCapabilityGroupTags.d.ts.map