import * as pulumi from "@pulumi/pulumi"; /** * Retrieves the OAuth brand of the project. */ export declare function getBrand(args: GetBrandArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetBrandArgs { brandId: string; project?: string; } export interface GetBrandResult { /** * Application name displayed on OAuth consent screen. */ readonly applicationTitle: string; /** * Identifier of the brand. NOTE: GCP project number achieves the same brand identification purpose as only one brand per project can be created. */ readonly name: string; /** * Whether the brand is only intended for usage inside the G Suite organization only. */ readonly orgInternalOnly: boolean; /** * Support email displayed on the OAuth consent screen. */ readonly supportEmail: string; } /** * Retrieves the OAuth brand of the project. */ export declare function getBrandOutput(args: GetBrandOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; export interface GetBrandOutputArgs { brandId: pulumi.Input; project?: pulumi.Input; }