1. Packages
  2. Cisco Meraki
  3. API Docs
  4. organizations
  5. BrandingPolicies
Cisco Meraki v0.2.10 published on Wednesday, Jul 24, 2024 by Pulumi

meraki.organizations.BrandingPolicies

Explore with Pulumi AI

meraki logo
Cisco Meraki v0.2.10 published on Wednesday, Jul 24, 2024 by Pulumi

    Example Usage

    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.meraki.organizations.BrandingPolicies;
    import com.pulumi.meraki.organizations.BrandingPoliciesArgs;
    import com.pulumi.meraki.organizations.inputs.BrandingPoliciesAdminSettingsArgs;
    import com.pulumi.meraki.organizations.inputs.BrandingPoliciesCustomLogoArgs;
    import com.pulumi.meraki.organizations.inputs.BrandingPoliciesCustomLogoImageArgs;
    import com.pulumi.meraki.organizations.inputs.BrandingPoliciesHelpSettingsArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var example = new BrandingPolicies("example", BrandingPoliciesArgs.builder()
                .adminSettings(BrandingPoliciesAdminSettingsArgs.builder()
                    .applies_to("All admins of networks...")
                    .values(                
                        "N_1234",
                        "L_5678")
                    .build())
                .customLogo(BrandingPoliciesCustomLogoArgs.builder()
                    .enabled(true)
                    .image(BrandingPoliciesCustomLogoImageArgs.builder()
                        .contents("Hyperg26C8F4h8CvcoUqpA==")
                        .format("jpg")
                        .build())
                    .build())
                .enabled(true)
                .helpSettings(BrandingPoliciesHelpSettingsArgs.builder()
                    .api_docs_subtab("default or inherit")
                    .cases_subtab("hide")
                    .cisco_meraki_product_documentation("show")
                    .community_subtab("show")
                    .data_protection_requests_subtab("default or inherit")
                    .firewall_info_subtab("hide")
                    .get_help_subtab("default or inherit")
                    .get_help_subtab_knowledge_base_search("<h1>Some custom HTML content</h1>")
                    .hardware_replacements_subtab("hide")
                    .help_tab("show")
                    .help_widget("hide")
                    .new_features_subtab("show")
                    .sm_forums("hide")
                    .support_contact_info("show")
                    .universal_search_knowledge_base_search("hide")
                    .build())
                .name("My Branding Policy")
                .organizationId("string")
                .build());
    
            ctx.export("merakiOrganizationsBrandingPoliciesExample", example);
        }
    }
    
    resources:
      example:
        type: meraki:organizations:BrandingPolicies
        properties:
          adminSettings:
            applies_to: All admins of networks...
            values:
              - N_1234
              - L_5678
          customLogo:
            enabled: true
            image:
              contents: Hyperg26C8F4h8CvcoUqpA==
              format: jpg
          enabled: true
          helpSettings:
            api_docs_subtab: default or inherit
            cases_subtab: hide
            cisco_meraki_product_documentation: show
            community_subtab: show
            data_protection_requests_subtab: default or inherit
            firewall_info_subtab: hide
            get_help_subtab: default or inherit
            get_help_subtab_knowledge_base_search: <h1>Some custom HTML content</h1>
            hardware_replacements_subtab: hide
            help_tab: show
            help_widget: hide
            new_features_subtab: show
            sm_forums: hide
            support_contact_info: show
            universal_search_knowledge_base_search: hide
          name: My Branding Policy
          organizationId: string
    outputs:
      merakiOrganizationsBrandingPoliciesExample: ${example}
    

    Create BrandingPolicies Resource

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

    Constructor syntax

    new BrandingPolicies(name: string, args: BrandingPoliciesArgs, opts?: CustomResourceOptions);
    @overload
    def BrandingPolicies(resource_name: str,
                         args: BrandingPoliciesArgs,
                         opts: Optional[ResourceOptions] = None)
    
    @overload
    def BrandingPolicies(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         organization_id: Optional[str] = None,
                         admin_settings: Optional[BrandingPoliciesAdminSettingsArgs] = None,
                         branding_policy_id: Optional[str] = None,
                         custom_logo: Optional[BrandingPoliciesCustomLogoArgs] = None,
                         enabled: Optional[bool] = None,
                         help_settings: Optional[BrandingPoliciesHelpSettingsArgs] = None,
                         name: Optional[str] = None)
    func NewBrandingPolicies(ctx *Context, name string, args BrandingPoliciesArgs, opts ...ResourceOption) (*BrandingPolicies, error)
    public BrandingPolicies(string name, BrandingPoliciesArgs args, CustomResourceOptions? opts = null)
    public BrandingPolicies(String name, BrandingPoliciesArgs args)
    public BrandingPolicies(String name, BrandingPoliciesArgs args, CustomResourceOptions options)
    
    type: meraki:organizations:BrandingPolicies
    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 BrandingPoliciesArgs
    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 BrandingPoliciesArgs
    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 BrandingPoliciesArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args BrandingPoliciesArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args BrandingPoliciesArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

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

    var brandingPoliciesResource = new Meraki.Organizations.BrandingPolicies("brandingPoliciesResource", new()
    {
        OrganizationId = "string",
        AdminSettings = new Meraki.Organizations.Inputs.BrandingPoliciesAdminSettingsArgs
        {
            AppliesTo = "string",
            Values = new[]
            {
                "string",
            },
        },
        BrandingPolicyId = "string",
        CustomLogo = new Meraki.Organizations.Inputs.BrandingPoliciesCustomLogoArgs
        {
            Enabled = false,
            Image = new Meraki.Organizations.Inputs.BrandingPoliciesCustomLogoImageArgs
            {
                Contents = "string",
                Format = "string",
                Preview = new Meraki.Organizations.Inputs.BrandingPoliciesCustomLogoImagePreviewArgs
                {
                    ExpiresAt = "string",
                    Url = "string",
                },
            },
        },
        Enabled = false,
        HelpSettings = new Meraki.Organizations.Inputs.BrandingPoliciesHelpSettingsArgs
        {
            ApiDocsSubtab = "string",
            CasesSubtab = "string",
            CiscoMerakiProductDocumentation = "string",
            CommunitySubtab = "string",
            DataProtectionRequestsSubtab = "string",
            FirewallInfoSubtab = "string",
            GetHelpSubtab = "string",
            GetHelpSubtabKnowledgeBaseSearch = "string",
            HardwareReplacementsSubtab = "string",
            HelpTab = "string",
            HelpWidget = "string",
            NewFeaturesSubtab = "string",
            SmForums = "string",
            SupportContactInfo = "string",
            UniversalSearchKnowledgeBaseSearch = "string",
        },
        Name = "string",
    });
    
    example, err := organizations.NewBrandingPolicies(ctx, "brandingPoliciesResource", &organizations.BrandingPoliciesArgs{
    	OrganizationId: pulumi.String("string"),
    	AdminSettings: &organizations.BrandingPoliciesAdminSettingsArgs{
    		AppliesTo: pulumi.String("string"),
    		Values: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    	},
    	BrandingPolicyId: pulumi.String("string"),
    	CustomLogo: &organizations.BrandingPoliciesCustomLogoArgs{
    		Enabled: pulumi.Bool(false),
    		Image: &organizations.BrandingPoliciesCustomLogoImageArgs{
    			Contents: pulumi.String("string"),
    			Format:   pulumi.String("string"),
    			Preview: &organizations.BrandingPoliciesCustomLogoImagePreviewArgs{
    				ExpiresAt: pulumi.String("string"),
    				Url:       pulumi.String("string"),
    			},
    		},
    	},
    	Enabled: pulumi.Bool(false),
    	HelpSettings: &organizations.BrandingPoliciesHelpSettingsArgs{
    		ApiDocsSubtab:                      pulumi.String("string"),
    		CasesSubtab:                        pulumi.String("string"),
    		CiscoMerakiProductDocumentation:    pulumi.String("string"),
    		CommunitySubtab:                    pulumi.String("string"),
    		DataProtectionRequestsSubtab:       pulumi.String("string"),
    		FirewallInfoSubtab:                 pulumi.String("string"),
    		GetHelpSubtab:                      pulumi.String("string"),
    		GetHelpSubtabKnowledgeBaseSearch:   pulumi.String("string"),
    		HardwareReplacementsSubtab:         pulumi.String("string"),
    		HelpTab:                            pulumi.String("string"),
    		HelpWidget:                         pulumi.String("string"),
    		NewFeaturesSubtab:                  pulumi.String("string"),
    		SmForums:                           pulumi.String("string"),
    		SupportContactInfo:                 pulumi.String("string"),
    		UniversalSearchKnowledgeBaseSearch: pulumi.String("string"),
    	},
    	Name: pulumi.String("string"),
    })
    
    var brandingPoliciesResource = new BrandingPolicies("brandingPoliciesResource", BrandingPoliciesArgs.builder()
        .organizationId("string")
        .adminSettings(BrandingPoliciesAdminSettingsArgs.builder()
            .appliesTo("string")
            .values("string")
            .build())
        .brandingPolicyId("string")
        .customLogo(BrandingPoliciesCustomLogoArgs.builder()
            .enabled(false)
            .image(BrandingPoliciesCustomLogoImageArgs.builder()
                .contents("string")
                .format("string")
                .preview(BrandingPoliciesCustomLogoImagePreviewArgs.builder()
                    .expiresAt("string")
                    .url("string")
                    .build())
                .build())
            .build())
        .enabled(false)
        .helpSettings(BrandingPoliciesHelpSettingsArgs.builder()
            .apiDocsSubtab("string")
            .casesSubtab("string")
            .ciscoMerakiProductDocumentation("string")
            .communitySubtab("string")
            .dataProtectionRequestsSubtab("string")
            .firewallInfoSubtab("string")
            .getHelpSubtab("string")
            .getHelpSubtabKnowledgeBaseSearch("string")
            .hardwareReplacementsSubtab("string")
            .helpTab("string")
            .helpWidget("string")
            .newFeaturesSubtab("string")
            .smForums("string")
            .supportContactInfo("string")
            .universalSearchKnowledgeBaseSearch("string")
            .build())
        .name("string")
        .build());
    
    branding_policies_resource = meraki.organizations.BrandingPolicies("brandingPoliciesResource",
        organization_id="string",
        admin_settings=meraki.organizations.BrandingPoliciesAdminSettingsArgs(
            applies_to="string",
            values=["string"],
        ),
        branding_policy_id="string",
        custom_logo=meraki.organizations.BrandingPoliciesCustomLogoArgs(
            enabled=False,
            image=meraki.organizations.BrandingPoliciesCustomLogoImageArgs(
                contents="string",
                format="string",
                preview=meraki.organizations.BrandingPoliciesCustomLogoImagePreviewArgs(
                    expires_at="string",
                    url="string",
                ),
            ),
        ),
        enabled=False,
        help_settings=meraki.organizations.BrandingPoliciesHelpSettingsArgs(
            api_docs_subtab="string",
            cases_subtab="string",
            cisco_meraki_product_documentation="string",
            community_subtab="string",
            data_protection_requests_subtab="string",
            firewall_info_subtab="string",
            get_help_subtab="string",
            get_help_subtab_knowledge_base_search="string",
            hardware_replacements_subtab="string",
            help_tab="string",
            help_widget="string",
            new_features_subtab="string",
            sm_forums="string",
            support_contact_info="string",
            universal_search_knowledge_base_search="string",
        ),
        name="string")
    
    const brandingPoliciesResource = new meraki.organizations.BrandingPolicies("brandingPoliciesResource", {
        organizationId: "string",
        adminSettings: {
            appliesTo: "string",
            values: ["string"],
        },
        brandingPolicyId: "string",
        customLogo: {
            enabled: false,
            image: {
                contents: "string",
                format: "string",
                preview: {
                    expiresAt: "string",
                    url: "string",
                },
            },
        },
        enabled: false,
        helpSettings: {
            apiDocsSubtab: "string",
            casesSubtab: "string",
            ciscoMerakiProductDocumentation: "string",
            communitySubtab: "string",
            dataProtectionRequestsSubtab: "string",
            firewallInfoSubtab: "string",
            getHelpSubtab: "string",
            getHelpSubtabKnowledgeBaseSearch: "string",
            hardwareReplacementsSubtab: "string",
            helpTab: "string",
            helpWidget: "string",
            newFeaturesSubtab: "string",
            smForums: "string",
            supportContactInfo: "string",
            universalSearchKnowledgeBaseSearch: "string",
        },
        name: "string",
    });
    
    type: meraki:organizations:BrandingPolicies
    properties:
        adminSettings:
            appliesTo: string
            values:
                - string
        brandingPolicyId: string
        customLogo:
            enabled: false
            image:
                contents: string
                format: string
                preview:
                    expiresAt: string
                    url: string
        enabled: false
        helpSettings:
            apiDocsSubtab: string
            casesSubtab: string
            ciscoMerakiProductDocumentation: string
            communitySubtab: string
            dataProtectionRequestsSubtab: string
            firewallInfoSubtab: string
            getHelpSubtab: string
            getHelpSubtabKnowledgeBaseSearch: string
            hardwareReplacementsSubtab: string
            helpTab: string
            helpWidget: string
            newFeaturesSubtab: string
            smForums: string
            supportContactInfo: string
            universalSearchKnowledgeBaseSearch: string
        name: string
        organizationId: string
    

    BrandingPolicies 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 BrandingPolicies resource accepts the following input properties:

    OrganizationId string
    organizationId path parameter. Organization ID
    AdminSettings BrandingPoliciesAdminSettings
    Settings for describing which kinds of admins this policy applies to.
    BrandingPolicyId string
    brandingPolicyId path parameter. Branding policy ID
    CustomLogo BrandingPoliciesCustomLogo
    Properties describing the custom logo attached to the branding policy.
    Enabled bool
    Boolean indicating whether this policy is enabled.
    HelpSettings BrandingPoliciesHelpSettings
    Settings for describing the modifications to various Help page features. Each property in this object accepts one of 'default or inherit' (do not modify functionality), 'hide' (remove the section from Dashboard), or 'show' (always show the section on Dashboard). Some properties in this object also accept custom HTML used to replace the section on Dashboard; see the documentation for each property to see the allowed values.
    Name string
    Name of the Dashboard branding policy.
    OrganizationId string
    organizationId path parameter. Organization ID
    AdminSettings BrandingPoliciesAdminSettingsArgs
    Settings for describing which kinds of admins this policy applies to.
    BrandingPolicyId string
    brandingPolicyId path parameter. Branding policy ID
    CustomLogo BrandingPoliciesCustomLogoArgs
    Properties describing the custom logo attached to the branding policy.
    Enabled bool
    Boolean indicating whether this policy is enabled.
    HelpSettings BrandingPoliciesHelpSettingsArgs
    Settings for describing the modifications to various Help page features. Each property in this object accepts one of 'default or inherit' (do not modify functionality), 'hide' (remove the section from Dashboard), or 'show' (always show the section on Dashboard). Some properties in this object also accept custom HTML used to replace the section on Dashboard; see the documentation for each property to see the allowed values.
    Name string
    Name of the Dashboard branding policy.
    organizationId String
    organizationId path parameter. Organization ID
    adminSettings BrandingPoliciesAdminSettings
    Settings for describing which kinds of admins this policy applies to.
    brandingPolicyId String
    brandingPolicyId path parameter. Branding policy ID
    customLogo BrandingPoliciesCustomLogo
    Properties describing the custom logo attached to the branding policy.
    enabled Boolean
    Boolean indicating whether this policy is enabled.
    helpSettings BrandingPoliciesHelpSettings
    Settings for describing the modifications to various Help page features. Each property in this object accepts one of 'default or inherit' (do not modify functionality), 'hide' (remove the section from Dashboard), or 'show' (always show the section on Dashboard). Some properties in this object also accept custom HTML used to replace the section on Dashboard; see the documentation for each property to see the allowed values.
    name String
    Name of the Dashboard branding policy.
    organizationId string
    organizationId path parameter. Organization ID
    adminSettings BrandingPoliciesAdminSettings
    Settings for describing which kinds of admins this policy applies to.
    brandingPolicyId string
    brandingPolicyId path parameter. Branding policy ID
    customLogo BrandingPoliciesCustomLogo
    Properties describing the custom logo attached to the branding policy.
    enabled boolean
    Boolean indicating whether this policy is enabled.
    helpSettings BrandingPoliciesHelpSettings
    Settings for describing the modifications to various Help page features. Each property in this object accepts one of 'default or inherit' (do not modify functionality), 'hide' (remove the section from Dashboard), or 'show' (always show the section on Dashboard). Some properties in this object also accept custom HTML used to replace the section on Dashboard; see the documentation for each property to see the allowed values.
    name string
    Name of the Dashboard branding policy.
    organization_id str
    organizationId path parameter. Organization ID
    admin_settings BrandingPoliciesAdminSettingsArgs
    Settings for describing which kinds of admins this policy applies to.
    branding_policy_id str
    brandingPolicyId path parameter. Branding policy ID
    custom_logo BrandingPoliciesCustomLogoArgs
    Properties describing the custom logo attached to the branding policy.
    enabled bool
    Boolean indicating whether this policy is enabled.
    help_settings BrandingPoliciesHelpSettingsArgs
    Settings for describing the modifications to various Help page features. Each property in this object accepts one of 'default or inherit' (do not modify functionality), 'hide' (remove the section from Dashboard), or 'show' (always show the section on Dashboard). Some properties in this object also accept custom HTML used to replace the section on Dashboard; see the documentation for each property to see the allowed values.
    name str
    Name of the Dashboard branding policy.
    organizationId String
    organizationId path parameter. Organization ID
    adminSettings Property Map
    Settings for describing which kinds of admins this policy applies to.
    brandingPolicyId String
    brandingPolicyId path parameter. Branding policy ID
    customLogo Property Map
    Properties describing the custom logo attached to the branding policy.
    enabled Boolean
    Boolean indicating whether this policy is enabled.
    helpSettings Property Map
    Settings for describing the modifications to various Help page features. Each property in this object accepts one of 'default or inherit' (do not modify functionality), 'hide' (remove the section from Dashboard), or 'show' (always show the section on Dashboard). Some properties in this object also accept custom HTML used to replace the section on Dashboard; see the documentation for each property to see the allowed values.
    name String
    Name of the Dashboard branding policy.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the BrandingPolicies 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 BrandingPolicies Resource

    Get an existing BrandingPolicies 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?: BrandingPoliciesState, opts?: CustomResourceOptions): BrandingPolicies
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            admin_settings: Optional[BrandingPoliciesAdminSettingsArgs] = None,
            branding_policy_id: Optional[str] = None,
            custom_logo: Optional[BrandingPoliciesCustomLogoArgs] = None,
            enabled: Optional[bool] = None,
            help_settings: Optional[BrandingPoliciesHelpSettingsArgs] = None,
            name: Optional[str] = None,
            organization_id: Optional[str] = None) -> BrandingPolicies
    func GetBrandingPolicies(ctx *Context, name string, id IDInput, state *BrandingPoliciesState, opts ...ResourceOption) (*BrandingPolicies, error)
    public static BrandingPolicies Get(string name, Input<string> id, BrandingPoliciesState? state, CustomResourceOptions? opts = null)
    public static BrandingPolicies get(String name, Output<String> id, BrandingPoliciesState 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:
    AdminSettings BrandingPoliciesAdminSettings
    Settings for describing which kinds of admins this policy applies to.
    BrandingPolicyId string
    brandingPolicyId path parameter. Branding policy ID
    CustomLogo BrandingPoliciesCustomLogo
    Properties describing the custom logo attached to the branding policy.
    Enabled bool
    Boolean indicating whether this policy is enabled.
    HelpSettings BrandingPoliciesHelpSettings
    Settings for describing the modifications to various Help page features. Each property in this object accepts one of 'default or inherit' (do not modify functionality), 'hide' (remove the section from Dashboard), or 'show' (always show the section on Dashboard). Some properties in this object also accept custom HTML used to replace the section on Dashboard; see the documentation for each property to see the allowed values.
    Name string
    Name of the Dashboard branding policy.
    OrganizationId string
    organizationId path parameter. Organization ID
    AdminSettings BrandingPoliciesAdminSettingsArgs
    Settings for describing which kinds of admins this policy applies to.
    BrandingPolicyId string
    brandingPolicyId path parameter. Branding policy ID
    CustomLogo BrandingPoliciesCustomLogoArgs
    Properties describing the custom logo attached to the branding policy.
    Enabled bool
    Boolean indicating whether this policy is enabled.
    HelpSettings BrandingPoliciesHelpSettingsArgs
    Settings for describing the modifications to various Help page features. Each property in this object accepts one of 'default or inherit' (do not modify functionality), 'hide' (remove the section from Dashboard), or 'show' (always show the section on Dashboard). Some properties in this object also accept custom HTML used to replace the section on Dashboard; see the documentation for each property to see the allowed values.
    Name string
    Name of the Dashboard branding policy.
    OrganizationId string
    organizationId path parameter. Organization ID
    adminSettings BrandingPoliciesAdminSettings
    Settings for describing which kinds of admins this policy applies to.
    brandingPolicyId String
    brandingPolicyId path parameter. Branding policy ID
    customLogo BrandingPoliciesCustomLogo
    Properties describing the custom logo attached to the branding policy.
    enabled Boolean
    Boolean indicating whether this policy is enabled.
    helpSettings BrandingPoliciesHelpSettings
    Settings for describing the modifications to various Help page features. Each property in this object accepts one of 'default or inherit' (do not modify functionality), 'hide' (remove the section from Dashboard), or 'show' (always show the section on Dashboard). Some properties in this object also accept custom HTML used to replace the section on Dashboard; see the documentation for each property to see the allowed values.
    name String
    Name of the Dashboard branding policy.
    organizationId String
    organizationId path parameter. Organization ID
    adminSettings BrandingPoliciesAdminSettings
    Settings for describing which kinds of admins this policy applies to.
    brandingPolicyId string
    brandingPolicyId path parameter. Branding policy ID
    customLogo BrandingPoliciesCustomLogo
    Properties describing the custom logo attached to the branding policy.
    enabled boolean
    Boolean indicating whether this policy is enabled.
    helpSettings BrandingPoliciesHelpSettings
    Settings for describing the modifications to various Help page features. Each property in this object accepts one of 'default or inherit' (do not modify functionality), 'hide' (remove the section from Dashboard), or 'show' (always show the section on Dashboard). Some properties in this object also accept custom HTML used to replace the section on Dashboard; see the documentation for each property to see the allowed values.
    name string
    Name of the Dashboard branding policy.
    organizationId string
    organizationId path parameter. Organization ID
    admin_settings BrandingPoliciesAdminSettingsArgs
    Settings for describing which kinds of admins this policy applies to.
    branding_policy_id str
    brandingPolicyId path parameter. Branding policy ID
    custom_logo BrandingPoliciesCustomLogoArgs
    Properties describing the custom logo attached to the branding policy.
    enabled bool
    Boolean indicating whether this policy is enabled.
    help_settings BrandingPoliciesHelpSettingsArgs
    Settings for describing the modifications to various Help page features. Each property in this object accepts one of 'default or inherit' (do not modify functionality), 'hide' (remove the section from Dashboard), or 'show' (always show the section on Dashboard). Some properties in this object also accept custom HTML used to replace the section on Dashboard; see the documentation for each property to see the allowed values.
    name str
    Name of the Dashboard branding policy.
    organization_id str
    organizationId path parameter. Organization ID
    adminSettings Property Map
    Settings for describing which kinds of admins this policy applies to.
    brandingPolicyId String
    brandingPolicyId path parameter. Branding policy ID
    customLogo Property Map
    Properties describing the custom logo attached to the branding policy.
    enabled Boolean
    Boolean indicating whether this policy is enabled.
    helpSettings Property Map
    Settings for describing the modifications to various Help page features. Each property in this object accepts one of 'default or inherit' (do not modify functionality), 'hide' (remove the section from Dashboard), or 'show' (always show the section on Dashboard). Some properties in this object also accept custom HTML used to replace the section on Dashboard; see the documentation for each property to see the allowed values.
    name String
    Name of the Dashboard branding policy.
    organizationId String
    organizationId path parameter. Organization ID

    Supporting Types

    BrandingPoliciesAdminSettings, BrandingPoliciesAdminSettingsArgs

    AppliesTo string
    Which kinds of admins this policy applies to. Can be one of 'All organization admins', 'All enterprise admins', 'All network admins', 'All admins of networks...', 'All admins of networks tagged...', 'Specific admins...', 'All admins' or 'All SAML admins'.
    Values List<string>
    If 'appliesTo' is set to one of 'Specific admins...', 'All admins of networks...' or 'All admins of networks tagged...', then you must specify this 'values' property to provide the set of entities to apply the branding policy to. For 'Specific admins...', specify an array of admin IDs. For 'All admins of networks...', specify an array of network IDs and/or configuration template IDs. For 'All admins of networks tagged...', specify an array of tag names.
    AppliesTo string
    Which kinds of admins this policy applies to. Can be one of 'All organization admins', 'All enterprise admins', 'All network admins', 'All admins of networks...', 'All admins of networks tagged...', 'Specific admins...', 'All admins' or 'All SAML admins'.
    Values []string
    If 'appliesTo' is set to one of 'Specific admins...', 'All admins of networks...' or 'All admins of networks tagged...', then you must specify this 'values' property to provide the set of entities to apply the branding policy to. For 'Specific admins...', specify an array of admin IDs. For 'All admins of networks...', specify an array of network IDs and/or configuration template IDs. For 'All admins of networks tagged...', specify an array of tag names.
    appliesTo String
    Which kinds of admins this policy applies to. Can be one of 'All organization admins', 'All enterprise admins', 'All network admins', 'All admins of networks...', 'All admins of networks tagged...', 'Specific admins...', 'All admins' or 'All SAML admins'.
    values List<String>
    If 'appliesTo' is set to one of 'Specific admins...', 'All admins of networks...' or 'All admins of networks tagged...', then you must specify this 'values' property to provide the set of entities to apply the branding policy to. For 'Specific admins...', specify an array of admin IDs. For 'All admins of networks...', specify an array of network IDs and/or configuration template IDs. For 'All admins of networks tagged...', specify an array of tag names.
    appliesTo string
    Which kinds of admins this policy applies to. Can be one of 'All organization admins', 'All enterprise admins', 'All network admins', 'All admins of networks...', 'All admins of networks tagged...', 'Specific admins...', 'All admins' or 'All SAML admins'.
    values string[]
    If 'appliesTo' is set to one of 'Specific admins...', 'All admins of networks...' or 'All admins of networks tagged...', then you must specify this 'values' property to provide the set of entities to apply the branding policy to. For 'Specific admins...', specify an array of admin IDs. For 'All admins of networks...', specify an array of network IDs and/or configuration template IDs. For 'All admins of networks tagged...', specify an array of tag names.
    applies_to str
    Which kinds of admins this policy applies to. Can be one of 'All organization admins', 'All enterprise admins', 'All network admins', 'All admins of networks...', 'All admins of networks tagged...', 'Specific admins...', 'All admins' or 'All SAML admins'.
    values Sequence[str]
    If 'appliesTo' is set to one of 'Specific admins...', 'All admins of networks...' or 'All admins of networks tagged...', then you must specify this 'values' property to provide the set of entities to apply the branding policy to. For 'Specific admins...', specify an array of admin IDs. For 'All admins of networks...', specify an array of network IDs and/or configuration template IDs. For 'All admins of networks tagged...', specify an array of tag names.
    appliesTo String
    Which kinds of admins this policy applies to. Can be one of 'All organization admins', 'All enterprise admins', 'All network admins', 'All admins of networks...', 'All admins of networks tagged...', 'Specific admins...', 'All admins' or 'All SAML admins'.
    values List<String>
    If 'appliesTo' is set to one of 'Specific admins...', 'All admins of networks...' or 'All admins of networks tagged...', then you must specify this 'values' property to provide the set of entities to apply the branding policy to. For 'Specific admins...', specify an array of admin IDs. For 'All admins of networks...', specify an array of network IDs and/or configuration template IDs. For 'All admins of networks tagged...', specify an array of tag names.
    Enabled bool
    Whether or not there is a custom logo enabled.
    Image BrandingPoliciesCustomLogoImage
    Properties of the image.
    Enabled bool
    Whether or not there is a custom logo enabled.
    Image BrandingPoliciesCustomLogoImage
    Properties of the image.
    enabled Boolean
    Whether or not there is a custom logo enabled.
    image BrandingPoliciesCustomLogoImage
    Properties of the image.
    enabled boolean
    Whether or not there is a custom logo enabled.
    image BrandingPoliciesCustomLogoImage
    Properties of the image.
    enabled bool
    Whether or not there is a custom logo enabled.
    image BrandingPoliciesCustomLogoImage
    Properties of the image.
    enabled Boolean
    Whether or not there is a custom logo enabled.
    image Property Map
    Properties of the image.

    BrandingPoliciesCustomLogoImage, BrandingPoliciesCustomLogoImageArgs

    Contents string
    The file contents (a base 64 encoded string) of your new logo.
    Format string
    The format of the encoded contents. Supported formats are 'png', 'gif', and jpg'.
    Preview BrandingPoliciesCustomLogoImagePreview
    Preview of the image
    Contents string
    The file contents (a base 64 encoded string) of your new logo.
    Format string
    The format of the encoded contents. Supported formats are 'png', 'gif', and jpg'.
    Preview BrandingPoliciesCustomLogoImagePreview
    Preview of the image
    contents String
    The file contents (a base 64 encoded string) of your new logo.
    format String
    The format of the encoded contents. Supported formats are 'png', 'gif', and jpg'.
    preview BrandingPoliciesCustomLogoImagePreview
    Preview of the image
    contents string
    The file contents (a base 64 encoded string) of your new logo.
    format string
    The format of the encoded contents. Supported formats are 'png', 'gif', and jpg'.
    preview BrandingPoliciesCustomLogoImagePreview
    Preview of the image
    contents str
    The file contents (a base 64 encoded string) of your new logo.
    format str
    The format of the encoded contents. Supported formats are 'png', 'gif', and jpg'.
    preview BrandingPoliciesCustomLogoImagePreview
    Preview of the image
    contents String
    The file contents (a base 64 encoded string) of your new logo.
    format String
    The format of the encoded contents. Supported formats are 'png', 'gif', and jpg'.
    preview Property Map
    Preview of the image

    BrandingPoliciesCustomLogoImagePreview, BrandingPoliciesCustomLogoImagePreviewArgs

    ExpiresAt string
    Timestamp of the preview image
    Url string
    Url of the preview image
    ExpiresAt string
    Timestamp of the preview image
    Url string
    Url of the preview image
    expiresAt String
    Timestamp of the preview image
    url String
    Url of the preview image
    expiresAt string
    Timestamp of the preview image
    url string
    Url of the preview image
    expires_at str
    Timestamp of the preview image
    url str
    Url of the preview image
    expiresAt String
    Timestamp of the preview image
    url String
    Url of the preview image

    BrandingPoliciesHelpSettings, BrandingPoliciesHelpSettingsArgs

    ApiDocsSubtab string
    The 'Help > API docs' subtab where a detailed description of the Dashboard API is listed. Can be one of 'default or inherit', 'hide' or 'show'.
    CasesSubtab string
    The 'Help > Cases' Dashboard subtab on which Cisco Meraki support cases for this organization can be managed. Can be one of 'default or inherit', 'hide' or 'show'.
    CiscoMerakiProductDocumentation string
    The 'Product Manuals' section of the 'Help > Get Help' subtab. Can be one of 'default or inherit', 'hide', 'show', or a replacement custom HTML string.
    CommunitySubtab string
    The 'Help > Community' subtab which provides a link to Meraki Community. Can be one of 'default or inherit', 'hide' or 'show'.
    DataProtectionRequestsSubtab string
    The 'Help > Data protection requests' Dashboard subtab on which requests to delete, restrict, or export end-user data can be audited. Can be one of 'default or inherit', 'hide' or 'show'.
    FirewallInfoSubtab string
    The 'Help > Firewall info' subtab where necessary upstream firewall rules for communication to the Cisco Meraki cloud are listed. Can be one of 'default or inherit', 'hide' or 'show'.
    GetHelpSubtab string
    The 'Help > Get Help' subtab on which Cisco Meraki KB, Product Manuals, and Support/Case Information are displayed. Note that if this subtab is hidden, branding customizations for the KB on 'Get help', Cisco Meraki product documentation, and support contact info will not be visible. Can be one of 'default or inherit', 'hide' or 'show'.
    GetHelpSubtabKnowledgeBaseSearch string
    The KB search box which appears on the Help page. Can be one of 'default or inherit', 'hide', 'show', or a replacement custom HTML string.
    HardwareReplacementsSubtab string
    The 'Help > Replacement info' subtab where important information regarding device replacements is detailed. Can be one of 'default or inherit', 'hide' or 'show'.
    HelpTab string
    The Help tab, under which all support information resides. If this tab is hidden, no other 'Help' branding customizations will be visible. Can be one of 'default or inherit', 'hide' or 'show'.
    HelpWidget string
    The 'Help Widget' is a support widget which provides access to live chat, documentation links, Sales contact info, and other contact avenues to reach Meraki Support. Can be one of 'default or inherit', 'hide' or 'show'.
    NewFeaturesSubtab string
    The 'Help > New features' subtab where new Dashboard features are detailed. Can be one of 'default or inherit', 'hide' or 'show'.
    SmForums string
    The 'SM Forums' subtab which links to community-based support for Cisco Meraki Systems Manager. Only configurable for organizations that contain Systems Manager networks. Can be one of 'default or inherit', 'hide' or 'show'.
    SupportContactInfo string
    The 'Contact Meraki Support' section of the 'Help > Get Help' subtab. Can be one of 'default or inherit', 'hide', 'show', or a replacement custom HTML string.
    UniversalSearchKnowledgeBaseSearch string
    The universal search box always visible on Dashboard will, by default, present results from the Meraki KB. This configures whether these Meraki KB results should be returned. Can be one of 'default or inherit', 'hide' or 'show'.
    ApiDocsSubtab string
    The 'Help > API docs' subtab where a detailed description of the Dashboard API is listed. Can be one of 'default or inherit', 'hide' or 'show'.
    CasesSubtab string
    The 'Help > Cases' Dashboard subtab on which Cisco Meraki support cases for this organization can be managed. Can be one of 'default or inherit', 'hide' or 'show'.
    CiscoMerakiProductDocumentation string
    The 'Product Manuals' section of the 'Help > Get Help' subtab. Can be one of 'default or inherit', 'hide', 'show', or a replacement custom HTML string.
    CommunitySubtab string
    The 'Help > Community' subtab which provides a link to Meraki Community. Can be one of 'default or inherit', 'hide' or 'show'.
    DataProtectionRequestsSubtab string
    The 'Help > Data protection requests' Dashboard subtab on which requests to delete, restrict, or export end-user data can be audited. Can be one of 'default or inherit', 'hide' or 'show'.
    FirewallInfoSubtab string
    The 'Help > Firewall info' subtab where necessary upstream firewall rules for communication to the Cisco Meraki cloud are listed. Can be one of 'default or inherit', 'hide' or 'show'.
    GetHelpSubtab string
    The 'Help > Get Help' subtab on which Cisco Meraki KB, Product Manuals, and Support/Case Information are displayed. Note that if this subtab is hidden, branding customizations for the KB on 'Get help', Cisco Meraki product documentation, and support contact info will not be visible. Can be one of 'default or inherit', 'hide' or 'show'.
    GetHelpSubtabKnowledgeBaseSearch string
    The KB search box which appears on the Help page. Can be one of 'default or inherit', 'hide', 'show', or a replacement custom HTML string.
    HardwareReplacementsSubtab string
    The 'Help > Replacement info' subtab where important information regarding device replacements is detailed. Can be one of 'default or inherit', 'hide' or 'show'.
    HelpTab string
    The Help tab, under which all support information resides. If this tab is hidden, no other 'Help' branding customizations will be visible. Can be one of 'default or inherit', 'hide' or 'show'.
    HelpWidget string
    The 'Help Widget' is a support widget which provides access to live chat, documentation links, Sales contact info, and other contact avenues to reach Meraki Support. Can be one of 'default or inherit', 'hide' or 'show'.
    NewFeaturesSubtab string
    The 'Help > New features' subtab where new Dashboard features are detailed. Can be one of 'default or inherit', 'hide' or 'show'.
    SmForums string
    The 'SM Forums' subtab which links to community-based support for Cisco Meraki Systems Manager. Only configurable for organizations that contain Systems Manager networks. Can be one of 'default or inherit', 'hide' or 'show'.
    SupportContactInfo string
    The 'Contact Meraki Support' section of the 'Help > Get Help' subtab. Can be one of 'default or inherit', 'hide', 'show', or a replacement custom HTML string.
    UniversalSearchKnowledgeBaseSearch string
    The universal search box always visible on Dashboard will, by default, present results from the Meraki KB. This configures whether these Meraki KB results should be returned. Can be one of 'default or inherit', 'hide' or 'show'.
    apiDocsSubtab String
    The 'Help > API docs' subtab where a detailed description of the Dashboard API is listed. Can be one of 'default or inherit', 'hide' or 'show'.
    casesSubtab String
    The 'Help > Cases' Dashboard subtab on which Cisco Meraki support cases for this organization can be managed. Can be one of 'default or inherit', 'hide' or 'show'.
    ciscoMerakiProductDocumentation String
    The 'Product Manuals' section of the 'Help > Get Help' subtab. Can be one of 'default or inherit', 'hide', 'show', or a replacement custom HTML string.
    communitySubtab String
    The 'Help > Community' subtab which provides a link to Meraki Community. Can be one of 'default or inherit', 'hide' or 'show'.
    dataProtectionRequestsSubtab String
    The 'Help > Data protection requests' Dashboard subtab on which requests to delete, restrict, or export end-user data can be audited. Can be one of 'default or inherit', 'hide' or 'show'.
    firewallInfoSubtab String
    The 'Help > Firewall info' subtab where necessary upstream firewall rules for communication to the Cisco Meraki cloud are listed. Can be one of 'default or inherit', 'hide' or 'show'.
    getHelpSubtab String
    The 'Help > Get Help' subtab on which Cisco Meraki KB, Product Manuals, and Support/Case Information are displayed. Note that if this subtab is hidden, branding customizations for the KB on 'Get help', Cisco Meraki product documentation, and support contact info will not be visible. Can be one of 'default or inherit', 'hide' or 'show'.
    getHelpSubtabKnowledgeBaseSearch String
    The KB search box which appears on the Help page. Can be one of 'default or inherit', 'hide', 'show', or a replacement custom HTML string.
    hardwareReplacementsSubtab String
    The 'Help > Replacement info' subtab where important information regarding device replacements is detailed. Can be one of 'default or inherit', 'hide' or 'show'.
    helpTab String
    The Help tab, under which all support information resides. If this tab is hidden, no other 'Help' branding customizations will be visible. Can be one of 'default or inherit', 'hide' or 'show'.
    helpWidget String
    The 'Help Widget' is a support widget which provides access to live chat, documentation links, Sales contact info, and other contact avenues to reach Meraki Support. Can be one of 'default or inherit', 'hide' or 'show'.
    newFeaturesSubtab String
    The 'Help > New features' subtab where new Dashboard features are detailed. Can be one of 'default or inherit', 'hide' or 'show'.
    smForums String
    The 'SM Forums' subtab which links to community-based support for Cisco Meraki Systems Manager. Only configurable for organizations that contain Systems Manager networks. Can be one of 'default or inherit', 'hide' or 'show'.
    supportContactInfo String
    The 'Contact Meraki Support' section of the 'Help > Get Help' subtab. Can be one of 'default or inherit', 'hide', 'show', or a replacement custom HTML string.
    universalSearchKnowledgeBaseSearch String
    The universal search box always visible on Dashboard will, by default, present results from the Meraki KB. This configures whether these Meraki KB results should be returned. Can be one of 'default or inherit', 'hide' or 'show'.
    apiDocsSubtab string
    The 'Help > API docs' subtab where a detailed description of the Dashboard API is listed. Can be one of 'default or inherit', 'hide' or 'show'.
    casesSubtab string
    The 'Help > Cases' Dashboard subtab on which Cisco Meraki support cases for this organization can be managed. Can be one of 'default or inherit', 'hide' or 'show'.
    ciscoMerakiProductDocumentation string
    The 'Product Manuals' section of the 'Help > Get Help' subtab. Can be one of 'default or inherit', 'hide', 'show', or a replacement custom HTML string.
    communitySubtab string
    The 'Help > Community' subtab which provides a link to Meraki Community. Can be one of 'default or inherit', 'hide' or 'show'.
    dataProtectionRequestsSubtab string
    The 'Help > Data protection requests' Dashboard subtab on which requests to delete, restrict, or export end-user data can be audited. Can be one of 'default or inherit', 'hide' or 'show'.
    firewallInfoSubtab string
    The 'Help > Firewall info' subtab where necessary upstream firewall rules for communication to the Cisco Meraki cloud are listed. Can be one of 'default or inherit', 'hide' or 'show'.
    getHelpSubtab string
    The 'Help > Get Help' subtab on which Cisco Meraki KB, Product Manuals, and Support/Case Information are displayed. Note that if this subtab is hidden, branding customizations for the KB on 'Get help', Cisco Meraki product documentation, and support contact info will not be visible. Can be one of 'default or inherit', 'hide' or 'show'.
    getHelpSubtabKnowledgeBaseSearch string
    The KB search box which appears on the Help page. Can be one of 'default or inherit', 'hide', 'show', or a replacement custom HTML string.
    hardwareReplacementsSubtab string
    The 'Help > Replacement info' subtab where important information regarding device replacements is detailed. Can be one of 'default or inherit', 'hide' or 'show'.
    helpTab string
    The Help tab, under which all support information resides. If this tab is hidden, no other 'Help' branding customizations will be visible. Can be one of 'default or inherit', 'hide' or 'show'.
    helpWidget string
    The 'Help Widget' is a support widget which provides access to live chat, documentation links, Sales contact info, and other contact avenues to reach Meraki Support. Can be one of 'default or inherit', 'hide' or 'show'.
    newFeaturesSubtab string
    The 'Help > New features' subtab where new Dashboard features are detailed. Can be one of 'default or inherit', 'hide' or 'show'.
    smForums string
    The 'SM Forums' subtab which links to community-based support for Cisco Meraki Systems Manager. Only configurable for organizations that contain Systems Manager networks. Can be one of 'default or inherit', 'hide' or 'show'.
    supportContactInfo string
    The 'Contact Meraki Support' section of the 'Help > Get Help' subtab. Can be one of 'default or inherit', 'hide', 'show', or a replacement custom HTML string.
    universalSearchKnowledgeBaseSearch string
    The universal search box always visible on Dashboard will, by default, present results from the Meraki KB. This configures whether these Meraki KB results should be returned. Can be one of 'default or inherit', 'hide' or 'show'.
    api_docs_subtab str
    The 'Help > API docs' subtab where a detailed description of the Dashboard API is listed. Can be one of 'default or inherit', 'hide' or 'show'.
    cases_subtab str
    The 'Help > Cases' Dashboard subtab on which Cisco Meraki support cases for this organization can be managed. Can be one of 'default or inherit', 'hide' or 'show'.
    cisco_meraki_product_documentation str
    The 'Product Manuals' section of the 'Help > Get Help' subtab. Can be one of 'default or inherit', 'hide', 'show', or a replacement custom HTML string.
    community_subtab str
    The 'Help > Community' subtab which provides a link to Meraki Community. Can be one of 'default or inherit', 'hide' or 'show'.
    data_protection_requests_subtab str
    The 'Help > Data protection requests' Dashboard subtab on which requests to delete, restrict, or export end-user data can be audited. Can be one of 'default or inherit', 'hide' or 'show'.
    firewall_info_subtab str
    The 'Help > Firewall info' subtab where necessary upstream firewall rules for communication to the Cisco Meraki cloud are listed. Can be one of 'default or inherit', 'hide' or 'show'.
    get_help_subtab str
    The 'Help > Get Help' subtab on which Cisco Meraki KB, Product Manuals, and Support/Case Information are displayed. Note that if this subtab is hidden, branding customizations for the KB on 'Get help', Cisco Meraki product documentation, and support contact info will not be visible. Can be one of 'default or inherit', 'hide' or 'show'.
    get_help_subtab_knowledge_base_search str
    The KB search box which appears on the Help page. Can be one of 'default or inherit', 'hide', 'show', or a replacement custom HTML string.
    hardware_replacements_subtab str
    The 'Help > Replacement info' subtab where important information regarding device replacements is detailed. Can be one of 'default or inherit', 'hide' or 'show'.
    help_tab str
    The Help tab, under which all support information resides. If this tab is hidden, no other 'Help' branding customizations will be visible. Can be one of 'default or inherit', 'hide' or 'show'.
    help_widget str
    The 'Help Widget' is a support widget which provides access to live chat, documentation links, Sales contact info, and other contact avenues to reach Meraki Support. Can be one of 'default or inherit', 'hide' or 'show'.
    new_features_subtab str
    The 'Help > New features' subtab where new Dashboard features are detailed. Can be one of 'default or inherit', 'hide' or 'show'.
    sm_forums str
    The 'SM Forums' subtab which links to community-based support for Cisco Meraki Systems Manager. Only configurable for organizations that contain Systems Manager networks. Can be one of 'default or inherit', 'hide' or 'show'.
    support_contact_info str
    The 'Contact Meraki Support' section of the 'Help > Get Help' subtab. Can be one of 'default or inherit', 'hide', 'show', or a replacement custom HTML string.
    universal_search_knowledge_base_search str
    The universal search box always visible on Dashboard will, by default, present results from the Meraki KB. This configures whether these Meraki KB results should be returned. Can be one of 'default or inherit', 'hide' or 'show'.
    apiDocsSubtab String
    The 'Help > API docs' subtab where a detailed description of the Dashboard API is listed. Can be one of 'default or inherit', 'hide' or 'show'.
    casesSubtab String
    The 'Help > Cases' Dashboard subtab on which Cisco Meraki support cases for this organization can be managed. Can be one of 'default or inherit', 'hide' or 'show'.
    ciscoMerakiProductDocumentation String
    The 'Product Manuals' section of the 'Help > Get Help' subtab. Can be one of 'default or inherit', 'hide', 'show', or a replacement custom HTML string.
    communitySubtab String
    The 'Help > Community' subtab which provides a link to Meraki Community. Can be one of 'default or inherit', 'hide' or 'show'.
    dataProtectionRequestsSubtab String
    The 'Help > Data protection requests' Dashboard subtab on which requests to delete, restrict, or export end-user data can be audited. Can be one of 'default or inherit', 'hide' or 'show'.
    firewallInfoSubtab String
    The 'Help > Firewall info' subtab where necessary upstream firewall rules for communication to the Cisco Meraki cloud are listed. Can be one of 'default or inherit', 'hide' or 'show'.
    getHelpSubtab String
    The 'Help > Get Help' subtab on which Cisco Meraki KB, Product Manuals, and Support/Case Information are displayed. Note that if this subtab is hidden, branding customizations for the KB on 'Get help', Cisco Meraki product documentation, and support contact info will not be visible. Can be one of 'default or inherit', 'hide' or 'show'.
    getHelpSubtabKnowledgeBaseSearch String
    The KB search box which appears on the Help page. Can be one of 'default or inherit', 'hide', 'show', or a replacement custom HTML string.
    hardwareReplacementsSubtab String
    The 'Help > Replacement info' subtab where important information regarding device replacements is detailed. Can be one of 'default or inherit', 'hide' or 'show'.
    helpTab String
    The Help tab, under which all support information resides. If this tab is hidden, no other 'Help' branding customizations will be visible. Can be one of 'default or inherit', 'hide' or 'show'.
    helpWidget String
    The 'Help Widget' is a support widget which provides access to live chat, documentation links, Sales contact info, and other contact avenues to reach Meraki Support. Can be one of 'default or inherit', 'hide' or 'show'.
    newFeaturesSubtab String
    The 'Help > New features' subtab where new Dashboard features are detailed. Can be one of 'default or inherit', 'hide' or 'show'.
    smForums String
    The 'SM Forums' subtab which links to community-based support for Cisco Meraki Systems Manager. Only configurable for organizations that contain Systems Manager networks. Can be one of 'default or inherit', 'hide' or 'show'.
    supportContactInfo String
    The 'Contact Meraki Support' section of the 'Help > Get Help' subtab. Can be one of 'default or inherit', 'hide', 'show', or a replacement custom HTML string.
    universalSearchKnowledgeBaseSearch String
    The universal search box always visible on Dashboard will, by default, present results from the Meraki KB. This configures whether these Meraki KB results should be returned. Can be one of 'default or inherit', 'hide' or 'show'.

    Import

    $ pulumi import meraki:organizations/brandingPolicies:BrandingPolicies example "branding_policy_id,organization_id"
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    meraki pulumi/pulumi-meraki
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the meraki Terraform Provider.
    meraki logo
    Cisco Meraki v0.2.10 published on Wednesday, Jul 24, 2024 by Pulumi