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 Workspace Projects in Oracle Cloud Infrastructure Data Integration service. * * Retrieves a lists of projects in a workspace and provides options to filter the list. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testWorkspaceProjects = oci.dataintegration.getWorkspaceProjects({ * workspaceId: testWorkspace.id, * fields: workspaceProjectFields, * identifiers: workspaceProjectIdentifier, * name: workspaceProjectName, * nameContains: workspaceProjectNameContains, * }); * ``` */ export declare function getWorkspaceProjects(args: GetWorkspaceProjectsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getWorkspaceProjects. */ export interface GetWorkspaceProjectsArgs { /** * Specifies the fields to get for an object. */ fields?: string[]; filters?: inputs.DataIntegration.GetWorkspaceProjectsFilter[]; /** * Used to filter by the identifier of the object. */ identifiers?: string[]; /** * Used to filter by the name of the object. */ name?: string; /** * This parameter can be used to filter objects by the names that match partially or fully with the given value. */ nameContains?: string; /** * The workspace ID. */ workspaceId: string; } /** * A collection of values returned by getWorkspaceProjects. */ export interface GetWorkspaceProjectsResult { readonly fields?: string[]; readonly filters?: outputs.DataIntegration.GetWorkspaceProjectsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The identifier of the aggregator. */ readonly identifiers?: string[]; /** * Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters. */ readonly name?: string; readonly nameContains?: string; /** * The list of project_summary_collection. */ readonly projectSummaryCollections: outputs.DataIntegration.GetWorkspaceProjectsProjectSummaryCollection[]; readonly workspaceId: string; } /** * This data source provides the list of Workspace Projects in Oracle Cloud Infrastructure Data Integration service. * * Retrieves a lists of projects in a workspace and provides options to filter the list. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testWorkspaceProjects = oci.dataintegration.getWorkspaceProjects({ * workspaceId: testWorkspace.id, * fields: workspaceProjectFields, * identifiers: workspaceProjectIdentifier, * name: workspaceProjectName, * nameContains: workspaceProjectNameContains, * }); * ``` */ export declare function getWorkspaceProjectsOutput(args: GetWorkspaceProjectsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getWorkspaceProjects. */ export interface GetWorkspaceProjectsOutputArgs { /** * Specifies the fields to get for an object. */ fields?: pulumi.Input[] | undefined>; filters?: pulumi.Input[] | undefined>; /** * Used to filter by the identifier of the object. */ identifiers?: pulumi.Input[] | undefined>; /** * Used to filter by the name of the object. */ name?: pulumi.Input; /** * This parameter can be used to filter objects by the names that match partially or fully with the given value. */ nameContains?: pulumi.Input; /** * The workspace ID. */ workspaceId: pulumi.Input; } //# sourceMappingURL=getWorkspaceProjects.d.ts.map