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 Fusion Environment Service Attachments in Oracle Cloud Infrastructure Fusion Apps service. * * Returns a list of service attachments. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testFusionEnvironmentServiceAttachments = oci.functions.getFusionEnvironmentServiceAttachments({ * fusionEnvironmentId: testFusionEnvironment.id, * displayName: fusionEnvironmentServiceAttachmentDisplayName, * serviceInstanceType: fusionEnvironmentServiceAttachmentServiceInstanceType, * state: fusionEnvironmentServiceAttachmentState, * }); * ``` */ export declare function getFusionEnvironmentServiceAttachments(args: GetFusionEnvironmentServiceAttachmentsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getFusionEnvironmentServiceAttachments. */ export interface GetFusionEnvironmentServiceAttachmentsArgs { /** * A filter to return only resources that match the entire display name given. */ displayName?: string; filters?: inputs.Functions.GetFusionEnvironmentServiceAttachmentsFilter[]; /** * unique FusionEnvironment identifier */ fusionEnvironmentId: string; /** * A filter that returns all resources that match the specified lifecycle state. */ serviceInstanceType?: string; /** * A filter that returns all resources that match the specified lifecycle state. */ state?: string; } /** * A collection of values returned by getFusionEnvironmentServiceAttachments. */ export interface GetFusionEnvironmentServiceAttachmentsResult { /** * Service Attachment Display name, can be renamed */ readonly displayName?: string; readonly filters?: outputs.Functions.GetFusionEnvironmentServiceAttachmentsFilter[]; readonly fusionEnvironmentId: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The list of service_attachment_collection. */ readonly serviceAttachmentCollections: outputs.Functions.GetFusionEnvironmentServiceAttachmentsServiceAttachmentCollection[]; /** * Type of the serviceInstance. */ readonly serviceInstanceType?: string; /** * The current state of the ServiceInstance. */ readonly state?: string; } /** * This data source provides the list of Fusion Environment Service Attachments in Oracle Cloud Infrastructure Fusion Apps service. * * Returns a list of service attachments. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testFusionEnvironmentServiceAttachments = oci.functions.getFusionEnvironmentServiceAttachments({ * fusionEnvironmentId: testFusionEnvironment.id, * displayName: fusionEnvironmentServiceAttachmentDisplayName, * serviceInstanceType: fusionEnvironmentServiceAttachmentServiceInstanceType, * state: fusionEnvironmentServiceAttachmentState, * }); * ``` */ export declare function getFusionEnvironmentServiceAttachmentsOutput(args: GetFusionEnvironmentServiceAttachmentsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getFusionEnvironmentServiceAttachments. */ export interface GetFusionEnvironmentServiceAttachmentsOutputArgs { /** * A filter to return only resources that match the entire display name given. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * unique FusionEnvironment identifier */ fusionEnvironmentId: pulumi.Input; /** * A filter that returns all resources that match the specified lifecycle state. */ serviceInstanceType?: pulumi.Input; /** * A filter that returns all resources that match the specified lifecycle state. */ state?: pulumi.Input; } //# sourceMappingURL=getFusionEnvironmentServiceAttachments.d.ts.map