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 Data Assets in Oracle Cloud Infrastructure Data Catalog service. * * Returns a list of data assets within a data catalog. * * ## Example Usage */ export declare function getDataAssets(args: GetDataAssetsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDataAssets. */ export interface GetDataAssetsArgs { /** * Unique catalog identifier. */ catalogId: string; /** * OCID of the user who created the resource. */ createdById?: string; /** * A filter to return only resources that match the entire display name given. The match is not case sensitive. */ displayName?: string; /** * A filter to return only resources that match display name pattern given. The match is not case sensitive. For Example : /folders?displayNameContains=Cu.* The above would match all folders with display name that starts with "Cu" or has the pattern "Cu" anywhere in between. */ displayNameContains?: string; /** * Unique external identifier of this resource in the external source system. */ externalKey?: string; /** * Specifies the fields to return in a data asset summary response. */ fields?: string[]; filters?: inputs.DataCatalog.GetDataAssetsFilter[]; /** * A filter to return only resources that match the specified lifecycle state. The value is case insensitive. */ state?: string; /** * The key of the object type. */ typeKey?: string; } /** * A collection of values returned by getDataAssets. */ export interface GetDataAssetsResult { /** * The data catalog's OCID. */ readonly catalogId: string; /** * OCID of the user who created the data asset. */ readonly createdById?: string; /** * The list of data_asset_collection. */ readonly dataAssetCollections: outputs.DataCatalog.GetDataAssetsDataAssetCollection[]; /** * A user-friendly display name. Does not have to be unique, and it's changeable. Avoid entering confidential information. */ readonly displayName?: string; readonly displayNameContains?: string; /** * External URI that can be used to reference the object. Format will differ based on the type of object. */ readonly externalKey?: string; readonly fields?: string[]; readonly filters?: outputs.DataCatalog.GetDataAssetsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The current state of the data asset. */ readonly state?: string; /** * The key of the object type. Type key's can be found via the '/types' endpoint. */ readonly typeKey?: string; } /** * This data source provides the list of Data Assets in Oracle Cloud Infrastructure Data Catalog service. * * Returns a list of data assets within a data catalog. * * ## Example Usage */ export declare function getDataAssetsOutput(args: GetDataAssetsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDataAssets. */ export interface GetDataAssetsOutputArgs { /** * Unique catalog identifier. */ catalogId: pulumi.Input; /** * OCID of the user who created the resource. */ createdById?: pulumi.Input; /** * A filter to return only resources that match the entire display name given. The match is not case sensitive. */ displayName?: pulumi.Input; /** * A filter to return only resources that match display name pattern given. The match is not case sensitive. For Example : /folders?displayNameContains=Cu.* The above would match all folders with display name that starts with "Cu" or has the pattern "Cu" anywhere in between. */ displayNameContains?: pulumi.Input; /** * Unique external identifier of this resource in the external source system. */ externalKey?: pulumi.Input; /** * Specifies the fields to return in a data asset summary response. */ fields?: pulumi.Input[] | undefined>; filters?: pulumi.Input[] | undefined>; /** * A filter to return only resources that match the specified lifecycle state. The value is case insensitive. */ state?: pulumi.Input; /** * The key of the object type. */ typeKey?: pulumi.Input; } //# sourceMappingURL=getDataAssets.d.ts.map