From b1fc37f7ea6c344f7f92af3628a2c499c122a9a0 Mon Sep 17 00:00:00 2001 From: Brian Flad Date: Thu, 16 Aug 2018 19:19:47 -0400 Subject: [PATCH] vendor: aws/aws-sdk-go@v1.15.14 Notably includes: * redshift: ResizeCluster --- .../aws/aws-sdk-go/aws/endpoints/defaults.go | 16 +- .../github.com/aws/aws-sdk-go/aws/version.go | 2 +- .../aws/aws-sdk-go/service/devicefarm/api.go | 501 +++++++- .../aws/aws-sdk-go/service/ec2/api.go | 7 +- .../aws-sdk-go/service/mediaconvert/api.go | 20 + .../aws/aws-sdk-go/service/redshift/api.go | 238 ++++ .../aws/aws-sdk-go/service/ssm/api.go | 121 +- .../aws/aws-sdk-go/service/ssm/errors.go | 13 + vendor/vendor.json | 1030 ++++++++--------- 9 files changed, 1423 insertions(+), 525 deletions(-) diff --git a/vendor/github.com/aws/aws-sdk-go/aws/endpoints/defaults.go b/vendor/github.com/aws/aws-sdk-go/aws/endpoints/defaults.go index 1ae1e819eeb..ebce035cfdd 100644 --- a/vendor/github.com/aws/aws-sdk-go/aws/endpoints/defaults.go +++ b/vendor/github.com/aws/aws-sdk-go/aws/endpoints/defaults.go @@ -1121,7 +1121,7 @@ var awsPartition = partition{ "elasticmapreduce": service{ Defaults: endpoint{ SSLCommonName: "{region}.{service}.{dnsSuffix}", - Protocols: []string{"http", "https"}, + Protocols: []string{"https"}, }, Endpoints: endpoints{ "ap-northeast-1": endpoint{}, @@ -2660,7 +2660,7 @@ var awscnPartition = partition{ }, "elasticmapreduce": service{ Defaults: endpoint{ - Protocols: []string{"http", "https"}, + Protocols: []string{"https"}, }, Endpoints: endpoints{ "cn-north-1": endpoint{}, @@ -3016,7 +3016,7 @@ var awsusgovPartition = partition{ Endpoints: endpoints{ "us-gov-west-1": endpoint{ - Protocols: []string{"http", "https"}, + Protocols: []string{"https"}, }, }, }, @@ -3059,6 +3059,16 @@ var awsusgovPartition = partition{ "us-gov-west-1": endpoint{}, }, }, + "iot": service{ + Defaults: endpoint{ + CredentialScope: credentialScope{ + Service: "execute-api", + }, + }, + Endpoints: endpoints{ + "us-gov-west-1": endpoint{}, + }, + }, "kinesis": service{ Endpoints: endpoints{ diff --git a/vendor/github.com/aws/aws-sdk-go/aws/version.go b/vendor/github.com/aws/aws-sdk-go/aws/version.go index 62f685f537b..f59775ded70 100644 --- a/vendor/github.com/aws/aws-sdk-go/aws/version.go +++ b/vendor/github.com/aws/aws-sdk-go/aws/version.go @@ -5,4 +5,4 @@ package aws const SDKName = "aws-sdk-go" // SDKVersion is the version of this SDK -const SDKVersion = "1.15.12" +const SDKVersion = "1.15.14" diff --git a/vendor/github.com/aws/aws-sdk-go/service/devicefarm/api.go b/vendor/github.com/aws/aws-sdk-go/service/devicefarm/api.go index cf8deb7a7ba..4d945c971b6 100644 --- a/vendor/github.com/aws/aws-sdk-go/service/devicefarm/api.go +++ b/vendor/github.com/aws/aws-sdk-go/service/devicefarm/api.go @@ -5604,6 +5604,99 @@ func (c *DeviceFarm) ScheduleRunWithContext(ctx aws.Context, input *ScheduleRunI return out, req.Send() } +const opStopJob = "StopJob" + +// StopJobRequest generates a "aws/request.Request" representing the +// client's request for the StopJob operation. The "output" return +// value will be populated with the request's response once the request completes +// successfuly. +// +// Use "Send" method on the returned Request to send the API call to the service. +// the "output" return value is not valid until after Send returns without error. +// +// See StopJob for more information on using the StopJob +// API call, and error handling. +// +// This method is useful when you want to inject custom logic or configuration +// into the SDK's request lifecycle. Such as custom headers, or retry logic. +// +// +// // Example sending a request using the StopJobRequest method. +// req, resp := client.StopJobRequest(params) +// +// err := req.Send() +// if err == nil { // resp is now filled +// fmt.Println(resp) +// } +// +// See also, https://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/StopJob +func (c *DeviceFarm) StopJobRequest(input *StopJobInput) (req *request.Request, output *StopJobOutput) { + op := &request.Operation{ + Name: opStopJob, + HTTPMethod: "POST", + HTTPPath: "/", + } + + if input == nil { + input = &StopJobInput{} + } + + output = &StopJobOutput{} + req = c.newRequest(op, input, output) + return +} + +// StopJob API operation for AWS Device Farm. +// +// Initiates a stop request for the current job. AWS Device Farm will immediately +// stop the job on the device where tests have not started executing, and you +// will not be billed for this device. On the device where tests have started +// executing, Setup Suite and Teardown Suite tests will run to completion before +// stopping execution on the device. You will be billed for Setup, Teardown, +// and any tests that were in progress or already completed. +// +// Returns awserr.Error for service API and SDK errors. Use runtime type assertions +// with awserr.Error's Code and Message methods to get detailed information about +// the error. +// +// See the AWS API reference guide for AWS Device Farm's +// API operation StopJob for usage and error information. +// +// Returned Error Codes: +// * ErrCodeArgumentException "ArgumentException" +// An invalid argument was specified. +// +// * ErrCodeNotFoundException "NotFoundException" +// The specified entity was not found. +// +// * ErrCodeLimitExceededException "LimitExceededException" +// A limit was exceeded. +// +// * ErrCodeServiceAccountException "ServiceAccountException" +// There was a problem with the service account. +// +// See also, https://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/StopJob +func (c *DeviceFarm) StopJob(input *StopJobInput) (*StopJobOutput, error) { + req, out := c.StopJobRequest(input) + return out, req.Send() +} + +// StopJobWithContext is the same as StopJob with the addition of +// the ability to pass a context and additional request options. +// +// See StopJob for details on how to use this API operation. +// +// The context must be non-nil and will be used for request cancellation. If +// the context is nil a panic will occur. In the future the SDK may create +// sub-contexts for http.Requests. See https://golang.org/pkg/context/ +// for more information on using Contexts. +func (c *DeviceFarm) StopJobWithContext(ctx aws.Context, input *StopJobInput, opts ...request.Option) (*StopJobOutput, error) { + req, out := c.StopJobRequest(input) + req.SetContext(ctx) + req.ApplyOptions(opts...) + return out, req.Send() +} + const opStopRemoteAccessSession = "StopRemoteAccessSession" // StopRemoteAccessSessionRequest generates a "aws/request.Request" representing the @@ -6227,6 +6320,94 @@ func (c *DeviceFarm) UpdateProjectWithContext(ctx aws.Context, input *UpdateProj return out, req.Send() } +const opUpdateUpload = "UpdateUpload" + +// UpdateUploadRequest generates a "aws/request.Request" representing the +// client's request for the UpdateUpload operation. The "output" return +// value will be populated with the request's response once the request completes +// successfuly. +// +// Use "Send" method on the returned Request to send the API call to the service. +// the "output" return value is not valid until after Send returns without error. +// +// See UpdateUpload for more information on using the UpdateUpload +// API call, and error handling. +// +// This method is useful when you want to inject custom logic or configuration +// into the SDK's request lifecycle. Such as custom headers, or retry logic. +// +// +// // Example sending a request using the UpdateUploadRequest method. +// req, resp := client.UpdateUploadRequest(params) +// +// err := req.Send() +// if err == nil { // resp is now filled +// fmt.Println(resp) +// } +// +// See also, https://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/UpdateUpload +func (c *DeviceFarm) UpdateUploadRequest(input *UpdateUploadInput) (req *request.Request, output *UpdateUploadOutput) { + op := &request.Operation{ + Name: opUpdateUpload, + HTTPMethod: "POST", + HTTPPath: "/", + } + + if input == nil { + input = &UpdateUploadInput{} + } + + output = &UpdateUploadOutput{} + req = c.newRequest(op, input, output) + return +} + +// UpdateUpload API operation for AWS Device Farm. +// +// Update an uploaded test specification (test spec). +// +// Returns awserr.Error for service API and SDK errors. Use runtime type assertions +// with awserr.Error's Code and Message methods to get detailed information about +// the error. +// +// See the AWS API reference guide for AWS Device Farm's +// API operation UpdateUpload for usage and error information. +// +// Returned Error Codes: +// * ErrCodeArgumentException "ArgumentException" +// An invalid argument was specified. +// +// * ErrCodeNotFoundException "NotFoundException" +// The specified entity was not found. +// +// * ErrCodeLimitExceededException "LimitExceededException" +// A limit was exceeded. +// +// * ErrCodeServiceAccountException "ServiceAccountException" +// There was a problem with the service account. +// +// See also, https://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/UpdateUpload +func (c *DeviceFarm) UpdateUpload(input *UpdateUploadInput) (*UpdateUploadOutput, error) { + req, out := c.UpdateUploadRequest(input) + return out, req.Send() +} + +// UpdateUploadWithContext is the same as UpdateUpload with the addition of +// the ability to pass a context and additional request options. +// +// See UpdateUpload for details on how to use this API operation. +// +// The context must be non-nil and will be used for request cancellation. If +// the context is nil a panic will occur. In the future the SDK may create +// sub-contexts for http.Requests. See https://golang.org/pkg/context/ +// for more information on using Contexts. +func (c *DeviceFarm) UpdateUploadWithContext(ctx aws.Context, input *UpdateUploadInput, opts ...request.Option) (*UpdateUploadOutput, error) { + req, out := c.UpdateUploadRequest(input) + req.SetContext(ctx) + req.ApplyOptions(opts...) + return out, req.Send() +} + const opUpdateVPCEConfiguration = "UpdateVPCEConfiguration" // UpdateVPCEConfigurationRequest generates a "aws/request.Request" representing the @@ -7367,7 +7548,7 @@ type CreateUploadInput struct { // // * IOS_APP: An iOS upload. // - // * WEB_APP: A web appliction upload. + // * WEB_APP: A web application upload. // // * EXTERNAL_DATA: An external data upload. // @@ -8549,6 +8730,10 @@ type ExecutionConfiguration struct { // modify my app? (https://aws.amazon.com/device-farm/faq/) in the AWS Device // Farm FAQs. SkipAppResign *bool `locationName:"skipAppResign" type:"boolean"` + + // Set to true to enable video capture; otherwise, set to false. The default + // is true. + VideoCapture *bool `locationName:"videoCapture" type:"boolean"` } // String returns the string representation @@ -8585,6 +8770,12 @@ func (s *ExecutionConfiguration) SetSkipAppResign(v bool) *ExecutionConfiguratio return s } +// SetVideoCapture sets the VideoCapture field's value. +func (s *ExecutionConfiguration) SetVideoCapture(v bool) *ExecutionConfiguration { + s.VideoCapture = &v + return s +} + // Represents the request sent to retrieve the account settings. type GetAccountSettingsInput struct { _ struct{} `type:"structure"` @@ -10037,6 +10228,13 @@ type Job struct { // // * XCTEST_UI: The XCode UI test type. Type *string `locationName:"type" type:"string" enum:"TestType"` + + // This value is set to true if video capture is enabled; otherwise, it is set + // to false. + VideoCapture *bool `locationName:"videoCapture" type:"boolean"` + + // The endpoint for streaming device video. + VideoEndpoint *string `locationName:"videoEndpoint" type:"string"` } // String returns the string representation @@ -10127,6 +10325,18 @@ func (s *Job) SetType(v string) *Job { return s } +// SetVideoCapture sets the VideoCapture field's value. +func (s *Job) SetVideoCapture(v bool) *Job { + s.VideoCapture = &v + return s +} + +// SetVideoEndpoint sets the VideoEndpoint field's value. +func (s *Job) SetVideoEndpoint(v string) *Job { + s.VideoEndpoint = &v + return s +} + // Represents a request to the list artifacts operation. type ListArtifactsInput struct { _ struct{} `type:"structure"` @@ -11653,6 +11863,62 @@ type ListUploadsInput struct { // An identifier that was returned from the previous call to this operation, // which can be used to return the next set of items in the list. NextToken *string `locationName:"nextToken" min:"4" type:"string"` + + // The type of upload. + // + // Must be one of the following values: + // + // * ANDROID_APP: An Android upload. + // + // * IOS_APP: An iOS upload. + // + // * WEB_APP: A web appliction upload. + // + // * EXTERNAL_DATA: An external data upload. + // + // * APPIUM_JAVA_JUNIT_TEST_PACKAGE: An Appium Java JUnit test package upload. + // + // * APPIUM_JAVA_TESTNG_TEST_PACKAGE: An Appium Java TestNG test package + // upload. + // + // * APPIUM_PYTHON_TEST_PACKAGE: An Appium Python test package upload. + // + // * APPIUM_WEB_JAVA_JUNIT_TEST_PACKAGE: An Appium Java JUnit test package + // upload. + // + // * APPIUM_WEB_JAVA_TESTNG_TEST_PACKAGE: An Appium Java TestNG test package + // upload. + // + // * APPIUM_WEB_PYTHON_TEST_PACKAGE: An Appium Python test package upload. + // + // * CALABASH_TEST_PACKAGE: A Calabash test package upload. + // + // * INSTRUMENTATION_TEST_PACKAGE: An instrumentation upload. + // + // * UIAUTOMATION_TEST_PACKAGE: A uiautomation test package upload. + // + // * UIAUTOMATOR_TEST_PACKAGE: A uiautomator test package upload. + // + // * XCTEST_TEST_PACKAGE: An XCode test package upload. + // + // * XCTEST_UI_TEST_PACKAGE: An XCode UI test package upload. + // + // * APPIUM_JAVA_JUNIT_TEST_SPEC: An Appium Java JUnit test spec upload. + // + // * APPIUM_JAVA_TESTNG_TEST_SPEC: An Appium Java TestNG test spec upload. + // + // * APPIUM_PYTHON_TEST_SPEC: An Appium Python test spec upload. + // + // * APPIUM_WEB_JAVA_JUNIT_TEST_SPEC: An Appium Java JUnit test spec upload. + // + // * APPIUM_WEB_JAVA_TESTNG_TEST_SPEC: An Appium Java TestNG test spec upload. + // + // * APPIUM_WEB_PYTHON_TEST_SPEC: An Appium Python test spec upload. + // + // * INSTRUMENTATION_TEST_SPEC: An instrumentation test spec upload. + // + // * XCTEST_UI_TEST_SPEC: An XCode UI test spec upload. + Type *string `locationName:"type" type:"string" enum:"UploadType"` } // String returns the string representation @@ -11696,6 +11962,12 @@ func (s *ListUploadsInput) SetNextToken(v string) *ListUploadsInput { return s } +// SetType sets the Type field's value. +func (s *ListUploadsInput) SetType(v string) *ListUploadsInput { + s.Type = &v + return s +} + // Represents the result of a list uploads request. type ListUploadsOutput struct { _ struct{} `type:"structure"` @@ -13154,6 +13426,9 @@ type Run struct { // The run's stop time. Stopped *time.Time `locationName:"stopped" type:"timestamp"` + // The ARN of the YAML-formatted test specification for the run. + TestSpecArn *string `locationName:"testSpecArn" min:"32" type:"string"` + // The total number of jobs for the run. TotalJobs *int64 `locationName:"totalJobs" type:"integer"` @@ -13362,6 +13637,12 @@ func (s *Run) SetStopped(v time.Time) *Run { return s } +// SetTestSpecArn sets the TestSpecArn field's value. +func (s *Run) SetTestSpecArn(v string) *Run { + s.TestSpecArn = &v + return s +} + // SetTotalJobs sets the TotalJobs field's value. func (s *Run) SetTotalJobs(v int64) *Run { s.TotalJobs = &v @@ -13817,6 +14098,9 @@ type ScheduleRunTest struct { // The ARN of the uploaded test that will be run. TestPackageArn *string `locationName:"testPackageArn" min:"32" type:"string"` + // The ARN of the YAML-formatted test specification. + TestSpecArn *string `locationName:"testSpecArn" min:"32" type:"string"` + // The test's type. // // Must be one of the following values: @@ -13871,6 +14155,9 @@ func (s *ScheduleRunTest) Validate() error { if s.TestPackageArn != nil && len(*s.TestPackageArn) < 32 { invalidParams.Add(request.NewErrParamMinLen("TestPackageArn", 32)) } + if s.TestSpecArn != nil && len(*s.TestSpecArn) < 32 { + invalidParams.Add(request.NewErrParamMinLen("TestSpecArn", 32)) + } if s.Type == nil { invalidParams.Add(request.NewErrParamRequired("Type")) } @@ -13899,12 +14186,83 @@ func (s *ScheduleRunTest) SetTestPackageArn(v string) *ScheduleRunTest { return s } +// SetTestSpecArn sets the TestSpecArn field's value. +func (s *ScheduleRunTest) SetTestSpecArn(v string) *ScheduleRunTest { + s.TestSpecArn = &v + return s +} + // SetType sets the Type field's value. func (s *ScheduleRunTest) SetType(v string) *ScheduleRunTest { s.Type = &v return s } +type StopJobInput struct { + _ struct{} `type:"structure"` + + // Represents the Amazon Resource Name (ARN) of the Device Farm job you wish + // to stop. + // + // Arn is a required field + Arn *string `locationName:"arn" min:"32" type:"string" required:"true"` +} + +// String returns the string representation +func (s StopJobInput) String() string { + return awsutil.Prettify(s) +} + +// GoString returns the string representation +func (s StopJobInput) GoString() string { + return s.String() +} + +// Validate inspects the fields of the type to determine if they are valid. +func (s *StopJobInput) Validate() error { + invalidParams := request.ErrInvalidParams{Context: "StopJobInput"} + if s.Arn == nil { + invalidParams.Add(request.NewErrParamRequired("Arn")) + } + if s.Arn != nil && len(*s.Arn) < 32 { + invalidParams.Add(request.NewErrParamMinLen("Arn", 32)) + } + + if invalidParams.Len() > 0 { + return invalidParams + } + return nil +} + +// SetArn sets the Arn field's value. +func (s *StopJobInput) SetArn(v string) *StopJobInput { + s.Arn = &v + return s +} + +type StopJobOutput struct { + _ struct{} `type:"structure"` + + // The job that was stopped. + Job *Job `locationName:"job" type:"structure"` +} + +// String returns the string representation +func (s StopJobOutput) String() string { + return awsutil.Prettify(s) +} + +// GoString returns the string representation +func (s StopJobOutput) GoString() string { + return s.String() +} + +// SetJob sets the Job field's value. +func (s *StopJobOutput) SetJob(v *Job) *StopJobOutput { + s.Job = v + return s +} + // Represents the request to stop the remote access session. type StopRemoteAccessSessionInput struct { _ struct{} `type:"structure"` @@ -15020,6 +15378,99 @@ func (s *UpdateProjectOutput) SetProject(v *Project) *UpdateProjectOutput { return s } +type UpdateUploadInput struct { + _ struct{} `type:"structure"` + + // The Amazon Resource Name (ARN) of the uploaded test spec. + // + // Arn is a required field + Arn *string `locationName:"arn" min:"32" type:"string" required:"true"` + + // The upload's content type (for example, "application/x-yaml"). + ContentType *string `locationName:"contentType" type:"string"` + + // Set to true if the YAML file has changed and needs to be updated; otherwise, + // set to false. + EditContent *bool `locationName:"editContent" type:"boolean"` + + // The upload's test spec file name. The name should not contain the '/' character. + // The test spec file name must end with the .yaml or .yml file extension. + Name *string `locationName:"name" type:"string"` +} + +// String returns the string representation +func (s UpdateUploadInput) String() string { + return awsutil.Prettify(s) +} + +// GoString returns the string representation +func (s UpdateUploadInput) GoString() string { + return s.String() +} + +// Validate inspects the fields of the type to determine if they are valid. +func (s *UpdateUploadInput) Validate() error { + invalidParams := request.ErrInvalidParams{Context: "UpdateUploadInput"} + if s.Arn == nil { + invalidParams.Add(request.NewErrParamRequired("Arn")) + } + if s.Arn != nil && len(*s.Arn) < 32 { + invalidParams.Add(request.NewErrParamMinLen("Arn", 32)) + } + + if invalidParams.Len() > 0 { + return invalidParams + } + return nil +} + +// SetArn sets the Arn field's value. +func (s *UpdateUploadInput) SetArn(v string) *UpdateUploadInput { + s.Arn = &v + return s +} + +// SetContentType sets the ContentType field's value. +func (s *UpdateUploadInput) SetContentType(v string) *UpdateUploadInput { + s.ContentType = &v + return s +} + +// SetEditContent sets the EditContent field's value. +func (s *UpdateUploadInput) SetEditContent(v bool) *UpdateUploadInput { + s.EditContent = &v + return s +} + +// SetName sets the Name field's value. +func (s *UpdateUploadInput) SetName(v string) *UpdateUploadInput { + s.Name = &v + return s +} + +type UpdateUploadOutput struct { + _ struct{} `type:"structure"` + + // A test spec uploaded to Device Farm. + Upload *Upload `locationName:"upload" type:"structure"` +} + +// String returns the string representation +func (s UpdateUploadOutput) String() string { + return awsutil.Prettify(s) +} + +// GoString returns the string representation +func (s UpdateUploadOutput) GoString() string { + return s.String() +} + +// SetUpload sets the Upload field's value. +func (s *UpdateUploadOutput) SetUpload(v *Upload) *UpdateUploadOutput { + s.Upload = v + return s +} + type UpdateVPCEConfigurationInput struct { _ struct{} `type:"structure"` @@ -15131,6 +15582,13 @@ type Upload struct { // The upload's ARN. Arn *string `locationName:"arn" min:"32" type:"string"` + // The upload's category. Allowed values include: + // + // * CURATED: An upload managed by AWS Device Farm. + // + // * PRIVATE: An upload managed by the AWS Device Farm customer. + Category *string `locationName:"category" type:"string" enum:"UploadCategory"` + // The upload's content type (for example, "application/octet-stream"). ContentType *string `locationName:"contentType" type:"string"` @@ -15222,6 +15680,12 @@ func (s *Upload) SetArn(v string) *Upload { return s } +// SetCategory sets the Category field's value. +func (s *Upload) SetCategory(v string) *Upload { + s.Category = &v + return s +} + // SetContentType sets the ContentType field's value. func (s *Upload) SetContentType(v string) *Upload { s.ContentType = &v @@ -15425,6 +15889,9 @@ const ( // ArtifactTypeCustomerArtifactLog is a ArtifactType enum value ArtifactTypeCustomerArtifactLog = "CUSTOMER_ARTIFACT_LOG" + + // ArtifactTypeTestspecOutput is a ArtifactType enum value + ArtifactTypeTestspecOutput = "TESTSPEC_OUTPUT" ) const ( @@ -15736,6 +16203,14 @@ const ( TestTypeRemoteAccessReplay = "REMOTE_ACCESS_REPLAY" ) +const ( + // UploadCategoryCurated is a UploadCategory enum value + UploadCategoryCurated = "CURATED" + + // UploadCategoryPrivate is a UploadCategory enum value + UploadCategoryPrivate = "PRIVATE" +) + const ( // UploadStatusInitialized is a UploadStatus enum value UploadStatusInitialized = "INITIALIZED" @@ -15798,4 +16273,28 @@ const ( // UploadTypeXctestUiTestPackage is a UploadType enum value UploadTypeXctestUiTestPackage = "XCTEST_UI_TEST_PACKAGE" + + // UploadTypeAppiumJavaJunitTestSpec is a UploadType enum value + UploadTypeAppiumJavaJunitTestSpec = "APPIUM_JAVA_JUNIT_TEST_SPEC" + + // UploadTypeAppiumJavaTestngTestSpec is a UploadType enum value + UploadTypeAppiumJavaTestngTestSpec = "APPIUM_JAVA_TESTNG_TEST_SPEC" + + // UploadTypeAppiumPythonTestSpec is a UploadType enum value + UploadTypeAppiumPythonTestSpec = "APPIUM_PYTHON_TEST_SPEC" + + // UploadTypeAppiumWebJavaJunitTestSpec is a UploadType enum value + UploadTypeAppiumWebJavaJunitTestSpec = "APPIUM_WEB_JAVA_JUNIT_TEST_SPEC" + + // UploadTypeAppiumWebJavaTestngTestSpec is a UploadType enum value + UploadTypeAppiumWebJavaTestngTestSpec = "APPIUM_WEB_JAVA_TESTNG_TEST_SPEC" + + // UploadTypeAppiumWebPythonTestSpec is a UploadType enum value + UploadTypeAppiumWebPythonTestSpec = "APPIUM_WEB_PYTHON_TEST_SPEC" + + // UploadTypeInstrumentationTestSpec is a UploadType enum value + UploadTypeInstrumentationTestSpec = "INSTRUMENTATION_TEST_SPEC" + + // UploadTypeXctestUiTestSpec is a UploadType enum value + UploadTypeXctestUiTestSpec = "XCTEST_UI_TEST_SPEC" ) diff --git a/vendor/github.com/aws/aws-sdk-go/service/ec2/api.go b/vendor/github.com/aws/aws-sdk-go/service/ec2/api.go index 69d37022ad0..7c3b97082c9 100644 --- a/vendor/github.com/aws/aws-sdk-go/service/ec2/api.go +++ b/vendor/github.com/aws/aws-sdk-go/service/ec2/api.go @@ -41876,7 +41876,9 @@ type DescribeVolumeAttributeInput struct { _ struct{} `type:"structure"` // The attribute of the volume. This parameter is required. - Attribute *string `type:"string" enum:"VolumeAttributeName"` + // + // Attribute is a required field + Attribute *string `type:"string" required:"true" enum:"VolumeAttributeName"` // Checks whether you have the required permissions for the action, without // actually making the request, and provides an error response. If you have @@ -41903,6 +41905,9 @@ func (s DescribeVolumeAttributeInput) GoString() string { // Validate inspects the fields of the type to determine if they are valid. func (s *DescribeVolumeAttributeInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "DescribeVolumeAttributeInput"} + if s.Attribute == nil { + invalidParams.Add(request.NewErrParamRequired("Attribute")) + } if s.VolumeId == nil { invalidParams.Add(request.NewErrParamRequired("VolumeId")) } diff --git a/vendor/github.com/aws/aws-sdk-go/service/mediaconvert/api.go b/vendor/github.com/aws/aws-sdk-go/service/mediaconvert/api.go index 065996f897c..25fd71100ec 100644 --- a/vendor/github.com/aws/aws-sdk-go/service/mediaconvert/api.go +++ b/vendor/github.com/aws/aws-sdk-go/service/mediaconvert/api.go @@ -4900,6 +4900,10 @@ type DashIsoGroupSettings struct { // // SegmentLength is a required field SegmentLength *int64 `locationName:"segmentLength" min:"1" type:"integer" required:"true"` + + // When ENABLED, segment durations are indicated in the manifest using SegmentTimeline + // and SegmentTimeline will be promoted down into Representation from AdaptationSet. + WriteSegmentTimelineInRepresentation *string `locationName:"writeSegmentTimelineInRepresentation" type:"string" enum:"DashIsoWriteSegmentTimelineInRepresentation"` } // String returns the string representation @@ -4987,6 +4991,12 @@ func (s *DashIsoGroupSettings) SetSegmentLength(v int64) *DashIsoGroupSettings { return s } +// SetWriteSegmentTimelineInRepresentation sets the WriteSegmentTimelineInRepresentation field's value. +func (s *DashIsoGroupSettings) SetWriteSegmentTimelineInRepresentation(v string) *DashIsoGroupSettings { + s.WriteSegmentTimelineInRepresentation = &v + return s +} + // Settings for deinterlacer type Deinterlacer struct { _ struct{} `type:"structure"` @@ -15147,6 +15157,16 @@ const ( DashIsoSegmentControlSegmentedFiles = "SEGMENTED_FILES" ) +// When ENABLED, segment durations are indicated in the manifest using SegmentTimeline +// and SegmentTimeline will be promoted down into Representation from AdaptationSet. +const ( + // DashIsoWriteSegmentTimelineInRepresentationEnabled is a DashIsoWriteSegmentTimelineInRepresentation enum value + DashIsoWriteSegmentTimelineInRepresentationEnabled = "ENABLED" + + // DashIsoWriteSegmentTimelineInRepresentationDisabled is a DashIsoWriteSegmentTimelineInRepresentation enum value + DashIsoWriteSegmentTimelineInRepresentationDisabled = "DISABLED" +) + // Only applies when you set Deinterlacer (DeinterlaceMode) to Deinterlace (DEINTERLACE) // or Adaptive (ADAPTIVE). Motion adaptive interpolate (INTERPOLATE) produces // sharper pictures, while blend (BLEND) produces smoother motion. Use (INTERPOLATE_TICKER) diff --git a/vendor/github.com/aws/aws-sdk-go/service/redshift/api.go b/vendor/github.com/aws/aws-sdk-go/service/redshift/api.go index f49e6d8e9c8..9aef96db1a2 100644 --- a/vendor/github.com/aws/aws-sdk-go/service/redshift/api.go +++ b/vendor/github.com/aws/aws-sdk-go/service/redshift/api.go @@ -6861,6 +6861,112 @@ func (c *Redshift) ResetClusterParameterGroupWithContext(ctx aws.Context, input return out, req.Send() } +const opResizeCluster = "ResizeCluster" + +// ResizeClusterRequest generates a "aws/request.Request" representing the +// client's request for the ResizeCluster operation. The "output" return +// value will be populated with the request's response once the request completes +// successfuly. +// +// Use "Send" method on the returned Request to send the API call to the service. +// the "output" return value is not valid until after Send returns without error. +// +// See ResizeCluster for more information on using the ResizeCluster +// API call, and error handling. +// +// This method is useful when you want to inject custom logic or configuration +// into the SDK's request lifecycle. Such as custom headers, or retry logic. +// +// +// // Example sending a request using the ResizeClusterRequest method. +// req, resp := client.ResizeClusterRequest(params) +// +// err := req.Send() +// if err == nil { // resp is now filled +// fmt.Println(resp) +// } +// +// See also, https://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ResizeCluster +func (c *Redshift) ResizeClusterRequest(input *ResizeClusterInput) (req *request.Request, output *ResizeClusterOutput) { + op := &request.Operation{ + Name: opResizeCluster, + HTTPMethod: "POST", + HTTPPath: "/", + } + + if input == nil { + input = &ResizeClusterInput{} + } + + output = &ResizeClusterOutput{} + req = c.newRequest(op, input, output) + return +} + +// ResizeCluster API operation for Amazon Redshift. +// +// Changes the cluster's type, node type, or number of nodes. +// +// Returns awserr.Error for service API and SDK errors. Use runtime type assertions +// with awserr.Error's Code and Message methods to get detailed information about +// the error. +// +// See the AWS API reference guide for Amazon Redshift's +// API operation ResizeCluster for usage and error information. +// +// Returned Error Codes: +// * ErrCodeInvalidClusterStateFault "InvalidClusterState" +// The specified cluster is not in the available state. +// +// * ErrCodeClusterNotFoundFault "ClusterNotFound" +// The ClusterIdentifier parameter does not refer to an existing cluster. +// +// * ErrCodeNumberOfNodesQuotaExceededFault "NumberOfNodesQuotaExceeded" +// The operation would exceed the number of nodes allotted to the account. For +// information about increasing your quota, go to Limits in Amazon Redshift +// (http://docs.aws.amazon.com/redshift/latest/mgmt/amazon-redshift-limits.html) +// in the Amazon Redshift Cluster Management Guide. +// +// * ErrCodeNumberOfNodesPerClusterLimitExceededFault "NumberOfNodesPerClusterLimitExceeded" +// The operation would exceed the number of nodes allowed for a cluster. +// +// * ErrCodeInsufficientClusterCapacityFault "InsufficientClusterCapacity" +// The number of nodes specified exceeds the allotted capacity of the cluster. +// +// * ErrCodeUnsupportedOptionFault "UnsupportedOptionFault" +// A request option was specified that is not supported. +// +// * ErrCodeUnsupportedOperationFault "UnsupportedOperation" +// The requested operation isn't supported. +// +// * ErrCodeUnauthorizedOperation "UnauthorizedOperation" +// Your account is not authorized to perform the requested operation. +// +// * ErrCodeLimitExceededFault "LimitExceededFault" +// The encryption key has exceeded its grant limit in AWS KMS. +// +// See also, https://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ResizeCluster +func (c *Redshift) ResizeCluster(input *ResizeClusterInput) (*ResizeClusterOutput, error) { + req, out := c.ResizeClusterRequest(input) + return out, req.Send() +} + +// ResizeClusterWithContext is the same as ResizeCluster with the addition of +// the ability to pass a context and additional request options. +// +// See ResizeCluster for details on how to use this API operation. +// +// The context must be non-nil and will be used for request cancellation. If +// the context is nil a panic will occur. In the future the SDK may create +// sub-contexts for http.Requests. See https://golang.org/pkg/context/ +// for more information on using Contexts. +func (c *Redshift) ResizeClusterWithContext(ctx aws.Context, input *ResizeClusterInput, opts ...request.Option) (*ResizeClusterOutput, error) { + req, out := c.ResizeClusterRequest(input) + req.SetContext(ctx) + req.ApplyOptions(opts...) + return out, req.Send() +} + const opRestoreFromClusterSnapshot = "RestoreFromClusterSnapshot" // RestoreFromClusterSnapshotRequest generates a "aws/request.Request" representing the @@ -7832,6 +7938,10 @@ type Cluster struct { // The status of the elastic IP (EIP) address. ElasticIpStatus *ElasticIpStatus `type:"structure"` + // Indicates the number of nodes the cluster can be resized to with the elastic + // resize method. + ElasticResizeNumberOfNodeOptions *string `type:"string"` + // A Boolean value that, if true, indicates that data in the cluster is encrypted // at rest. Encrypted *bool `type:"boolean"` @@ -8018,6 +8128,12 @@ func (s *Cluster) SetElasticIpStatus(v *ElasticIpStatus) *Cluster { return s } +// SetElasticResizeNumberOfNodeOptions sets the ElasticResizeNumberOfNodeOptions field's value. +func (s *Cluster) SetElasticResizeNumberOfNodeOptions(v string) *Cluster { + s.ElasticResizeNumberOfNodeOptions = &v + return s +} + // SetEncrypted sets the Encrypted field's value. func (s *Cluster) SetEncrypted(v bool) *Cluster { s.Encrypted = &v @@ -13107,6 +13223,9 @@ type DescribeResizeOutput struct { // Valid Values: List of table names ImportTablesNotStarted []*string `type:"list"` + // An optional string to provide additional details about the resize action. + Message *string `type:"string"` + // While the resize operation is in progress, this value shows the current amount // of data, in megabytes, that has been processed so far. When the resize operation // is complete, this value shows the total amount of data, in megabytes, on @@ -13114,6 +13233,10 @@ type DescribeResizeOutput struct { // estimated total amount of data before resize). ProgressInMegaBytes *int64 `type:"long"` + // An enum with possible values of ClassicResize and ElasticResize. These values + // describe the type of resize operation being performed. + ResizeType *string `type:"string"` + // The status of the resize operation. // // Valid Values: NONE | IN_PROGRESS | FAILED | SUCCEEDED @@ -13182,12 +13305,24 @@ func (s *DescribeResizeOutput) SetImportTablesNotStarted(v []*string) *DescribeR return s } +// SetMessage sets the Message field's value. +func (s *DescribeResizeOutput) SetMessage(v string) *DescribeResizeOutput { + s.Message = &v + return s +} + // SetProgressInMegaBytes sets the ProgressInMegaBytes field's value. func (s *DescribeResizeOutput) SetProgressInMegaBytes(v int64) *DescribeResizeOutput { s.ProgressInMegaBytes = &v return s } +// SetResizeType sets the ResizeType field's value. +func (s *DescribeResizeOutput) SetResizeType(v string) *DescribeResizeOutput { + s.ResizeType = &v + return s +} + // SetStatus sets the Status field's value. func (s *DescribeResizeOutput) SetStatus(v string) *DescribeResizeOutput { s.Status = &v @@ -16553,6 +16688,109 @@ func (s *ResetClusterParameterGroupInput) SetResetAllParameters(v bool) *ResetCl return s } +type ResizeClusterInput struct { + _ struct{} `type:"structure"` + + // A boolean value indicating whether the resize operation is using the classic + // resize process. + Classic *bool `type:"boolean"` + + // The unique identifier for the cluster to resize. + // + // ClusterIdentifier is a required field + ClusterIdentifier *string `type:"string" required:"true"` + + // The new cluster type for the specified cluster. + ClusterType *string `type:"string"` + + // The new node type for the nodes you are adding. + NodeType *string `type:"string"` + + // The new number of nodes for the cluster. + // + // NumberOfNodes is a required field + NumberOfNodes *int64 `type:"integer" required:"true"` +} + +// String returns the string representation +func (s ResizeClusterInput) String() string { + return awsutil.Prettify(s) +} + +// GoString returns the string representation +func (s ResizeClusterInput) GoString() string { + return s.String() +} + +// Validate inspects the fields of the type to determine if they are valid. +func (s *ResizeClusterInput) Validate() error { + invalidParams := request.ErrInvalidParams{Context: "ResizeClusterInput"} + if s.ClusterIdentifier == nil { + invalidParams.Add(request.NewErrParamRequired("ClusterIdentifier")) + } + if s.NumberOfNodes == nil { + invalidParams.Add(request.NewErrParamRequired("NumberOfNodes")) + } + + if invalidParams.Len() > 0 { + return invalidParams + } + return nil +} + +// SetClassic sets the Classic field's value. +func (s *ResizeClusterInput) SetClassic(v bool) *ResizeClusterInput { + s.Classic = &v + return s +} + +// SetClusterIdentifier sets the ClusterIdentifier field's value. +func (s *ResizeClusterInput) SetClusterIdentifier(v string) *ResizeClusterInput { + s.ClusterIdentifier = &v + return s +} + +// SetClusterType sets the ClusterType field's value. +func (s *ResizeClusterInput) SetClusterType(v string) *ResizeClusterInput { + s.ClusterType = &v + return s +} + +// SetNodeType sets the NodeType field's value. +func (s *ResizeClusterInput) SetNodeType(v string) *ResizeClusterInput { + s.NodeType = &v + return s +} + +// SetNumberOfNodes sets the NumberOfNodes field's value. +func (s *ResizeClusterInput) SetNumberOfNodes(v int64) *ResizeClusterInput { + s.NumberOfNodes = &v + return s +} + +type ResizeClusterOutput struct { + _ struct{} `type:"structure"` + + // Describes a cluster. + Cluster *Cluster `type:"structure"` +} + +// String returns the string representation +func (s ResizeClusterOutput) String() string { + return awsutil.Prettify(s) +} + +// GoString returns the string representation +func (s ResizeClusterOutput) GoString() string { + return s.String() +} + +// SetCluster sets the Cluster field's value. +func (s *ResizeClusterOutput) SetCluster(v *Cluster) *ResizeClusterOutput { + s.Cluster = v + return s +} + type RestoreFromClusterSnapshotInput struct { _ struct{} `type:"structure"` diff --git a/vendor/github.com/aws/aws-sdk-go/service/ssm/api.go b/vendor/github.com/aws/aws-sdk-go/service/ssm/api.go index 63f7cafb682..85f12a98d2a 100644 --- a/vendor/github.com/aws/aws-sdk-go/service/ssm/api.go +++ b/vendor/github.com/aws/aws-sdk-go/service/ssm/api.go @@ -356,8 +356,8 @@ func (c *SSM) CreateAssociationRequest(input *CreateAssociationInput) (req *requ // or targets. // // When you associate a document with one or more instances using instance IDs -// or tags, the SSM Agent running on the instance processes the document and -// configures the instance as specified. +// or tags, SSM Agent running on the instance processes the document and configures +// the instance as specified. // // If you associate a document with an instance that already has an associated // document, the system throws the AssociationAlreadyExists exception. @@ -489,8 +489,8 @@ func (c *SSM) CreateAssociationBatchRequest(input *CreateAssociationBatchInput) // or targets. // // When you associate a document with one or more instances using instance IDs -// or tags, the SSM Agent running on the instance processes the document and -// configures the instance as specified. +// or tags, SSM Agent running on the instance processes the document and configures +// the instance as specified. // // If you associate a document with an instance that already has an associated // document, the system throws the AssociationAlreadyExists exception. @@ -5187,12 +5187,19 @@ func (c *SSM) GetInventoryRequest(input *GetInventoryInput) (req *request.Reques // The filter name is not valid. Verify the you entered the correct name and // try again. // +// * ErrCodeInvalidInventoryGroupException "InvalidInventoryGroupException" +// The specified inventory group is not valid. +// // * ErrCodeInvalidNextToken "InvalidNextToken" // The specified token is not valid. // // * ErrCodeInvalidTypeNameException "InvalidTypeNameException" // The parameter type name is not valid. // +// * ErrCodeInvalidAggregatorException "InvalidAggregatorException" +// The specified aggregator is not valid for inventory groups. Verify that the +// aggregator uses a valid inventory type such as AWS:Application or AWS:InstanceInformation. +// // * ErrCodeInvalidResultAttributeException "InvalidResultAttributeException" // The specified inventory item result attribute is not valid. // @@ -21868,6 +21875,11 @@ type InventoryAggregator struct { // The inventory type and attribute name for aggregation. Expression *string `min:"1" type:"string"` + + // A user-defined set of one or more filters on which to aggregate inventory + // data. Groups return a count of resources that match and don't match the specified + // criteria. + Groups []*InventoryGroup `min:"1" type:"list"` } // String returns the string representation @@ -21889,6 +21901,9 @@ func (s *InventoryAggregator) Validate() error { if s.Expression != nil && len(*s.Expression) < 1 { invalidParams.Add(request.NewErrParamMinLen("Expression", 1)) } + if s.Groups != nil && len(s.Groups) < 1 { + invalidParams.Add(request.NewErrParamMinLen("Groups", 1)) + } if s.Aggregators != nil { for i, v := range s.Aggregators { if v == nil { @@ -21899,6 +21914,16 @@ func (s *InventoryAggregator) Validate() error { } } } + if s.Groups != nil { + for i, v := range s.Groups { + if v == nil { + continue + } + if err := v.Validate(); err != nil { + invalidParams.AddNested(fmt.Sprintf("%s[%v]", "Groups", i), err.(request.ErrInvalidParams)) + } + } + } if invalidParams.Len() > 0 { return invalidParams @@ -21918,6 +21943,12 @@ func (s *InventoryAggregator) SetExpression(v string) *InventoryAggregator { return s } +// SetGroups sets the Groups field's value. +func (s *InventoryAggregator) SetGroups(v []*InventoryGroup) *InventoryAggregator { + s.Groups = v + return s +} + // Status information returned by the DeleteInventory action. type InventoryDeletionStatusItem struct { _ struct{} `type:"structure"` @@ -22154,6 +22185,79 @@ func (s *InventoryFilter) SetValues(v []*string) *InventoryFilter { return s } +// A user-defined set of one or more filters on which to aggregate inventory +// data. Groups return a count of resources that match and don't match the specified +// criteria. +type InventoryGroup struct { + _ struct{} `type:"structure"` + + // Filters define the criteria for the group. The matchingCount field displays + // the number of resources that match the criteria. The notMatchingCount field + // displays the number of resources that don't match the criteria. + // + // Filters is a required field + Filters []*InventoryFilter `min:"1" type:"list" required:"true"` + + // The name of the group. + // + // Name is a required field + Name *string `min:"1" type:"string" required:"true"` +} + +// String returns the string representation +func (s InventoryGroup) String() string { + return awsutil.Prettify(s) +} + +// GoString returns the string representation +func (s InventoryGroup) GoString() string { + return s.String() +} + +// Validate inspects the fields of the type to determine if they are valid. +func (s *InventoryGroup) Validate() error { + invalidParams := request.ErrInvalidParams{Context: "InventoryGroup"} + if s.Filters == nil { + invalidParams.Add(request.NewErrParamRequired("Filters")) + } + if s.Filters != nil && len(s.Filters) < 1 { + invalidParams.Add(request.NewErrParamMinLen("Filters", 1)) + } + if s.Name == nil { + invalidParams.Add(request.NewErrParamRequired("Name")) + } + if s.Name != nil && len(*s.Name) < 1 { + invalidParams.Add(request.NewErrParamMinLen("Name", 1)) + } + if s.Filters != nil { + for i, v := range s.Filters { + if v == nil { + continue + } + if err := v.Validate(); err != nil { + invalidParams.AddNested(fmt.Sprintf("%s[%v]", "Filters", i), err.(request.ErrInvalidParams)) + } + } + } + + if invalidParams.Len() > 0 { + return invalidParams + } + return nil +} + +// SetFilters sets the Filters field's value. +func (s *InventoryGroup) SetFilters(v []*InventoryFilter) *InventoryGroup { + s.Filters = v + return s +} + +// SetName sets the Name field's value. +func (s *InventoryGroup) SetName(v string) *InventoryGroup { + s.Name = &v + return s +} + // Information collected from managed instances based on your inventory policy // document type InventoryItem struct { @@ -31188,6 +31292,12 @@ const ( // CommandFilterKeyStatus is a CommandFilterKey enum value CommandFilterKeyStatus = "Status" + + // CommandFilterKeyExecutionStage is a CommandFilterKey enum value + CommandFilterKeyExecutionStage = "ExecutionStage" + + // CommandFilterKeyDocumentName is a CommandFilterKey enum value + CommandFilterKeyDocumentName = "DocumentName" ) const ( @@ -31473,6 +31583,9 @@ const ( // InventoryQueryOperatorTypeGreaterThan is a InventoryQueryOperatorType enum value InventoryQueryOperatorTypeGreaterThan = "GreaterThan" + + // InventoryQueryOperatorTypeExists is a InventoryQueryOperatorType enum value + InventoryQueryOperatorTypeExists = "Exists" ) const ( diff --git a/vendor/github.com/aws/aws-sdk-go/service/ssm/errors.go b/vendor/github.com/aws/aws-sdk-go/service/ssm/errors.go index 12c7d3d50a4..0c4e6cebda5 100644 --- a/vendor/github.com/aws/aws-sdk-go/service/ssm/errors.go +++ b/vendor/github.com/aws/aws-sdk-go/service/ssm/errors.go @@ -196,6 +196,13 @@ const ( // or ActivationCode and try again. ErrCodeInvalidActivationId = "InvalidActivationId" + // ErrCodeInvalidAggregatorException for service response error code + // "InvalidAggregatorException". + // + // The specified aggregator is not valid for inventory groups. Verify that the + // aggregator uses a valid inventory type such as AWS:Application or AWS:InstanceInformation. + ErrCodeInvalidAggregatorException = "InvalidAggregatorException" + // ErrCodeInvalidAllowedPatternException for service response error code // "InvalidAllowedPatternException". // @@ -335,6 +342,12 @@ const ( // The specified filter value is not valid. ErrCodeInvalidInstanceInformationFilterValue = "InvalidInstanceInformationFilterValue" + // ErrCodeInvalidInventoryGroupException for service response error code + // "InvalidInventoryGroupException". + // + // The specified inventory group is not valid. + ErrCodeInvalidInventoryGroupException = "InvalidInventoryGroupException" + // ErrCodeInvalidInventoryItemContextException for service response error code // "InvalidInventoryItemContextException". // diff --git a/vendor/vendor.json b/vendor/vendor.json index 1c734ab6058..59d54038bda 100644 --- a/vendor/vendor.json +++ b/vendor/vendor.json @@ -39,1020 +39,1020 @@ "revisionTime": "2017-07-27T15:54:43Z" }, { - "checksumSHA1": "16RH8b0R92p8l8CoPCB7vbX2WME=", + "checksumSHA1": "m6ulNlEzjUYadG5spKmU9qrLHQI=", "path": "github.com/aws/aws-sdk-go/aws", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "DtuTqKH29YnLjrIJkRYX0HQtXY0=", "path": "github.com/aws/aws-sdk-go/aws/arn", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "Y9W+4GimK4Fuxq+vyIskVYFRnX4=", "path": "github.com/aws/aws-sdk-go/aws/awserr", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "yyYr41HZ1Aq0hWc3J5ijXwYEcac=", "path": "github.com/aws/aws-sdk-go/aws/awsutil", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "EwL79Cq6euk+EV/t/n2E+jzPNmU=", "path": "github.com/aws/aws-sdk-go/aws/client", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "uEJU4I6dTKaraQKvrljlYKUZwoc=", "path": "github.com/aws/aws-sdk-go/aws/client/metadata", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "vVSUnICaD9IaBQisCfw0n8zLwig=", "path": "github.com/aws/aws-sdk-go/aws/corehandlers", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "I87y3G8r14yKZQ5NlkupFUJ5jW0=", "path": "github.com/aws/aws-sdk-go/aws/credentials", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "JTilCBYWVAfhbKSnrxCNhE8IFns=", "path": "github.com/aws/aws-sdk-go/aws/credentials/ec2rolecreds", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "NUJUTWlc1sV8b7WjfiYc4JZbXl0=", "path": "github.com/aws/aws-sdk-go/aws/credentials/endpointcreds", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "JEYqmF83O5n5bHkupAzA6STm0no=", "path": "github.com/aws/aws-sdk-go/aws/credentials/stscreds", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "eI5TmiOTCFjEUNvWeceFycs9dRU=", "path": "github.com/aws/aws-sdk-go/aws/csm", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "6DRhqSAN7O45gYfRIpwDeuJE8j8=", "path": "github.com/aws/aws-sdk-go/aws/defaults", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "uPkjJo+J10vbEukYYXmf0w7Cn4Q=", "path": "github.com/aws/aws-sdk-go/aws/ec2metadata", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { - "checksumSHA1": "iMbyRn/FOy3AXudhaJHQiwazZxI=", + "checksumSHA1": "r62WcUmf2YEqmAu1QwytNo8gn+g=", "path": "github.com/aws/aws-sdk-go/aws/endpoints", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "Ia/AZ2fZp7J4lMO6fpkvfLU/HGY=", "path": "github.com/aws/aws-sdk-go/aws/request", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "zx1mZCdOwgbjBV3jMfb0kyDd//Q=", "path": "github.com/aws/aws-sdk-go/aws/session", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "Dj9WOMBPbboyUJV4GB99PwPcO4g=", "path": "github.com/aws/aws-sdk-go/aws/signer/v4", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "wjxQlU1PYxrDRFoL1Vek8Wch7jk=", "path": "github.com/aws/aws-sdk-go/internal/sdkio", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "MYLldFRnsZh21TfCkgkXCT3maPU=", "path": "github.com/aws/aws-sdk-go/internal/sdkrand", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "tQVg7Sz2zv+KkhbiXxPH0mh9spg=", "path": "github.com/aws/aws-sdk-go/internal/sdkuri", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "04ypv4x12l4q0TksA1zEVsmgpvw=", "path": "github.com/aws/aws-sdk-go/internal/shareddefaults", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "ZX5QHZb0PrK4UF45um2kaAEiX+8=", "path": "github.com/aws/aws-sdk-go/private/protocol", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "GQuRJY72iGQrufDqIaB50zG27u0=", "path": "github.com/aws/aws-sdk-go/private/protocol/ec2query", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "stsUCJVnZ5yMrmzSExbjbYp5tZ8=", "path": "github.com/aws/aws-sdk-go/private/protocol/eventstream", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "bOQjEfKXaTqe7dZhDDER/wZUzQc=", "path": "github.com/aws/aws-sdk-go/private/protocol/eventstream/eventstreamapi", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "CTsp/h3FbFg9QizH4bH1abLwljg=", "path": "github.com/aws/aws-sdk-go/private/protocol/json/jsonutil", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "R00RL5jJXRYq1iiK1+PGvMfvXyM=", "path": "github.com/aws/aws-sdk-go/private/protocol/jsonrpc", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "SBBVYdLcocjdPzMWgDuR8vcOfDQ=", "path": "github.com/aws/aws-sdk-go/private/protocol/query", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "+O6A945eTP9plLpkEMZB0lwBAcg=", "path": "github.com/aws/aws-sdk-go/private/protocol/query/queryutil", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "uRvmEPKcEdv7qc0Ep2zn0E3Xumc=", "path": "github.com/aws/aws-sdk-go/private/protocol/rest", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "Rpu8KBtHZgvhkwHxUfaky+qW+G4=", "path": "github.com/aws/aws-sdk-go/private/protocol/restjson", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "ODo+ko8D6unAxZuN1jGzMcN4QCc=", "path": "github.com/aws/aws-sdk-go/private/protocol/restxml", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "soXVJWQ/xvEB72Mo6FresaQIxLg=", "path": "github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "F6mth+G7dXN1GI+nktaGo8Lx8aE=", "path": "github.com/aws/aws-sdk-go/private/signer/v2", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "4xFqSOZkwDKot6FJQQgKjhJFoQw=", "path": "github.com/aws/aws-sdk-go/service/acm", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "3e/4A/8NqTOSXEtJ6KhYAqqWnuY=", "path": "github.com/aws/aws-sdk-go/service/acmpca", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "FjnLIflNek7g0j5NKT3qFkNtdY8=", "path": "github.com/aws/aws-sdk-go/service/apigateway", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "K/ynSj/L2OzW+9Zqs2PRe8NzYUc=", "path": "github.com/aws/aws-sdk-go/service/applicationautoscaling", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "owhfVKeKxjXt4P5KO6PSIjnMLIA=", "path": "github.com/aws/aws-sdk-go/service/appsync", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "3JN52M5wxJMazxQWXB4epL78LNQ=", "path": "github.com/aws/aws-sdk-go/service/athena", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "P2+Mby00TG2KXcfhiVoNoqIT1Kc=", "path": "github.com/aws/aws-sdk-go/service/autoscaling", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "42OCpXRErVgOtgPsuTrdg7y++TA=", "path": "github.com/aws/aws-sdk-go/service/batch", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "kPYTVg109H4HL8CKEf1yQvwKMw4=", "path": "github.com/aws/aws-sdk-go/service/budgets", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "GhANcrglYWrhNSR/NzxNe3jClMk=", "path": "github.com/aws/aws-sdk-go/service/cloud9", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "HmZRIixQ6u+zMz2Qt0iTU42WVZU=", "path": "github.com/aws/aws-sdk-go/service/cloudformation", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "1nPdiFsBAEdm+vd7Kk4+8Lx55jw=", "path": "github.com/aws/aws-sdk-go/service/cloudfront", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "iFvc4+KfDeQHigAz2+TmogG1Y7M=", "path": "github.com/aws/aws-sdk-go/service/cloudhsmv2", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "1uyTJ/RTr7c8uL2Kbrp+60PE40M=", "path": "github.com/aws/aws-sdk-go/service/cloudsearch", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "3q2FBK4CEarGbVeLCuuX+g1E3jk=", "path": "github.com/aws/aws-sdk-go/service/cloudtrail", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "o+DFxugR5Cy/Wwlv7GSRRilTW4o=", "path": "github.com/aws/aws-sdk-go/service/cloudwatch", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "7lCMA0KirL9isnwLj87LR2cjipU=", "path": "github.com/aws/aws-sdk-go/service/cloudwatchevents", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "nGSD4idK9hW8o3U4gLGLESYCpwE=", "path": "github.com/aws/aws-sdk-go/service/cloudwatchlogs", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "SfdREjSJPmW+OjKCjwD8m07wT+w=", "path": "github.com/aws/aws-sdk-go/service/codebuild", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "ysSU5yhqWT4+deQUYZiI8/1tJ2c=", "path": "github.com/aws/aws-sdk-go/service/codecommit", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "GvjVVg5btXuEFEHqyoe19BZogGw=", "path": "github.com/aws/aws-sdk-go/service/codedeploy", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "vklitYIK0AiOXA0obSTq0c04pc4=", "path": "github.com/aws/aws-sdk-go/service/codepipeline", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "rL0O6L1zSJ/UQE0kEWUoCOOFDog=", "path": "github.com/aws/aws-sdk-go/service/cognitoidentity", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "Zc5M/qyd8bDCYuNRvFnF05gMp5s=", "path": "github.com/aws/aws-sdk-go/service/cognitoidentityprovider", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "o9WTZk66Jlu+0UdO1wmtO3qp8ps=", "path": "github.com/aws/aws-sdk-go/service/configservice", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "/y7nXSnR9OqMoxlIl1hFcCk5kT8=", "path": "github.com/aws/aws-sdk-go/service/databasemigrationservice", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "0EzaatOYLyDsPRW0JgbtwdtPeVk=", "path": "github.com/aws/aws-sdk-go/service/dax", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { - "checksumSHA1": "eAvb9FYZ6+lM9LhP7TrpNLrNn/Y=", + "checksumSHA1": "LfJ0Owy9HyaulKTvDEgCdkChMG8=", "path": "github.com/aws/aws-sdk-go/service/devicefarm", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "PBdPTvba1Ci9LrAs0VExIAWtdKQ=", "path": "github.com/aws/aws-sdk-go/service/directconnect", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "a02+OXxnVBBBeaZpgs8dXUHj8b0=", "path": "github.com/aws/aws-sdk-go/service/directoryservice", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "aAw9xutYOwCdzo7p0QwTFVFJr8Y=", "path": "github.com/aws/aws-sdk-go/service/dlm", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "oTvEWASg5Q7pm2LF6FDsFYqg1Ko=", "path": "github.com/aws/aws-sdk-go/service/dynamodb", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { - "checksumSHA1": "xNlCk/zwgdNvxnUcdGOhW9K5FJg=", + "checksumSHA1": "S6SNPcGvAQWJKEZCAgMUKXYK9PE=", "path": "github.com/aws/aws-sdk-go/service/ec2", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "VD7bAh0n/UgOwRBPe5y38Ow/dHU=", "path": "github.com/aws/aws-sdk-go/service/ecr", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "Q8RuvleYpFO1hlm/eKRbg5wG/nQ=", "path": "github.com/aws/aws-sdk-go/service/ecs", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "NDrEwIZeUSlHgENwBzVdy0KcCCY=", "path": "github.com/aws/aws-sdk-go/service/efs", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "5QdblYPoDtRsQ8aczXOesIKTDpc=", "path": "github.com/aws/aws-sdk-go/service/eks", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "kvsll2DfqS1hg97xSWMIcMan5as=", "path": "github.com/aws/aws-sdk-go/service/elasticache", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "fx9nf/M9h4DpZY5pEdnh9DeCnsU=", "path": "github.com/aws/aws-sdk-go/service/elasticbeanstalk", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "O++z0DZj/MzSNWgVfV+SYzTS/fM=", "path": "github.com/aws/aws-sdk-go/service/elasticsearchservice", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "VFjWDQMsGpFMrNfcc//ABRpo6Ew=", "path": "github.com/aws/aws-sdk-go/service/elastictranscoder", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "Gp+QZjtg8PCNVi9X8m2SqtFvMas=", "path": "github.com/aws/aws-sdk-go/service/elb", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "wIiqI9GFAV2AQ32o2kEYHNyqVig=", "path": "github.com/aws/aws-sdk-go/service/elbv2", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "oNOLs79R42Vsj/jYTYtrbyTWxcw=", "path": "github.com/aws/aws-sdk-go/service/emr", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "3hICqVOs1WmluYMZN9fTMbDQSyM=", "path": "github.com/aws/aws-sdk-go/service/firehose", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "tNVmAgvnURWLWibVCL7vIDYU7UM=", "path": "github.com/aws/aws-sdk-go/service/fms", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "J1SHh0J6kX8JBD0+TQCFP+1Kij4=", "path": "github.com/aws/aws-sdk-go/service/gamelift", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "BB3/VzUU5Rg4KgrezJ17D4kCnwA=", "path": "github.com/aws/aws-sdk-go/service/glacier", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "p+Nb4OF6gcHREcCKa/tyZ6pWBQ8=", "path": "github.com/aws/aws-sdk-go/service/glue", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "HNndTio5+fNOiLr23i+QZpPp8HU=", "path": "github.com/aws/aws-sdk-go/service/guardduty", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "ae+jhUirSvN0IXPVU7X7xc+EbFE=", "path": "github.com/aws/aws-sdk-go/service/iam", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "39yMWxFP9XB+8wWWCZX4vkNWmxU=", "path": "github.com/aws/aws-sdk-go/service/inspector", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "JrNTM1HkStbS/DyQXkVokDdB71w=", "path": "github.com/aws/aws-sdk-go/service/iot", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "q9HZ/0/lBSRKtjHXMegmcRcazPo=", "path": "github.com/aws/aws-sdk-go/service/kinesis", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "nUdxsOW9jg+m+sWZYPu7oX9rZo8=", "path": "github.com/aws/aws-sdk-go/service/kinesisanalytics", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "vaMnUnRVDkpHp/e4f3dFX20JblM=", "path": "github.com/aws/aws-sdk-go/service/kms", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "K4OamITKC7PKo1eHrSl0z8Visg0=", "path": "github.com/aws/aws-sdk-go/service/lambda", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "7rQmR+jAZ4zUIC4upAxyxrbfzNM=", "path": "github.com/aws/aws-sdk-go/service/lexmodelbuildingservice", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "tX/3xEkl13DuKNIO0v3qYseEIvI=", "path": "github.com/aws/aws-sdk-go/service/lightsail", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "+l6bA5aVzmBXH2Isj1xZkd5RKNY=", "path": "github.com/aws/aws-sdk-go/service/macie", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { - "checksumSHA1": "QTsWqalNtwR16n+auzHlg2Vd6HQ=", + "checksumSHA1": "MHQIPj/OypziSYp1wwFYf72lKAY=", "path": "github.com/aws/aws-sdk-go/service/mediaconvert", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "HoX+EX8JW8kDZxJAs8545YRfjuI=", "path": "github.com/aws/aws-sdk-go/service/medialive", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "CggySAQfK9WXsX37mRI8UqXGkJo=", "path": "github.com/aws/aws-sdk-go/service/mediapackage", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "9NU6dJOvKvcgnl/4eUdwy4YD5ss=", "path": "github.com/aws/aws-sdk-go/service/mediastore", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "qyIVtaN5mzPq4d7BDj9YpYtifKs=", "path": "github.com/aws/aws-sdk-go/service/mediastoredata", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "1jKxCBvS+zKzq6p2i4BqLXYHm48=", "path": "github.com/aws/aws-sdk-go/service/mq", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "E3i2/WM1kDE7WBOSRnDsZkwmZwI=", "path": "github.com/aws/aws-sdk-go/service/neptune", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "x3PsW91a7fh+Q466y3WM3fdtnGg=", "path": "github.com/aws/aws-sdk-go/service/opsworks", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "YCd2EU1DPiO0QTRZk6G1fLZAyg0=", "path": "github.com/aws/aws-sdk-go/service/organizations", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "e5v4Cc9/0H2ngQNuvVyj2Mt0vi0=", "path": "github.com/aws/aws-sdk-go/service/pinpoint", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "j1i1tZ94/kDvvzgpv5xqxwNvgyY=", "path": "github.com/aws/aws-sdk-go/service/pricing", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "rkR+yGW3JcvP35fmL5psiRYAZ/M=", "path": "github.com/aws/aws-sdk-go/service/rds", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { - "checksumSHA1": "2eywZb+K9OAw3bZ0gHwOCCdcb/8=", + "checksumSHA1": "N/wIyWWN2g8QcyCJQLTDoFxaoLk=", "path": "github.com/aws/aws-sdk-go/service/redshift", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "KlM6azZ5G09MmPg+lzEizW2qaLA=", "path": "github.com/aws/aws-sdk-go/service/route53", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "DmKatmbYsvm+MoCP01PCdQ6Y6Tk=", "path": "github.com/aws/aws-sdk-go/service/s3", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "hqW1N6KXBXppfMH4JR9yXv9xy/M=", "path": "github.com/aws/aws-sdk-go/service/sagemaker", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "VmNRKxSI3CS9RvMT9Zk+y/evy1M=", "path": "github.com/aws/aws-sdk-go/service/secretsmanager", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "Y29bmjwKXcPg0d0WvZNFGdhd4+E=", "path": "github.com/aws/aws-sdk-go/service/serverlessapplicationrepository", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "T8dOJ1jjEBdogUE03oRPRJCOY3k=", "path": "github.com/aws/aws-sdk-go/service/servicecatalog", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "UhJ0RdPXzdMOUEBWREB5Zi9lgmY=", "path": "github.com/aws/aws-sdk-go/service/servicediscovery", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "0vtFXRYnhlCCq8/zPv1O1YWIoSg=", "path": "github.com/aws/aws-sdk-go/service/ses", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "1rJbvLXRsCzWhTihruRq/i0Zawg=", "path": "github.com/aws/aws-sdk-go/service/sfn", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "hliWYTmov/HswyMpYq93zJtdkk0=", "path": "github.com/aws/aws-sdk-go/service/simpledb", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "bW9FW0Qe3VURaSoY305kA/wCFrM=", "path": "github.com/aws/aws-sdk-go/service/sns", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "ECIZck5xhocpUl8GeUAdeSnCgvg=", "path": "github.com/aws/aws-sdk-go/service/sqs", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { - "checksumSHA1": "lWts5yvTa/92d0U77xSCP7ouO6s=", + "checksumSHA1": "307CISQxMTTnatZ//6/p8obzeGs=", "path": "github.com/aws/aws-sdk-go/service/ssm", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "TeuakooizAybzyMQyTXllUyhfBg=", "path": "github.com/aws/aws-sdk-go/service/storagegateway", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "UhIVLDgQc19wjrPj8pP7Fu2UwWc=", "path": "github.com/aws/aws-sdk-go/service/sts", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "zSqEhiGtEK6ll3f1Rlf2tuDKQA8=", "path": "github.com/aws/aws-sdk-go/service/swf", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "H8Pa7irZ9gpuYGJk3uMK59gxGTs=", "path": "github.com/aws/aws-sdk-go/service/waf", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "uRMuwxPD/AlpvFpKppgAYzvlC0A=", "path": "github.com/aws/aws-sdk-go/service/wafregional", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "oe8l2ibuhzz7fWM3f64cWnHwFy8=", "path": "github.com/aws/aws-sdk-go/service/workspaces", - "revision": "daed0c76021ea9c4e659e3ec80bcd2d657297100", - "revisionTime": "2018-08-14T22:31:59Z", - "version": "v1.15.12", - "versionExact": "v1.15.12" + "revision": "b36008bfc7d4b9826423278ae193420e41afc4b4", + "revisionTime": "2018-08-16T22:24:54Z", + "version": "v1.15.14", + "versionExact": "v1.15.14" }, { "checksumSHA1": "usT4LCSQItkFvFOQT7cBlkCuGaE=",