Skip to content

Commit

Permalink
syncing up to 4a6dea824a73cfb6173d305348ad8d408d596b5b
Browse files Browse the repository at this point in the history
Co-authored-by: Joey Greco <[email protected]>
  • Loading branch information
superblocksadmin and joeyagreco committed Sep 9, 2024
1 parent bddd973 commit c7bbcba
Show file tree
Hide file tree
Showing 13 changed files with 582 additions and 574 deletions.
126 changes: 63 additions & 63 deletions types/api/api/v1/service.swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -1769,6 +1769,14 @@
}
}
},
"PluginGet": {
"type": "object",
"properties": {
"key": {
"type": "string"
}
}
},
"PluginHdel": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -1879,6 +1887,58 @@
}
}
},
"PluginKinesisGet": {
"type": "object",
"properties": {
"shardId": {
"type": "string"
},
"shardIteratorType": {
"$ref": "#/definitions/PluginShardIteratorType"
},
"limit": {
"type": "integer",
"format": "int32"
},
"pollingCooldownMs": {
"type": "integer",
"format": "int32",
"title": "not required by kinesis, but something we want to allow users to configure\nthis is the amount of time in milliseconds between asking kinesis to get records when polling in a loop"
},
"startingSequenceNumber": {
"type": "string",
"title": "these 2 are required depending on the shard iterator type selected"
},
"timestamp": {
"type": "string"
},
"streamName": {
"type": "string"
},
"streamArn": {
"type": "string"
}
},
"title": "https://docs.aws.amazon.com/kinesis/latest/APIReference/API_GetRecords.html\nwe will need to get a shard iterator first\nhttps://docs.aws.amazon.com/kinesis/latest/APIReference/API_GetShardIterator.html"
},
"PluginKinesisPut": {
"type": "object",
"properties": {
"data": {
"type": "string"
},
"partitionKey": {
"type": "string"
},
"streamName": {
"type": "string"
},
"streamArn": {
"type": "string"
}
},
"title": "https://docs.aws.amazon.com/kinesis/latest/APIReference/API_PutRecord.html\nhttps://docs.aws.amazon.com/kinesis/latest/APIReference/API_PutRecords.html"
},
"PluginLindex": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -2098,24 +2158,6 @@
}
}
},
"PluginPut": {
"type": "object",
"properties": {
"data": {
"type": "string"
},
"partitionKey": {
"type": "string"
},
"streamName": {
"type": "string"
},
"streamArn": {
"type": "string"
}
},
"title": "https://docs.aws.amazon.com/kinesis/latest/APIReference/API_PutRecord.html\nhttps://docs.aws.amazon.com/kinesis/latest/APIReference/API_PutRecords.html"
},
"PluginQuery": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -2322,7 +2364,7 @@
"type": "object",
"properties": {
"get": {
"$ref": "#/definitions/pluginsredisv1PluginGet"
"$ref": "#/definitions/PluginGet"
},
"set": {
"$ref": "#/definitions/PluginSet"
Expand Down Expand Up @@ -3689,50 +3731,16 @@
"$ref": "#/definitions/PluginKinesisConnection"
},
"put": {
"$ref": "#/definitions/PluginPut"
"$ref": "#/definitions/PluginKinesisPut"
},
"get": {
"$ref": "#/definitions/pluginskinesisv1PluginGet"
"$ref": "#/definitions/PluginKinesisGet"
},
"dynamicWorkflowConfiguration": {
"$ref": "#/definitions/v1DynamicWorkflowConfiguration"
}
}
},
"pluginskinesisv1PluginGet": {
"type": "object",
"properties": {
"shardId": {
"type": "string"
},
"shardIteratorType": {
"$ref": "#/definitions/PluginShardIteratorType"
},
"limit": {
"type": "integer",
"format": "int32"
},
"pollingCooldownMs": {
"type": "integer",
"format": "int32",
"title": "not required by kinesis, but something we want to allow users to configure\nthis is the amount of time in milliseconds between asking kinesis to get records when polling in a loop"
},
"startingSequenceNumber": {
"type": "string",
"title": "these 2 are required depending on the shard iterator type selected"
},
"timestamp": {
"type": "string"
},
"streamName": {
"type": "string"
},
"streamArn": {
"type": "string"
}
},
"title": "https://docs.aws.amazon.com/kinesis/latest/APIReference/API_GetRecords.html\nwe will need to get a shard iterator first\nhttps://docs.aws.amazon.com/kinesis/latest/APIReference/API_GetShardIterator.html"
},
"pluginsmariadbv1MappedColumns": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -4341,14 +4349,6 @@
},
"title": "NOTE: (joey) this does not have to be a separate message right now\n1. this follows the \"connection\" pattern\n2. this lets us easily add shared connection fields in the future"
},
"pluginsredisv1PluginGet": {
"type": "object",
"properties": {
"key": {
"type": "string"
}
}
},
"pluginsredshiftv1MappedColumns": {
"type": "object",
"properties": {
Expand Down
126 changes: 63 additions & 63 deletions types/api/security/v1/service.swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -833,6 +833,14 @@
}
}
},
"PluginGet": {
"type": "object",
"properties": {
"key": {
"type": "string"
}
}
},
"PluginHdel": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -943,6 +951,58 @@
}
}
},
"PluginKinesisGet": {
"type": "object",
"properties": {
"shardId": {
"type": "string"
},
"shardIteratorType": {
"$ref": "#/definitions/PluginShardIteratorType"
},
"limit": {
"type": "integer",
"format": "int32"
},
"pollingCooldownMs": {
"type": "integer",
"format": "int32",
"title": "not required by kinesis, but something we want to allow users to configure\nthis is the amount of time in milliseconds between asking kinesis to get records when polling in a loop"
},
"startingSequenceNumber": {
"type": "string",
"title": "these 2 are required depending on the shard iterator type selected"
},
"timestamp": {
"type": "string"
},
"streamName": {
"type": "string"
},
"streamArn": {
"type": "string"
}
},
"title": "https://docs.aws.amazon.com/kinesis/latest/APIReference/API_GetRecords.html\nwe will need to get a shard iterator first\nhttps://docs.aws.amazon.com/kinesis/latest/APIReference/API_GetShardIterator.html"
},
"PluginKinesisPut": {
"type": "object",
"properties": {
"data": {
"type": "string"
},
"partitionKey": {
"type": "string"
},
"streamName": {
"type": "string"
},
"streamArn": {
"type": "string"
}
},
"title": "https://docs.aws.amazon.com/kinesis/latest/APIReference/API_PutRecord.html\nhttps://docs.aws.amazon.com/kinesis/latest/APIReference/API_PutRecords.html"
},
"PluginLindex": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -1162,24 +1222,6 @@
}
}
},
"PluginPut": {
"type": "object",
"properties": {
"data": {
"type": "string"
},
"partitionKey": {
"type": "string"
},
"streamName": {
"type": "string"
},
"streamArn": {
"type": "string"
}
},
"title": "https://docs.aws.amazon.com/kinesis/latest/APIReference/API_PutRecord.html\nhttps://docs.aws.amazon.com/kinesis/latest/APIReference/API_PutRecords.html"
},
"PluginQuery": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -1386,7 +1428,7 @@
"type": "object",
"properties": {
"get": {
"$ref": "#/definitions/pluginsredisv1PluginGet"
"$ref": "#/definitions/PluginGet"
},
"set": {
"$ref": "#/definitions/PluginSet"
Expand Down Expand Up @@ -2673,50 +2715,16 @@
"$ref": "#/definitions/PluginKinesisConnection"
},
"put": {
"$ref": "#/definitions/PluginPut"
"$ref": "#/definitions/PluginKinesisPut"
},
"get": {
"$ref": "#/definitions/pluginskinesisv1PluginGet"
"$ref": "#/definitions/PluginKinesisGet"
},
"dynamicWorkflowConfiguration": {
"$ref": "#/definitions/v1DynamicWorkflowConfiguration"
}
}
},
"pluginskinesisv1PluginGet": {
"type": "object",
"properties": {
"shardId": {
"type": "string"
},
"shardIteratorType": {
"$ref": "#/definitions/PluginShardIteratorType"
},
"limit": {
"type": "integer",
"format": "int32"
},
"pollingCooldownMs": {
"type": "integer",
"format": "int32",
"title": "not required by kinesis, but something we want to allow users to configure\nthis is the amount of time in milliseconds between asking kinesis to get records when polling in a loop"
},
"startingSequenceNumber": {
"type": "string",
"title": "these 2 are required depending on the shard iterator type selected"
},
"timestamp": {
"type": "string"
},
"streamName": {
"type": "string"
},
"streamArn": {
"type": "string"
}
},
"title": "https://docs.aws.amazon.com/kinesis/latest/APIReference/API_GetRecords.html\nwe will need to get a shard iterator first\nhttps://docs.aws.amazon.com/kinesis/latest/APIReference/API_GetShardIterator.html"
},
"pluginsmariadbv1MappedColumns": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -3325,14 +3333,6 @@
},
"title": "NOTE: (joey) this does not have to be a separate message right now\n1. this follows the \"connection\" pattern\n2. this lets us easily add shared connection fields in the future"
},
"pluginsredisv1PluginGet": {
"type": "object",
"properties": {
"key": {
"type": "string"
}
}
},
"pluginsredshiftv1MappedColumns": {
"type": "object",
"properties": {
Expand Down
Loading

0 comments on commit c7bbcba

Please sign in to comment.