@kumologica/sdk 3.2.0-beta13 → 3.2.0-beta15
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/cli/commands/export-commands/cloudformation.js +3 -2
- package/cli/commands/export-commands/utils/validator.js +51 -1
- package/package.json +4 -4
- package/src/app/lib/aws/index.js +103 -347
- package/src/app/ui/editor-client/public/red/red.js +20 -1
- package/src/app/ui/editor-client/public/red/red.min.js +1 -1
- package/src/app/ui/editor-client/src/js/ui/tab-awsDeploy.js +20 -1
- package/src/app/lib/aws/ca-alexa-api.js +0 -29
- package/src/app/lib/aws/cf.js +0 -449
|
@@ -22217,6 +22217,7 @@ RED.view.tools = (function() {
|
|
|
22217
22217
|
<!--option value="lex">Amazon Lex</option-->
|
|
22218
22218
|
<!--option value="alexa">Amazon Alexa</option-->
|
|
22219
22219
|
<option selected value="api">Amazon API Gateway</option>
|
|
22220
|
+
<option selected value="websocket">Amazon WebSocket API</option>
|
|
22220
22221
|
<!--option value="cf">Amazon CloudFront (Lambda@Edge)</option-->
|
|
22221
22222
|
<!--option value="firehose">Amazon Kinesis Data Firehose</option-->
|
|
22222
22223
|
<option disabled>────────────────────</option>
|
|
@@ -23273,6 +23274,16 @@ RED.view.tools = (function() {
|
|
|
23273
23274
|
{ label: 'Resource', key: 'resource', value: '', required: false },
|
|
23274
23275
|
{ label: 'Authorizer Id', key: 'authorizerId', value: '', required: false }
|
|
23275
23276
|
];
|
|
23277
|
+
parameterSets['websocket'] = [
|
|
23278
|
+
{
|
|
23279
|
+
label: 'ApiId',
|
|
23280
|
+
key: 'apiId',
|
|
23281
|
+
value: '',
|
|
23282
|
+
required: true,
|
|
23283
|
+
function: 'attachDataList',
|
|
23284
|
+
},
|
|
23285
|
+
{ label: 'Deployment Stage', key: 'stage', value: '', required: true }
|
|
23286
|
+
];
|
|
23276
23287
|
parameterSets['alb'] = [
|
|
23277
23288
|
{
|
|
23278
23289
|
label: 'App Load Balancer',
|
|
@@ -23322,7 +23333,15 @@ RED.view.tools = (function() {
|
|
|
23322
23333
|
parameterSets['cwevents'] = [
|
|
23323
23334
|
{ label: 'Expression', key: 'expression', value: 'cron()', required: true },
|
|
23324
23335
|
{ label: 'Reference', key: 'reference', value: '' },
|
|
23325
|
-
{ label: 'Name', key: 'name', value: ''}
|
|
23336
|
+
{ label: 'Name', key: 'name', value: ''},
|
|
23337
|
+
{ label: 'State',
|
|
23338
|
+
key: 'state',
|
|
23339
|
+
value: '',
|
|
23340
|
+
list: [
|
|
23341
|
+
{ k: 'ENABLED', v: 'ENABLED' },
|
|
23342
|
+
{ k: 'DISABLED', v: 'DISABLED' }
|
|
23343
|
+
],
|
|
23344
|
+
},
|
|
23326
23345
|
];
|
|
23327
23346
|
//parameterSets['cwlogs'] = [
|
|
23328
23347
|
// {
|