meraki.organizations.BrandingPolicies
Explore with Pulumi AI
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={
        "applies_to": "string",
        "values": ["string"],
    },
    branding_policy_id="string",
    custom_logo={
        "enabled": False,
        "image": {
            "contents": "string",
            "format": "string",
            "preview": {
                "expires_at": "string",
                "url": "string",
            },
        },
    },
    enabled=False,
    help_settings={
        "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
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The BrandingPolicies resource accepts the following input properties:
- OrganizationId string
- organizationId path parameter. Organization ID
- AdminSettings BrandingPolicies Admin Settings 
- Settings for describing which kinds of admins this policy applies to.
- BrandingPolicy stringId 
- brandingPolicyId path parameter. Branding policy ID
- CustomLogo BrandingPolicies Custom Logo 
- Properties describing the custom logo attached to the branding policy.
- Enabled bool
- Boolean indicating whether this policy is enabled.
- HelpSettings BrandingPolicies Help Settings 
- 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 BrandingPolicies Admin Settings Args 
- Settings for describing which kinds of admins this policy applies to.
- BrandingPolicy stringId 
- brandingPolicyId path parameter. Branding policy ID
- CustomLogo BrandingPolicies Custom Logo Args 
- Properties describing the custom logo attached to the branding policy.
- Enabled bool
- Boolean indicating whether this policy is enabled.
- HelpSettings BrandingPolicies Help Settings Args 
- 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 BrandingPolicies Admin Settings 
- Settings for describing which kinds of admins this policy applies to.
- brandingPolicy StringId 
- brandingPolicyId path parameter. Branding policy ID
- customLogo BrandingPolicies Custom Logo 
- Properties describing the custom logo attached to the branding policy.
- enabled Boolean
- Boolean indicating whether this policy is enabled.
- helpSettings BrandingPolicies Help Settings 
- 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 BrandingPolicies Admin Settings 
- Settings for describing which kinds of admins this policy applies to.
- brandingPolicy stringId 
- brandingPolicyId path parameter. Branding policy ID
- customLogo BrandingPolicies Custom Logo 
- Properties describing the custom logo attached to the branding policy.
- enabled boolean
- Boolean indicating whether this policy is enabled.
- helpSettings BrandingPolicies Help Settings 
- 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 BrandingPolicies Admin Settings Args 
- Settings for describing which kinds of admins this policy applies to.
- branding_policy_ strid 
- brandingPolicyId path parameter. Branding policy ID
- custom_logo BrandingPolicies Custom Logo Args 
- Properties describing the custom logo attached to the branding policy.
- enabled bool
- Boolean indicating whether this policy is enabled.
- help_settings BrandingPolicies Help Settings Args 
- 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.
- brandingPolicy StringId 
- 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) -> BrandingPoliciesfunc 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)resources:  _:    type: meraki:organizations:BrandingPolicies    get:      id: ${id}- 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.
- AdminSettings BrandingPolicies Admin Settings 
- Settings for describing which kinds of admins this policy applies to.
- BrandingPolicy stringId 
- brandingPolicyId path parameter. Branding policy ID
- CustomLogo BrandingPolicies Custom Logo 
- Properties describing the custom logo attached to the branding policy.
- Enabled bool
- Boolean indicating whether this policy is enabled.
- HelpSettings BrandingPolicies Help Settings 
- 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 BrandingPolicies Admin Settings Args 
- Settings for describing which kinds of admins this policy applies to.
- BrandingPolicy stringId 
- brandingPolicyId path parameter. Branding policy ID
- CustomLogo BrandingPolicies Custom Logo Args 
- Properties describing the custom logo attached to the branding policy.
- Enabled bool
- Boolean indicating whether this policy is enabled.
- HelpSettings BrandingPolicies Help Settings Args 
- 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 BrandingPolicies Admin Settings 
- Settings for describing which kinds of admins this policy applies to.
- brandingPolicy StringId 
- brandingPolicyId path parameter. Branding policy ID
- customLogo BrandingPolicies Custom Logo 
- Properties describing the custom logo attached to the branding policy.
- enabled Boolean
- Boolean indicating whether this policy is enabled.
- helpSettings BrandingPolicies Help Settings 
- 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 BrandingPolicies Admin Settings 
- Settings for describing which kinds of admins this policy applies to.
- brandingPolicy stringId 
- brandingPolicyId path parameter. Branding policy ID
- customLogo BrandingPolicies Custom Logo 
- Properties describing the custom logo attached to the branding policy.
- enabled boolean
- Boolean indicating whether this policy is enabled.
- helpSettings BrandingPolicies Help Settings 
- 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 BrandingPolicies Admin Settings Args 
- Settings for describing which kinds of admins this policy applies to.
- branding_policy_ strid 
- brandingPolicyId path parameter. Branding policy ID
- custom_logo BrandingPolicies Custom Logo Args 
- Properties describing the custom logo attached to the branding policy.
- enabled bool
- Boolean indicating whether this policy is enabled.
- help_settings BrandingPolicies Help Settings Args 
- 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.
- brandingPolicy StringId 
- 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.
BrandingPoliciesCustomLogo, BrandingPoliciesCustomLogoArgs        
- Enabled bool
- Whether or not there is a custom logo enabled.
- Image
BrandingPolicies Custom Logo Image 
- Properties of the image.
- Enabled bool
- Whether or not there is a custom logo enabled.
- Image
BrandingPolicies Custom Logo Image 
- Properties of the image.
- enabled Boolean
- Whether or not there is a custom logo enabled.
- image
BrandingPolicies Custom Logo Image 
- Properties of the image.
- enabled boolean
- Whether or not there is a custom logo enabled.
- image
BrandingPolicies Custom Logo Image 
- Properties of the image.
- enabled bool
- Whether or not there is a custom logo enabled.
- image
BrandingPolicies Custom Logo Image 
- 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
BrandingPolicies Custom Logo Image Preview 
- 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
BrandingPolicies Custom Logo Image Preview 
- 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
BrandingPolicies Custom Logo Image Preview 
- 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
BrandingPolicies Custom Logo Image Preview 
- 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
BrandingPolicies Custom Logo Image Preview 
- 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            
- expires_at str
- Timestamp of the preview image
- url str
- Url of the preview image
BrandingPoliciesHelpSettings, BrandingPoliciesHelpSettingsArgs        
- ApiDocs stringSubtab 
- 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'.
- CiscoMeraki stringProduct Documentation 
- 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'.
- DataProtection stringRequests Subtab 
- 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'.
- FirewallInfo stringSubtab 
- 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'.
- GetHelp stringSubtab 
- 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'.
- GetHelp stringSubtab Knowledge Base Search 
- 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.
- HardwareReplacements stringSubtab 
- 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'.
- NewFeatures stringSubtab 
- 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'.
- SupportContact stringInfo 
- 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.
- UniversalSearch stringKnowledge Base Search 
- 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'.
- ApiDocs stringSubtab 
- 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'.
- CiscoMeraki stringProduct Documentation 
- 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'.
- DataProtection stringRequests Subtab 
- 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'.
- FirewallInfo stringSubtab 
- 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'.
- GetHelp stringSubtab 
- 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'.
- GetHelp stringSubtab Knowledge Base Search 
- 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.
- HardwareReplacements stringSubtab 
- 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'.
- NewFeatures stringSubtab 
- 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'.
- SupportContact stringInfo 
- 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.
- UniversalSearch stringKnowledge Base Search 
- 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'.
- apiDocs StringSubtab 
- 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'.
- ciscoMeraki StringProduct Documentation 
- 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'.
- dataProtection StringRequests Subtab 
- 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'.
- firewallInfo StringSubtab 
- 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'.
- getHelp StringSubtab 
- 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'.
- getHelp StringSubtab Knowledge Base Search 
- 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.
- hardwareReplacements StringSubtab 
- 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'.
- newFeatures StringSubtab 
- 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'.
- supportContact StringInfo 
- 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.
- universalSearch StringKnowledge Base Search 
- 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'.
- apiDocs stringSubtab 
- 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'.
- ciscoMeraki stringProduct Documentation 
- 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'.
- dataProtection stringRequests Subtab 
- 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'.
- firewallInfo stringSubtab 
- 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'.
- getHelp stringSubtab 
- 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'.
- getHelp stringSubtab Knowledge Base Search 
- 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.
- hardwareReplacements stringSubtab 
- 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'.
- newFeatures stringSubtab 
- 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'.
- supportContact stringInfo 
- 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.
- universalSearch stringKnowledge Base Search 
- 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_ strsubtab 
- 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_ strproduct_ documentation 
- 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_ strrequests_ subtab 
- 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_ strsubtab 
- 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_ strsubtab 
- 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_ strsubtab_ knowledge_ base_ search 
- 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_ strsubtab 
- 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_ strsubtab 
- 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_ strinfo 
- 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_ strknowledge_ base_ search 
- 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'.
- apiDocs StringSubtab 
- 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'.
- ciscoMeraki StringProduct Documentation 
- 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'.
- dataProtection StringRequests Subtab 
- 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'.
- firewallInfo StringSubtab 
- 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'.
- getHelp StringSubtab 
- 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'.
- getHelp StringSubtab Knowledge Base Search 
- 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.
- hardwareReplacements StringSubtab 
- 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'.
- newFeatures StringSubtab 
- 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'.
- supportContact StringInfo 
- 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.
- universalSearch StringKnowledge Base Search 
- 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 merakiTerraform Provider.
