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 Sender Invitations in Oracle Cloud Infrastructure Tenantmanagercontrolplane service. * * Return a (paginated) list of sender invitations. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testSenderInvitations = oci.tenantmanagercontrolplane.getSenderInvitations({ * compartmentId: compartmentId, * displayName: senderInvitationDisplayName, * recipientTenancyId: testTenancy.id, * state: senderInvitationState, * status: senderInvitationStatus, * }); * ``` */ export declare function getSenderInvitations(args: GetSenderInvitationsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getSenderInvitations. */ export interface GetSenderInvitationsArgs { /** * The ID of the compartment in which to list resources. */ compartmentId: string; /** * A filter to return only resources that match the entire display name given. */ displayName?: string; filters?: inputs.Tenantmanagercontrolplane.GetSenderInvitationsFilter[]; /** * The tenancy that the invitation is addressed to. */ recipientTenancyId?: string; /** * The lifecycle state of the resource. */ state?: string; /** * The status of the sender invitation. */ status?: string; } /** * A collection of values returned by getSenderInvitations. */ export interface GetSenderInvitationsResult { /** * OCID of the sender tenancy. */ readonly compartmentId: string; /** * A user-created name to describe the invitation. Avoid entering confidential information. */ readonly displayName?: string; readonly filters?: outputs.Tenantmanagercontrolplane.GetSenderInvitationsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * OCID of the recipient tenancy. */ readonly recipientTenancyId?: string; /** * The list of sender_invitation_collection. */ readonly senderInvitationCollections: outputs.Tenantmanagercontrolplane.GetSenderInvitationsSenderInvitationCollection[]; /** * Lifecycle state of the sender invitation. */ readonly state?: string; /** * Status of the sender invitation. */ readonly status?: string; } /** * This data source provides the list of Sender Invitations in Oracle Cloud Infrastructure Tenantmanagercontrolplane service. * * Return a (paginated) list of sender invitations. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testSenderInvitations = oci.tenantmanagercontrolplane.getSenderInvitations({ * compartmentId: compartmentId, * displayName: senderInvitationDisplayName, * recipientTenancyId: testTenancy.id, * state: senderInvitationState, * status: senderInvitationStatus, * }); * ``` */ export declare function getSenderInvitationsOutput(args: GetSenderInvitationsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getSenderInvitations. */ export interface GetSenderInvitationsOutputArgs { /** * The ID of the compartment in which to list resources. */ compartmentId: pulumi.Input; /** * A filter to return only resources that match the entire display name given. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * The tenancy that the invitation is addressed to. */ recipientTenancyId?: pulumi.Input; /** * The lifecycle state of the resource. */ state?: pulumi.Input; /** * The status of the sender invitation. */ status?: pulumi.Input; } //# sourceMappingURL=getSenderInvitations.d.ts.map