@itentialopensource/adapter-aws_cloudformation 0.1.4 → 0.2.3

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 (84) hide show
  1. package/AUTH.md +53 -0
  2. package/BROKER.md +199 -0
  3. package/CALLS.md +620 -0
  4. package/CHANGELOG.md +6 -22
  5. package/CODE_OF_CONDUCT.md +12 -17
  6. package/CONTRIBUTING.md +3 -148
  7. package/ENHANCE.md +69 -0
  8. package/PROPERTIES.md +641 -0
  9. package/README.md +239 -507
  10. package/SUMMARY.md +9 -0
  11. package/TROUBLESHOOT.md +47 -0
  12. package/adapter.js +4031 -1143
  13. package/adapterBase.js +843 -397
  14. package/changelogs/CHANGELOG.md +48 -0
  15. package/entities/.generic/action.json +110 -5
  16. package/entities/.generic/schema.json +6 -1
  17. package/entities/.system/action.json +1 -1
  18. package/entities/Account/action.json +42 -0
  19. package/entities/Account/mockdatafiles/describePublisher-default.xml +6 -0
  20. package/entities/Account/mockdatafiles/registerPublisher-default.xml +6 -0
  21. package/entities/Account/schema.json +3 -1
  22. package/entities/ChangeSet/action.json +21 -0
  23. package/entities/ChangeSet/mockdatafiles/describeChangeSetHooks-default.xml +6 -0
  24. package/entities/ChangeSet/schema.json +2 -1
  25. package/entities/Organization/action.json +67 -0
  26. package/entities/Organization/mockdatafiles/activateOrganizationsAccess-default.xml +6 -0
  27. package/entities/Organization/mockdatafiles/deactivateOrganizationsAccess-default.xml +6 -0
  28. package/entities/Organization/mockdatafiles/describeOrganizationsAccess-default.xml +8 -0
  29. package/entities/Organization/schema.json +21 -0
  30. package/entities/Resource/action.json +21 -0
  31. package/entities/Resource/mockdatafiles/recordHandlerProgress-default.xml +6 -0
  32. package/entities/Resource/schema.json +2 -1
  33. package/entities/Stack/action.json +42 -0
  34. package/entities/Stack/mockdatafiles/importStacksToStackSet-default.xml +6 -0
  35. package/entities/Stack/mockdatafiles/rollbackStack-default.xml +6 -0
  36. package/entities/Stack/schema.json +3 -1
  37. package/entities/Type/action.json +126 -0
  38. package/entities/Type/mockdatafiles/activateType-default.xml +6 -0
  39. package/entities/Type/mockdatafiles/batchDescribeTypeConfigurations-default.xml +6 -0
  40. package/entities/Type/mockdatafiles/deactivateType-default.xml +6 -0
  41. package/entities/Type/mockdatafiles/publishType-default.xml +6 -0
  42. package/entities/Type/mockdatafiles/setTypeConfiguration-default.xml +6 -0
  43. package/entities/Type/mockdatafiles/testType-default.xml +6 -0
  44. package/entities/Type/schema.json +7 -1
  45. package/error.json +12 -0
  46. package/metadata.json +44 -0
  47. package/package.json +28 -23
  48. package/pronghorn.json +8808 -1451
  49. package/propertiesDecorators.json +14 -0
  50. package/propertiesSchema.json +844 -8
  51. package/refs?service=git-upload-pack +0 -0
  52. package/report/adapter-openapi.json +25034 -0
  53. package/report/adapter-openapi.yaml +22498 -0
  54. package/report/adapterInfo.json +10 -0
  55. package/report/updateReport1691507502657.json +120 -0
  56. package/report/updateReport1692202523445.json +120 -0
  57. package/report/updateReport1694461395239.json +120 -0
  58. package/report/updateReport1698420779793.json +120 -0
  59. package/sampleProperties.json +158 -6
  60. package/storage/metrics.json +1141 -0
  61. package/test/integration/adapterTestBasicGet.js +4 -6
  62. package/test/integration/adapterTestConnectivity.js +91 -42
  63. package/test/integration/adapterTestIntegration.js +541 -108
  64. package/test/unit/adapterBaseTestUnit.js +393 -310
  65. package/test/unit/adapterTestUnit.js +1272 -222
  66. package/utils/adapterInfo.js +206 -0
  67. package/utils/addAuth.js +94 -0
  68. package/utils/artifactize.js +1 -1
  69. package/utils/basicGet.js +1 -14
  70. package/utils/checkMigrate.js +1 -1
  71. package/utils/entitiesToDB.js +179 -0
  72. package/utils/findPath.js +1 -1
  73. package/utils/methodDocumentor.js +273 -0
  74. package/utils/modify.js +14 -16
  75. package/utils/packModificationScript.js +2 -2
  76. package/utils/patches2bundledDeps.js +90 -0
  77. package/utils/pre-commit.sh +5 -0
  78. package/utils/removeHooks.js +20 -0
  79. package/utils/taskMover.js +309 -0
  80. package/utils/tbScript.js +129 -53
  81. package/utils/tbUtils.js +152 -35
  82. package/utils/testRunner.js +17 -17
  83. package/utils/troubleshootingAdapter.js +10 -31
  84. 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
