import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides the list of Network Firewall Policy Mapped Secrets in Oracle Cloud Infrastructure Network Firewall service. * * Returns a list of Mapped Secret for the Network Firewall Policy. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testNetworkFirewallPolicyMappedSecrets = oci.networkfirewall.getNetworkFirewallPolicyMappedSecrets({ * networkFirewallPolicyId: testNetworkFirewallPolicy.id, * displayName: networkFirewallPolicyMappedSecretDisplayName, * }); * ``` */ export declare function getNetworkFirewallPolicyMappedSecrets(args: GetNetworkFirewallPolicyMappedSecretsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getNetworkFirewallPolicyMappedSecrets. */ export interface GetNetworkFirewallPolicyMappedSecretsArgs { /** * A filter to return only resources that match the entire display name given. */ displayName?: string; /** * Unique Network Firewall Policy identifier */ networkFirewallPolicyId: string; } /** * A collection of values returned by getNetworkFirewallPolicyMappedSecrets. */ export interface GetNetworkFirewallPolicyMappedSecretsResult { readonly displayName?: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The list of mapped_secret_summary_collection. */ readonly mappedSecretSummaryCollections: outputs.NetworkFirewall.GetNetworkFirewallPolicyMappedSecretsMappedSecretSummaryCollection[]; readonly networkFirewallPolicyId: string; } /** * This data source provides the list of Network Firewall Policy Mapped Secrets in Oracle Cloud Infrastructure Network Firewall service. * * Returns a list of Mapped Secret for the Network Firewall Policy. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testNetworkFirewallPolicyMappedSecrets = oci.networkfirewall.getNetworkFirewallPolicyMappedSecrets({ * networkFirewallPolicyId: testNetworkFirewallPolicy.id, * displayName: networkFirewallPolicyMappedSecretDisplayName, * }); * ``` */ export declare function getNetworkFirewallPolicyMappedSecretsOutput(args: GetNetworkFirewallPolicyMappedSecretsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getNetworkFirewallPolicyMappedSecrets. */ export interface GetNetworkFirewallPolicyMappedSecretsOutputArgs { /** * A filter to return only resources that match the entire display name given. */ displayName?: pulumi.Input; /** * Unique Network Firewall Policy identifier */ networkFirewallPolicyId: pulumi.Input; } //# sourceMappingURL=getNetworkFirewallPolicyMappedSecrets.d.ts.map