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 Link Features in Oracle Cloud Infrastructure Tenantmanagercontrolplane service. * * Return a list of link features. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testLinkFeatures = oci.tenantmanagercontrolplane.getLinkFeatures({ * compartmentId: compartmentId, * }); * ``` */ export declare function getLinkFeatures(args: GetLinkFeaturesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getLinkFeatures. */ export interface GetLinkFeaturesArgs { /** * The ID of the compartment in which to list resources. */ compartmentId: string; filters?: inputs.Tenantmanagercontrolplane.GetLinkFeaturesFilter[]; } /** * A collection of values returned by getLinkFeatures. */ export interface GetLinkFeaturesResult { readonly compartmentId: string; readonly filters?: outputs.Tenantmanagercontrolplane.GetLinkFeaturesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The list of link_features_collection. */ readonly linkFeaturesCollections: outputs.Tenantmanagercontrolplane.GetLinkFeaturesLinkFeaturesCollection[]; } /** * This data source provides the list of Link Features in Oracle Cloud Infrastructure Tenantmanagercontrolplane service. * * Return a list of link features. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testLinkFeatures = oci.tenantmanagercontrolplane.getLinkFeatures({ * compartmentId: compartmentId, * }); * ``` */ export declare function getLinkFeaturesOutput(args: GetLinkFeaturesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getLinkFeatures. */ export interface GetLinkFeaturesOutputArgs { /** * The ID of the compartment in which to list resources. */ compartmentId: pulumi.Input; filters?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getLinkFeatures.d.ts.map