+ ---
@@ -4,7 +4,7 @@
4
4
  "name": "getGenerics",
5
5
  "protocol": "REST",
6
6
  "method": "GET",
7
- "entitypath": "{base_path}/{version}/{pathv1}/{pathv2}/{pathv3}/{pathv4}/{pathv5}/{pathv6}/{pathv7}/{pathv8}/{pathv9}/{pathv10}?{query}",
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
8
  "requestSchema": "schema.json",
9
9
  "responseSchema": "schema.json",
10
10
  "timeout": 0,
@@ -25,7 +25,7 @@
25
25
  "name": "createGeneric",
26
26
  "protocol": "REST",
27
27
  "method": "POST",
28
- "entitypath": "{base_path}/{version}/{pathv1}/{pathv2}/{pathv3}/{pathv4}/{pathv5}/{pathv6}/{pathv7}/{pathv8}/{pathv9}/{pathv10}?{query}",
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
29
  "requestSchema": "schema.json",
30
30
  "responseSchema": "schema.json",
31
31
  "timeout": 0,
@@ -46,7 +46,7 @@
46
46
  "name": "updateGeneric",
47
47
  "protocol": "REST",
48
48
  "method": "PUT",
49
- "entitypath": "{base_path}/{version}/{pathv1}/{pathv2}/{pathv3}/{pathv4}/{pathv5}/{pathv6}/{pathv7}/{pathv8}/{pathv9}/{pathv10}?{query}",
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
50
  "requestSchema": "schema.json",
51
51
  "responseSchema": "schema.json",
52
52
  "timeout": 0,
@@ -67,7 +67,7 @@
67
67
  "name": "patchGeneric",
68
68
  "protocol": "REST",
69
69
  "method": "PATCH",
70
- "entitypath": "{base_path}/{version}/{pathv1}/{pathv2}/{pathv3}/{pathv4}/{pathv5}/{pathv6}/{pathv7}/{pathv8}/{pathv9}/{pathv10}?{query}",
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
71
  "requestSchema": "schema.json",
72
72
  "responseSchema": "schema.json",
73
73
  "timeout": 0,
@@ -88,7 +88,112 @@
88
88
  "name": "deleteGeneric",
89
89
  "protocol": "REST",
90
90
  "method": "DELETE",
91
- "entitypath": "{base_path}/{version}/{pathv1}/{pathv2}/{pathv3}/{pathv4}/{pathv5}/{pathv6}/{pathv7}/{pathv8}/{pathv9}/{pathv10}?{query}",
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}",
92
197
  "requestSchema": "schema.json",
93
198
  "responseSchema": "schema.json",
94
199
  "timeout": 0,
@@ -14,7 +14,12 @@
14
14
  "createGeneric",
15
15
  "updateGeneric",
16
16
  "patchGeneric",
17
- "deleteGeneric"
17
+ "deleteGeneric",
18
+ "getGenericsNoBase",
19
+ "createGenericNoBase",
20
+ "updateGenericNoBase",
21
+ "patchGenericNoBase",
22
+ "deleteGenericNoBase"
18
23
  ],
