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 Sensitive Data Model Sensitive Schemas in Oracle Cloud Infrastructure Data Safe service. * * Gets a list of sensitive schemas present in the specified sensitive data model based on the specified query parameters. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testSensitiveDataModelSensitiveSchemas = oci.datasafe.getSensitiveDataModelSensitiveSchemas({ * sensitiveDataModelId: testSensitiveDataModel.id, * schemaNames: sensitiveDataModelSensitiveSchemaSchemaName, * }); * ``` */ export declare function getSensitiveDataModelSensitiveSchemas(args: GetSensitiveDataModelSensitiveSchemasArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getSensitiveDataModelSensitiveSchemas. */ export interface GetSensitiveDataModelSensitiveSchemasArgs { filters?: inputs.DataSafe.GetSensitiveDataModelSensitiveSchemasFilter[]; /** * A filter to return only items related to specific schema name. */ schemaNames?: string[]; /** * The OCID of the sensitive data model. */ sensitiveDataModelId: string; } /** * A collection of values returned by getSensitiveDataModelSensitiveSchemas. */ export interface GetSensitiveDataModelSensitiveSchemasResult { readonly filters?: outputs.DataSafe.GetSensitiveDataModelSensitiveSchemasFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The database schema that contains the sensitive column. */ readonly schemaNames?: string[]; readonly sensitiveDataModelId: string; /** * The list of sensitive_schema_collection. */ readonly sensitiveSchemaCollections: outputs.DataSafe.GetSensitiveDataModelSensitiveSchemasSensitiveSchemaCollection[]; } /** * This data source provides the list of Sensitive Data Model Sensitive Schemas in Oracle Cloud Infrastructure Data Safe service. * * Gets a list of sensitive schemas present in the specified sensitive data model based on the specified query parameters. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testSensitiveDataModelSensitiveSchemas = oci.datasafe.getSensitiveDataModelSensitiveSchemas({ * sensitiveDataModelId: testSensitiveDataModel.id, * schemaNames: sensitiveDataModelSensitiveSchemaSchemaName, * }); * ``` */ export declare function getSensitiveDataModelSensitiveSchemasOutput(args: GetSensitiveDataModelSensitiveSchemasOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getSensitiveDataModelSensitiveSchemas. */ export interface GetSensitiveDataModelSensitiveSchemasOutputArgs { filters?: pulumi.Input[] | undefined>; /** * A filter to return only items related to specific schema name. */ schemaNames?: pulumi.Input[] | undefined>; /** * The OCID of the sensitive data model. */ sensitiveDataModelId: pulumi.Input; } //# sourceMappingURL=getSensitiveDataModelSensitiveSchemas.d.ts.map