import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../../types/output"; /** * Gets details of a single PartnerTenant. */ export declare function getPartnerTenant(args: GetPartnerTenantArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetPartnerTenantArgs { organizationId: string; partnerTenantId: string; } export interface GetPartnerTenantResult { /** * Timestamp when the resource was created. */ readonly createTime: string; /** * Optional. An arbitrary caller-provided name for the PartnerTenant. Cannot exceed 64 characters. */ readonly displayName: string; /** * Optional. Group information for the users enabled to use the partnerTenant. If the group information is not provided then the partnerTenant will be enabled for all users. */ readonly group: outputs.beyondcorp.v1alpha.GoogleCloudBeyondcorpPartnerservicesV1alphaGroupResponse; /** * Unique resource name of the PartnerTenant. The name is ignored when creating PartnerTenant. */ readonly name: string; /** * Optional. Metadata provided by the Partner associated with PartnerTenant. */ readonly partnerMetadata: outputs.beyondcorp.v1alpha.GoogleCloudBeyondcorpPartnerservicesV1alphaPartnerMetadataResponse; /** * Timestamp when the resource was last modified. */ readonly updateTime: string; } /** * Gets details of a single PartnerTenant. */ export declare function getPartnerTenantOutput(args: GetPartnerTenantOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; export interface GetPartnerTenantOutputArgs { organizationId: pulumi.Input; partnerTenantId: pulumi.Input; }