import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; export declare class PortalConfiguration extends pulumi.CustomResource { /** * Get an existing PortalConfiguration resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: PortalConfigurationState, opts?: pulumi.CustomResourceOptions): PortalConfiguration; /** * Returns true if the given object is an instance of PortalConfiguration. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is PortalConfiguration; /** * Whether the configuration is active and can be used to create portal sessions. */ readonly active: pulumi.Output; /** * The business information shown to customers in the portal. */ readonly businessProfile: pulumi.Output; /** * The default URL to redirect customers to when they click on the portal's link to return to your website. This can be * overriden when creating the session. */ readonly defaultReturnUrl: pulumi.Output; /** * Information about the features available in the portal. */ readonly features: pulumi.Output; /** * Whether the configuration is the default. If true, this configuration can be managed in the Dashboard and portal * sessions will use this configuration unless it is overriden when creating the session. */ readonly isDefault: pulumi.Output; /** * The hosted login page for this configuration. */ readonly loginPage: pulumi.Output; /** * Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the * object in a structured format. */ readonly metadata: pulumi.Output<{ [key: string]: string; } | undefined>; /** * Create a PortalConfiguration resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: PortalConfigurationArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering PortalConfiguration resources. */ export interface PortalConfigurationState { /** * Whether the configuration is active and can be used to create portal sessions. */ active?: pulumi.Input; /** * The business information shown to customers in the portal. */ businessProfile?: pulumi.Input; /** * The default URL to redirect customers to when they click on the portal's link to return to your website. This can be * overriden when creating the session. */ defaultReturnUrl?: pulumi.Input; /** * Information about the features available in the portal. */ features?: pulumi.Input; /** * Whether the configuration is the default. If true, this configuration can be managed in the Dashboard and portal * sessions will use this configuration unless it is overriden when creating the session. */ isDefault?: pulumi.Input; /** * The hosted login page for this configuration. */ loginPage?: pulumi.Input; /** * Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the * object in a structured format. */ metadata?: pulumi.Input<{ [key: string]: pulumi.Input; }>; } /** * The set of arguments for constructing a PortalConfiguration resource. */ export interface PortalConfigurationArgs { /** * Whether the configuration is active and can be used to create portal sessions. */ active?: pulumi.Input; /** * The business information shown to customers in the portal. */ businessProfile: pulumi.Input; /** * The default URL to redirect customers to when they click on the portal's link to return to your website. This can be * overriden when creating the session. */ defaultReturnUrl?: pulumi.Input; /** * Information about the features available in the portal. */ features: pulumi.Input; /** * The hosted login page for this configuration. */ loginPage?: pulumi.Input; /** * Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the * object in a structured format. */ metadata?: pulumi.Input<{ [key: string]: pulumi.Input; }>; }