Skip to content

Commit 3f91410

Browse files
committedMar 19, 2020
Adds Comment Based Help to most functions.
1 parent e7e8f7c commit 3f91410

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+1067
-111
lines changed
 

‎functions/Connect-.ps1

-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ function Connect- {
1313
[OutputType([Boolean])]
1414
[CmdletBinding()]
1515
Param (
16-
1716
# Zendesk subdomain
1817
[Parameter(Mandatory = $true)]
1918
[ValidateNotNullOrEmpty()]

‎functions/Export-Organization.ps1

+14-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,22 @@
11

22
function Export-Organization {
3+
<#
4+
.SYNOPSIS
5+
Retrieves organizations updated since the supplied timestamp
6+
.DESCRIPTION
7+
Retrieves organizations updated since the supplied timestamp. Supply a timestamp of `0` to start fresh.
8+
.EXAMPLE
9+
PS C:\> Export-ZendeskOrganization -Timestamp 0
10+
11+
Starts a fresh organization incremental export.
12+
.EXAMPLE
13+
PS C:\> Export-ZendeskOrganization -Timestamp 132268985925191750
14+
15+
Continues an organization incremental export with a timestamp returned from a previous export.
16+
#>
317
[OutputType([PSCustomObject])]
418
[CMDletBinding()]
519
Param (
6-
720
# Timestamp returned by the last Export or `0` for a new incremental export
821
[Parameter(Mandatory = $true)]
922
[ValidateRange(0, [Int64]::MaxValue)]

0 commit comments

Comments
 (0)