@itentialopensource/adapter-aws_cloudformation 0.1.3 → 0.2.2
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.
- package/.eslintignore +1 -0
- package/AUTH.md +53 -0
- package/BROKER.md +199 -0
- package/CALLS.md +620 -0
- package/CHANGELOG.md +3 -18
- package/CODE_OF_CONDUCT.md +12 -17
- package/CONTRIBUTING.md +3 -148
- package/ENHANCE.md +69 -0
- package/PROPERTIES.md +641 -0
- package/README.md +240 -423
- package/SUMMARY.md +9 -0
- package/TROUBLESHOOT.md +47 -0
- package/adapter.js +4788 -1315
- package/adapterBase.js +979 -278
- package/changelogs/CHANGELOG.md +48 -0
- package/entities/.generic/action.json +214 -0
- package/entities/.generic/schema.json +28 -0
- package/entities/.system/action.json +1 -1
- package/entities/Account/action.json +42 -0
- package/entities/Account/mockdatafiles/describePublisher-default.xml +6 -0
- package/entities/Account/mockdatafiles/registerPublisher-default.xml +6 -0
- package/entities/Account/schema.json +3 -1
- package/entities/ChangeSet/action.json +21 -0
- package/entities/ChangeSet/mockdatafiles/describeChangeSetHooks-default.xml +6 -0
- package/entities/ChangeSet/schema.json +2 -1
- package/entities/Organization/action.json +67 -0
- package/entities/Organization/mockdatafiles/activateOrganizationsAccess-default.xml +6 -0
- package/entities/Organization/mockdatafiles/deactivateOrganizationsAccess-default.xml +6 -0
- package/entities/Organization/mockdatafiles/describeOrganizationsAccess-default.xml +8 -0
- package/entities/Organization/schema.json +21 -0
- package/entities/Resource/action.json +21 -0
- package/entities/Resource/mockdatafiles/recordHandlerProgress-default.xml +6 -0
- package/entities/Resource/schema.json +2 -1
- package/entities/Stack/action.json +42 -0
- package/entities/Stack/mockdatafiles/importStacksToStackSet-default.xml +6 -0
- package/entities/Stack/mockdatafiles/rollbackStack-default.xml +6 -0
- package/entities/Stack/schema.json +3 -1
- package/entities/Type/action.json +126 -0
- package/entities/Type/mockdatafiles/activateType-default.xml +6 -0
- package/entities/Type/mockdatafiles/batchDescribeTypeConfigurations-default.xml +6 -0
- package/entities/Type/mockdatafiles/deactivateType-default.xml +6 -0
- package/entities/Type/mockdatafiles/publishType-default.xml +6 -0
- package/entities/Type/mockdatafiles/setTypeConfiguration-default.xml +6 -0
- package/entities/Type/mockdatafiles/testType-default.xml +6 -0
- package/entities/Type/schema.json +7 -1
- package/error.json +12 -0
- package/metadata.json +44 -0
- package/package.json +41 -20
- package/pronghorn.json +8996 -1335
- package/propertiesDecorators.json +14 -0
- package/propertiesSchema.json +877 -9
- package/refs?service=git-upload-pack +0 -0
- package/report/adapter-openapi.json +25034 -0
- package/report/adapter-openapi.yaml +22498 -0
- package/report/adapterInfo.json +10 -0
- package/report/updateReport1614638977739.json +95 -0
- package/report/updateReport1691507502657.json +120 -0
- package/report/updateReport1692202523445.json +120 -0
- package/report/updateReport1694461395239.json +120 -0
- package/report/updateReport1698420779793.json +120 -0
- package/sampleProperties.json +166 -9
- package/storage/metrics.json +1141 -0
- package/test/integration/adapterTestBasicGet.js +83 -0
- package/test/integration/adapterTestConnectivity.js +142 -0
- package/test/integration/adapterTestIntegration.js +541 -103
- package/test/unit/adapterBaseTestUnit.js +1024 -0
- package/test/unit/adapterTestUnit.js +1273 -218
- package/utils/adapterInfo.js +206 -0
- package/utils/addAuth.js +94 -0
- package/utils/artifactize.js +1 -1
- package/utils/basicGet.js +50 -0
- package/utils/checkMigrate.js +63 -0
- package/utils/entitiesToDB.js +179 -0
- package/utils/findPath.js +74 -0
- package/utils/methodDocumentor.js +273 -0
- package/utils/modify.js +152 -0
- package/utils/packModificationScript.js +2 -2
- package/utils/patches2bundledDeps.js +90 -0
- package/utils/pre-commit.sh +5 -0
- package/utils/removeHooks.js +20 -0
- package/utils/taskMover.js +309 -0
- package/utils/tbScript.js +239 -0
- package/utils/tbUtils.js +489 -0
- package/utils/testRunner.js +17 -17
- package/utils/troubleshootingAdapter.js +193 -0
- package/img/adapter.jpg +0 -0
- package/workflows/README.md +0 -3
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
|
|
2
|
+
## 0.2.1 [11-20-2023]
|
|
3
|
+
|
|
4
|
+
* Revert "Merge branch 'minor/ADAPT-2792' into 'master'"
|
|
5
|
+
|
|
6
|
+
See merge request itentialopensource/adapters/cloud/adapter-aws_cloudformation!6
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
## 0.2.0 [08-11-2023]
|
|
11
|
+
|
|
12
|
+
* Add missing endpoints
|
|
13
|
+
|
|
14
|
+
See merge request itentialopensource/adapters/cloud/adapter-aws_cloudformation!3
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
18
|
+
## 0.1.4 [03-01-2021]
|
|
19
|
+
|
|
20
|
+
* migrate to the latest adapter foundation
|
|
21
|
+
|
|
22
|
+
See merge request itentialopensource/adapters/cloud/adapter-aws_cloudformation!2
|
|
23
|
+
|
|
24
|
+
---
|
|
25
|
+
|
|
26
|
+
## 0.1.3 [07-06-2020]
|
|
27
|
+
|
|
28
|
+
* Migration
|
|
29
|
+
|
|
30
|
+
See merge request itentialopensource/adapters/cloud/adapter-aws_cloudformation!1
|
|
31
|
+
|
|
32
|
+
---
|
|
33
|
+
|
|
34
|
+
## 0.1.2 [07-05-2020]
|
|
35
|
+
|
|
36
|
+
* Migration
|
|
37
|
+
|
|
38
|
+
See merge request itentialopensource/adapters/cloud/adapter-aws_cloudformation!1
|
|
39
|
+
|
|
40
|
+
---
|
|
41
|
+
|
|
42
|
+
## 0.1.1 [02-25-2020]
|
|
43
|
+
|
|
44
|
+
* Bug fixes and performance improvements
|
|
45
|
+
|
|
46
|
+
See commit f7b7fbc
|
|
47
|
+
|
|
48
|
+
---
|
|
@@ -0,0 +1,214 @@
|
|
|
1
|
+
{
|
|
2
|
+
"actions": [
|
|
3
|
+
{
|
|
4
|
+
"name": "getGenerics",
|
|
5
|
+
"protocol": "REST",
|
|
6
|
+
"method": "GET",
|
|
7
|
+
"entitypath": "{base_path}/{version}/{pathv1}/{pathv2}/{pathv3}/{pathv4}/{pathv5}/{pathv6}/{pathv7}/{pathv8}/{pathv9}/{pathv10}/{pathv11}/{pathv12}/{pathv13}/{pathv14}/{pathv15}/{pathv16}/{pathv17}/{pathv18}/{pathv19}/{pathv20}?{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": "createGeneric",
|
|
26
|
+
"protocol": "REST",
|
|
27
|
+
"method": "POST",
|
|
28
|
+
"entitypath": "{base_path}/{version}/{pathv1}/{pathv2}/{pathv3}/{pathv4}/{pathv5}/{pathv6}/{pathv7}/{pathv8}/{pathv9}/{pathv10}/{pathv11}/{pathv12}/{pathv13}/{pathv14}/{pathv15}/{pathv16}/{pathv17}/{pathv18}/{pathv19}/{pathv20}?{query}",
|
|
29
|
+
"requestSchema": "schema.json",
|
|
30
|
+
"responseSchema": "schema.json",
|
|
31
|
+
"timeout": 0,
|
|
32
|
+
"sendEmpty": false,
|
|
33
|
+
"sendGetBody": false,
|
|
34
|
+
"requestDatatype": "JSON",
|
|
35
|
+
"responseDatatype": "JSON",
|
|
36
|
+
"headers": {},
|
|
37
|
+
"responseObjects": [
|
|
38
|
+
{
|
|
39
|
+
"type": "default",
|
|
40
|
+
"key": "",
|
|
41
|
+
"mockFile": ""
|
|
42
|
+
}
|
|
43
|
+
]
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"name": "updateGeneric",
|
|
47
|
+
"protocol": "REST",
|
|
48
|
+
"method": "PUT",
|
|
49
|
+
"entitypath": "{base_path}/{version}/{pathv1}/{pathv2}/{pathv3}/{pathv4}/{pathv5}/{pathv6}/{pathv7}/{pathv8}/{pathv9}/{pathv10}/{pathv11}/{pathv12}/{pathv13}/{pathv14}/{pathv15}/{pathv16}/{pathv17}/{pathv18}/{pathv19}/{pathv20}?{query}",
|
|
50
|
+
"requestSchema": "schema.json",
|
|
51
|
+
"responseSchema": "schema.json",
|
|
52
|
+
"timeout": 0,
|
|
53
|
+
"sendEmpty": false,
|
|
54
|
+
"sendGetBody": false,
|
|
55
|
+
"requestDatatype": "JSON",
|
|
56
|
+
"responseDatatype": "JSON",
|
|
57
|
+
"headers": {},
|
|
58
|
+
"responseObjects": [
|
|
59
|
+
{
|
|
60
|
+
"type": "default",
|
|
61
|
+
"key": "",
|
|
62
|
+
"mockFile": ""
|
|
63
|
+
}
|
|
64
|
+
]
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"name": "patchGeneric",
|
|
68
|
+
"protocol": "REST",
|
|
69
|
+
"method": "PATCH",
|
|
70
|
+
"entitypath": "{base_path}/{version}/{pathv1}/{pathv2}/{pathv3}/{pathv4}/{pathv5}/{pathv6}/{pathv7}/{pathv8}/{pathv9}/{pathv10}/{pathv11}/{pathv12}/{pathv13}/{pathv14}/{pathv15}/{pathv16}/{pathv17}/{pathv18}/{pathv19}/{pathv20}?{query}",
|
|
71
|
+
"requestSchema": "schema.json",
|
|
72
|
+
"responseSchema": "schema.json",
|
|
73
|
+
"timeout": 0,
|
|
74
|
+
"sendEmpty": false,
|
|
75
|
+
"sendGetBody": false,
|
|
76
|
+
"requestDatatype": "JSON",
|
|
77
|
+
"responseDatatype": "JSON",
|
|
78
|
+
"headers": {},
|
|
79
|
+
"responseObjects": [
|
|
80
|
+
{
|
|
81
|
+
"type": "default",
|
|
82
|
+
"key": "",
|
|
83
|
+
"mockFile": ""
|
|
84
|
+
}
|
|
85
|
+
]
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"name": "deleteGeneric",
|
|
89
|
+
"protocol": "REST",
|
|
90
|
+
"method": "DELETE",
|
|
91
|
+
"entitypath": "{base_path}/{version}/{pathv1}/{pathv2}/{pathv3}/{pathv4}/{pathv5}/{pathv6}/{pathv7}/{pathv8}/{pathv9}/{pathv10}/{pathv11}/{pathv12}/{pathv13}/{pathv14}/{pathv15}/{pathv16}/{pathv17}/{pathv18}/{pathv19}/{pathv20}?{query}",
|
|
92
|
+
"requestSchema": "schema.json",
|
|
93
|
+
"responseSchema": "schema.json",
|
|
94
|
+
"timeout": 0,
|
|
95
|
+
"sendEmpty": false,
|
|
96
|
+
"sendGetBody": false,
|
|
97
|
+
"requestDatatype": "JSON",
|
|
98
|
+
"responseDatatype": "JSON",
|
|
99
|
+
"headers": {},
|
|
100
|
+
"responseObjects": [
|
|
101
|
+
{
|
|
102
|
+
"type": "default",
|
|
103
|
+
"key": "",
|
|
104
|
+
"mockFile": ""
|
|
105
|
+
}
|
|
106
|
+
]
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
"name": "getGenericsNoBase",
|
|
110
|
+
"protocol": "REST",
|
|
111
|
+
"method": "GET",
|
|
112
|
+
"entitypath": "/{pathv1}/{pathv2}/{pathv3}/{pathv4}/{pathv5}/{pathv6}/{pathv7}/{pathv8}/{pathv9}/{pathv10}/{pathv11}/{pathv12}/{pathv13}/{pathv14}/{pathv15}/{pathv16}/{pathv17}/{pathv18}/{pathv19}/{pathv20}?{query}",
|
|
113
|
+
"requestSchema": "schema.json",
|
|
114
|
+
"responseSchema": "schema.json",
|
|
115
|
+
"timeout": 0,
|
|
116
|
+
"sendEmpty": false,
|
|
117
|
+
"sendGetBody": false,
|
|
118
|
+
"requestDatatype": "JSON",
|
|
119
|
+
"responseDatatype": "JSON",
|
|
120
|
+
"headers": {},
|
|
121
|
+
"responseObjects": [
|
|
122
|
+
{
|
|
123
|
+
"type": "default",
|
|
124
|
+
"key": "",
|
|
125
|
+
"mockFile": ""
|
|
126
|
+
}
|
|
127
|
+
]
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
"name": "createGenericNoBase",
|
|
131
|
+
"protocol": "REST",
|
|
132
|
+
"method": "POST",
|
|
133
|
+
"entitypath": "/{pathv1}/{pathv2}/{pathv3}/{pathv4}/{pathv5}/{pathv6}/{pathv7}/{pathv8}/{pathv9}/{pathv10}/{pathv11}/{pathv12}/{pathv13}/{pathv14}/{pathv15}/{pathv16}/{pathv17}/{pathv18}/{pathv19}/{pathv20}?{query}",
|
|
134
|
+
"requestSchema": "schema.json",
|
|
135
|
+
"responseSchema": "schema.json",
|
|
136
|
+
"timeout": 0,
|
|
137
|
+
"sendEmpty": false,
|
|
138
|
+
"sendGetBody": false,
|
|
139
|
+
"requestDatatype": "JSON",
|
|
140
|
+
"responseDatatype": "JSON",
|
|
141
|
+
"headers": {},
|
|
142
|
+
"responseObjects": [
|
|
143
|
+
{
|
|
144
|
+
"type": "default",
|
|
145
|
+
"key": "",
|
|
146
|
+
"mockFile": ""
|
|
147
|
+
}
|
|
148
|
+
]
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
"name": "updateGenericNoBase",
|
|
152
|
+
"protocol": "REST",
|
|
153
|
+
"method": "PUT",
|
|
154
|
+
"entitypath": "/{pathv1}/{pathv2}/{pathv3}/{pathv4}/{pathv5}/{pathv6}/{pathv7}/{pathv8}/{pathv9}/{pathv10}/{pathv11}/{pathv12}/{pathv13}/{pathv14}/{pathv15}/{pathv16}/{pathv17}/{pathv18}/{pathv19}/{pathv20}?{query}",
|
|
155
|
+
"requestSchema": "schema.json",
|
|
156
|
+
"responseSchema": "schema.json",
|
|
157
|
+
"timeout": 0,
|
|
158
|
+
"sendEmpty": false,
|
|
159
|
+
"sendGetBody": false,
|
|
160
|
+
"requestDatatype": "JSON",
|
|
161
|
+
"responseDatatype": "JSON",
|
|
162
|
+
"headers": {},
|
|
163
|
+
"responseObjects": [
|
|
164
|
+
{
|
|
165
|
+
"type": "default",
|
|
166
|
+
"key": "",
|
|
167
|
+
"mockFile": ""
|
|
168
|
+
}
|
|
169
|
+
]
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
"name": "patchGenericNoBase",
|
|
173
|
+
"protocol": "REST",
|
|
174
|
+
"method": "PATCH",
|
|
175
|
+
"entitypath": "/{pathv1}/{pathv2}/{pathv3}/{pathv4}/{pathv5}/{pathv6}/{pathv7}/{pathv8}/{pathv9}/{pathv10}/{pathv11}/{pathv12}/{pathv13}/{pathv14}/{pathv15}/{pathv16}/{pathv17}/{pathv18}/{pathv19}/{pathv20}?{query}",
|
|
176
|
+
"requestSchema": "schema.json",
|
|
177
|
+
"responseSchema": "schema.json",
|
|
178
|
+
"timeout": 0,
|
|
179
|
+
"sendEmpty": false,
|
|
180
|
+
"sendGetBody": false,
|
|
181
|
+
"requestDatatype": "JSON",
|
|
182
|
+
"responseDatatype": "JSON",
|
|
183
|
+
"headers": {},
|
|
184
|
+
"responseObjects": [
|
|
185
|
+
{
|
|
186
|
+
"type": "default",
|
|
187
|
+
"key": "",
|
|
188
|
+
"mockFile": ""
|
|
189
|
+
}
|
|
190
|
+
]
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
"name": "deleteGenericNoBase",
|
|
194
|
+
"protocol": "REST",
|
|
195
|
+
"method": "DELETE",
|
|
196
|
+
"entitypath": "/{pathv1}/{pathv2}/{pathv3}/{pathv4}/{pathv5}/{pathv6}/{pathv7}/{pathv8}/{pathv9}/{pathv10}/{pathv11}/{pathv12}/{pathv13}/{pathv14}/{pathv15}/{pathv16}/{pathv17}/{pathv18}/{pathv19}/{pathv20}?{query}",
|
|
197
|
+
"requestSchema": "schema.json",
|
|
198
|
+
"responseSchema": "schema.json",
|
|
199
|
+
"timeout": 0,
|
|
200
|
+
"sendEmpty": false,
|
|
201
|
+
"sendGetBody": false,
|
|
202
|
+
"requestDatatype": "JSON",
|
|
203
|
+
"responseDatatype": "JSON",
|
|
204
|
+
"headers": {},
|
|
205
|
+
"responseObjects": [
|
|
206
|
+
{
|
|
207
|
+
"type": "default",
|
|
208
|
+
"key": "",
|
|
209
|
+
"mockFile": ""
|
|
210
|
+
}
|
|
211
|
+
]
|
|
212
|
+
}
|
|
213
|
+
]
|
|
214
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$id": "generic_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": "getGeneric",
|
|
12
|
+
"enum": [
|
|
13
|
+
"getGenerics",
|
|
14
|
+
"createGeneric",
|
|
15
|
+
"updateGeneric",
|
|
16
|
+
"patchGeneric",
|
|
17
|
+
"deleteGeneric",
|
|
18
|
+
"getGenericsNoBase",
|
|
19
|
+
"createGenericNoBase",
|
|
20
|
+
"updateGenericNoBase",
|
|
21
|
+
"patchGenericNoBase",
|
|
22
|
+
"deleteGenericNoBase"
|
|
23
|
+
],
|
|
24
|
+
"external_name": "ph_request_type"
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
"definitions": {}
|
|
28
|
+
}
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"name": "healthcheck",
|
|
31
31
|
"protocol": "REST",
|
|
32
32
|
"method": "GET",
|
|
33
|
-
"entitypath": "{base_path}/{version}
|
|
33
|
+
"entitypath": "{base_path}/{version}?{query}",
|
|
34
34
|
"requestSchema": "schema.json",
|
|
35
35
|
"responseSchema": "schema.json",
|
|
36
36
|
"timeout": 0,
|
|
@@ -62,6 +62,48 @@
|
|
|
62
62
|
"mockFile": "mockdatafiles/describeAccountLimits-default.xml"
|
|
63
63
|
}
|
|
64
64
|
]
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"name": "registerPublisher",
|
|
68
|
+
"protocol": "REST",
|
|
69
|
+
"method": "GET",
|
|
70
|
+
"entitypath": "{base_path}/{version}?{query}",
|
|
71
|
+
"requestSchema": "schema.json",
|
|
72
|
+
"responseSchema": "schema.json",
|
|
73
|
+
"timeout": 0,
|
|
74
|
+
"sendEmpty": false,
|
|
75
|
+
"sendGetBody": false,
|
|
76
|
+
"requestDatatype": "URLENCODE",
|
|
77
|
+
"responseDatatype": "XML2JSON",
|
|
78
|
+
"headers": {},
|
|
79
|
+
"responseObjects": [
|
|
80
|
+
{
|
|
81
|
+
"type": "default",
|
|
82
|
+
"key": "",
|
|
83
|
+
"mockFile": "mockdatafiles/registerPublisher-default.xml"
|
|
84
|
+
}
|
|
85
|
+
]
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"name": "describePublisher",
|
|
89
|
+
"protocol": "REST",
|
|
90
|
+
"method": "GET",
|
|
91
|
+
"entitypath": "{base_path}/{version}?{query}",
|
|
92
|
+
"requestSchema": "schema.json",
|
|
93
|
+
"responseSchema": "schema.json",
|
|
94
|
+
"timeout": 0,
|
|
95
|
+
"sendEmpty": false,
|
|
96
|
+
"sendGetBody": false,
|
|
97
|
+
"requestDatatype": "URLENCODE",
|
|
98
|
+
"responseDatatype": "XML2JSON",
|
|
99
|
+
"headers": {},
|
|
100
|
+
"responseObjects": [
|
|
101
|
+
{
|
|
102
|
+
"type": "default",
|
|
103
|
+
"key": "",
|
|
104
|
+
"mockFile": "mockdatafiles/describePublisher-default.xml"
|
|
105
|
+
}
|
|
106
|
+
]
|
|
65
107
|
}
|
|
66
108
|
]
|
|
67
109
|
}
|
|
@@ -104,6 +104,27 @@
|
|
|
104
104
|
"mockFile": "mockdatafiles/deleteChangeSet-default.xml"
|
|
105
105
|
}
|
|
106
106
|
]
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
"name": "describeChangeSetHooks",
|
|
110
|
+
"protocol": "REST",
|
|
111
|
+
"method": "GET",
|
|
112
|
+
"entitypath": "{base_path}/{version}?{query}",
|
|
113
|
+
"requestSchema": "schema.json",
|
|
114
|
+
"responseSchema": "schema.json",
|
|
115
|
+
"timeout": 0,
|
|
116
|
+
"sendEmpty": false,
|
|
117
|
+
"sendGetBody": false,
|
|
118
|
+
"requestDatatype": "URLENCODE",
|
|
119
|
+
"responseDatatype": "XML2JSON",
|
|
120
|
+
"headers": {},
|
|
121
|
+
"responseObjects": [
|
|
122
|
+
{
|
|
123
|
+
"type": "default",
|
|
124
|
+
"key": "",
|
|
125
|
+
"mockFile": "mockdatafiles/describeChangeSetHooks-default.xml"
|
|
126
|
+
}
|
|
127
|
+
]
|
|
107
128
|
}
|
|
108
129
|
]
|
|
109
130
|
}
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
{
|
|
2
|
+
"actions": [
|
|
3
|
+
{
|
|
4
|
+
"name": "activateOrganizationsAccess",
|
|
5
|
+
"protocol": "REST",
|
|
6
|
+
"method": "GET",
|
|
7
|
+
"entitypath": "{base_path}/{version}?{query}",
|
|
8
|
+
"requestSchema": "schema.json",
|
|
9
|
+
"responseSchema": "schema.json",
|
|
10
|
+
"timeout": 0,
|
|
11
|
+
"sendEmpty": false,
|
|
12
|
+
"sendGetBody": false,
|
|
13
|
+
"requestDatatype": "URLENCODE",
|
|
14
|
+
"responseDatatype": "XML2JSON",
|
|
15
|
+
"headers": {},
|
|
16
|
+
"responseObjects": [
|
|
17
|
+
{
|
|
18
|
+
"type": "default",
|
|
19
|
+
"key": "",
|
|
20
|
+
"mockFile": "mockdatafiles/activateOrganizationsAccess-default.xml"
|
|
21
|
+
}
|
|
22
|
+
]
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"name": "deactivateOrganizationsAccess",
|
|
26
|
+
"protocol": "REST",
|
|
27
|
+
"method": "GET",
|
|
28
|
+
"entitypath": "{base_path}/{version}?{query}",
|
|
29
|
+
"requestSchema": "schema.json",
|
|
30
|
+
"responseSchema": "schema.json",
|
|
31
|
+
"timeout": 0,
|
|
32
|
+
"sendEmpty": false,
|
|
33
|
+
"sendGetBody": false,
|
|
34
|
+
"requestDatatype": "URLENCODE",
|
|
35
|
+
"responseDatatype": "XML2JSON",
|
|
36
|
+
"headers": {},
|
|
37
|
+
"responseObjects": [
|
|
38
|
+
{
|
|
39
|
+
"type": "default",
|
|
40
|
+
"key": "",
|
|
41
|
+
"mockFile": "mockdatafiles/deactivateOrganizationsAccess-default.xml"
|
|
42
|
+
}
|
|
43
|
+
]
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"name": "describeOrganizationsAccess",
|
|
47
|
+
"protocol": "REST",
|
|
48
|
+
"method": "GET",
|
|
49
|
+
"entitypath": "{base_path}/{version}?{query}",
|
|
50
|
+
"requestSchema": "schema.json",
|
|
51
|
+
"responseSchema": "schema.json",
|
|
52
|
+
"timeout": 0,
|
|
53
|
+
"sendEmpty": false,
|
|
54
|
+
"sendGetBody": false,
|
|
55
|
+
"requestDatatype": "URLENCODE",
|
|
56
|
+
"responseDatatype": "XML2JSON",
|
|
57
|
+
"headers": {},
|
|
58
|
+
"responseObjects": [
|
|
59
|
+
{
|
|
60
|
+
"type": "default",
|
|
61
|
+
"key": "",
|
|
62
|
+
"mockFile": "mockdatafiles/describeOrganizationsAccess-default.xml"
|
|
63
|
+
}
|
|
64
|
+
]
|
|
65
|
+
}
|
|
66
|
+
]
|
|
67
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<ActivateOrganizationsAccessResponse xmlns="http://internal.amazon.com/coral/com.amazonaws.maestro.service.v20160713/">
|
|
2
|
+
<ActivateOrganizationsAccessResult/>
|
|
3
|
+
<ResponseMetadata>
|
|
4
|
+
<RequestId>f2038c6a-2ef6-45d0-a045-f2b4d15647ba</RequestId>
|
|
5
|
+
</ResponseMetadata>
|
|
6
|
+
</ActivateOrganizationsAccessResponse>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<DeactivateOrganizationsAccessResponse xmlns="http://internal.amazon.com/coral/com.amazonaws.maestro.service.v20160713/">
|
|
2
|
+
<DeactivateOrganizationsAccessResult/>
|
|
3
|
+
<ResponseMetadata>
|
|
4
|
+
<RequestId>f2038c6a-2ef6-45d0-a045-f2b4d15647ba</RequestId>
|
|
5
|
+
</ResponseMetadata>
|
|
6
|
+
</DeactivateOrganizationsAccessResponse>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<DescribeOrganizationsAccessResponse xmlns="http://internal.amazon.com/coral/com.amazonaws.maestro.service.v20160713/">
|
|
2
|
+
<DescribeOrganizationsAccessResult>
|
|
3
|
+
<Status>ENABLED</Status>
|
|
4
|
+
</DescribeOrganizationsAccessResult>
|
|
5
|
+
<ResponseMetadata>
|
|
6
|
+
<RequestId>240f1cd7-48d6-41a6-b61b-65c7c81893e9</RequestId>
|
|
7
|
+
</ResponseMetadata>
|
|
8
|
+
</DescribeOrganizationsAccessResponse>
|
|
@@ -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": "activateOrganizationsAccess",
|
|
12
|
+
"enum": [
|
|
13
|
+
"activateOrganizationsAccess",
|
|
14
|
+
"deactivateOrganizationsAccess",
|
|
15
|
+
"describeOrganizationsAccess"
|
|
16
|
+
],
|
|
17
|
+
"external_name": "ph_request_type"
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"definitions": {}
|
|
21
|
+
}
|
|
@@ -20,6 +20,27 @@
|
|
|
20
20
|
"mockFile": "mockdatafiles/signalResource-default.xml"
|
|
21
21
|
}
|
|
22
22
|
]
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"name": "recordHandlerProgress",
|
|
26
|
+
"protocol": "REST",
|
|
27
|
+
"method": "GET",
|
|
28
|
+
"entitypath": "{base_path}/{version}?{query}",
|
|
29
|
+
"requestSchema": "schema.json",
|
|
30
|
+
"responseSchema": "schema.json",
|
|
31
|
+
"timeout": 0,
|
|
32
|
+
"sendEmpty": false,
|
|
33
|
+
"sendGetBody": false,
|
|
34
|
+
"requestDatatype": "URLENCODE",
|
|
35
|
+
"responseDatatype": "XML2JSON",
|
|
36
|
+
"headers": {},
|
|
37
|
+
"responseObjects": [
|
|
38
|
+
{
|
|
39
|
+
"type": "default",
|
|
40
|
+
"key": "",
|
|
41
|
+
"mockFile": "mockdatafiles/recordHandlerProgress-default.xml"
|
|
42
|
+
}
|
|
43
|
+
]
|
|
23
44
|
}
|
|
24
45
|
]
|
|
25
46
|
}
|
|
@@ -671,6 +671,48 @@
|
|
|
671
671
|
"mockFile": "mockdatafiles/setStackPolicy-default.xml"
|
|
672
672
|
}
|
|
673
673
|
]
|
|
674
|
+
},
|
|
675
|
+
{
|
|
676
|
+
"name": "importStacksToStackSet",
|
|
677
|
+
"protocol": "REST",
|
|
678
|
+
"method": "GET",
|
|
679
|
+
"entitypath": "{base_path}/{version}?{query}",
|
|
680
|
+
"requestSchema": "schema.json",
|
|
681
|
+
"responseSchema": "schema.json",
|
|
682
|
+
"timeout": 0,
|
|
683
|
+
"sendEmpty": false,
|
|
684
|
+
"sendGetBody": false,
|
|
685
|
+
"requestDatatype": "URLENCODE",
|
|
686
|
+
"responseDatatype": "XML2JSON",
|
|
687
|
+
"headers": {},
|
|
688
|
+
"responseObjects": [
|
|
689
|
+
{
|
|
690
|
+
"type": "default",
|
|
691
|
+
"key": "",
|
|
692
|
+
"mockFile": "mockdatafiles/importStacksToStackSet-default.xml"
|
|
693
|
+
}
|
|
694
|
+
]
|
|
695
|
+
},
|
|
696
|
+
{
|
|
697
|
+
"name": "rollbackStack",
|
|
698
|
+
"protocol": "REST",
|
|
699
|
+
"method": "GET",
|
|
700
|
+
"entitypath": "{base_path}/{version}?{query}",
|
|
701
|
+
"requestSchema": "schema.json",
|
|
702
|
+
"responseSchema": "schema.json",
|
|
703
|
+
"timeout": 0,
|
|
704
|
+
"sendEmpty": false,
|
|
705
|
+
"sendGetBody": false,
|
|
706
|
+
"requestDatatype": "URLENCODE",
|
|
707
|
+
"responseDatatype": "XML2JSON",
|
|
708
|
+
"headers": {},
|
|
709
|
+
"responseObjects": [
|
|
710
|
+
{
|
|
711
|
+
"type": "default",
|
|
712
|
+
"key": "",
|
|
713
|
+
"mockFile": "mockdatafiles/rollbackStack-default.xml"
|
|
714
|
+
}
|
|
715
|
+
]
|
|
674
716
|
}
|
|
675
717
|
]
|
|
676
718
|
}
|