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 Services in Oracle Cloud Infrastructure. * * List all OCI services * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testServices = oci.announcementsservice.getServices({ * compartmentId: compartmentId, * commsManagerName: serviceCommsManagerName, * platformType: servicePlatformType, * }); * ``` */ export declare function getServices(args: GetServicesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getServices. */ export interface GetServicesArgs { /** * Filter by comms manager name */ commsManagerName?: string; /** * The OCID of the root compartment/tenancy. */ compartmentId: string; filters?: inputs.AnnouncementsService.GetServicesFilter[]; /** * A filter to return only services underlying a specific platform. */ platformType?: string; } /** * A collection of values returned by getServices. */ export interface GetServicesResult { /** * Name of the comms manager team that manages Notifications to this service. */ readonly commsManagerName?: string; readonly compartmentId: string; readonly filters?: outputs.AnnouncementsService.GetServicesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The platform type this service object is related to. */ readonly platformType?: string; /** * The list of services_collection. */ readonly servicesCollections: outputs.AnnouncementsService.GetServicesServicesCollection[]; } /** * This data source provides the list of Services in Oracle Cloud Infrastructure. * * List all OCI services * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testServices = oci.announcementsservice.getServices({ * compartmentId: compartmentId, * commsManagerName: serviceCommsManagerName, * platformType: servicePlatformType, * }); * ``` */ export declare function getServicesOutput(args: GetServicesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getServices. */ export interface GetServicesOutputArgs { /** * Filter by comms manager name */ commsManagerName?: pulumi.Input; /** * The OCID of the root compartment/tenancy. */ compartmentId: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * A filter to return only services underlying a specific platform. */ platformType?: pulumi.Input; } //# sourceMappingURL=getServices.d.ts.map