@itentialopensource/adapter-infoblox_threat_defense 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (93) hide show
  1. package/.eslintignore +5 -0
  2. package/.eslintrc.js +19 -0
  3. package/.jshintrc +3 -0
  4. package/AUTH.md +32 -0
  5. package/BROKER.md +211 -0
  6. package/CALLS.md +575 -0
  7. package/CODE_OF_CONDUCT.md +43 -0
  8. package/CONTRIBUTING.md +13 -0
  9. package/ENHANCE.md +69 -0
  10. package/LICENSE +201 -0
  11. package/PROPERTIES.md +661 -0
  12. package/README.md +344 -0
  13. package/SUMMARY.md +9 -0
  14. package/SYSTEMINFO.md +16 -0
  15. package/TAB1.md +10 -0
  16. package/TAB2.md +307 -0
  17. package/TROUBLESHOOT.md +56 -0
  18. package/UTILITIES.md +473 -0
  19. package/adapter.js +7042 -0
  20. package/adapterBase.js +1488 -0
  21. package/entities/.generic/action.json +214 -0
  22. package/entities/.generic/schema.json +28 -0
  23. package/entities/.system/action.json +50 -0
  24. package/entities/.system/mockdatafiles/getToken-default.json +3 -0
  25. package/entities/.system/mockdatafiles/healthcheck-default.json +3 -0
  26. package/entities/.system/schema.json +19 -0
  27. package/entities/.system/schemaTokenReq.json +53 -0
  28. package/entities/.system/schemaTokenResp.json +53 -0
  29. package/entities/AccessCodes/action.json +126 -0
  30. package/entities/AccessCodes/schema.json +90 -0
  31. package/entities/AppApprovals/action.json +65 -0
  32. package/entities/AppApprovals/schema.json +32 -0
  33. package/entities/ApplicationFilters/action.json +126 -0
  34. package/entities/ApplicationFilters/schema.json +101 -0
  35. package/entities/BlockApprovals/action.json +45 -0
  36. package/entities/BlockApprovals/schema.json +53 -0
  37. package/entities/CategoryFilters/action.json +126 -0
  38. package/entities/CategoryFilters/schema.json +101 -0
  39. package/entities/ContentCategories/action.json +25 -0
  40. package/entities/ContentCategories/schema.json +30 -0
  41. package/entities/DohFqdns/action.json +24 -0
  42. package/entities/DohFqdns/schema.json +19 -0
  43. package/entities/InternalDomainLists/action.json +146 -0
  44. package/entities/InternalDomainLists/schema.json +102 -0
  45. package/entities/NamedListItems/action.json +64 -0
  46. package/entities/NamedListItems/schema.json +21 -0
  47. package/entities/NamedLists/action.json +187 -0
  48. package/entities/NamedLists/schema.json +115 -0
  49. package/entities/NetworkLists/action.json +126 -0
  50. package/entities/NetworkLists/schema.json +79 -0
  51. package/entities/PopRegions/action.json +46 -0
  52. package/entities/PopRegions/schema.json +97 -0
  53. package/entities/SecurityPolicies/action.json +146 -0
  54. package/entities/SecurityPolicies/schema.json +113 -0
  55. package/entities/SecurityPolicyRules/action.json +25 -0
  56. package/entities/SecurityPolicyRules/schema.json +74 -0
  57. package/entities/ThreatFeeds/action.json +25 -0
  58. package/entities/ThreatFeeds/schema.json +74 -0
  59. package/error.json +190 -0
  60. package/metadata.json +61 -0
  61. package/package.json +75 -0
  62. package/pronghorn.json +4570 -0
  63. package/propertiesDecorators.json +18 -0
  64. package/propertiesSchema.json +1727 -0
  65. package/report/adapterInfo.json +10 -0
  66. package/report/auto-adapter-openapi.json +2938 -0
  67. package/report/creationReport.json +725 -0
  68. package/report/threat_defense_v1.json +7282 -0
  69. package/sampleProperties.json +260 -0
  70. package/test/integration/adapterTestBasicGet.js +117 -0
  71. package/test/integration/adapterTestConnectivity.js +117 -0
  72. package/test/integration/adapterTestIntegration.js +2010 -0
  73. package/test/unit/adapterBaseTestUnit.js +1628 -0
  74. package/test/unit/adapterTestUnit.js +3206 -0
  75. package/utils/adapterInfo.js +156 -0
  76. package/utils/argParser.js +44 -0
  77. package/utils/checkMigrate.js +102 -0
  78. package/utils/entitiesToDB.js +190 -0
  79. package/utils/findPath.js +74 -0
  80. package/utils/logger.js +26 -0
  81. package/utils/methodDocumentor.js +273 -0
  82. package/utils/modify.js +153 -0
  83. package/utils/mongoDbConnection.js +79 -0
  84. package/utils/mongoUtils.js +162 -0
  85. package/utils/pre-commit.sh +32 -0
  86. package/utils/removeHooks.js +20 -0
  87. package/utils/setup.js +33 -0
  88. package/utils/taskMover.js +308 -0
  89. package/utils/tbScript.js +103 -0
  90. package/utils/tbUtils.js +347 -0
  91. package/utils/testRunner.js +298 -0
  92. package/utils/troubleshootingAdapter.js +177 -0
  93. package/utils/updateAdapterConfig.js +158 -0
