vendor: update all dependencies
This commit is contained in:
parent
940df88eb2
commit
d64789528d
4309 changed files with 1327278 additions and 1001118 deletions
65
vendor/github.com/aws/aws-sdk-go/models/apis/appsync/2017-07-25/api-2.json
generated
vendored
65
vendor/github.com/aws/aws-sdk-go/models/apis/appsync/2017-07-25/api-2.json
generated
vendored
|
@ -27,7 +27,8 @@
|
|||
{"shape":"UnauthorizedException"},
|
||||
{"shape":"LimitExceededException"},
|
||||
{"shape":"InternalFailureException"},
|
||||
{"shape":"ApiKeyLimitExceededException"}
|
||||
{"shape":"ApiKeyLimitExceededException"},
|
||||
{"shape":"ApiKeyValidityOutOfBoundsException"}
|
||||
]
|
||||
},
|
||||
"CreateDataSource":{
|
||||
|
@ -355,6 +356,23 @@
|
|||
{"shape":"InternalFailureException"}
|
||||
]
|
||||
},
|
||||
"UpdateApiKey":{
|
||||
"name":"UpdateApiKey",
|
||||
"http":{
|
||||
"method":"POST",
|
||||
"requestUri":"/v1/apis/{apiId}/apikeys/{id}"
|
||||
},
|
||||
"input":{"shape":"UpdateApiKeyRequest"},
|
||||
"output":{"shape":"UpdateApiKeyResponse"},
|
||||
"errors":[
|
||||
{"shape":"BadRequestException"},
|
||||
{"shape":"NotFoundException"},
|
||||
{"shape":"UnauthorizedException"},
|
||||
{"shape":"LimitExceededException"},
|
||||
{"shape":"InternalFailureException"},
|
||||
{"shape":"ApiKeyValidityOutOfBoundsException"}
|
||||
]
|
||||
},
|
||||
"UpdateDataSource":{
|
||||
"name":"UpdateDataSource",
|
||||
"http":{
|
||||
|
@ -436,6 +454,14 @@
|
|||
"error":{"httpStatusCode":400},
|
||||
"exception":true
|
||||
},
|
||||
"ApiKeyValidityOutOfBoundsException":{
|
||||
"type":"structure",
|
||||
"members":{
|
||||
"message":{"shape":"String"}
|
||||
},
|
||||
"error":{"httpStatusCode":400},
|
||||
"exception":true
|
||||
},
|
||||
"ApiKeys":{
|
||||
"type":"list",
|
||||
"member":{"shape":"ApiKey"}
|
||||
|
@ -483,7 +509,8 @@
|
|||
"location":"uri",
|
||||
"locationName":"apiId"
|
||||
},
|
||||
"description":{"shape":"String"}
|
||||
"description":{"shape":"String"},
|
||||
"expires":{"shape":"Long"}
|
||||
}
|
||||
},
|
||||
"CreateApiKeyResponse":{
|
||||
|
@ -527,7 +554,7 @@
|
|||
"authenticationType"
|
||||
],
|
||||
"members":{
|
||||
"name":{"shape":"ResourceName"},
|
||||
"name":{"shape":"String"},
|
||||
"authenticationType":{"shape":"AuthenticationType"},
|
||||
"userPoolConfig":{"shape":"UserPoolConfig"}
|
||||
}
|
||||
|
@ -611,7 +638,8 @@
|
|||
"enum":[
|
||||
"AWS_LAMBDA",
|
||||
"AMAZON_DYNAMODB",
|
||||
"AMAZON_ELASTICSEARCH"
|
||||
"AMAZON_ELASTICSEARCH",
|
||||
"NONE"
|
||||
]
|
||||
},
|
||||
"DataSources":{
|
||||
|
@ -1225,6 +1253,33 @@
|
|||
"error":{"httpStatusCode":401},
|
||||
"exception":true
|
||||
},
|
||||
"UpdateApiKeyRequest":{
|
||||
"type":"structure",
|
||||
"required":[
|
||||
"apiId",
|
||||
"id"
|
||||
],
|
||||
"members":{
|
||||
"apiId":{
|
||||
"shape":"String",
|
||||
"location":"uri",
|
||||
"locationName":"apiId"
|
||||
},
|
||||
"id":{
|
||||
"shape":"String",
|
||||
"location":"uri",
|
||||
"locationName":"id"
|
||||
},
|
||||
"description":{"shape":"String"},
|
||||
"expires":{"shape":"Long"}
|
||||
}
|
||||
},
|
||||
"UpdateApiKeyResponse":{
|
||||
"type":"structure",
|
||||
"members":{
|
||||
"apiKey":{"shape":"ApiKey"}
|
||||
}
|
||||
},
|
||||
"UpdateDataSourceRequest":{
|
||||
"type":"structure",
|
||||
"required":[
|
||||
|
@ -1269,7 +1324,7 @@
|
|||
"location":"uri",
|
||||
"locationName":"apiId"
|
||||
},
|
||||
"name":{"shape":"ResourceName"},
|
||||
"name":{"shape":"String"},
|
||||
"authenticationType":{"shape":"AuthenticationType"},
|
||||
"userPoolConfig":{"shape":"UserPoolConfig"}
|
||||
}
|
||||
|
|
37
vendor/github.com/aws/aws-sdk-go/models/apis/appsync/2017-07-25/docs-2.json
generated
vendored
37
vendor/github.com/aws/aws-sdk-go/models/apis/appsync/2017-07-25/docs-2.json
generated
vendored
|
@ -24,6 +24,7 @@
|
|||
"ListResolvers": "<p>Lists the resolvers for a given API and type.</p>",
|
||||
"ListTypes": "<p>Lists the types for a given API.</p>",
|
||||
"StartSchemaCreation": "<p>Adds a new schema to your GraphQL API.</p> <p>This operation is asynchronous. Use to determine when it has completed.</p>",
|
||||
"UpdateApiKey": "<p>Updates an API key.</p>",
|
||||
"UpdateDataSource": "<p>Updates a <code>DataSource</code> object.</p>",
|
||||
"UpdateGraphqlApi": "<p>Updates a <code>GraphqlApi</code> object.</p>",
|
||||
"UpdateResolver": "<p>Updates a <code>Resolver</code> object.</p>",
|
||||
|
@ -34,7 +35,8 @@
|
|||
"base": "<p>Describes an API key.</p>",
|
||||
"refs": {
|
||||
"ApiKeys$member": null,
|
||||
"CreateApiKeyResponse$apiKey": "<p>The API key.</p>"
|
||||
"CreateApiKeyResponse$apiKey": "<p>The API key.</p>",
|
||||
"UpdateApiKeyResponse$apiKey": "<p>The API key.</p>"
|
||||
}
|
||||
},
|
||||
"ApiKeyLimitExceededException": {
|
||||
|
@ -42,6 +44,11 @@
|
|||
"refs": {
|
||||
}
|
||||
},
|
||||
"ApiKeyValidityOutOfBoundsException": {
|
||||
"base": "<p>The API key expiration must be set to a value between 1 and 365 days.</p>",
|
||||
"refs": {
|
||||
}
|
||||
},
|
||||
"ApiKeys": {
|
||||
"base": null,
|
||||
"refs": {
|
||||
|
@ -147,7 +154,7 @@
|
|||
"base": null,
|
||||
"refs": {
|
||||
"CreateDataSourceRequest$type": "<p>The type of the <code>DataSource</code>.</p>",
|
||||
"DataSource$type": "<p>The type of the data source.</p>",
|
||||
"DataSource$type": "<p>The type of the data source.</p> <ul> <li> <p> <b>AMAZON_DYNAMODB</b>: The data source is an Amazon DynamoDB table.</p> </li> <li> <p> <b>AMAZON_ELASTICSEARCH</b>: The data source is an Amazon Elasticsearch Service domain.</p> </li> <li> <p> <b>AWS_LAMBDA</b>: The data source is an AWS Lambda function.</p> </li> <li> <p> <b>NONE</b>: There is no data source. This type is used when the required information can be computed on the fly without connecting to a back-end data source.</p> </li> </ul>",
|
||||
"UpdateDataSourceRequest$type": "<p>The new data source type.</p>"
|
||||
}
|
||||
},
|
||||
|
@ -308,7 +315,7 @@
|
|||
"CreateGraphqlApiResponse$graphqlApi": "<p>The <code>GraphqlApi</code>.</p>",
|
||||
"GetGraphqlApiResponse$graphqlApi": "<p>The <code>GraphqlApi</code> object.</p>",
|
||||
"GraphqlApis$member": null,
|
||||
"UpdateGraphqlApiResponse$graphqlApi": "<p>The udpated <code>GraphqlApi</code> object.</p>"
|
||||
"UpdateGraphqlApiResponse$graphqlApi": "<p>The updated <code>GraphqlApi</code> object.</p>"
|
||||
}
|
||||
},
|
||||
"GraphqlApis": {
|
||||
|
@ -388,7 +395,9 @@
|
|||
"Long": {
|
||||
"base": null,
|
||||
"refs": {
|
||||
"ApiKey$expires": "<p>The time when the API key expires.</p>"
|
||||
"ApiKey$expires": "<p>The time after which the API key expires. The date is represented as seconds since the epoch, rounded down to the nearest hour.</p>",
|
||||
"CreateApiKeyRequest$expires": "<p>The time after which the API key expires. The date is represented as seconds since the epoch, rounded down to the nearest hour. The default value for this parameter is 7 days from creation time.</p>",
|
||||
"UpdateApiKeyRequest$expires": "<p>The time after which the API key expires. The date is represented as seconds since the epoch.</p>"
|
||||
}
|
||||
},
|
||||
"MapOfStringToString": {
|
||||
|
@ -400,7 +409,7 @@
|
|||
"MappingTemplate": {
|
||||
"base": null,
|
||||
"refs": {
|
||||
"CreateResolverRequest$requestMappingTemplate": "<p>The mapping template to be used for requests.</p> <p>A resolver use a request mapping template to convert a GraphQL expression into a format that a data source can understand. Mapping templates are written in Apache Velocity Template Language (VTL).</p>",
|
||||
"CreateResolverRequest$requestMappingTemplate": "<p>The mapping template to be used for requests.</p> <p>A resolver uses a request mapping template to convert a GraphQL expression into a format that a data source can understand. Mapping templates are written in Apache Velocity Template Language (VTL).</p>",
|
||||
"CreateResolverRequest$responseMappingTemplate": "<p>The mapping template to be used for responses from the data source.</p>",
|
||||
"Resolver$requestMappingTemplate": "<p>The request mapping template.</p>",
|
||||
"Resolver$responseMappingTemplate": "<p>The response mapping template.</p>",
|
||||
|
@ -463,7 +472,6 @@
|
|||
"base": null,
|
||||
"refs": {
|
||||
"CreateDataSourceRequest$name": "<p>A user-supplied name for the <code>DataSource</code>.</p>",
|
||||
"CreateGraphqlApiRequest$name": "<p>A user-supplied name for the <code>GraphqlApi</code>.</p>",
|
||||
"CreateResolverRequest$typeName": "<p>The name of the <code>Type</code>.</p>",
|
||||
"CreateResolverRequest$fieldName": "<p>The name of the field to attach the resolver to.</p>",
|
||||
"CreateResolverRequest$dataSourceName": "<p>The name of the data source for which the resolver is being created.</p>",
|
||||
|
@ -482,7 +490,6 @@
|
|||
"Resolver$dataSourceName": "<p>The resolver data source name.</p>",
|
||||
"Type$name": "<p>The type name.</p>",
|
||||
"UpdateDataSourceRequest$name": "<p>The new name for the data source.</p>",
|
||||
"UpdateGraphqlApiRequest$name": "<p>The new name for the <code>GraphqlApi</code> object.</p>",
|
||||
"UpdateResolverRequest$typeName": "<p>The new type name.</p>",
|
||||
"UpdateResolverRequest$fieldName": "<p>The new field name.</p>",
|
||||
"UpdateResolverRequest$dataSourceName": "<p>The new data source name.</p>",
|
||||
|
@ -512,12 +519,14 @@
|
|||
"ApiKey$id": "<p>The API key ID.</p>",
|
||||
"ApiKey$description": "<p>A description of the purpose of the API key.</p>",
|
||||
"ApiKeyLimitExceededException$message": null,
|
||||
"ApiKeyValidityOutOfBoundsException$message": null,
|
||||
"ApiLimitExceededException$message": null,
|
||||
"CreateApiKeyRequest$apiId": "<p>The ID for your GraphQL API.</p>",
|
||||
"CreateApiKeyRequest$description": "<p>A description of the purpose of the API key.</p>",
|
||||
"CreateDataSourceRequest$apiId": "<p>The API ID for the GraphQL API for the <code>DataSource</code>.</p>",
|
||||
"CreateDataSourceRequest$description": "<p>A description of the <code>DataSource</code>.</p>",
|
||||
"CreateDataSourceRequest$serviceRoleArn": "<p>The IAM service role ARN for the data source. The system assumes this role when accessing the data source.</p>",
|
||||
"CreateGraphqlApiRequest$name": "<p>A user-supplied name for the <code>GraphqlApi</code>.</p>",
|
||||
"CreateResolverRequest$apiId": "<p>The ID for the GraphQL API for which the resolver is being created.</p>",
|
||||
"CreateTypeRequest$apiId": "<p>The API ID.</p>",
|
||||
"CreateTypeRequest$definition": "<p>The type definition, in GraphQL Schema Definition Language (SDL) format.</p> <p>For more information, see the <a href=\"http://graphql.org/learn/schema/\">GraphQL SDL documentation</a>.</p>",
|
||||
|
@ -560,10 +569,14 @@
|
|||
"Type$arn": "<p>The type ARN.</p>",
|
||||
"Type$definition": "<p>The type definition.</p>",
|
||||
"UnauthorizedException$message": null,
|
||||
"UpdateApiKeyRequest$apiId": "<p>The ID for the GraphQL API</p>",
|
||||
"UpdateApiKeyRequest$id": "<p>The API key ID.</p>",
|
||||
"UpdateApiKeyRequest$description": "<p>A description of the purpose of the API key.</p>",
|
||||
"UpdateDataSourceRequest$apiId": "<p>The API ID.</p>",
|
||||
"UpdateDataSourceRequest$description": "<p>The new description for the data source.</p>",
|
||||
"UpdateDataSourceRequest$serviceRoleArn": "<p>The new service role ARN for the data source.</p>",
|
||||
"UpdateGraphqlApiRequest$apiId": "<p>The API ID.</p>",
|
||||
"UpdateGraphqlApiRequest$name": "<p>The new name for the <code>GraphqlApi</code> object.</p>",
|
||||
"UpdateResolverRequest$apiId": "<p>The API ID.</p>",
|
||||
"UpdateTypeRequest$apiId": "<p>The API ID.</p>",
|
||||
"UpdateTypeRequest$definition": "<p>The new definition.</p>",
|
||||
|
@ -602,6 +615,16 @@
|
|||
"refs": {
|
||||
}
|
||||
},
|
||||
"UpdateApiKeyRequest": {
|
||||
"base": null,
|
||||
"refs": {
|
||||
}
|
||||
},
|
||||
"UpdateApiKeyResponse": {
|
||||
"base": null,
|
||||
"refs": {
|
||||
}
|
||||
},
|
||||
"UpdateDataSourceRequest": {
|
||||
"base": null,
|
||||
"refs": {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue