Skip to content

Commit

Permalink
+++
Browse files Browse the repository at this point in the history
  • Loading branch information
Nate Ferrell committed Feb 23, 2017
1 parent bf92f8b commit 58556fa
Showing 1 changed file with 46 additions and 20 deletions.
66 changes: 46 additions & 20 deletions PSGSuite.psd1
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#
# Module manifest for module 'PSGet_PSGSuite'
# Module manifest for module 'NewManifest'
#
# Generated by: Nate Ferrell
#
# Generated on: 2/11/2017
# Generated on: 2/22/2017
#

@{
Expand All @@ -12,10 +12,7 @@
RootModule = 'PSGSuite.psm1'

# Version number of this module.
ModuleVersion = '1.1.1'

# Supported PSEditions
# CompatiblePSEditions = @()
ModuleVersion = '1.1.2'

# ID used to uniquely identify this module
GUID = '9d751152-e83e-40bb-a6db-4c329092aaec'
Expand Down Expand Up @@ -74,43 +71,72 @@ PowerShellVersion = '3.0'
# Minimum version of the Windows PowerShell host required by this module
# PowerShellHostVersion = ''

# Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
# Minimum version of Microsoft .NET Framework required by this module
# DotNetFrameworkVersion = ''

# Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
# Minimum version of the common language runtime (CLR) required by this module
# CLRVersion = ''

# Processor architecture (None, X86, Amd64) required by this module
# ProcessorArchitecture = ''
ProcessorArchitecture = 'None'

# Modules that must be imported into the global environment prior to importing this module
# RequiredModules = @()

# Assemblies that must be loaded prior to importing this module
# RequiredAssemblies = @()
RequiredAssemblies = @()

# Script files (.ps1) that are run in the caller's environment prior to importing this module.
# ScriptsToProcess = @()
ScriptsToProcess = @()

# Type files (.ps1xml) to be loaded when importing this module
# TypesToProcess = @()
TypesToProcess = @()

# Format files (.ps1xml) to be loaded when importing this module
# FormatsToProcess = @()
FormatsToProcess = @()

# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
# NestedModules = @()

# Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export.
FunctionsToExport = '*'

# Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export.
# Functions to export from this module
FunctionsToExport = 'Add-GSDriveFilePermissions', 'Add-GSGmailDelegate',
'Add-GSGmailFilter', 'Add-GSGroupMember', 'Clear-GSSheet',
'Copy-GSDriveFile', 'Copy-GSSheet', 'Get-GSCalendarEventList',
'Get-GSCalendarResourceList', 'Get-GSDataTransferApplicationList',
'Get-GSDriveFile', 'Get-GSDriveFileInfo', 'Get-GSDriveFileList',
'Get-GSDriveFilePermissionsList', 'Get-GSGmailDelegates',
'Get-GSGmailFilterList', 'Get-GSGmailLabelList',
'Get-GSGmailMessageInfo', 'Get-GSGmailMessageList', 'Get-GSGroup',
'Get-GSGroupList', 'Get-GSGroupMemberList', 'Get-GSGroupSettings',
'Get-GSMobileDeviceList', 'Get-GSOrgUnitList', 'Get-GSSheetInfo',
'Get-GSShortURLInfo', 'Get-GSShortURLList', 'Get-GSToken', 'Get-GSUser',
'Get-GSUserASP', 'Get-GSUserASPList', 'Get-GSUserLicenseInfo',
'Get-GSUserLicenseList', 'Get-GSUserList', 'Get-GSUserPhoto',
'Get-GSUserSchemaInfo', 'Get-GSUserSchemaList', 'Get-GSUserToken',
'Get-GSUserTokenList', 'Get-GSUserVerificationCodes',
'Get-PSGSuiteConfig', 'Import-GSSheet', 'New-GSCalendarEvent',
'New-GSCalendarResource', 'New-GSDriveFile', 'New-GSGroup',
'New-GSOrganizationalUnit', 'New-GSSheet', 'New-GSShortURL',
'New-GSUser', 'New-GSUserSchema', 'New-GSUserVerificationCodes',
'Remove-GSGmailDelegate', 'Remove-GSGmailFilter',
'Remove-GSGmailMessage', 'Remove-GSGroup', 'Remove-GSGroupMember',
'Remove-GSMobileDevice', 'Remove-GSUser', 'Remove-GSUserASP',
'Remove-GSUserLicense', 'Remove-GSUserSchema', 'Remove-GSUserToken',
'Restore-GSUser', 'Revoke-GSToken', 'Revoke-GSUserVerificationCodes',
'Send-GmailMessage', 'Set-GSUserLicense', 'Set-PSGSuiteConfig',
'Set-PSGSuiteDefaultDomain', 'Start-GSDataTransfer',
'Switch-PSGSuiteDomain', 'Update-GSCalendarResource',
'Update-GSDriveFile', 'Update-GSGroupSettings',
'Update-GSOrganizationalUnit', 'Update-GSSheetValue', 'Update-GSUser',
'Update-GSUserLicense', 'Update-GSUserSchema'

# Cmdlets to export from this module
CmdletsToExport = @()

# Variables to export from this module
# VariablesToExport = @()
VariablesToExport = @()

# Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export.
# Aliases to export from this module
AliasesToExport = @()

# DSC resources to export from this module
Expand All @@ -120,7 +146,7 @@ AliasesToExport = @()
# ModuleList = @()

# List of all files packaged with this module
# FileList = @()
FileList = @()

# Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell.
PrivateData = @{
Expand Down

0 comments on commit 58556fa

Please sign in to comment.