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 Recipient Invitations in Oracle Cloud Infrastructure Tenantmanagercontrolplane service. * * Return a (paginated) list of recipient invitations. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testRecipientInvitations = oci.tenantmanagercontrolplane.getRecipientInvitations({ * compartmentId: compartmentId, * senderTenancyId: testTenancy.id, * state: recipientInvitationState, * status: recipientInvitationStatus, * }); * ``` */ export declare function getRecipientInvitations(args: GetRecipientInvitationsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getRecipientInvitations. */ export interface GetRecipientInvitationsArgs { /** * The ID of the compartment in which to list resources. */ compartmentId: string; filters?: inputs.Tenantmanagercontrolplane.GetRecipientInvitationsFilter[]; /** * The tenancy that sent the invitation. */ senderTenancyId?: string; /** * The lifecycle state of the resource. */ state?: string; /** * The status of the recipient invitation. */ status?: string; } /** * A collection of values returned by getRecipientInvitations. */ export interface GetRecipientInvitationsResult { /** * OCID of the recipient tenancy. */ readonly compartmentId: string; readonly filters?: outputs.Tenantmanagercontrolplane.GetRecipientInvitationsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The list of recipient_invitation_collection. */ readonly recipientInvitationCollections: outputs.Tenantmanagercontrolplane.GetRecipientInvitationsRecipientInvitationCollection[]; /** * OCID of the sender tenancy. */ readonly senderTenancyId?: string; /** * Lifecycle state of the recipient invitation. */ readonly state?: string; /** * Status of the recipient invitation. */ readonly status?: string; } /** * This data source provides the list of Recipient Invitations in Oracle Cloud Infrastructure Tenantmanagercontrolplane service. * * Return a (paginated) list of recipient invitations. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testRecipientInvitations = oci.tenantmanagercontrolplane.getRecipientInvitations({ * compartmentId: compartmentId, * senderTenancyId: testTenancy.id, * state: recipientInvitationState, * status: recipientInvitationStatus, * }); * ``` */ export declare function getRecipientInvitationsOutput(args: GetRecipientInvitationsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getRecipientInvitations. */ export interface GetRecipientInvitationsOutputArgs { /** * The ID of the compartment in which to list resources. */ compartmentId: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * The tenancy that sent the invitation. */ senderTenancyId?: pulumi.Input; /** * The lifecycle state of the resource. */ state?: pulumi.Input; /** * The status of the recipient invitation. */ status?: pulumi.Input; } //# sourceMappingURL=getRecipientInvitations.d.ts.map