19
24
  "external_name": "ph_request_type"
20
25
  }
@@ -30,7 +30,7 @@
30
30
  "name": "healthcheck",
31
31
  "protocol": "REST",
32
32
  "method": "GET",
33
- "entitypath": "{base_path}/{version}/healthcheck?{query}",
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
  }
@@ -0,0 +1,6 @@
1
+ <DescribePublisherResponse xmlns="http://internal.amazon.com/coral/com.amazonaws.maestro.service.v20160713/">
2
+ <DescribePublisherResult>
3
+ </DescribePublisherResult>
4
+ <ResponseMetadata>
5
+ </ResponseMetadata>
6
+ </DescribePublisherResponse>
@@ -0,0 +1,6 @@
1
+ <RegisterPublisherResponse xmlns="http://internal.amazon.com/coral/com.amazonaws.maestro.service.v20160713/">
2
+ <RegisterPublisherResult>
3
+ </RegisterPublisherResult>
4
+ <ResponseMetadata>
5
+ </ResponseMetadata>
6
+ </RegisterPublisherResponse>
@@ -12,7 +12,9 @@
12
12
  "enum": [
13
13
  "listImports",
14
14
  "listExports",
15
- "describeAccountLimits"
15
+ "describeAccountLimits",
16
+ "registerPublisher",
17
+ "describePublisher"
16
18
  ],
17
19
  "external_name": "ph_request_type"
18
20
  }
@@ -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,6 @@
1
+ <DescribeChangeSetHooksResponse xmlns="http://internal.amazon.com/coral/com.amazonaws.maestro.service.v20160713/">
2
+ <DescribeChangeSetHooksResult>
3
+ </DescribeChangeSetHooksResult>
4
+ <ResponseMetadata>
5
+ </ResponseMetadata>
6
+ </DescribeChangeSetHooksResponse>
@@ -14,7 +14,8 @@
14
14
  "describeChangeSet",
15
15
  "executeChangeSet",
16
16
  "createChangeSet",
17
- "deleteChangeSet"
17
+ "deleteChangeSet",
18
+ "describeChangeSetHooks"
18
19
  ],
19
20
  "external_name": "ph_request_type"
20
21
  }
@@ -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
  }
@@ -0,0 +1,6 @@
1
+ <RecordHandlerProgressResponse xmlns="http://internal.amazon.com/coral/com.amazonaws.maestro.service.v20160713/">
2
+ <RecordHandlerProgressResult>
3
+ </RecordHandlerProgressResult>
4
+ <ResponseMetadata>
5
+ </ResponseMetadata>
6
+ </RecordHandlerProgressResponse>
@@ -10,7 +10,8 @@
10
10
  "description": "type of request (internal to adapter)",
11
11
  "default": "signalResource",
12
12
  "enum": [
13
- "signalResource"
13
+ "signalResource",
14
+ "recordHandlerProgress"
14
15
  ],
15
16
  "external_name": "ph_request_type"
16
17
  }
@@ -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
  }
@@ -0,0 +1,6 @@
1
+ <ImportStacksToStackSetResponse xmlns="http://internal.amazon.com/coral/com.amazonaws.maestro.service.v20160713/">
2
+ <ImportStacksToStackSetResult>
3
+ </ImportStacksToStackSetResult>
4
+ <ResponseMetadata>
5
+ </ResponseMetadata>
6
+ </ImportStacksToStackSetResponse>
@@ -0,0 +1,6 @@
1
+ <RollbackStackResponse xmlns="http://internal.amazon.com/coral/com.amazonaws.maestro.service.v20160713/">
2
+ <RollbackStackResult>
3
+ </RollbackStackResult>
4
+ <ResponseMetadata>
5
+ </ResponseMetadata>
6
+ </RollbackStackResponse>
@@ -41,7 +41,9 @@
41
41
  "detectStackDrift",
42
42
  "detectStackSetDrift",
43
43
  "getStackPolicy",
44
- "setStackPolicy"
44
+ "setStackPolicy",
45
+ "importStacksToStackSet",
46
+ "rollbackStack"
45
47
  ],
46
48
  "external_name": "ph_request_type"
47
49
  }