vendor: update all dependencies
This commit is contained in:
parent
3f0789e2db
commit
08021c4636
2474 changed files with 435818 additions and 282709 deletions
164
vendor/github.com/aws/aws-sdk-go/models/apis/iotanalytics/2017-11-27/api-2.json
generated
vendored
164
vendor/github.com/aws/aws-sdk-go/models/apis/iotanalytics/2017-11-27/api-2.json
generated
vendored
|
@ -367,6 +367,23 @@
|
|||
{"shape":"ThrottlingException"}
|
||||
]
|
||||
},
|
||||
"ListTagsForResource":{
|
||||
"name":"ListTagsForResource",
|
||||
"http":{
|
||||
"method":"GET",
|
||||
"requestUri":"/tags"
|
||||
},
|
||||
"input":{"shape":"ListTagsForResourceRequest"},
|
||||
"output":{"shape":"ListTagsForResourceResponse"},
|
||||
"errors":[
|
||||
{"shape":"InvalidRequestException"},
|
||||
{"shape":"InternalFailureException"},
|
||||
{"shape":"ServiceUnavailableException"},
|
||||
{"shape":"ThrottlingException"},
|
||||
{"shape":"LimitExceededException"},
|
||||
{"shape":"ResourceNotFoundException"}
|
||||
]
|
||||
},
|
||||
"PutLoggingOptions":{
|
||||
"name":"PutLoggingOptions",
|
||||
"http":{
|
||||
|
@ -429,6 +446,42 @@
|
|||
{"shape":"ThrottlingException"}
|
||||
]
|
||||
},
|
||||
"TagResource":{
|
||||
"name":"TagResource",
|
||||
"http":{
|
||||
"method":"POST",
|
||||
"requestUri":"/tags",
|
||||
"responseCode":204
|
||||
},
|
||||
"input":{"shape":"TagResourceRequest"},
|
||||
"output":{"shape":"TagResourceResponse"},
|
||||
"errors":[
|
||||
{"shape":"InvalidRequestException"},
|
||||
{"shape":"InternalFailureException"},
|
||||
{"shape":"ServiceUnavailableException"},
|
||||
{"shape":"ThrottlingException"},
|
||||
{"shape":"LimitExceededException"},
|
||||
{"shape":"ResourceNotFoundException"}
|
||||
]
|
||||
},
|
||||
"UntagResource":{
|
||||
"name":"UntagResource",
|
||||
"http":{
|
||||
"method":"DELETE",
|
||||
"requestUri":"/tags",
|
||||
"responseCode":204
|
||||
},
|
||||
"input":{"shape":"UntagResourceRequest"},
|
||||
"output":{"shape":"UntagResourceResponse"},
|
||||
"errors":[
|
||||
{"shape":"InvalidRequestException"},
|
||||
{"shape":"InternalFailureException"},
|
||||
{"shape":"ServiceUnavailableException"},
|
||||
{"shape":"ThrottlingException"},
|
||||
{"shape":"LimitExceededException"},
|
||||
{"shape":"ResourceNotFoundException"}
|
||||
]
|
||||
},
|
||||
"UpdateChannel":{
|
||||
"name":"UpdateChannel",
|
||||
"http":{
|
||||
|
@ -641,7 +694,8 @@
|
|||
"required":["channelName"],
|
||||
"members":{
|
||||
"channelName":{"shape":"ChannelName"},
|
||||
"retentionPeriod":{"shape":"RetentionPeriod"}
|
||||
"retentionPeriod":{"shape":"RetentionPeriod"},
|
||||
"tags":{"shape":"TagList"}
|
||||
}
|
||||
},
|
||||
"CreateChannelResponse":{
|
||||
|
@ -672,7 +726,8 @@
|
|||
"members":{
|
||||
"datasetName":{"shape":"DatasetName"},
|
||||
"actions":{"shape":"DatasetActions"},
|
||||
"triggers":{"shape":"DatasetTriggers"}
|
||||
"triggers":{"shape":"DatasetTriggers"},
|
||||
"tags":{"shape":"TagList"}
|
||||
}
|
||||
},
|
||||
"CreateDatasetResponse":{
|
||||
|
@ -687,7 +742,8 @@
|
|||
"required":["datastoreName"],
|
||||
"members":{
|
||||
"datastoreName":{"shape":"DatastoreName"},
|
||||
"retentionPeriod":{"shape":"RetentionPeriod"}
|
||||
"retentionPeriod":{"shape":"RetentionPeriod"},
|
||||
"tags":{"shape":"TagList"}
|
||||
}
|
||||
},
|
||||
"CreateDatastoreResponse":{
|
||||
|
@ -706,7 +762,8 @@
|
|||
],
|
||||
"members":{
|
||||
"pipelineName":{"shape":"PipelineName"},
|
||||
"pipelineActivities":{"shape":"PipelineActivities"}
|
||||
"pipelineActivities":{"shape":"PipelineActivities"},
|
||||
"tags":{"shape":"TagList"}
|
||||
}
|
||||
},
|
||||
"CreatePipelineResponse":{
|
||||
|
@ -1213,6 +1270,23 @@
|
|||
"nextToken":{"shape":"NextToken"}
|
||||
}
|
||||
},
|
||||
"ListTagsForResourceRequest":{
|
||||
"type":"structure",
|
||||
"required":["resourceArn"],
|
||||
"members":{
|
||||
"resourceArn":{
|
||||
"shape":"ResourceArn",
|
||||
"location":"querystring",
|
||||
"locationName":"resourceArn"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ListTagsForResourceResponse":{
|
||||
"type":"structure",
|
||||
"members":{
|
||||
"tags":{"shape":"TagList"}
|
||||
}
|
||||
},
|
||||
"LogResult":{"type":"string"},
|
||||
"LoggingEnabled":{"type":"boolean"},
|
||||
"LoggingLevel":{
|
||||
|
@ -1394,6 +1468,11 @@
|
|||
"error":{"httpStatusCode":409},
|
||||
"exception":true
|
||||
},
|
||||
"ResourceArn":{
|
||||
"type":"string",
|
||||
"max":2048,
|
||||
"min":20
|
||||
},
|
||||
"ResourceNotFoundException":{
|
||||
"type":"structure",
|
||||
"members":{
|
||||
|
@ -1524,6 +1603,59 @@
|
|||
}
|
||||
},
|
||||
"StartTime":{"type":"timestamp"},
|
||||
"Tag":{
|
||||
"type":"structure",
|
||||
"required":[
|
||||
"key",
|
||||
"value"
|
||||
],
|
||||
"members":{
|
||||
"key":{"shape":"TagKey"},
|
||||
"value":{"shape":"TagValue"}
|
||||
}
|
||||
},
|
||||
"TagKey":{
|
||||
"type":"string",
|
||||
"max":256,
|
||||
"min":1
|
||||
},
|
||||
"TagKeyList":{
|
||||
"type":"list",
|
||||
"member":{"shape":"TagKey"},
|
||||
"max":50,
|
||||
"min":1
|
||||
},
|
||||
"TagList":{
|
||||
"type":"list",
|
||||
"member":{"shape":"Tag"},
|
||||
"max":50,
|
||||
"min":1
|
||||
},
|
||||
"TagResourceRequest":{
|
||||
"type":"structure",
|
||||
"required":[
|
||||
"resourceArn",
|
||||
"tags"
|
||||
],
|
||||
"members":{
|
||||
"resourceArn":{
|
||||
"shape":"ResourceArn",
|
||||
"location":"querystring",
|
||||
"locationName":"resourceArn"
|
||||
},
|
||||
"tags":{"shape":"TagList"}
|
||||
}
|
||||
},
|
||||
"TagResourceResponse":{
|
||||
"type":"structure",
|
||||
"members":{
|
||||
}
|
||||
},
|
||||
"TagValue":{
|
||||
"type":"string",
|
||||
"max":256,
|
||||
"min":1
|
||||
},
|
||||
"ThrottlingException":{
|
||||
"type":"structure",
|
||||
"members":{
|
||||
|
@ -1534,6 +1666,30 @@
|
|||
},
|
||||
"Timestamp":{"type":"timestamp"},
|
||||
"UnlimitedRetentionPeriod":{"type":"boolean"},
|
||||
"UntagResourceRequest":{
|
||||
"type":"structure",
|
||||
"required":[
|
||||
"resourceArn",
|
||||
"tagKeys"
|
||||
],
|
||||
"members":{
|
||||
"resourceArn":{
|
||||
"shape":"ResourceArn",
|
||||
"location":"querystring",
|
||||
"locationName":"resourceArn"
|
||||
},
|
||||
"tagKeys":{
|
||||
"shape":"TagKeyList",
|
||||
"location":"querystring",
|
||||
"locationName":"tagKeys"
|
||||
}
|
||||
}
|
||||
},
|
||||
"UntagResourceResponse":{
|
||||
"type":"structure",
|
||||
"members":{
|
||||
}
|
||||
},
|
||||
"UpdateChannelRequest":{
|
||||
"type":"structure",
|
||||
"required":["channelName"],
|
||||
|
|
83
vendor/github.com/aws/aws-sdk-go/models/apis/iotanalytics/2017-11-27/docs-2.json
generated
vendored
83
vendor/github.com/aws/aws-sdk-go/models/apis/iotanalytics/2017-11-27/docs-2.json
generated
vendored
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"version": "2.0",
|
||||
"service": "<p>AWS IoT Analytics provides advanced data analysis for AWS IoT. It allows you to collect large amounts of device data, process messages, store them, and then query the data and run sophisticated analytics to make accurate decisions in your IoT applications and machine learning use cases. AWS IoT Analytics enables advanced data exploration through integration with Jupyter Notebooks and data visualization through integration with Amazon QuickSight.</p> <p>Traditional analytics and business intelligence tools are designed to process structured data. IoT data often comes from devices that record noisy processes (such as temperature, motion, or sound). As a result, the data from these devices can have significant gaps, corrupted messages, and false readings that must be cleaned up before analysis can occur. Also, IoT data is often only meaningful in the context of other data from external sources. </p> <p>AWS IoT Analytics automates each of the steps required to analyze data from IoT devices. AWS IoT Analytics filters, transforms, and enriches IoT data before storing it in a time-series data store for analysis. You can set up the service to collect only the data you need from your devices, apply mathematical transforms to process the data, and enrich the data with device-specific metadata such as device type and location before storing it. Then, you can analyze your data by running queries using the built-in SQL query engine, or perform more complex analytics and machine learning inference. AWS IoT Analytics includes models for common IoT use cases so you can answer questions like which devices are about to fail or which customers are at risk of abandoning their wearable devices.</p>",
|
||||
"service": "<p>AWS IoT Analytics allows you to collect large amounts of device data, process messages, and store them. You can then query the data and run sophisticated analytics on it. AWS IoT Analytics enables advanced data exploration through integration with Jupyter Notebooks and data visualization through integration with Amazon QuickSight.</p> <p>Traditional analytics and business intelligence tools are designed to process structured data. IoT data often comes from devices that record noisy processes (such as temperature, motion, or sound). As a result the data from these devices can have significant gaps, corrupted messages, and false readings that must be cleaned up before analysis can occur. Also, IoT data is often only meaningful in the context of other data from external sources. </p> <p>AWS IoT Analytics automates the steps required to analyze data from IoT devices. AWS IoT Analytics filters, transforms, and enriches IoT data before storing it in a time-series data store for analysis. You can set up the service to collect only the data you need from your devices, apply mathematical transforms to process the data, and enrich the data with device-specific metadata such as device type and location before storing it. Then, you can analyze your data by running queries using the built-in SQL query engine, or perform more complex analytics and machine learning inference. AWS IoT Analytics includes pre-built models for common IoT use cases so you can answer questions like which devices are about to fail or which customers are at risk of abandoning their wearable devices.</p>",
|
||||
"operations": {
|
||||
"BatchPutMessage": "<p>Sends messages to a channel.</p>",
|
||||
"CancelPipelineReprocessing": "<p>Cancels the reprocessing of data through the pipeline.</p>",
|
||||
|
@ -24,10 +24,13 @@
|
|||
"ListDatasets": "<p>Retrieves information about data sets.</p>",
|
||||
"ListDatastores": "<p>Retrieves a list of data stores.</p>",
|
||||
"ListPipelines": "<p>Retrieves a list of pipelines.</p>",
|
||||
"PutLoggingOptions": "<p>Sets or updates the AWS IoT Analytics logging options.</p>",
|
||||
"ListTagsForResource": "<p>Lists the tags (metadata) which you have assigned to the resource.</p>",
|
||||
"PutLoggingOptions": "<p>Sets or updates the AWS IoT Analytics logging options.</p> <p>Note that if you update the value of any <code>loggingOptions</code> field, it takes up to one minute for the change to take effect. Also, if you change the policy attached to the role you specified in the roleArn field (for example, to correct an invalid policy) it takes up to 5 minutes for that change to take effect. </p>",
|
||||
"RunPipelineActivity": "<p>Simulates the results of running a pipeline activity on a message payload.</p>",
|
||||
"SampleChannelData": "<p>Retrieves a sample of messages from the specified channel ingested during the specified timeframe. Up to 10 messages can be retrieved.</p>",
|
||||
"StartPipelineReprocessing": "<p>Starts the reprocessing of raw message data through the pipeline.</p>",
|
||||
"TagResource": "<p>Adds to or modifies the tags of the given resource. Tags are metadata which can be used to manage a resource.</p>",
|
||||
"UntagResource": "<p>Removes the given tags (metadata) from the resource.</p>",
|
||||
"UpdateChannel": "<p>Updates the settings of a channel.</p>",
|
||||
"UpdateDataset": "<p>Updates the settings of a data set.</p>",
|
||||
"UpdateDatastore": "<p>Updates the settings of a data store.</p>",
|
||||
|
@ -590,6 +593,16 @@
|
|||
"refs": {
|
||||
}
|
||||
},
|
||||
"ListTagsForResourceRequest": {
|
||||
"base": null,
|
||||
"refs": {
|
||||
}
|
||||
},
|
||||
"ListTagsForResourceResponse": {
|
||||
"base": null,
|
||||
"refs": {
|
||||
}
|
||||
},
|
||||
"LogResult": {
|
||||
"base": null,
|
||||
"refs": {
|
||||
|
@ -652,7 +665,7 @@
|
|||
"base": null,
|
||||
"refs": {
|
||||
"BatchPutMessageErrorEntry$messageId": "<p>The ID of the message that caused the error. (See the value corresponding to the \"messageId\" key in the message object.)</p>",
|
||||
"Message$messageId": "<p>The ID you wish to assign to the message.</p>"
|
||||
"Message$messageId": "<p>The ID you wish to assign to the message. Each \"messageId\" must be unique within each batch sent.</p>"
|
||||
}
|
||||
},
|
||||
"MessagePayload": {
|
||||
|
@ -798,6 +811,14 @@
|
|||
"refs": {
|
||||
}
|
||||
},
|
||||
"ResourceArn": {
|
||||
"base": null,
|
||||
"refs": {
|
||||
"ListTagsForResourceRequest$resourceArn": "<p>The ARN of the resource whose tags you want to list.</p>",
|
||||
"TagResourceRequest$resourceArn": "<p>The ARN of the resource whose tags will be modified.</p>",
|
||||
"UntagResourceRequest$resourceArn": "<p>The ARN of the resource whose tags will be removed.</p>"
|
||||
}
|
||||
},
|
||||
"ResourceNotFoundException": {
|
||||
"base": "<p>A resource with the specified name could not be found.</p>",
|
||||
"refs": {
|
||||
|
@ -902,6 +923,52 @@
|
|||
"StartPipelineReprocessingRequest$startTime": "<p>The start time (inclusive) of raw message data that is reprocessed.</p>"
|
||||
}
|
||||
},
|
||||
"Tag": {
|
||||
"base": "<p>A set of key/value pairs which are used to manage the resource.</p>",
|
||||
"refs": {
|
||||
"TagList$member": null
|
||||
}
|
||||
},
|
||||
"TagKey": {
|
||||
"base": null,
|
||||
"refs": {
|
||||
"Tag$key": "<p>The tag's key.</p>",
|
||||
"TagKeyList$member": null
|
||||
}
|
||||
},
|
||||
"TagKeyList": {
|
||||
"base": null,
|
||||
"refs": {
|
||||
"UntagResourceRequest$tagKeys": "<p>The keys of those tags which will be removed.</p>"
|
||||
}
|
||||
},
|
||||
"TagList": {
|
||||
"base": null,
|
||||
"refs": {
|
||||
"CreateChannelRequest$tags": "<p>Metadata which can be used to manage the channel.</p>",
|
||||
"CreateDatasetRequest$tags": "<p>Metadata which can be used to manage the data set.</p>",
|
||||
"CreateDatastoreRequest$tags": "<p>Metadata which can be used to manage the data store.</p>",
|
||||
"CreatePipelineRequest$tags": "<p>Metadata which can be used to manage the pipeline.</p>",
|
||||
"ListTagsForResourceResponse$tags": "<p>The tags (metadata) which you have assigned to the resource.</p>",
|
||||
"TagResourceRequest$tags": "<p>The new or modified tags for the resource.</p>"
|
||||
}
|
||||
},
|
||||
"TagResourceRequest": {
|
||||
"base": null,
|
||||
"refs": {
|
||||
}
|
||||
},
|
||||
"TagResourceResponse": {
|
||||
"base": null,
|
||||
"refs": {
|
||||
}
|
||||
},
|
||||
"TagValue": {
|
||||
"base": null,
|
||||
"refs": {
|
||||
"Tag$value": "<p>The tag's value.</p>"
|
||||
}
|
||||
},
|
||||
"ThrottlingException": {
|
||||
"base": "<p>The request was denied due to request throttling.</p>",
|
||||
"refs": {
|
||||
|
@ -936,6 +1003,16 @@
|
|||
"RetentionPeriod$unlimited": "<p>If true, message data is kept indefinitely.</p>"
|
||||
}
|
||||
},
|
||||
"UntagResourceRequest": {
|
||||
"base": null,
|
||||
"refs": {
|
||||
}
|
||||
},
|
||||
"UntagResourceResponse": {
|
||||
"base": null,
|
||||
"refs": {
|
||||
}
|
||||
},
|
||||
"UpdateChannelRequest": {
|
||||
"base": null,
|
||||
"refs": {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue