We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 558e9fc commit 10edfc0Copy full SHA for 10edfc0
jamftf/__init__.py
@@ -1,10 +1,5 @@
1
"""python importer magic"""
2
3
from .importer import Importer
4
-from .resources import (
5
- Scripts,
6
- Categories,
7
- Policies,
8
- ConfigurationProfiles
9
-)
+from .resources import *
10
from .config_ingest import parse_config_file, parse_config_dict
jamftf/resources.py
@@ -3,6 +3,17 @@
from .models import Resource
from .enums import ProviderResourceTags, ResourceResponseKeys
+__all__ = [
+ "Scripts",
+ "Categories",
+ "Policies",
+ "ConfigurationProfiles",
11
+ "ComputerGroupsStatic",
12
+ "ComputerGroupsSmart",
13
+ "AdvancedComputerSearches",
14
+ "ComputerExtensionAttributes",
15
+]
16
+
17
18
class Scripts(Resource):
19
"""Jamf Pro script resource."""
0 commit comments