1. Packages
  2. Okta
  3. API Docs
  4. Index
  5. PreviewSigninPage
Okta v4.8.1 published on Thursday, Apr 18, 2024 by Pulumi

okta.Index.PreviewSigninPage

Explore with Pulumi AI

okta logo
Okta v4.8.1 published on Thursday, Apr 18, 2024 by Pulumi

    Create PreviewSigninPage Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new PreviewSigninPage(name: string, args: PreviewSigninPageArgs, opts?: CustomResourceOptions);
    @overload
    def PreviewSigninPage(resource_name: str,
                          args: PreviewSigninPageArgs,
                          opts: Optional[ResourceOptions] = None)
    
    @overload
    def PreviewSigninPage(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          brand_id: Optional[str] = None,
                          page_content: Optional[str] = None,
                          widget_version: Optional[str] = None,
                          content_security_policy_setting: Optional[_index.PreviewSigninPageContentSecurityPolicySettingArgs] = None,
                          widget_customizations: Optional[_index.PreviewSigninPageWidgetCustomizationsArgs] = None)
    func NewPreviewSigninPage(ctx *Context, name string, args PreviewSigninPageArgs, opts ...ResourceOption) (*PreviewSigninPage, error)
    public PreviewSigninPage(string name, PreviewSigninPageArgs args, CustomResourceOptions? opts = null)
    public PreviewSigninPage(String name, PreviewSigninPageArgs args)
    public PreviewSigninPage(String name, PreviewSigninPageArgs args, CustomResourceOptions options)
    
    type: okta:Index:PreviewSigninPage
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args PreviewSigninPageArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args PreviewSigninPageArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args PreviewSigninPageArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args PreviewSigninPageArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args PreviewSigninPageArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var previewSigninPageResource = new Okta.Index.PreviewSigninPage("previewSigninPageResource", new()
    {
        BrandId = "string",
        PageContent = "string",
        WidgetVersion = "string",
        ContentSecurityPolicySetting = new Okta.Inputs.PreviewSigninPageContentSecurityPolicySettingArgs
        {
            Mode = "string",
            ReportUri = "string",
            SrcLists = new[]
            {
                "string",
            },
        },
        WidgetCustomizations = new Okta.Inputs.PreviewSigninPageWidgetCustomizationsArgs
        {
            WidgetGeneration = "string",
            HelpUrl = "string",
            UsernameInfoTip = "string",
            CustomLink1Label = "string",
            CustomLink1Url = "string",
            CustomLink2Label = "string",
            CustomLink2Url = "string",
            ForgotPasswordLabel = "string",
            PasswordInfoTip = "string",
            AuthenticatorPageCustomLinkUrl = "string",
            ClassicRecoveryFlowEmailOrUsernameLabel = "string",
            ForgotPasswordUrl = "string",
            PasswordLabel = "string",
            ShowPasswordVisibilityToggle = false,
            ShowUserIdentifier = false,
            SignInLabel = "string",
            UnlockAccountLabel = "string",
            UnlockAccountUrl = "string",
            AuthenticatorPageCustomLinkLabel = "string",
            UsernameLabel = "string",
            HelpLabel = "string",
        },
    });
    
    example, err := Index.NewPreviewSigninPage(ctx, "previewSigninPageResource", &Index.PreviewSigninPageArgs{
    	BrandId:       pulumi.String("string"),
    	PageContent:   pulumi.String("string"),
    	WidgetVersion: pulumi.String("string"),
    	ContentSecurityPolicySetting: &index.PreviewSigninPageContentSecurityPolicySettingArgs{
    		Mode:      pulumi.String("string"),
    		ReportUri: pulumi.String("string"),
    		SrcLists: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    	},
    	WidgetCustomizations: &index.PreviewSigninPageWidgetCustomizationsArgs{
    		WidgetGeneration:                        pulumi.String("string"),
    		HelpUrl:                                 pulumi.String("string"),
    		UsernameInfoTip:                         pulumi.String("string"),
    		CustomLink1Label:                        pulumi.String("string"),
    		CustomLink1Url:                          pulumi.String("string"),
    		CustomLink2Label:                        pulumi.String("string"),
    		CustomLink2Url:                          pulumi.String("string"),
    		ForgotPasswordLabel:                     pulumi.String("string"),
    		PasswordInfoTip:                         pulumi.String("string"),
    		AuthenticatorPageCustomLinkUrl:          pulumi.String("string"),
    		ClassicRecoveryFlowEmailOrUsernameLabel: pulumi.String("string"),
    		ForgotPasswordUrl:                       pulumi.String("string"),
    		PasswordLabel:                           pulumi.String("string"),
    		ShowPasswordVisibilityToggle:            pulumi.Bool(false),
    		ShowUserIdentifier:                      pulumi.Bool(false),
    		SignInLabel:                             pulumi.String("string"),
    		UnlockAccountLabel:                      pulumi.String("string"),
    		UnlockAccountUrl:                        pulumi.String("string"),
    		AuthenticatorPageCustomLinkLabel:        pulumi.String("string"),
    		UsernameLabel:                           pulumi.String("string"),
    		HelpLabel:                               pulumi.String("string"),
    	},
    })
    
    var previewSigninPageResource = new PreviewSigninPage("previewSigninPageResource", PreviewSigninPageArgs.builder()        
        .brandId("string")
        .pageContent("string")
        .widgetVersion("string")
        .contentSecurityPolicySetting(PreviewSigninPageContentSecurityPolicySettingArgs.builder()
            .mode("string")
            .reportUri("string")
            .srcLists("string")
            .build())
        .widgetCustomizations(PreviewSigninPageWidgetCustomizationsArgs.builder()
            .widgetGeneration("string")
            .helpUrl("string")
            .usernameInfoTip("string")
            .customLink1Label("string")
            .customLink1Url("string")
            .customLink2Label("string")
            .customLink2Url("string")
            .forgotPasswordLabel("string")
            .passwordInfoTip("string")
            .authenticatorPageCustomLinkUrl("string")
            .classicRecoveryFlowEmailOrUsernameLabel("string")
            .forgotPasswordUrl("string")
            .passwordLabel("string")
            .showPasswordVisibilityToggle(false)
            .showUserIdentifier(false)
            .signInLabel("string")
            .unlockAccountLabel("string")
            .unlockAccountUrl("string")
            .authenticatorPageCustomLinkLabel("string")
            .usernameLabel("string")
            .helpLabel("string")
            .build())
        .build());
    
    preview_signin_page_resource = okta.index.PreviewSigninPage("previewSigninPageResource",
        brand_id="string",
        page_content="string",
        widget_version="string",
        content_security_policy_setting=okta.index.PreviewSigninPageContentSecurityPolicySettingArgs(
            mode="string",
            report_uri="string",
            src_lists=["string"],
        ),
        widget_customizations=okta.index.PreviewSigninPageWidgetCustomizationsArgs(
            widget_generation="string",
            help_url="string",
            username_info_tip="string",
            custom_link1_label="string",
            custom_link1_url="string",
            custom_link2_label="string",
            custom_link2_url="string",
            forgot_password_label="string",
            password_info_tip="string",
            authenticator_page_custom_link_url="string",
            classic_recovery_flow_email_or_username_label="string",
            forgot_password_url="string",
            password_label="string",
            show_password_visibility_toggle=False,
            show_user_identifier=False,
            sign_in_label="string",
            unlock_account_label="string",
            unlock_account_url="string",
            authenticator_page_custom_link_label="string",
            username_label="string",
            help_label="string",
        ))
    
    const previewSigninPageResource = new okta.index.PreviewSigninPage("previewSigninPageResource", {
        brandId: "string",
        pageContent: "string",
        widgetVersion: "string",
        contentSecurityPolicySetting: {
            mode: "string",
            reportUri: "string",
            srcLists: ["string"],
        },
        widgetCustomizations: {
            widgetGeneration: "string",
            helpUrl: "string",
            usernameInfoTip: "string",
            customLink1Label: "string",
            customLink1Url: "string",
            customLink2Label: "string",
            customLink2Url: "string",
            forgotPasswordLabel: "string",
            passwordInfoTip: "string",
            authenticatorPageCustomLinkUrl: "string",
            classicRecoveryFlowEmailOrUsernameLabel: "string",
            forgotPasswordUrl: "string",
            passwordLabel: "string",
            showPasswordVisibilityToggle: false,
            showUserIdentifier: false,
            signInLabel: "string",
            unlockAccountLabel: "string",
            unlockAccountUrl: "string",
            authenticatorPageCustomLinkLabel: "string",
            usernameLabel: "string",
            helpLabel: "string",
        },
    });
    
    type: okta:Index:PreviewSigninPage
    properties:
        brandId: string
        contentSecurityPolicySetting:
            mode: string
            reportUri: string
            srcLists:
                - string
        pageContent: string
        widgetCustomizations:
            authenticatorPageCustomLinkLabel: string
            authenticatorPageCustomLinkUrl: string
            classicRecoveryFlowEmailOrUsernameLabel: string
            customLink1Label: string
            customLink1Url: string
            customLink2Label: string
            customLink2Url: string
            forgotPasswordLabel: string
            forgotPasswordUrl: string
            helpLabel: string
            helpUrl: string
            passwordInfoTip: string
            passwordLabel: string
            showPasswordVisibilityToggle: false
            showUserIdentifier: false
            signInLabel: string
            unlockAccountLabel: string
            unlockAccountUrl: string
            usernameInfoTip: string
            usernameLabel: string
            widgetGeneration: string
        widgetVersion: string
    

    PreviewSigninPage Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The PreviewSigninPage resource accepts the following input properties:

    BrandId string
    brand id of the preview signin page
    PageContent string
    page content of the preview signin page
    WidgetVersion string
    widget version specified as a Semver. The following are currently supported *, ^1, ^2, ^3, ^4, ^5, ^6, ^7, 1.6, 1.7, 1.8, 1.9, 1.10, 1.11, 1.12, 1.13, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 2.8, 2.9, 2.10, 2.11, 2.12, 2.13, 2.14, 2.15, 2.16, 2.17, 2.18, 2.19, 2.20, 2.21, 3.0, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 4.0, 4.1, 4.2, 4.3, 4.4, 4.5, 5.0, 5.1, 5.2, 5.3, 5.4, 5.5, 5.6, 5.7, 5.8, 5.9, 5.10, 5.11, 5.12, 5.13, 5.14, 5.15, 5.16, 6.0, 6.1, 6.2, 6.3, 6.4, 6.5, 6.6, 6.7, 6.8, 6.9, 7.0, 7.1, 7.2, 7.3, 7.4, 7.5, 7.6, 7.7, 7.8, 7.9, 7.10, 7.11, 7.12, 7.13.
    ContentSecurityPolicySetting PreviewSigninPageContentSecurityPolicySetting
    WidgetCustomizations PreviewSigninPageWidgetCustomizations
    BrandId string
    brand id of the preview signin page
    PageContent string
    page content of the preview signin page
    WidgetVersion string
    widget version specified as a Semver. The following are currently supported *, ^1, ^2, ^3, ^4, ^5, ^6, ^7, 1.6, 1.7, 1.8, 1.9, 1.10, 1.11, 1.12, 1.13, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 2.8, 2.9, 2.10, 2.11, 2.12, 2.13, 2.14, 2.15, 2.16, 2.17, 2.18, 2.19, 2.20, 2.21, 3.0, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 4.0, 4.1, 4.2, 4.3, 4.4, 4.5, 5.0, 5.1, 5.2, 5.3, 5.4, 5.5, 5.6, 5.7, 5.8, 5.9, 5.10, 5.11, 5.12, 5.13, 5.14, 5.15, 5.16, 6.0, 6.1, 6.2, 6.3, 6.4, 6.5, 6.6, 6.7, 6.8, 6.9, 7.0, 7.1, 7.2, 7.3, 7.4, 7.5, 7.6, 7.7, 7.8, 7.9, 7.10, 7.11, 7.12, 7.13.
    ContentSecurityPolicySetting PreviewSigninPageContentSecurityPolicySettingArgs
    WidgetCustomizations PreviewSigninPageWidgetCustomizationsArgs
    brandId String
    brand id of the preview signin page
    pageContent String
    page content of the preview signin page
    widgetVersion String
    widget version specified as a Semver. The following are currently supported *, ^1, ^2, ^3, ^4, ^5, ^6, ^7, 1.6, 1.7, 1.8, 1.9, 1.10, 1.11, 1.12, 1.13, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 2.8, 2.9, 2.10, 2.11, 2.12, 2.13, 2.14, 2.15, 2.16, 2.17, 2.18, 2.19, 2.20, 2.21, 3.0, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 4.0, 4.1, 4.2, 4.3, 4.4, 4.5, 5.0, 5.1, 5.2, 5.3, 5.4, 5.5, 5.6, 5.7, 5.8, 5.9, 5.10, 5.11, 5.12, 5.13, 5.14, 5.15, 5.16, 6.0, 6.1, 6.2, 6.3, 6.4, 6.5, 6.6, 6.7, 6.8, 6.9, 7.0, 7.1, 7.2, 7.3, 7.4, 7.5, 7.6, 7.7, 7.8, 7.9, 7.10, 7.11, 7.12, 7.13.
    contentSecurityPolicySetting PreviewSigninPageContentSecurityPolicySetting
    widgetCustomizations PreviewSigninPageWidgetCustomizations
    brandId string
    brand id of the preview signin page
    pageContent string
    page content of the preview signin page
    widgetVersion string
    widget version specified as a Semver. The following are currently supported *, ^1, ^2, ^3, ^4, ^5, ^6, ^7, 1.6, 1.7, 1.8, 1.9, 1.10, 1.11, 1.12, 1.13, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 2.8, 2.9, 2.10, 2.11, 2.12, 2.13, 2.14, 2.15, 2.16, 2.17, 2.18, 2.19, 2.20, 2.21, 3.0, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 4.0, 4.1, 4.2, 4.3, 4.4, 4.5, 5.0, 5.1, 5.2, 5.3, 5.4, 5.5, 5.6, 5.7, 5.8, 5.9, 5.10, 5.11, 5.12, 5.13, 5.14, 5.15, 5.16, 6.0, 6.1, 6.2, 6.3, 6.4, 6.5, 6.6, 6.7, 6.8, 6.9, 7.0, 7.1, 7.2, 7.3, 7.4, 7.5, 7.6, 7.7, 7.8, 7.9, 7.10, 7.11, 7.12, 7.13.
    contentSecurityPolicySetting PreviewSigninPageContentSecurityPolicySetting
    widgetCustomizations PreviewSigninPageWidgetCustomizations
    brand_id str
    brand id of the preview signin page
    page_content str
    page content of the preview signin page
    widget_version str
    widget version specified as a Semver. The following are currently supported *, ^1, ^2, ^3, ^4, ^5, ^6, ^7, 1.6, 1.7, 1.8, 1.9, 1.10, 1.11, 1.12, 1.13, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 2.8, 2.9, 2.10, 2.11, 2.12, 2.13, 2.14, 2.15, 2.16, 2.17, 2.18, 2.19, 2.20, 2.21, 3.0, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 4.0, 4.1, 4.2, 4.3, 4.4, 4.5, 5.0, 5.1, 5.2, 5.3, 5.4, 5.5, 5.6, 5.7, 5.8, 5.9, 5.10, 5.11, 5.12, 5.13, 5.14, 5.15, 5.16, 6.0, 6.1, 6.2, 6.3, 6.4, 6.5, 6.6, 6.7, 6.8, 6.9, 7.0, 7.1, 7.2, 7.3, 7.4, 7.5, 7.6, 7.7, 7.8, 7.9, 7.10, 7.11, 7.12, 7.13.
    content_security_policy_setting index.PreviewSigninPageContentSecurityPolicySettingArgs
    widget_customizations index.PreviewSigninPageWidgetCustomizationsArgs
    brandId String
    brand id of the preview signin page
    pageContent String
    page content of the preview signin page
    widgetVersion String
    widget version specified as a Semver. The following are currently supported *, ^1, ^2, ^3, ^4, ^5, ^6, ^7, 1.6, 1.7, 1.8, 1.9, 1.10, 1.11, 1.12, 1.13, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 2.8, 2.9, 2.10, 2.11, 2.12, 2.13, 2.14, 2.15, 2.16, 2.17, 2.18, 2.19, 2.20, 2.21, 3.0, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 4.0, 4.1, 4.2, 4.3, 4.4, 4.5, 5.0, 5.1, 5.2, 5.3, 5.4, 5.5, 5.6, 5.7, 5.8, 5.9, 5.10, 5.11, 5.12, 5.13, 5.14, 5.15, 5.16, 6.0, 6.1, 6.2, 6.3, 6.4, 6.5, 6.6, 6.7, 6.8, 6.9, 7.0, 7.1, 7.2, 7.3, 7.4, 7.5, 7.6, 7.7, 7.8, 7.9, 7.10, 7.11, 7.12, 7.13.
    contentSecurityPolicySetting Property Map
    widgetCustomizations Property Map

    Outputs

    All input properties are implicitly available as output properties. Additionally, the PreviewSigninPage resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing PreviewSigninPage Resource

    Get an existing PreviewSigninPage resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: PreviewSigninPageState, opts?: CustomResourceOptions): PreviewSigninPage
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            brand_id: Optional[str] = None,
            content_security_policy_setting: Optional[_index.PreviewSigninPageContentSecurityPolicySettingArgs] = None,
            page_content: Optional[str] = None,
            widget_customizations: Optional[_index.PreviewSigninPageWidgetCustomizationsArgs] = None,
            widget_version: Optional[str] = None) -> PreviewSigninPage
    func GetPreviewSigninPage(ctx *Context, name string, id IDInput, state *PreviewSigninPageState, opts ...ResourceOption) (*PreviewSigninPage, error)
    public static PreviewSigninPage Get(string name, Input<string> id, PreviewSigninPageState? state, CustomResourceOptions? opts = null)
    public static PreviewSigninPage get(String name, Output<String> id, PreviewSigninPageState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    BrandId string
    brand id of the preview signin page
    ContentSecurityPolicySetting PreviewSigninPageContentSecurityPolicySetting
    PageContent string
    page content of the preview signin page
    WidgetCustomizations PreviewSigninPageWidgetCustomizations
    WidgetVersion string
    widget version specified as a Semver. The following are currently supported *, ^1, ^2, ^3, ^4, ^5, ^6, ^7, 1.6, 1.7, 1.8, 1.9, 1.10, 1.11, 1.12, 1.13, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 2.8, 2.9, 2.10, 2.11, 2.12, 2.13, 2.14, 2.15, 2.16, 2.17, 2.18, 2.19, 2.20, 2.21, 3.0, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 4.0, 4.1, 4.2, 4.3, 4.4, 4.5, 5.0, 5.1, 5.2, 5.3, 5.4, 5.5, 5.6, 5.7, 5.8, 5.9, 5.10, 5.11, 5.12, 5.13, 5.14, 5.15, 5.16, 6.0, 6.1, 6.2, 6.3, 6.4, 6.5, 6.6, 6.7, 6.8, 6.9, 7.0, 7.1, 7.2, 7.3, 7.4, 7.5, 7.6, 7.7, 7.8, 7.9, 7.10, 7.11, 7.12, 7.13.
    BrandId string
    brand id of the preview signin page
    ContentSecurityPolicySetting PreviewSigninPageContentSecurityPolicySettingArgs
    PageContent string
    page content of the preview signin page
    WidgetCustomizations PreviewSigninPageWidgetCustomizationsArgs
    WidgetVersion string
    widget version specified as a Semver. The following are currently supported *, ^1, ^2, ^3, ^4, ^5, ^6, ^7, 1.6, 1.7, 1.8, 1.9, 1.10, 1.11, 1.12, 1.13, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 2.8, 2.9, 2.10, 2.11, 2.12, 2.13, 2.14, 2.15, 2.16, 2.17, 2.18, 2.19, 2.20, 2.21, 3.0, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 4.0, 4.1, 4.2, 4.3, 4.4, 4.5, 5.0, 5.1, 5.2, 5.3, 5.4, 5.5, 5.6, 5.7, 5.8, 5.9, 5.10, 5.11, 5.12, 5.13, 5.14, 5.15, 5.16, 6.0, 6.1, 6.2, 6.3, 6.4, 6.5, 6.6, 6.7, 6.8, 6.9, 7.0, 7.1, 7.2, 7.3, 7.4, 7.5, 7.6, 7.7, 7.8, 7.9, 7.10, 7.11, 7.12, 7.13.
    brandId String
    brand id of the preview signin page
    contentSecurityPolicySetting PreviewSigninPageContentSecurityPolicySetting
    pageContent String
    page content of the preview signin page
    widgetCustomizations PreviewSigninPageWidgetCustomizations
    widgetVersion String
    widget version specified as a Semver. The following are currently supported *, ^1, ^2, ^3, ^4, ^5, ^6, ^7, 1.6, 1.7, 1.8, 1.9, 1.10, 1.11, 1.12, 1.13, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 2.8, 2.9, 2.10, 2.11, 2.12, 2.13, 2.14, 2.15, 2.16, 2.17, 2.18, 2.19, 2.20, 2.21, 3.0, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 4.0, 4.1, 4.2, 4.3, 4.4, 4.5, 5.0, 5.1, 5.2, 5.3, 5.4, 5.5, 5.6, 5.7, 5.8, 5.9, 5.10, 5.11, 5.12, 5.13, 5.14, 5.15, 5.16, 6.0, 6.1, 6.2, 6.3, 6.4, 6.5, 6.6, 6.7, 6.8, 6.9, 7.0, 7.1, 7.2, 7.3, 7.4, 7.5, 7.6, 7.7, 7.8, 7.9, 7.10, 7.11, 7.12, 7.13.
    brandId string
    brand id of the preview signin page
    contentSecurityPolicySetting PreviewSigninPageContentSecurityPolicySetting
    pageContent string
    page content of the preview signin page
    widgetCustomizations PreviewSigninPageWidgetCustomizations
    widgetVersion string
    widget version specified as a Semver. The following are currently supported *, ^1, ^2, ^3, ^4, ^5, ^6, ^7, 1.6, 1.7, 1.8, 1.9, 1.10, 1.11, 1.12, 1.13, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 2.8, 2.9, 2.10, 2.11, 2.12, 2.13, 2.14, 2.15, 2.16, 2.17, 2.18, 2.19, 2.20, 2.21, 3.0, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 4.0, 4.1, 4.2, 4.3, 4.4, 4.5, 5.0, 5.1, 5.2, 5.3, 5.4, 5.5, 5.6, 5.7, 5.8, 5.9, 5.10, 5.11, 5.12, 5.13, 5.14, 5.15, 5.16, 6.0, 6.1, 6.2, 6.3, 6.4, 6.5, 6.6, 6.7, 6.8, 6.9, 7.0, 7.1, 7.2, 7.3, 7.4, 7.5, 7.6, 7.7, 7.8, 7.9, 7.10, 7.11, 7.12, 7.13.
    brand_id str
    brand id of the preview signin page
    content_security_policy_setting index.PreviewSigninPageContentSecurityPolicySettingArgs
    page_content str
    page content of the preview signin page
    widget_customizations index.PreviewSigninPageWidgetCustomizationsArgs
    widget_version str
    widget version specified as a Semver. The following are currently supported *, ^1, ^2, ^3, ^4, ^5, ^6, ^7, 1.6, 1.7, 1.8, 1.9, 1.10, 1.11, 1.12, 1.13, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 2.8, 2.9, 2.10, 2.11, 2.12, 2.13, 2.14, 2.15, 2.16, 2.17, 2.18, 2.19, 2.20, 2.21, 3.0, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 4.0, 4.1, 4.2, 4.3, 4.4, 4.5, 5.0, 5.1, 5.2, 5.3, 5.4, 5.5, 5.6, 5.7, 5.8, 5.9, 5.10, 5.11, 5.12, 5.13, 5.14, 5.15, 5.16, 6.0, 6.1, 6.2, 6.3, 6.4, 6.5, 6.6, 6.7, 6.8, 6.9, 7.0, 7.1, 7.2, 7.3, 7.4, 7.5, 7.6, 7.7, 7.8, 7.9, 7.10, 7.11, 7.12, 7.13.
    brandId String
    brand id of the preview signin page
    contentSecurityPolicySetting Property Map
    pageContent String
    page content of the preview signin page
    widgetCustomizations Property Map
    widgetVersion String
    widget version specified as a Semver. The following are currently supported *, ^1, ^2, ^3, ^4, ^5, ^6, ^7, 1.6, 1.7, 1.8, 1.9, 1.10, 1.11, 1.12, 1.13, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 2.8, 2.9, 2.10, 2.11, 2.12, 2.13, 2.14, 2.15, 2.16, 2.17, 2.18, 2.19, 2.20, 2.21, 3.0, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 4.0, 4.1, 4.2, 4.3, 4.4, 4.5, 5.0, 5.1, 5.2, 5.3, 5.4, 5.5, 5.6, 5.7, 5.8, 5.9, 5.10, 5.11, 5.12, 5.13, 5.14, 5.15, 5.16, 6.0, 6.1, 6.2, 6.3, 6.4, 6.5, 6.6, 6.7, 6.8, 6.9, 7.0, 7.1, 7.2, 7.3, 7.4, 7.5, 7.6, 7.7, 7.8, 7.9, 7.10, 7.11, 7.12, 7.13.

    Supporting Types

    PreviewSigninPageContentSecurityPolicySetting, PreviewSigninPageContentSecurityPolicySettingArgs

    Mode string
    enforced or report_only
    ReportUri string
    SrcLists List<string>
    Mode string
    enforced or report_only
    ReportUri string
    SrcLists []string
    mode String
    enforced or report_only
    reportUri String
    srcLists List<String>
    mode string
    enforced or report_only
    reportUri string
    srcLists string[]
    mode str
    enforced or report_only
    report_uri str
    src_lists Sequence[str]
    mode String
    enforced or report_only
    reportUri String
    srcLists List<String>

    PreviewSigninPageWidgetCustomizations, PreviewSigninPageWidgetCustomizationsArgs

    Package Details

    Repository
    Okta pulumi/pulumi-okta
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the okta Terraform Provider.
    okta logo
    Okta v4.8.1 published on Thursday, Apr 18, 2024 by Pulumi