diff --git a/appveyor.yml b/appveyor.yml index 7265df1..8976a1b 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,8 +1,8 @@ # See http://www.appveyor.com/docs/appveyor-yml for many more options environment: - #Coveralls_Key: - #secure: mOSiObC2c5LUU57K47frbcUotaYZC6ni0j/YxBHMrSMNxgsYzStPXxhwgXW6VJQy + Coveralls_Key: + secure: Nj5Q1oaWWjLSEzJP9kGHgS1pblyQPhVBR4O690HQ0/y+jGOMzDVSWoI4yf6Sq9w8 NugetApiKey: secure: iR4vlP9ilby8LTXXncpzN5bwnE7pMBD5pHDDSfA7qnU+/N6RY1GSxMgb78gV104x diff --git a/docs/Add-Branding.md b/docs/Add-Branding.md new file mode 100644 index 0000000..5bf97c0 --- /dev/null +++ b/docs/Add-Branding.md @@ -0,0 +1,88 @@ +--- +external help file: ClarityPS-help.xml +Module Name: ClarityPS +online version: +schema: 2.0.0 +--- + +# Add-Branding + +## SYNOPSIS + +## SYNTAX + +``` +Add-Branding [[-Title] ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Adds Branding Element + +## EXAMPLES + +### EXAMPLE 1 +``` +Add-Branding -Title MyCard +``` + +## PARAMETERS + +### -Title +Title, used for comment + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### System.String +### System.Boolean +## NOTES +No notes at this time. + +## RELATED LINKS diff --git a/docs/Add-BrandingTitle.md b/docs/Add-BrandingTitle.md new file mode 100644 index 0000000..8f78468 --- /dev/null +++ b/docs/Add-BrandingTitle.md @@ -0,0 +1,104 @@ +--- +external help file: ClarityPS-help.xml +Module Name: ClarityPS +online version: +schema: 2.0.0 +--- + +# Add-BrandingTitle + +## SYNOPSIS + +## SYNTAX + +``` +Add-BrandingTitle [-Title] [[-URL] ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Adds Page title with link. + +## EXAMPLES + +### EXAMPLE 1 +``` +Add-BrandingTitle -Title MyCard -URL "index.html" +``` + +## PARAMETERS + +### -Title +Title, used for comment + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -URL +URL, to provide a link. +Defaults to 'index.html' + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 2 +Default value: Index.html +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### System.String +### System.Boolean +## NOTES +No notes at this time. + +## RELATED LINKS diff --git a/docs/Add-Button.md b/docs/Add-Button.md new file mode 100644 index 0000000..826190d --- /dev/null +++ b/docs/Add-Button.md @@ -0,0 +1,179 @@ +--- +external help file: ClarityPS-help.xml +Module Name: ClarityPS +online version: +schema: 2.0.0 +--- + +# Add-Button + +## SYNOPSIS + +## SYNTAX + +``` +Add-Button [[-Title] ] [-Class] [-ButtonText] [-ButtonValue] [-ID] + [-Name] [[-OnClick] ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Adds Button Element + +## EXAMPLES + +### EXAMPLE 1 +``` +Add-Button -Title MyCard -Class btn-success -OnClick '' -ButtonText MyButton -ButtonValue 'Button01' -ID 'thisButton' -Name 'Button001' +``` + +## PARAMETERS + +### -Title +Title, used for comment + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Class +class to determine color + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ButtonText +Text of the Button + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 3 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ButtonValue +Value to identify the button + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 4 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ID +ID for Button Action + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 5 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +Reference name for button Action + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 6 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -OnClick +Description of action to perform when pressed. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 7 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### System.String +### System.Boolean +## NOTES +No notes at this time. + +## RELATED LINKS diff --git a/docs/Add-ButtonGroup.md b/docs/Add-ButtonGroup.md new file mode 100644 index 0000000..4f40ff2 --- /dev/null +++ b/docs/Add-ButtonGroup.md @@ -0,0 +1,88 @@ +--- +external help file: ClarityPS-help.xml +Module Name: ClarityPS +online version: +schema: 2.0.0 +--- + +# Add-ButtonGroup + +## SYNOPSIS + +## SYNTAX + +``` +Add-ButtonGroup [[-Title] ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Adds Button Group Element + +## EXAMPLES + +### EXAMPLE 1 +``` +Add-ButtonGroup -Title MyCard +``` + +## PARAMETERS + +### -Title +Title, used for comment + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### System.String +### System.Boolean +## NOTES +No notes at this time. + +## RELATED LINKS diff --git a/docs/Add-CardFooter.md b/docs/Add-CardFooter.md new file mode 100644 index 0000000..8d70232 --- /dev/null +++ b/docs/Add-CardFooter.md @@ -0,0 +1,103 @@ +--- +external help file: ClarityPS-help.xml +Module Name: ClarityPS +online version: +schema: 2.0.0 +--- + +# Add-CardFooter + +## SYNOPSIS + +## SYNTAX + +``` +Add-CardFooter [[-Title] ] [-CardFooter] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Adds Flex Item Element + +## EXAMPLES + +### EXAMPLE 1 +``` +Add-CardFooter -Title MyCardFooter -CardFooter "SomeHTML Text" +``` + +## PARAMETERS + +### -Title +Title, used for comment + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -CardFooter +Text String of Data to be placed on the card. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### System.String +### System.Boolean +## NOTES +No notes at this time. + +## RELATED LINKS diff --git a/docs/Add-CardText.md b/docs/Add-CardText.md new file mode 100644 index 0000000..86bfa79 --- /dev/null +++ b/docs/Add-CardText.md @@ -0,0 +1,103 @@ +--- +external help file: ClarityPS-help.xml +Module Name: ClarityPS +online version: +schema: 2.0.0 +--- + +# Add-CardText + +## SYNOPSIS + +## SYNTAX + +``` +Add-CardText [[-Title] ] [-CardText] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Adds Flex Item Element + +## EXAMPLES + +### EXAMPLE 1 +``` +SomeHTML Text" +``` + +## PARAMETERS + +### -Title +Title, used for comment + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -CardText +Text String of Data to be placed on the card. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### System.String +### System.Boolean +## NOTES +No notes at this time. + +## RELATED LINKS diff --git a/docs/Add-ClarityPSBody.md b/docs/Add-ClarityPSBody.md new file mode 100644 index 0000000..4e20773 --- /dev/null +++ b/docs/Add-ClarityPSBody.md @@ -0,0 +1,88 @@ +--- +external help file: ClarityPS-help.xml +Module Name: ClarityPS +online version: +schema: 2.0.0 +--- + +# Add-ClarityPSBody + +## SYNOPSIS + +## SYNTAX + +``` +Add-ClarityPSBody [[-Title] ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Adds ClarityPS Body Element + +## EXAMPLES + +### EXAMPLE 1 +``` +Add-ClarityPSBody -Title ClarityHtmlBody +``` + +## PARAMETERS + +### -Title +Title, used for comment + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: ClarityPSHtmlBody +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### System.String +### System.Boolean +## NOTES +No notes at this time. + +## RELATED LINKS diff --git a/docs/Add-ClarityPSCookie.md b/docs/Add-ClarityPSCookie.md new file mode 100644 index 0000000..5c53df1 --- /dev/null +++ b/docs/Add-ClarityPSCookie.md @@ -0,0 +1,88 @@ +--- +external help file: ClarityPS-help.xml +Module Name: ClarityPS +online version: +schema: 2.0.0 +--- + +# Add-ClarityPSCookie + +## SYNOPSIS + +## SYNTAX + +``` +Add-ClarityPSCookie [[-Title] ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Adds Clarity Cookie MGMT script. + +## EXAMPLES + +### EXAMPLE 1 +``` +Add-ClarityPSCookie -Title MyCard +``` + +## PARAMETERS + +### -Title +Title, used for comment + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: ClarityCookieMgmtScript +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### System.String +### System.Boolean +## NOTES +No notes at this time. + +## RELATED LINKS diff --git a/docs/Add-ClarityPSHeadSet.md b/docs/Add-ClarityPSHeadSet.md new file mode 100644 index 0000000..91be1f0 --- /dev/null +++ b/docs/Add-ClarityPSHeadSet.md @@ -0,0 +1,88 @@ +--- +external help file: ClarityPS-help.xml +Module Name: ClarityPS +online version: +schema: 2.0.0 +--- + +# Add-ClarityPSHeadSet + +## SYNOPSIS + +## SYNTAX + +``` +Add-ClarityPSHeadSet [[-Title] ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Adds Flex Item Element + +## EXAMPLES + +### EXAMPLE 1 +``` +Add-ClarityPSHeadSet -Title MyCard +``` + +## PARAMETERS + +### -Title +Title, used for comment + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: ClarityPSHeadSet +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### System.String +### System.Boolean +## NOTES +No notes at this time. + +## RELATED LINKS diff --git a/docs/Add-ClarityPSHeader.md b/docs/Add-ClarityPSHeader.md new file mode 100644 index 0000000..8595b91 --- /dev/null +++ b/docs/Add-ClarityPSHeader.md @@ -0,0 +1,88 @@ +--- +external help file: ClarityPS-help.xml +Module Name: ClarityPS +online version: +schema: 2.0.0 +--- + +# Add-ClarityPSHeader + +## SYNOPSIS + +## SYNTAX + +``` +Add-ClarityPSHeader [[-Title] ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Adds Flex Item Element + +## EXAMPLES + +### EXAMPLE 1 +``` +Add-ClarityPSHeader -Title MyCard +``` + +## PARAMETERS + +### -Title +Title, used for comment + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: ClarityPSHeader +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### System.String +### System.Boolean +## NOTES +No notes at this time. + +## RELATED LINKS diff --git a/docs/Add-ClarityPSIconSet.md b/docs/Add-ClarityPSIconSet.md new file mode 100644 index 0000000..a507add --- /dev/null +++ b/docs/Add-ClarityPSIconSet.md @@ -0,0 +1,88 @@ +--- +external help file: ClarityPS-help.xml +Module Name: ClarityPS +online version: +schema: 2.0.0 +--- + +# Add-ClarityPSIconSet + +## SYNOPSIS + +## SYNTAX + +``` +Add-ClarityPSIconSet [[-Title] ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Adds Flex Item Element + +## EXAMPLES + +### EXAMPLE 1 +``` +Add-ClarityPSIconJs -Title MyCard +``` + +## PARAMETERS + +### -Title +Title, used for comment + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: ClarityIconSetJS +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### System.String +### System.Boolean +## NOTES +No notes at this time. + +## RELATED LINKS diff --git a/docs/Add-ClarityPSLinkSet.md b/docs/Add-ClarityPSLinkSet.md new file mode 100644 index 0000000..fd0b2a7 --- /dev/null +++ b/docs/Add-ClarityPSLinkSet.md @@ -0,0 +1,88 @@ +--- +external help file: ClarityPS-help.xml +Module Name: ClarityPS +online version: +schema: 2.0.0 +--- + +# Add-ClarityPSLinkSet + +## SYNOPSIS + +## SYNTAX + +``` +Add-ClarityPSLinkSet [[-Title] ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Adds Flex Item Element + +## EXAMPLES + +### EXAMPLE 1 +``` +Add-ClarityPSLinkSet -Title MyCard +``` + +## PARAMETERS + +### -Title +Title, used for comment + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: ClarityPSLinkSet +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### System.String +### System.Boolean +## NOTES +No notes at this time. + +## RELATED LINKS diff --git a/docs/Add-ClarityPSScriptSet.md b/docs/Add-ClarityPSScriptSet.md new file mode 100644 index 0000000..5c2af42 --- /dev/null +++ b/docs/Add-ClarityPSScriptSet.md @@ -0,0 +1,88 @@ +--- +external help file: ClarityPS-help.xml +Module Name: ClarityPS +online version: +schema: 2.0.0 +--- + +# Add-ClarityPSScriptSet + +## SYNOPSIS + +## SYNTAX + +``` +Add-ClarityPSScriptSet [[-Title] ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Adds Flex Item Element + +## EXAMPLES + +### EXAMPLE 1 +``` +Add-ClarityPSScriptSet -Title MyCard +``` + +## PARAMETERS + +### -Title +Title, used for comment + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: ClarityPSScriptSet +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### System.String +### System.Boolean +## NOTES +No notes at this time. + +## RELATED LINKS diff --git a/docs/Add-ClarityPSStyleSet.md b/docs/Add-ClarityPSStyleSet.md new file mode 100644 index 0000000..c71e0e1 --- /dev/null +++ b/docs/Add-ClarityPSStyleSet.md @@ -0,0 +1,88 @@ +--- +external help file: ClarityPS-help.xml +Module Name: ClarityPS +online version: +schema: 2.0.0 +--- + +# Add-ClarityPSStyleSet + +## SYNOPSIS + +## SYNTAX + +``` +Add-ClarityPSStyleSet [[-Title] ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Adds Flex Item Element + +## EXAMPLES + +### EXAMPLE 1 +``` +Add-ClarityPSStyleSet -Title MyCard +``` + +## PARAMETERS + +### -Title +Title, used for comment + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### System.String +### System.Boolean +## NOTES +No notes at this time. + +## RELATED LINKS diff --git a/docs/Add-CssLink.md b/docs/Add-CssLink.md new file mode 100644 index 0000000..63e3461 --- /dev/null +++ b/docs/Add-CssLink.md @@ -0,0 +1,135 @@ +--- +external help file: ClarityPS-help.xml +Module Name: ClarityPS +online version: +schema: 2.0.0 +--- + +# Add-CssLink + +## SYNOPSIS + +## SYNTAX + +``` +Add-CssLink [[-Title] ] [-URL] [[-LinkTitle] ] [[-RelType] ] [-WhatIf] + [-Confirm] [] +``` + +## DESCRIPTION +Adds CSS Link Element + +## EXAMPLES + +### EXAMPLE 1 +``` +Add-CssLink -Title MyCard -URL "http://invoke-automation.blog" -LinkTitle "Invoke-Automation" +``` + +## PARAMETERS + +### -Title +Title, used for comment + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -URL +Provide a valid URL to remote or local CSS link. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -LinkTitle +Title for the link + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 3 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -RelType +ex. +stylesheet + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 4 +Default value: Stylesheet +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### System.String +### System.Boolean +## NOTES +No notes at this time. + +## RELATED LINKS diff --git a/docs/Add-DocumentTitle.md b/docs/Add-DocumentTitle.md new file mode 100644 index 0000000..4d98651 --- /dev/null +++ b/docs/Add-DocumentTitle.md @@ -0,0 +1,88 @@ +--- +external help file: ClarityPS-help.xml +Module Name: ClarityPS +online version: +schema: 2.0.0 +--- + +# Add-DocumentTitle + +## SYNOPSIS + +## SYNTAX + +``` +Add-DocumentTitle [-Title] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Adds Title to Card Html Document + +## EXAMPLES + +### EXAMPLE 1 +``` +Add-DocumentTitle -Title MyCard +``` + +## PARAMETERS + +### -Title +Title, used for comment + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### System.String +### System.Boolean +## NOTES +No notes at this time. + +## RELATED LINKS diff --git a/docs/Add-HeaderAction.md b/docs/Add-HeaderAction.md new file mode 100644 index 0000000..84a6386 --- /dev/null +++ b/docs/Add-HeaderAction.md @@ -0,0 +1,88 @@ +--- +external help file: ClarityPS-help.xml +Module Name: ClarityPS +online version: +schema: 2.0.0 +--- + +# Add-HeaderAction + +## SYNOPSIS + +## SYNTAX + +``` +Add-HeaderAction [[-Title] ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Adds Flex Item Element + +## EXAMPLES + +### EXAMPLE 1 +``` +Add-HeaderActions -Title MyCard +``` + +## PARAMETERS + +### -Title +Title, used for comment + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### System.String +### System.Boolean +## NOTES +No notes at this time. + +## RELATED LINKS diff --git a/docs/Add-HeaderNav.md b/docs/Add-HeaderNav.md new file mode 100644 index 0000000..034f5c1 --- /dev/null +++ b/docs/Add-HeaderNav.md @@ -0,0 +1,88 @@ +--- +external help file: ClarityPS-help.xml +Module Name: ClarityPS +online version: +schema: 2.0.0 +--- + +# Add-HeaderNav + +## SYNOPSIS + +## SYNTAX + +``` +Add-HeaderNav [[-Title] ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Adds Header Nav Element + +## EXAMPLES + +### EXAMPLE 1 +``` +Add-HeaderNav -Title MyCard +``` + +## PARAMETERS + +### -Title +Title, used for comment + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### System.String +### System.Boolean +## NOTES +No notes at this time. + +## RELATED LINKS diff --git a/docs/Add-HeaderNavLink.md b/docs/Add-HeaderNavLink.md new file mode 100644 index 0000000..9a83cdc --- /dev/null +++ b/docs/Add-HeaderNavLink.md @@ -0,0 +1,118 @@ +--- +external help file: ClarityPS-help.xml +Module Name: ClarityPS +online version: +schema: 2.0.0 +--- + +# Add-HeaderNavLink + +## SYNOPSIS + +## SYNTAX + +``` +Add-HeaderNavLink [-URL] [-LinkTitle] [-Active] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Adds Link Element + +## EXAMPLES + +### EXAMPLE 1 +``` +Add-HeaderNavLink -Title MyCard -URL "http://invoke-automation.blog" -LinkTitle "Invoke-Automation" -NewTab +``` + +## PARAMETERS + +### -URL +Web URL for the link. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -LinkTitle +Title of the link in the HTML doc (user facing) + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Active +Adds a property to highlight the link as active. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### System.String +### System.Boolean +## NOTES +No notes at this time. + +## RELATED LINKS diff --git a/docs/Add-Help.md b/docs/Add-Help.md new file mode 100644 index 0000000..0847f8d --- /dev/null +++ b/docs/Add-Help.md @@ -0,0 +1,103 @@ +--- +external help file: ClarityPS-help.xml +Module Name: ClarityPS +online version: +schema: 2.0.0 +--- + +# Add-Help + +## SYNOPSIS + +## SYNTAX + +``` +Add-Help [[-Title] ] [-URL] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Adds Help Link with Cog Icon in the Header. + +## EXAMPLES + +### EXAMPLE 1 +``` +Add-Help -Title MyCard -URL "http://invoke-automation.blog" +``` + +## PARAMETERS + +### -Title +Title, used for comment + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -URL +URL to help documents + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### System.String +### System.Boolean +## NOTES +No notes at this time. + +## RELATED LINKS diff --git a/docs/Add-HtmlBody.md b/docs/Add-HtmlBody.md new file mode 100644 index 0000000..e71eb35 --- /dev/null +++ b/docs/Add-HtmlBody.md @@ -0,0 +1,103 @@ +--- +external help file: ClarityPS-help.xml +Module Name: ClarityPS +online version: +schema: 2.0.0 +--- + +# Add-HtmlBody + +## SYNOPSIS + +## SYNTAX + +``` +Add-HtmlBody [[-Title] ] [[-HtmlBodyOption] ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Adds HTML Body Element + +## EXAMPLES + +### EXAMPLE 1 +``` +Add-HtmlBody -Title MyCard -HtmlBodyOption "onload='set_style_from_cookie()'" +``` + +## PARAMETERS + +### -Title +Title, used for comment + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -HtmlBodyOption +Allows for Javascript options in the body element. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 2 +Default value: Onload='set_style_from_cookie()' +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### System.String +### System.Boolean +## NOTES +No notes at this time. + +## RELATED LINKS diff --git a/docs/Add-HtmlHead.md b/docs/Add-HtmlHead.md new file mode 100644 index 0000000..7b6a2a8 --- /dev/null +++ b/docs/Add-HtmlHead.md @@ -0,0 +1,88 @@ +--- +external help file: ClarityPS-help.xml +Module Name: ClarityPS +online version: +schema: 2.0.0 +--- + +# Add-HtmlHead + +## SYNOPSIS + +## SYNTAX + +``` +Add-HtmlHead [[-Title] ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Adds HTML Head Element + +## EXAMPLES + +### EXAMPLE 1 +``` +Add-HtmlHead -Title MyCard +``` + +## PARAMETERS + +### -Title +Title, used for comment + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### System.String +### System.Boolean +## NOTES +No notes at this time. + +## RELATED LINKS diff --git a/docs/Add-HtmlTitle.md b/docs/Add-HtmlTitle.md new file mode 100644 index 0000000..23eee4e --- /dev/null +++ b/docs/Add-HtmlTitle.md @@ -0,0 +1,103 @@ +--- +external help file: ClarityPS-help.xml +Module Name: ClarityPS +online version: +schema: 2.0.0 +--- + +# Add-HtmlTitle + +## SYNOPSIS + +## SYNTAX + +``` +Add-HtmlTitle [[-Title] ] [[-HtmlTitle] ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Adds HTML Title Element for the Browser Tab. + +## EXAMPLES + +### EXAMPLE 1 +``` +Add-HtmlTitle -Title MyCard -HtmlTitle "MyHtmlDocument" +``` + +## PARAMETERS + +### -Title +Title, used for comment + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -HtmlTitle +Title, used for HTML document + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 2 +Default value: ClarityPS +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### System.String +### System.Boolean +## NOTES +No notes at this time. + +## RELATED LINKS diff --git a/docs/Add-Icon.md b/docs/Add-Icon.md new file mode 100644 index 0000000..36ff7d7 --- /dev/null +++ b/docs/Add-Icon.md @@ -0,0 +1,103 @@ +--- +external help file: ClarityPS-help.xml +Module Name: ClarityPS +online version: +schema: 2.0.0 +--- + +# Add-Icon + +## SYNOPSIS + +## SYNTAX + +``` +Add-Icon [-Icon] [[-IconSize] ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Builds HTML Reports using VMware's ClarityUI library. + +## EXAMPLES + +### EXAMPLE 1 +``` +Add-Icon +``` + +## PARAMETERS + +### -Icon +Clarity Icon. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -IconSize +Size of the Icon. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 2 +Default value: 24 +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### System.String +### System.Boolean +## NOTES +No notes at this time. + +## RELATED LINKS diff --git a/docs/Add-Link.md b/docs/Add-Link.md new file mode 100644 index 0000000..3e0f337 --- /dev/null +++ b/docs/Add-Link.md @@ -0,0 +1,134 @@ +--- +external help file: ClarityPS-help.xml +Module Name: ClarityPS +online version: +schema: 2.0.0 +--- + +# Add-Link + +## SYNOPSIS + +## SYNTAX + +``` +Add-Link [[-Title] ] [-URL] [-LinkTitle] [-NewTab] [-WhatIf] [-Confirm] + [] +``` + +## DESCRIPTION +Adds Link Element + +## EXAMPLES + +### EXAMPLE 1 +``` +Add-Link -Title MyCard -URL "http://invoke-automation.blog" -LinkTitle "Invoke-Automation" -NewTab +``` + +## PARAMETERS + +### -Title +Title, used for comment + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -URL +Web URL for the link. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -LinkTitle +Title of the link in the HTML doc (user facing) + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 3 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -NewTab +Adds a property to open the link in a new tab. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### System.String +### System.Boolean +## NOTES +No notes at this time. + +## RELATED LINKS diff --git a/docs/Add-MainContainer.md b/docs/Add-MainContainer.md new file mode 100644 index 0000000..7b2d6f3 --- /dev/null +++ b/docs/Add-MainContainer.md @@ -0,0 +1,88 @@ +--- +external help file: ClarityPS-help.xml +Module Name: ClarityPS +online version: +schema: 2.0.0 +--- + +# Add-MainContainer + +## SYNOPSIS + +## SYNTAX + +``` +Add-MainContainer [[-Title] ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Adds Main-Container Element + +## EXAMPLES + +### EXAMPLE 1 +``` +Add-MainContainer -Title MyCard +``` + +## PARAMETERS + +### -Title +Title, used for comment + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### System.String +### System.Boolean +## NOTES +No notes at this time. + +## RELATED LINKS diff --git a/docs/Add-ProgressBlock.md b/docs/Add-ProgressBlock.md new file mode 100644 index 0000000..cf95a1c --- /dev/null +++ b/docs/Add-ProgressBlock.md @@ -0,0 +1,134 @@ +--- +external help file: ClarityPS-help.xml +Module Name: ClarityPS +online version: +schema: 2.0.0 +--- + +# Add-ProgressBlock + +## SYNOPSIS + +## SYNTAX + +``` +Add-ProgressBlock [[-Title] ] [[-Class] ] [[-Value] ] [[-Max] ] [-WhatIf] + [-Confirm] [] +``` + +## DESCRIPTION +Adds Progress Block Element + +## EXAMPLES + +### EXAMPLE 1 +``` +Add-ProgressBlock -Title MyCard -Class "progress success" -Value "29" -Max "100" +``` + +## PARAMETERS + +### -Title +Title, used for comment + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Class +Class to be used for the color. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Value +Percent of the Progress bar to fill in. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 3 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Max +Maximum progress bar value. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 4 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### System.String +### System.Boolean +## NOTES +No notes at this time. + +## RELATED LINKS diff --git a/docs/Add-Script.md b/docs/Add-Script.md new file mode 100644 index 0000000..6ba6820 --- /dev/null +++ b/docs/Add-Script.md @@ -0,0 +1,103 @@ +--- +external help file: ClarityPS-help.xml +Module Name: ClarityPS +online version: +schema: 2.0.0 +--- + +# Add-Script + +## SYNOPSIS + +## SYNTAX + +``` +Add-Script [[-Title] ] [-ScriptText] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Adds Script Element + +## EXAMPLES + +### EXAMPLE 1 +``` +Add-Script -Title MyCard -ScriptText "Some JavaScript" +``` + +## PARAMETERS + +### -Title +Title, used for comment + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ScriptText +Title, used for comment + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### System.String +### System.Boolean +## NOTES +No notes at this time. + +## RELATED LINKS diff --git a/docs/Add-ScriptLink.md b/docs/Add-ScriptLink.md new file mode 100644 index 0000000..e391144 --- /dev/null +++ b/docs/Add-ScriptLink.md @@ -0,0 +1,103 @@ +--- +external help file: ClarityPS-help.xml +Module Name: ClarityPS +online version: +schema: 2.0.0 +--- + +# Add-ScriptLink + +## SYNOPSIS + +## SYNTAX + +``` +Add-ScriptLink [[-Title] ] [[-SourceLink] ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Adds Flex Item Element + +## EXAMPLES + +### EXAMPLE 1 +``` +Add-ScriptLink -Title MyCard -SourceLink "https://unpkg.com/clarity-icons@0.10.28/clarity-icons.min.js" +``` + +## PARAMETERS + +### -Title +Title, used for comment + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SourceLink +Link to the CSS resource + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### System.String +### System.Boolean +## NOTES +No notes at this time. + +## RELATED LINKS diff --git a/docs/Add-Style.md b/docs/Add-Style.md new file mode 100644 index 0000000..9b1cf2c --- /dev/null +++ b/docs/Add-Style.md @@ -0,0 +1,103 @@ +--- +external help file: ClarityPS-help.xml +Module Name: ClarityPS +online version: +schema: 2.0.0 +--- + +# Add-Style + +## SYNOPSIS + +## SYNTAX + +``` +Add-Style [[-Title] ] [-StyleText] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Adds Style Element + +## EXAMPLES + +### EXAMPLE 1 +``` +Add-Style -Title MyCard -StyleText "Some CSS" +``` + +## PARAMETERS + +### -Title +Title, used for comment + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -StyleText +Text for the CSS Style + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### System.String +### System.Boolean +## NOTES +No notes at this time. + +## RELATED LINKS diff --git a/docs/Close-Branding.md b/docs/Close-Branding.md new file mode 100644 index 0000000..2de8e8b --- /dev/null +++ b/docs/Close-Branding.md @@ -0,0 +1,88 @@ +--- +external help file: ClarityPS-help.xml +Module Name: ClarityPS +online version: +schema: 2.0.0 +--- + +# Close-Branding + +## SYNOPSIS + +## SYNTAX + +``` +Close-Branding [[-Title] ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Closes Branding Element + +## EXAMPLES + +### EXAMPLE 1 +``` +Close-Branding -Title MyCard +``` + +## PARAMETERS + +### -Title +Title, used for comment + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### System.String +### System.Boolean +## NOTES +No notes at this time. + +## RELATED LINKS diff --git a/docs/Close-ButtonGroup.md b/docs/Close-ButtonGroup.md new file mode 100644 index 0000000..5c0ddcf --- /dev/null +++ b/docs/Close-ButtonGroup.md @@ -0,0 +1,88 @@ +--- +external help file: ClarityPS-help.xml +Module Name: ClarityPS +online version: +schema: 2.0.0 +--- + +# Close-ButtonGroup + +## SYNOPSIS + +## SYNTAX + +``` +Close-ButtonGroup [[-Title] ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Closes Flex Item Element + +## EXAMPLES + +### EXAMPLE 1 +``` +Close-ButtonGroup -Title MyCard +``` + +## PARAMETERS + +### -Title +Title, used for comment + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### System.String +### System.Boolean +## NOTES +No notes at this time. + +## RELATED LINKS diff --git a/docs/Close-ClarityCard.md b/docs/Close-ClarityCard.md new file mode 100644 index 0000000..f4393a3 --- /dev/null +++ b/docs/Close-ClarityCard.md @@ -0,0 +1,88 @@ +--- +external help file: ClarityPS-help.xml +Module Name: ClarityPS +online version: +schema: 2.0.0 +--- + +# Close-ClarityCard + +## SYNOPSIS + +## SYNTAX + +``` +Close-ClarityCard [-Title] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Returns the HTML to close a standard ClarityPS Card. + +## EXAMPLES + +### EXAMPLE 1 +``` +Close-ClarityCard -Title Storage +``` + +## PARAMETERS + +### -Title +Provide a Title so a proper comment can be added. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### System.String +### System.Boolean +## NOTES +No notes at this time. + +## RELATED LINKS diff --git a/docs/Close-ClarityCardBody.md b/docs/Close-ClarityCardBody.md new file mode 100644 index 0000000..7709be1 --- /dev/null +++ b/docs/Close-ClarityCardBody.md @@ -0,0 +1,88 @@ +--- +external help file: ClarityPS-help.xml +Module Name: ClarityPS +online version: +schema: 2.0.0 +--- + +# Close-ClarityCardBody + +## SYNOPSIS + +## SYNTAX + +``` +Close-ClarityCardBody [[-Title] ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Closes Branding Element + +## EXAMPLES + +### EXAMPLE 1 +``` +Close-ClarityCardBody -Title MyCard +``` + +## PARAMETERS + +### -Title +Title, used for comment + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### System.String +### System.Boolean +## NOTES +No notes at this time. + +## RELATED LINKS diff --git a/docs/Close-ClarityDocument.md b/docs/Close-ClarityDocument.md new file mode 100644 index 0000000..259e1f1 --- /dev/null +++ b/docs/Close-ClarityDocument.md @@ -0,0 +1,88 @@ +--- +external help file: ClarityPS-help.xml +Module Name: ClarityPS +online version: +schema: 2.0.0 +--- + +# Close-ClarityDocument + +## SYNOPSIS + +## SYNTAX + +``` +Close-ClarityDocument [[-Title] ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Closes Flex Item Element + +## EXAMPLES + +### EXAMPLE 1 +``` +Close-ClarityDocument -Title MyCard +``` + +## PARAMETERS + +### -Title +Title, used for comment + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: ClarityDocument +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### System.String +### System.Boolean +## NOTES +No notes at this time. + +## RELATED LINKS diff --git a/docs/Close-Header.md b/docs/Close-Header.md new file mode 100644 index 0000000..2b071b9 --- /dev/null +++ b/docs/Close-Header.md @@ -0,0 +1,88 @@ +--- +external help file: ClarityPS-help.xml +Module Name: ClarityPS +online version: +schema: 2.0.0 +--- + +# Close-Header + +## SYNOPSIS + +## SYNTAX + +``` +Close-Header [[-Title] ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Closes header Element + +## EXAMPLES + +### EXAMPLE 1 +``` +Close-Header -Title MyCard +``` + +## PARAMETERS + +### -Title +Title, used for comment + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### System.String +### System.Boolean +## NOTES +No notes at this time. + +## RELATED LINKS diff --git a/docs/Close-HeaderAction.md b/docs/Close-HeaderAction.md new file mode 100644 index 0000000..82d6d68 --- /dev/null +++ b/docs/Close-HeaderAction.md @@ -0,0 +1,88 @@ +--- +external help file: ClarityPS-help.xml +Module Name: ClarityPS +online version: +schema: 2.0.0 +--- + +# Close-HeaderAction + +## SYNOPSIS + +## SYNTAX + +``` +Close-HeaderAction [[-Title] ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Closes Header-Nav Element + +## EXAMPLES + +### EXAMPLE 1 +``` +Close-HeaderAction -Title MyCard +``` + +## PARAMETERS + +### -Title +Title, used for comment + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### System.String +### System.Boolean +## NOTES +No notes at this time. + +## RELATED LINKS diff --git a/docs/Close-HeaderNav.md b/docs/Close-HeaderNav.md new file mode 100644 index 0000000..b9f115b --- /dev/null +++ b/docs/Close-HeaderNav.md @@ -0,0 +1,88 @@ +--- +external help file: ClarityPS-help.xml +Module Name: ClarityPS +online version: +schema: 2.0.0 +--- + +# Close-HeaderNav + +## SYNOPSIS + +## SYNTAX + +``` +Close-HeaderNav [[-Title] ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Closes Header-Nav Element + +## EXAMPLES + +### EXAMPLE 1 +``` +Close-HeaderNav -Title MyCard +``` + +## PARAMETERS + +### -Title +Title, used for comment + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### System.String +### System.Boolean +## NOTES +No notes at this time. + +## RELATED LINKS diff --git a/docs/Close-HtmlBody.md b/docs/Close-HtmlBody.md new file mode 100644 index 0000000..2348d43 --- /dev/null +++ b/docs/Close-HtmlBody.md @@ -0,0 +1,88 @@ +--- +external help file: ClarityPS-help.xml +Module Name: ClarityPS +online version: +schema: 2.0.0 +--- + +# Close-HtmlBody + +## SYNOPSIS + +## SYNTAX + +``` +Close-HtmlBody [[-Title] ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Closes HTML Body Element + +## EXAMPLES + +### EXAMPLE 1 +``` +Close-HtmlBody -Title MyCard +``` + +## PARAMETERS + +### -Title +Title, used for comment + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### System.String +### System.Boolean +## NOTES +No notes at this time. + +## RELATED LINKS diff --git a/docs/Close-HtmlDocument.md b/docs/Close-HtmlDocument.md new file mode 100644 index 0000000..f690658 --- /dev/null +++ b/docs/Close-HtmlDocument.md @@ -0,0 +1,88 @@ +--- +external help file: ClarityPS-help.xml +Module Name: ClarityPS +online version: +schema: 2.0.0 +--- + +# Close-HtmlDocument + +## SYNOPSIS + +## SYNTAX + +``` +Close-HtmlDocument [[-Title] ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Closes Flex Item Element + +## EXAMPLES + +### EXAMPLE 1 +``` +Close-HtmlDocument -Title MyCard +``` + +## PARAMETERS + +### -Title +Title, used for comment + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### System.String +### System.Boolean +## NOTES +No notes at this time. + +## RELATED LINKS diff --git a/docs/Close-HtmlHead.md b/docs/Close-HtmlHead.md new file mode 100644 index 0000000..344af16 --- /dev/null +++ b/docs/Close-HtmlHead.md @@ -0,0 +1,88 @@ +--- +external help file: ClarityPS-help.xml +Module Name: ClarityPS +online version: +schema: 2.0.0 +--- + +# Close-HtmlHead + +## SYNOPSIS + +## SYNTAX + +``` +Close-HtmlHead [[-Title] ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Closes HTML Head Element + +## EXAMPLES + +### EXAMPLE 1 +``` +Close-HtmlHead -Title MyCard +``` + +## PARAMETERS + +### -Title +Title, used for comment + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### System.String +### System.Boolean +## NOTES +No notes at this time. + +## RELATED LINKS diff --git a/docs/Close-MainContainer.md b/docs/Close-MainContainer.md new file mode 100644 index 0000000..cc9797f --- /dev/null +++ b/docs/Close-MainContainer.md @@ -0,0 +1,88 @@ +--- +external help file: ClarityPS-help.xml +Module Name: ClarityPS +online version: +schema: 2.0.0 +--- + +# Close-MainContainer + +## SYNOPSIS + +## SYNTAX + +``` +Close-MainContainer [[-Title] ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Closes Main container Element + +## EXAMPLES + +### EXAMPLE 1 +``` +Close-MainContainer -Title MyCard +``` + +## PARAMETERS + +### -Title +Title, used for comment + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### System.String +### System.Boolean +## NOTES +No notes at this time. + +## RELATED LINKS diff --git a/docs/New-ClarityCard.md b/docs/New-ClarityCard.md new file mode 100644 index 0000000..ccab07b --- /dev/null +++ b/docs/New-ClarityCard.md @@ -0,0 +1,119 @@ +--- +external help file: ClarityPS-help.xml +Module Name: ClarityPS +online version: +schema: 2.0.0 +--- + +# New-ClarityCard + +## SYNOPSIS + +## SYNTAX + +``` +New-ClarityCard [-Title] [[-Icon] ] [[-IconSize] ] [-WhatIf] [-Confirm] + [] +``` + +## DESCRIPTION +Returns the HTML needed to start a new Clarity card. + +## EXAMPLES + +### EXAMPLE 1 +``` +New-ClarityCard -Title Storage -Icon Storage -IconSize 24 +``` + +## PARAMETERS + +### -Title +Title of the card. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Icon +Clarity Icon. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -IconSize +Size of the Icon. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 3 +Default value: 24 +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### System.String +### System.Boolean +## NOTES +No notes at this time. + +## RELATED LINKS diff --git a/docs/New-ClarityDocument.md b/docs/New-ClarityDocument.md new file mode 100644 index 0000000..a5677aa --- /dev/null +++ b/docs/New-ClarityDocument.md @@ -0,0 +1,88 @@ +--- +external help file: ClarityPS-help.xml +Module Name: ClarityPS +online version: +schema: 2.0.0 +--- + +# New-ClarityDocument + +## SYNOPSIS + +## SYNTAX + +``` +New-ClarityDocument [-Title] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Returns the HTML needed to start a new Clarity card. + +## EXAMPLES + +### EXAMPLE 1 +``` +New-ClarityDocument -Title Storage +``` + +## PARAMETERS + +### -Title +Title of the card. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### System.String +### System.Boolean +## NOTES +No notes at this time. + +## RELATED LINKS diff --git a/docs/New-HtmlDocument.md b/docs/New-HtmlDocument.md new file mode 100644 index 0000000..86d2638 --- /dev/null +++ b/docs/New-HtmlDocument.md @@ -0,0 +1,88 @@ +--- +external help file: ClarityPS-help.xml +Module Name: ClarityPS +online version: +schema: 2.0.0 +--- + +# New-HtmlDocument + +## SYNOPSIS + +## SYNTAX + +``` +New-HtmlDocument [[-Title] ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Adds HTML Element + +## EXAMPLES + +### EXAMPLE 1 +``` +New-HtmlDocument -Title MyHTMLDocument +``` + +## PARAMETERS + +### -Title +Title, used for comment + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### System.String +### System.Boolean +## NOTES +No notes at this time. + +## RELATED LINKS