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 Applications in Oracle Cloud Infrastructure Data Integration service. * * Retrieves a list of applications and provides options to filter the list. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testWorkspaceApplications = oci.dataintegration.getWorkspaceApplications({ * workspaceId: testWorkspace.id, * fields: workspaceApplicationFields, * identifiers: workspaceApplicationIdentifier, * name: workspaceApplicationName, * nameContains: workspaceApplicationNameContains, * }); * ``` */ export declare function getWorkspaceApplications(args: GetWorkspaceApplicationsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getWorkspaceApplications. */ export interface GetWorkspaceApplicationsArgs { /** * Specifies the fields to get for an object. */ fields?: string[]; filters?: inputs.DataIntegration.GetWorkspaceApplicationsFilter[]; /** * Used to filter by the identifier of the published 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 getWorkspaceApplications. */ export interface GetWorkspaceApplicationsResult { /** * The list of application_summary_collection. */ readonly applicationSummaryCollections: outputs.DataIntegration.GetWorkspaceApplicationsApplicationSummaryCollection[]; readonly fields?: string[]; readonly filters?: outputs.DataIntegration.GetWorkspaceApplicationsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified. */ 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 OCID of the workspace containing the application. This allows cross workspace deployment to publish an application from a different workspace into the current workspace specified in this operation. */ readonly workspaceId: string; } /** * This data source provides the list of Workspace Applications in Oracle Cloud Infrastructure Data Integration service. * * Retrieves a list of applications and provides options to filter the list. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testWorkspaceApplications = oci.dataintegration.getWorkspaceApplications({ * workspaceId: testWorkspace.id, * fields: workspaceApplicationFields, * identifiers: workspaceApplicationIdentifier, * name: workspaceApplicationName, * nameContains: workspaceApplicationNameContains, * }); * ``` */ export declare function getWorkspaceApplicationsOutput(args: GetWorkspaceApplicationsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getWorkspaceApplications. */ export interface GetWorkspaceApplicationsOutputArgs { /** * Specifies the fields to get for an object. */ fields?: pulumi.Input[] | undefined>; filters?: pulumi.Input[] | undefined>; /** * Used to filter by the identifier of the published 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=getWorkspaceApplications.d.ts.map