import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Recipient Invitation resource in Oracle Cloud Infrastructure Tenantmanagercontrolplane service. * * Gets information about the recipient invitation. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testRecipientInvitation = oci.tenantmanagercontrolplane.getRecipientInvitation({ * recipientInvitationId: testRecipientInvitationOciTenantmanagercontrolplaneRecipientInvitation.id, * }); * ``` */ export declare function getRecipientInvitation(args: GetRecipientInvitationArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getRecipientInvitation. */ export interface GetRecipientInvitationArgs { /** * OCID of the recipient invitation to retrieve. */ recipientInvitationId: string; } /** * A collection of values returned by getRecipientInvitation. */ export interface GetRecipientInvitationResult { /** * OCID of the recipient tenancy. */ readonly compartmentId: string; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}` */ readonly definedTags: { [key: string]: string; }; /** * A user-created name to describe the invitation. Avoid entering confidential information. */ readonly displayName: string; /** * List of features that the invitation is being sent for. Each feature would create one link, of that type. */ readonly features: string[]; /** * Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}` */ readonly freeformTags: { [key: string]: string; }; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Email address of the recipient. */ readonly recipientEmailAddress: string; readonly recipientInvitationId: string; /** * OCID of the corresponding sender invitation. */ readonly senderInvitationId: string; /** * 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; /** * The list of subjects the invitation contains. */ readonly subjects: string[]; /** * Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: { [key: string]: string; }; /** * Date and time when the recipient invitation was created. */ readonly timeCreated: string; /** * Date and time when the recipient invitation was last updated. */ readonly timeUpdated: string; } /** * This data source provides details about a specific Recipient Invitation resource in Oracle Cloud Infrastructure Tenantmanagercontrolplane service. * * Gets information about the recipient invitation. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testRecipientInvitation = oci.tenantmanagercontrolplane.getRecipientInvitation({ * recipientInvitationId: testRecipientInvitationOciTenantmanagercontrolplaneRecipientInvitation.id, * }); * ``` */ export declare function getRecipientInvitationOutput(args: GetRecipientInvitationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getRecipientInvitation. */ export interface GetRecipientInvitationOutputArgs { /** * OCID of the recipient invitation to retrieve. */ recipientInvitationId: pulumi.Input; } //# sourceMappingURL=getRecipientInvitation.d.ts.map