Skip to content

Commit 1d50477

Browse files
authored
Dockerize 202411 (#3)
* prepping docker runner * adding standardised Get-PaginatedJSONResults * adding standardised Get-PaginatedJSONResults * synching updates * removed test files * synch * Added htmltoadf as a submodule * sync * pre-docker final - tested * removing Microsoft vault dependency for 1password - untested
1 parent f1ece0d commit 1d50477

26 files changed

Lines changed: 2852 additions & 1097 deletions

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "submodules/htmltoadf"]
2+
path = submodules/htmltoadf
3+
url = https://github.com/wouterken/htmltoadf.git
Lines changed: 144 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,144 @@
1+
#
2+
# Module manifest for module 'AtlassianPowerKit'
3+
#
4+
# Generated by: MarkCulhane
5+
#
6+
# Generated on: 16/06/2024
7+
#
8+
9+
@{
10+
11+
# Script module or binary module file associated with this manifest.
12+
RootModule = 'AtlassianPowerKit-Admin.psm1'
13+
14+
# Version number of this module.
15+
ModuleVersion = '1.0.0'
16+
17+
# Supported PSEditions
18+
# CompatiblePSEditions = @()
19+
20+
# ID used to uniquely identify this module
21+
GUID = 'c93fe103-590b-4a69-b4e1-09fcc140ef99'
22+
23+
# Author of this module
24+
Author = 'Mark Culhane'
25+
26+
# Company or vendor of this module
27+
CompanyName = 'ZOAK Technologies'
28+
29+
# Copyright statement for this module
30+
Copyright = '(c) ZOAK PTY LTD. All rights reserved.'
31+
32+
# Description of the functionality provided by this module
33+
Description = 'Atlassian Cloud PowerShell Module for handy functions to interact with Attlassian Cloud APIs.'
34+
35+
# Minimum version of the PowerShell engine required by this module
36+
PowerShellVersion = '7.3'
37+
38+
# Name of the PowerShell host required by this module
39+
# PowerShellHostName = ''
40+
41+
# Minimum version of the PowerShell host required by this module
42+
# PowerShellHostVersion = ''
43+
44+
# Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
45+
# DotNetFrameworkVersion = ''
46+
47+
# Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
48+
# ClrVersion = ''
49+
50+
# Processor architecture (None, X86, Amd64) required by this module
51+
# ProcessorArchitecture = ''
52+
53+
# Modules that must be imported into the global environment prior to importing this module
54+
# RequiredModules = @('..\AtlassianPowerKit-Shared\AtlassianPowerKit-Shared.psd1', '..\AtlassianPowerKit-Jira\AtlassianPowerKit-Jira.psd1')
55+
56+
# Assemblies that must be loaded prior to importing this module
57+
# RequiredAssemblies = @()
58+
59+
# Script files (.ps1) that are run in the caller's environment prior to importing this module.
60+
# ScriptsToProcess = @()
61+
62+
# Type files (.ps1xml) to be loaded when importing this module
63+
# TypesToProcess = @()
64+
65+
# Format files (.ps1xml) to be loaded when importing this module
66+
# FormatsToProcess = @()
67+
68+
# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
69+
# NestedModules = @('..\AtlassianPowerKit-Shared\AtlassianPowerKit-Shared.psd1', '..\AtlassianPowerKit-Jira\AtlassianPowerKit-Jira.psd1', '..\AtlassianPowerKit-Confluence\AtlassianPowerKit-Confluence.psd1')
70+
71+
# 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.
72+
FunctionsToExport = @(
73+
'New-JiraIssueType',
74+
'Import-JiraIssueTypes',
75+
'Test-ExistingConfigJSON',
76+
'Import-JSONConfigExport',
77+
'Get-OSMDeploymentConfigsJIRA',
78+
'Get-OSMConfigAsMarkdown',
79+
'Get-JiraProjectIssueTypes',
80+
'Get-JiraCloudIssueTypeSchema'
81+
'Get-JiraCloudIssueTypeMetadata',
82+
'Get-JiraOSMFilterList',
83+
'Export-ProjectProformaFormTemplates'
84+
)
85+
86+
# 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.
87+
CmdletsToExport = @()
88+
89+
# Variables to export from this module
90+
VariablesToExport = @()
91+
92+
# 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.
93+
AliasesToExport = @()
94+
95+
# DSC resources to export from this module
96+
# DscResourcesToExport = @()
97+
98+
# List of all modules packaged with this module
99+
# ModuleList = @()
100+
101+
# List of all files packaged with this module
102+
# FileList = @()
103+
104+
# 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.
105+
PrivateData = @{
106+
107+
PSData = @{
108+
109+
# Tags applied to this module. These help with module discovery in online galleries.
110+
# Tags = @()
111+
112+
# A URL to the license for this module.
113+
# LicenseUri = ''
114+
115+
# A URL to the main website for this project.
116+
# ProjectUri = ''
117+
118+
# A URL to an icon representing this module.
119+
# IconUri = ''
120+
121+
# ReleaseNotes of this module
122+
# ReleaseNotes = ''
123+
124+
# Prerelease string of this module
125+
# Prerelease = ''
126+
127+
# Flag to indicate whether the module requires explicit user acceptance for install/update/save
128+
# RequireLicenseAcceptance = $false
129+
130+
# External dependent modules of this module
131+
# ExternalModuleDependencies = @()
132+
133+
} # End of PSData hashtable
134+
135+
} # End of PrivateData hashtable
136+
137+
# HelpInfo URI of this module
138+
# HelpInfoURI = ''
139+
140+
# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix.
141+
# DefaultCommandPrefix = ''
142+
143+
}
144+

0 commit comments

Comments
 (0)