Update vendored deps, including AWS SDK, openpgp, ftp, ...

This commit is contained in:
Andrey Smirnov
2018-04-05 17:46:45 +03:00
parent cef4fefc40
commit 0e6ee35942
1497 changed files with 450721 additions and 68034 deletions
File diff suppressed because it is too large Load Diff
+11 -11
View File
@@ -6,25 +6,25 @@
// The WorkDocs API is designed for the following use cases:
//
// * File Migration: File migration applications are supported for users
// who want to migrate their files from an on-premise or off-premise file
// who want to migrate their files from an on-premises or off-premises file
// system or service. Users can insert files into a user directory structure,
// as well as allow for basic metadata changes, such as modifications to
// the permissions of files.
//
// * Security: Support security applications are supported for users who
// have additional security needs, such as anti-virus or data loss prevention.
// The APIs, in conjunction with Amazon CloudTrail, allow these applications
// to detect when changes occur in Amazon WorkDocs, so the application can
// take the necessary actions and replace the target file. The application
// can also choose to email the user if the target file violates the policy.
// have additional security needs, such as antivirus or data loss prevention.
// The API actions, along with AWS CloudTrail, allow these applications to
// detect when changes occur in Amazon WorkDocs. Then, the application can
// take the necessary actions and replace the target file. If the target
// file violates the policy, the application can also choose to email the
// user.
//
// * eDiscovery/Analytics: General administrative applications are supported,
// such as eDiscovery and analytics. These applications can choose to mimic
// and/or record the actions in an Amazon WorkDocs site, in conjunction with
// Amazon CloudTrails, to replicate data for eDiscovery, backup, or analytical
// applications.
// or record the actions in an Amazon WorkDocs site, along with AWS CloudTrail,
// to replicate data for eDiscovery, backup, or analytical applications.
//
// All Amazon WorkDocs APIs are Amazon authenticated, certificate-signed APIs.
// All Amazon WorkDocs API actions are Amazon authenticated and certificate-signed.
// They not only require the use of the AWS SDK, but also allow for the exclusive
// use of IAM users and roles to help facilitate access, trust, and permission
// policies. By creating a role and allowing an IAM user to access the Amazon
@@ -42,7 +42,7 @@
//
// Using the Client
//
// To Amazon WorkDocs with the SDK use the New function to create
// To contact Amazon WorkDocs with the SDK use the New function to create
// a new service client. With that client you can make API requests to the service.
// These clients are safe to use concurrently.
//
+9 -3
View File
@@ -53,8 +53,8 @@ const (
// "FailedDependencyException".
//
// The AWS Directory Service cannot reach an on-premises instance. Or a dependency
// under the control of the organization is failing, such as a connected active
// directory.
// under the control of the organization is failing, such as a connected Active
// Directory.
ErrCodeFailedDependencyException = "FailedDependencyException"
// ErrCodeIllegalUserStateException for service response error code
@@ -66,7 +66,7 @@ const (
// ErrCodeInvalidArgumentException for service response error code
// "InvalidArgumentException".
//
// The pagination marker and/or limit fields are not valid.
// The pagination marker or limit fields are not valid.
ErrCodeInvalidArgumentException = "InvalidArgumentException"
// ErrCodeInvalidOperationException for service response error code
@@ -75,6 +75,12 @@ const (
// The operation is invalid.
ErrCodeInvalidOperationException = "InvalidOperationException"
// ErrCodeInvalidPasswordException for service response error code
// "InvalidPasswordException".
//
// The password is invalid.
ErrCodeInvalidPasswordException = "InvalidPasswordException"
// ErrCodeLimitExceededException for service response error code
// "LimitExceededException".
//
@@ -154,6 +154,10 @@ type WorkDocsAPI interface {
DescribeFolderContentsPages(*workdocs.DescribeFolderContentsInput, func(*workdocs.DescribeFolderContentsOutput, bool) bool) error
DescribeFolderContentsPagesWithContext(aws.Context, *workdocs.DescribeFolderContentsInput, func(*workdocs.DescribeFolderContentsOutput, bool) bool, ...request.Option) error
DescribeGroups(*workdocs.DescribeGroupsInput) (*workdocs.DescribeGroupsOutput, error)
DescribeGroupsWithContext(aws.Context, *workdocs.DescribeGroupsInput, ...request.Option) (*workdocs.DescribeGroupsOutput, error)
DescribeGroupsRequest(*workdocs.DescribeGroupsInput) (*request.Request, *workdocs.DescribeGroupsOutput)
DescribeNotificationSubscriptions(*workdocs.DescribeNotificationSubscriptionsInput) (*workdocs.DescribeNotificationSubscriptionsOutput, error)
DescribeNotificationSubscriptionsWithContext(aws.Context, *workdocs.DescribeNotificationSubscriptionsInput, ...request.Option) (*workdocs.DescribeNotificationSubscriptionsOutput, error)
DescribeNotificationSubscriptionsRequest(*workdocs.DescribeNotificationSubscriptionsInput) (*request.Request, *workdocs.DescribeNotificationSubscriptionsOutput)