@@ -0,0 +1,30 @@
1
+ {
2
+ "$id": "schema.json",
3
+ "type": "object",
4
+ "schema": "http://json-schema.org/draft-07/schema#",
5
+ "translate": true,
6
+ "dynamicfields": true,
7
+ "properties": {
8
+ "ph_request_type": {
9
+ "type": "string",
10
+ "description": "type of request (internal to adapter)",
11
+ "default": "getContentCategories",
12
+ "enum": [
13
+ "getContentCategories"
14
+ ],
15
+ "external_name": "ph_request_type"
16
+ },
17
+ "fields": {
18
+ "type": "string",
19
+ "description": "A collection of response resources can be transformed by specifying a set of JSON tags to be returned. For a “flat” resource, the tag name is straightforward. If field ...(description truncated)",
20
+ "parse": false,
21
+ "encode": false,
22
+ "encrypt": {
23
+ "type": "AES",
24
+ "key": ""
25
+ },
26
+ "external_name": "_fields"
27
+ }
28
+ },
29
+ "definitions": {}
30
+ }
@@ -0,0 +1,24 @@
1
+ {
2
+ "actions": [
3
+ {
4
+ "name": "postDohFqdns",
5
+ "protocol": "REST",
6
+ "method": "POST",
7
+ "entitypath": "{base_path}/{version}/doh_fqdns?{query}",
8
+ "requestSchema": "schema.json",
9
+ "responseSchema": "schema.json",
10
+ "timeout": 0,
11
+ "sendEmpty": false,
12
+ "requestDatatype": "JSON",
13
+ "responseDatatype": "JSON",
14
+ "headers": {},
15
+ "responseObjects": [
16
+ {
17
+ "type": "default",
18
+ "key": "",
19
+ "mockFile": ""
20
+ }
21
+ ]
22
+ }
23
+ ]
24
+ }
@@ -0,0 +1,19 @@
1
+ {
2
+ "$id": "schema.json",
3
+ "type": "object",
4
+ "schema": "http://json-schema.org/draft-07/schema#",
5
+ "translate": false,
6
+ "dynamicfields": true,
7
+ "properties": {
8
+ "ph_request_type": {
9
+ "type": "string",
10
+ "description": "type of request (internal to adapter)",
11
+ "default": "postDohFqdns",
12
+ "enum": [
13
+ "postDohFqdns"
14
+ ],
15
+ "external_name": "ph_request_type"
16
+ }
17
+ },
18
+ "definitions": {}
19
+ }
@@ -0,0 +1,146 @@
1
+ {
2
+ "actions": [
3
+ {
4
+ "name": "getInternalDomainLists",
5
+ "protocol": "REST",
6
+ "method": "GET",
7
+ "entitypath": "{base_path}/{version}/internal_domain_lists?{query}",
8
+ "requestSchema": "schema.json",
9
+ "responseSchema": "schema.json",
10
+ "timeout": 0,
11
+ "sendEmpty": false,
12
+ "sendGetBody": false,
13
+ "requestDatatype": "JSON",
14
+ "responseDatatype": "JSON",
15
+ "headers": {},
16
+ "responseObjects": [
17
+ {
18
+ "type": "default",
19
+ "key": "",
20
+ "mockFile": ""
21
+ }
22
+ ]
23
+ },
24
+ {
25
+ "name": "postInternalDomainLists",
26
+ "protocol": "REST",
27
+ "method": "POST",
28
+ "entitypath": "{base_path}/{version}/internal_domain_lists?{query}",
29
+ "requestSchema": "schema.json",
30
+ "responseSchema": "schema.json",
31
+ "timeout": 0,
32
+ "sendEmpty": false,
33
+ "requestDatatype": "JSON",
34
+ "responseDatatype": "JSON",
35
+ "headers": {},
36
+ "responseObjects": [
37
+ {
38
+ "type": "default",
39
+ "key": "",
40
+ "mockFile": ""
41
+ }
42
+ ]
43
+ },
44
+ {
45
+ "name": "deleteInternalDomainLists",
46
+ "protocol": "REST",
47
+ "method": "DELETE",
48
+ "entitypath": "{base_path}/{version}/internal_domain_lists?{query}",
49
+ "requestSchema": "schema.json",
50
+ "responseSchema": "schema.json",
51
+ "timeout": 0,
52
+ "sendEmpty": false,
53
+ "requestDatatype": "JSON",
54
+ "responseDatatype": "JSON",
55
+ "headers": {},
56
+ "responseObjects": [
57
+ {
58
+ "type": "default",
59
+ "key": "",
60
+ "mockFile": ""
61
+ }
62
+ ]
63
+ },
64
+ {
65
+ "name": "getInternalDomainListsId",
66
+ "protocol": "REST",
67
+ "method": "GET",
68
+ "entitypath": "{base_path}/{version}/internal_domain_lists/{pathv1}?{query}",
69
+ "requestSchema": "schema.json",
70
+ "responseSchema": "schema.json",
71
+ "timeout": 0,
72
+ "sendEmpty": false,
73
+ "sendGetBody": false,
74
+ "requestDatatype": "JSON",
75
+ "responseDatatype": "JSON",
76
+ "headers": {},
77
+ "responseObjects": [
78
+ {
79
+ "type": "default",
80
+ "key": "",
81
+ "mockFile": ""
82
+ }
83
+ ]
84
+ },
85
+ {
86
+ "name": "putInternalDomainListsId",
87
+ "protocol": "REST",
88
+ "method": "PUT",
89
+ "entitypath": "{base_path}/{version}/internal_domain_lists/{pathv1}?{query}",
90
+ "requestSchema": "schema.json",
91
+ "responseSchema": "schema.json",
92
+ "timeout": 0,
93
+ "sendEmpty": false,
94
+ "requestDatatype": "JSON",
95
+ "responseDatatype": "JSON",
96
+ "headers": {},
97
+ "responseObjects": [
98
+ {
99
+ "type": "default",
100
+ "key": "",
101
+ "mockFile": ""
102
+ }
103
+ ]
104
+ },
105
+ {
106
+ "name": "deleteInternalDomainListsId",
107
+ "protocol": "REST",
108
+ "method": "DELETE",
109
+ "entitypath": "{base_path}/{version}/internal_domain_lists/{pathv1}?{query}",
110
+ "requestSchema": "schema.json",
111
+ "responseSchema": "schema.json",
112
+ "timeout": 0,
113
+ "sendEmpty": false,
114
+ "requestDatatype": "JSON",
115
+ "responseDatatype": "JSON",
116
+ "headers": {},
117
+ "responseObjects": [
118
+ {
119
+ "type": "default",
120
+ "key": "",
121
+ "mockFile": ""
122
+ }
123
+ ]
124
+ },
125
+ {
126
+ "name": "patchInternalDomainListsIdItems",
127
+ "protocol": "REST",
128
+ "method": "PATCH",
129
+ "entitypath": "{base_path}/{version}/internal_domain_lists/{pathv1}/items?{query}",
130
+ "requestSchema": "schema.json",
131
+ "responseSchema": "schema.json",
132
+ "timeout": 0,
133
+ "sendEmpty": false,
134
+ "requestDatatype": "JSON",
135
+ "responseDatatype": "JSON",
136
+ "headers": {},
137
+ "responseObjects": [
138
+ {
139
+ "type": "default",
140
+ "key": "",
141
+ "mockFile": ""
142
+ }
143
+ ]
144
+ }
145
+ ]
146
+ }
@@ -0,0 +1,102 @@
1
+ {
2
+ "$id": "schema.json",
3
+ "type": "object",
4
+ "schema": "http://json-schema.org/draft-07/schema#",
5
+ "translate": true,
6
+ "dynamicfields": true,
7
+ "properties": {
8
+ "ph_request_type": {
9
+ "type": "string",
10
+ "description": "type of request (internal to adapter)",
11
+ "default": "getInternalDomainLists",
12
+ "enum": [
13
+ "getInternalDomainLists",
14
+ "postInternalDomainLists",
15
+ "deleteInternalDomainLists",
16
+ "getInternalDomainListsId",
17
+ "putInternalDomainListsId",
18
+ "deleteInternalDomainListsId",
19
+ "patchInternalDomainListsIdItems"
20
+ ],
21
+ "external_name": "ph_request_type"
22
+ },
23
+ "filter": {
24
+ "type": "string",
25
+ "description": "A collection of response resources can be filtered by a logical expression string that includes JSON tag references to values in each resource, literal values, and logica...(description truncated)",
26
+ "parse": false,
27
+ "encode": false,
28
+ "encrypt": {
29
+ "type": "AES",
30
+ "key": ""
31
+ },
32
+ "external_name": "_filter"
33
+ },
34
+ "fields": {
35
+ "type": "string",
36
+ "description": "A collection of response resources can be transformed by specifying a set of JSON tags to be returned. For a “flat” resource, the tag name is straightforward. If field ...(description truncated)",
37
+ "parse": false,
38
+ "encode": false,
39
+ "encrypt": {
40
+ "type": "AES",
41
+ "key": ""
42
+ },
43
+ "external_name": "_fields"
44
+ },
45
+ "offset": {
46
+ "type": "number",
47
+ "description": "The integer index (zero-origin) of the offset into a collection of resources. If omitted or null the value is assumed to be '0'.",
48
+ "parse": false,
49
+ "encode": false,
50
+ "encrypt": {
51
+ "type": "AES",
52
+ "key": ""
53
+ },
54
+ "external_name": "_offset"
55
+ },
56
+ "limit": {
57
+ "type": "number",
58
+ "description": "The integer number of resources to be returned in the response. The service may impose maximum value. If omitted the service may impose a default value.",
59
+ "parse": false,
60
+ "encode": false,
61
+ "encrypt": {
62
+ "type": "AES",
63
+ "key": ""
64
+ },
65
+ "external_name": "_limit"
66
+ },
67
+ "pageToken": {
68
+ "type": "string",
69
+ "description": "The service-defined string used to identify a page of resources. A null value indicates the first page.",
70
+ "parse": false,
71
+ "encode": false,
72
+ "encrypt": {
73
+ "type": "AES",
74
+ "key": ""
75
+ },
76
+ "external_name": "_page_token"
77
+ },
78
+ "tfilter": {
79
+ "type": "string",
80
+ "description": "Filtering by tags.",
81
+ "parse": false,
82
+ "encode": false,
83
+ "encrypt": {
84
+ "type": "AES",
85
+ "key": ""
86
+ },
87
+ "external_name": "_tfilter"
88
+ },
89
+ "torderBy": {
90
+ "type": "string",
91
+ "description": "Sorting by tags.",
92
+ "parse": false,
93
+ "encode": false,
94
+ "encrypt": {
95
+ "type": "AES",
96
+ "key": ""
97
+ },
98
+ "external_name": "_torder_by"
99
+ }
100
+ },
101
+ "definitions": {}
102
+ }
@@ -0,0 +1,64 @@
1
+ {
2
+ "actions": [
3
+ {
4
+ "name": "namedListItemsInsertOrReplaceNamedListItems",
5
+ "protocol": "REST",
6
+ "method": "POST",
7
+ "entitypath": "{base_path}/{version}/named_lists/{pathv1}/items?{query}",
8
+ "requestSchema": "schema.json",
9
+ "responseSchema": "schema.json",
10
+ "timeout": 0,
11
+ "sendEmpty": false,
12
+ "requestDatatype": "JSON",
13
+ "responseDatatype": "JSON",
14
+ "headers": {},
15
+ "responseObjects": [
16
+ {
17
+ "type": "default",
18
+ "key": "",
19
+ "mockFile": ""
20
+ }
21
+ ]
22
+ },
23
+ {
24
+ "name": "namedListItemsDeleteNamedListItems",
25
+ "protocol": "REST",
26
+ "method": "DELETE",
27
+ "entitypath": "{base_path}/{version}/named_lists/{pathv1}/items?{query}",
28
+ "requestSchema": "schema.json",
29
+ "responseSchema": "schema.json",
30
+ "timeout": 0,
31
+ "sendEmpty": false,
32
+ "requestDatatype": "JSON",
33
+ "responseDatatype": "JSON",
34
+ "headers": {},
35
+ "responseObjects": [
36
+ {
37
+ "type": "default",
38
+ "key": "",
39
+ "mockFile": ""
40
+ }
41
+ ]
42
+ },
43
+ {
44
+ "name": "namedListItemsNamedListItemsPartialUpdate",
45
+ "protocol": "REST",
46
+ "method": "PATCH",
47
+ "entitypath": "{base_path}/{version}/named_lists/{pathv1}/items?{query}",
48
+ "requestSchema": "schema.json",
49
+ "responseSchema": "schema.json",
50
+ "timeout": 0,
51
+ "sendEmpty": false,
52
+ "requestDatatype": "JSON",
53
+ "responseDatatype": "JSON",
54
+ "headers": {},
55
+ "responseObjects": [
56
+ {
57
+ "type": "default",
58
+ "key": "",
59
+ "mockFile": ""
60
+ }
61
+ ]
62
+ }
63
+ ]
64
+ }
@@ -0,0 +1,21 @@
1
+ {
2
+ "$id": "schema.json",
3
+ "type": "object",
4
+ "schema": "http://json-schema.org/draft-07/schema#",
5
+ "translate": false,
6
+ "dynamicfields": true,
7
+ "properties": {
8
+ "ph_request_type": {
9
+ "type": "string",
10
+ "description": "type of request (internal to adapter)",
11
+ "default": "namedListItemsInsertOrReplaceNamedListItems",
12
+ "enum": [
13
+ "namedListItemsInsertOrReplaceNamedListItems",
14
+ "namedListItemsDeleteNamedListItems",
15
+ "namedListItemsNamedListItemsPartialUpdate"
16
+ ],
17
+ "external_name": "ph_request_type"
18
+ }
19
+ },
20
+ "definitions": {}
21
+ }
@@ -0,0 +1,187 @@
1
+ {
2
+ "actions": [
3
+ {
4
+ "name": "getNamedLists",
5
+ "protocol": "REST",
6
+ "method": "GET",
7
+ "entitypath": "{base_path}/{version}/named_lists?{query}",
8
+ "requestSchema": "schema.json",
9
+ "responseSchema": "schema.json",
10
+ "timeout": 0,
11
+ "sendEmpty": false,
12
+ "sendGetBody": false,
13
+ "requestDatatype": "JSON",
14
+ "responseDatatype": "JSON",
15
+ "headers": {},
16
+ "responseObjects": [
17
+ {
18
+ "type": "default",
19
+ "key": "",
20
+ "mockFile": ""
21
+ }
22
+ ]
23
+ },
24
+ {
25
+ "name": "postNamedLists",
26
+ "protocol": "REST",
27
+ "method": "POST",
28
+ "entitypath": "{base_path}/{version}/named_lists?{query}",
29
+ "requestSchema": "schema.json",
30
+ "responseSchema": "schema.json",
31
+ "timeout": 0,
32
+ "sendEmpty": false,
33
+ "requestDatatype": "JSON",
34
+ "responseDatatype": "JSON",
35
+ "headers": {},
36
+ "responseObjects": [
37
+ {
38
+ "type": "default",
39
+ "key": "",
40
+ "mockFile": ""
41
+ }
42
+ ]
43
+ },
44
+ {
45
+ "name": "deleteNamedLists",
46
+ "protocol": "REST",
47
+ "method": "DELETE",
48
+ "entitypath": "{base_path}/{version}/named_lists?{query}",
49
+ "requestSchema": "schema.json",
50
+ "responseSchema": "schema.json",
51
+ "timeout": 0,
52
+ "sendEmpty": false,
53
+ "requestDatatype": "JSON",
54
+ "responseDatatype": "JSON",
55
+ "headers": {},
56
+ "responseObjects": [
57
+ {
58
+ "type": "default",
59
+ "key": "",
60
+ "mockFile": ""
61
+ }
62
+ ]
63
+ },
64
+ {
65
+ "name": "patchNamedLists",
66
+ "protocol": "REST",
67
+ "method": "PATCH",
68
+ "entitypath": "{base_path}/{version}/named_lists?{query}",
69
+ "requestSchema": "schema.json",
70
+ "responseSchema": "schema.json",
71
+ "timeout": 0,
72
+ "sendEmpty": false,
73
+ "requestDatatype": "JSON",
74
+ "responseDatatype": "JSON",
75
+ "headers": {},
76
+ "responseObjects": [
77
+ {
78
+ "type": "default",
79
+ "key": "",
80
+ "mockFile": ""
81
+ }
82
+ ]
83
+ },
84
+ {
85
+ "name": "getNamedListsId",
86
+ "protocol": "REST",
87
+ "method": "GET",
88
+ "entitypath": "{base_path}/{version}/named_lists/{pathv1}?{query}",
89
+ "requestSchema": "schema.json",
90
+ "responseSchema": "schema.json",
91
+ "timeout": 0,
92
+ "sendEmpty": false,
93
+ "sendGetBody": false,
94
+ "requestDatatype": "JSON",
95
+ "responseDatatype": "JSON",
96
+ "headers": {},
97
+ "responseObjects": [
98
+ {
99
+ "type": "default",
100
+ "key": "",
101
+ "mockFile": ""
102
+ }
103
+ ]
104
+ },
105
+ {
106
+ "name": "putNamedListsId",
107
+ "protocol": "REST",
108
+ "method": "PUT",
109
+ "entitypath": "{base_path}/{version}/named_lists/{pathv1}?{query}",
110
+ "requestSchema": "schema.json",
111
+ "responseSchema": "schema.json",
112
+ "timeout": 0,
113
+ "sendEmpty": false,
114
+ "requestDatatype": "JSON",
115
+ "responseDatatype": "JSON",
116
+ "headers": {},
117
+ "responseObjects": [
118
+ {
119
+ "type": "default",
120
+ "key": "",
121
+ "mockFile": ""
122
+ }
123
+ ]
124
+ },
125
+ {
126
+ "name": "deleteNamedListsId",
127
+ "protocol": "REST",
128
+ "method": "DELETE",
129
+ "entitypath": "{base_path}/{version}/named_lists/{pathv1}?{query}",
130
+ "requestSchema": "schema.json",
131
+ "responseSchema": "schema.json",
132
+ "timeout": 0,
133
+ "sendEmpty": false,
134
+ "requestDatatype": "JSON",
135
+ "responseDatatype": "JSON",
136
+ "headers": {},
137
+ "responseObjects": [
138
+ {
139
+ "type": "default",
140
+ "key": "",
141
+ "mockFile": ""
142
+ }
143
+ ]
144
+ },
145
+ {
146
+ "name": "patchNamedListsId",
147
+ "protocol": "REST",
148
+ "method": "PATCH",
149
+ "entitypath": "{base_path}/{version}/named_lists/{pathv1}?{query}",
150
+ "requestSchema": "schema.json",
151
+ "responseSchema": "schema.json",
152
+ "timeout": 0,
153
+ "sendEmpty": false,
154
+ "requestDatatype": "JSON",
155
+ "responseDatatype": "JSON",
156
+ "headers": {},
157
+ "responseObjects": [
158
+ {
159
+ "type": "default",
160
+ "key": "",
161
+ "mockFile": ""
162
+ }
163
+ ]
164
+ },
165
+ {
166
+ "name": "namedListsListNamedListsCSV",
167
+ "protocol": "REST",
168
+ "method": "GET",
169
+ "entitypath": "{base_path}/{version}/named_lists_download?{query}",
170
+ "requestSchema": "schema.json",
171
+ "responseSchema": "schema.json",
172
+ "timeout": 0,
173
+ "sendEmpty": false,
174
+ "sendGetBody": false,
175
+ "requestDatatype": "JSON",
176
+ "responseDatatype": "JSON",
177
+ "headers": {},
178
+ "responseObjects": [
179
+ {
180
+ "type": "default",
181
+ "key": "",
182
+ "mockFile": ""
183
+ }
184
+ ]
185
+ }
186
+ ]
187
+ }