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 Psa Services in Oracle Cloud Infrastructure Psa service. * * List the Oracle Cloud Infrastructure services available for Private Service Access catalog in the region, sorted by service name. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testPsaServices = oci.oci.getPsaPsaServices({ * displayName: psaServiceDisplayName, * serviceId: testPsaService.id, * }); * ``` */ export declare function getPsaPsaServices(args?: GetPsaPsaServicesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getPsaPsaServices. */ export interface GetPsaPsaServicesArgs { /** * A filter to return only resources that match the given display name exactly. */ displayName?: string; filters?: inputs.oci.GetPsaPsaServicesFilter[]; /** * The unique identifier of the Oracle Cloud Infrastructure service. */ serviceId?: string; } /** * A collection of values returned by getPsaPsaServices. */ export interface GetPsaPsaServicesResult { /** * A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. */ readonly displayName?: string; readonly filters?: outputs.oci.GetPsaPsaServicesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The list of psa_service_collection. */ readonly psaServiceCollections: outputs.oci.GetPsaPsaServicesPsaServiceCollection[]; readonly serviceId?: string; } /** * This data source provides the list of Psa Services in Oracle Cloud Infrastructure Psa service. * * List the Oracle Cloud Infrastructure services available for Private Service Access catalog in the region, sorted by service name. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testPsaServices = oci.oci.getPsaPsaServices({ * displayName: psaServiceDisplayName, * serviceId: testPsaService.id, * }); * ``` */ export declare function getPsaPsaServicesOutput(args?: GetPsaPsaServicesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getPsaPsaServices. */ export interface GetPsaPsaServicesOutputArgs { /** * A filter to return only resources that match the given display name exactly. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * The unique identifier of the Oracle Cloud Infrastructure service. */ serviceId?: pulumi.Input; } //# sourceMappingURL=getPsaPsaServices.d.ts.map