Skip to content

WorkDocsClient

Index > WorkDocs > WorkDocsClient

Auto-generated documentation for WorkDocs type annotations stubs module mypy-boto3-workdocs.

WorkDocsClient

Type annotations and code completion for boto3.client("workdocs"). boto3 documentation

Usage example
from boto3.session import Session
from mypy_boto3_workdocs.client import WorkDocsClient

def get_workdocs_client() -> WorkDocsClient:
    return Session().client("workdocs")

Exceptions

boto3 client exceptions are generated in runtime. This class provides code completion for boto3.client("workdocs").exceptions structure.

Usage example
client = boto3.client("workdocs")

try:
    do_something(client)
except (
    client.ClientError,
    client.ConcurrentModificationException,
    client.ConflictingOperationException,
    client.CustomMetadataLimitExceededException,
    client.DeactivatingLastSystemUserException,
    client.DocumentLockedForCommentsException,
    client.DraftUploadOutOfSyncException,
    client.EntityAlreadyExistsException,
    client.EntityNotExistsException,
    client.FailedDependencyException,
    client.IllegalUserStateException,
    client.InvalidArgumentException,
    client.InvalidCommentOperationException,
    client.InvalidOperationException,
    client.InvalidPasswordException,
    client.LimitExceededException,
    client.ProhibitedStateException,
    client.RequestedEntityTooLargeException,
    client.ResourceAlreadyCheckedOutException,
    client.ServiceUnavailableException,
    client.StorageLimitExceededException,
    client.StorageLimitWillExceedException,
    client.TooManyLabelsException,
    client.TooManySubscriptionsException,
    client.UnauthorizedOperationException,
    client.UnauthorizedResourceAccessException,
) as e:
    print(e)
Type checking example
from mypy_boto3_workdocs.client import Exceptions

def handle_error(exc: Exceptions.ClientError) -> None:
    ...

Methods

abort_document_version_upload

Aborts the upload of the specified document version that was previously initiated by InitiateDocumentVersionUpload.

Type annotations and code completion for boto3.client("workdocs").abort_document_version_upload method. boto3 documentation

Method definition
def abort_document_version_upload(
    self,
    *,
    DocumentId: str,
    VersionId: str,
    AuthenticationToken: str = ...,
) -> EmptyResponseMetadataTypeDef:  # (1)
    ...
  1. See EmptyResponseMetadataTypeDef
Usage example with kwargs
kwargs: AbortDocumentVersionUploadRequestRequestTypeDef = {  # (1)
    "DocumentId": ...,
    "VersionId": ...,
}

parent.abort_document_version_upload(**kwargs)
  1. See AbortDocumentVersionUploadRequestRequestTypeDef

activate_user

Activates the specified user.

Type annotations and code completion for boto3.client("workdocs").activate_user method. boto3 documentation

Method definition
def activate_user(
    self,
    *,
    UserId: str,
    AuthenticationToken: str = ...,
) -> ActivateUserResponseTypeDef:  # (1)
    ...
  1. See ActivateUserResponseTypeDef
Usage example with kwargs
kwargs: ActivateUserRequestRequestTypeDef = {  # (1)
    "UserId": ...,
}

parent.activate_user(**kwargs)
  1. See ActivateUserRequestRequestTypeDef

add_resource_permissions

Creates a set of permissions for the specified folder or document.

Type annotations and code completion for boto3.client("workdocs").add_resource_permissions method. boto3 documentation

Method definition
def add_resource_permissions(
    self,
    *,
    ResourceId: str,
    Principals: Sequence[SharePrincipalTypeDef],  # (1)
    AuthenticationToken: str = ...,
    NotificationOptions: NotificationOptionsTypeDef = ...,  # (2)
) -> AddResourcePermissionsResponseTypeDef:  # (3)
    ...
  1. See SharePrincipalTypeDef
  2. See NotificationOptionsTypeDef
  3. See AddResourcePermissionsResponseTypeDef
Usage example with kwargs
kwargs: AddResourcePermissionsRequestRequestTypeDef = {  # (1)
    "ResourceId": ...,
    "Principals": ...,
}

parent.add_resource_permissions(**kwargs)
  1. See AddResourcePermissionsRequestRequestTypeDef

can_paginate

Check if an operation can be paginated.

Type annotations and code completion for boto3.client("workdocs").can_paginate method. boto3 documentation

Method definition
def can_paginate(
    self,
    operation_name: str,
) -> bool:
    ...

close

Closes underlying endpoint connections.

Type annotations and code completion for boto3.client("workdocs").close method. boto3 documentation

Method definition
def close(
    self,
) -> None:
    ...

create_comment

Adds a new comment to the specified document version.

Type annotations and code completion for boto3.client("workdocs").create_comment method. boto3 documentation

Method definition
def create_comment(
    self,
    *,
    DocumentId: str,
    VersionId: str,
    Text: str,
    AuthenticationToken: str = ...,
    ParentId: str = ...,
    ThreadId: str = ...,
    Visibility: CommentVisibilityTypeType = ...,  # (1)
    NotifyCollaborators: bool = ...,
) -> CreateCommentResponseTypeDef:  # (2)
    ...
  1. See CommentVisibilityTypeType
  2. See CreateCommentResponseTypeDef
Usage example with kwargs
kwargs: CreateCommentRequestRequestTypeDef = {  # (1)
    "DocumentId": ...,
    "VersionId": ...,
    "Text": ...,
}

parent.create_comment(**kwargs)
  1. See CreateCommentRequestRequestTypeDef

create_custom_metadata

Adds one or more custom properties to the specified resource (a folder, document, or version).

Type annotations and code completion for boto3.client("workdocs").create_custom_metadata method. boto3 documentation

Method definition
def create_custom_metadata(
    self,
    *,
    ResourceId: str,
    CustomMetadata: Mapping[str, str],
    AuthenticationToken: str = ...,
    VersionId: str = ...,
) -> Dict[str, Any]:
    ...
Usage example with kwargs
kwargs: CreateCustomMetadataRequestRequestTypeDef = {  # (1)
    "ResourceId": ...,
    "CustomMetadata": ...,
}

parent.create_custom_metadata(**kwargs)
  1. See CreateCustomMetadataRequestRequestTypeDef

create_folder

Creates a folder with the specified name and parent folder.

Type annotations and code completion for boto3.client("workdocs").create_folder method. boto3 documentation

Method definition
def create_folder(
    self,
    *,
    ParentFolderId: str,
    AuthenticationToken: str = ...,
    Name: str = ...,
) -> CreateFolderResponseTypeDef:  # (1)
    ...
  1. See CreateFolderResponseTypeDef
Usage example with kwargs
kwargs: CreateFolderRequestRequestTypeDef = {  # (1)
    "ParentFolderId": ...,
}

parent.create_folder(**kwargs)
  1. See CreateFolderRequestRequestTypeDef

create_labels

Adds the specified list of labels to the given resource (a document or folder) See also: AWS API Documentation.

Type annotations and code completion for boto3.client("workdocs").create_labels method. boto3 documentation

Method definition
def create_labels(
    self,
    *,
    ResourceId: str,
    Labels: Sequence[str],
    AuthenticationToken: str = ...,
) -> Dict[str, Any]:
    ...
Usage example with kwargs
kwargs: CreateLabelsRequestRequestTypeDef = {  # (1)
    "ResourceId": ...,
    "Labels": ...,
}

parent.create_labels(**kwargs)
  1. See CreateLabelsRequestRequestTypeDef

create_notification_subscription

Configure Amazon WorkDocs to use Amazon SNS notifications.

Type annotations and code completion for boto3.client("workdocs").create_notification_subscription method. boto3 documentation

Method definition
def create_notification_subscription(
    self,
    *,
    OrganizationId: str,
    Endpoint: str,
    Protocol: SubscriptionProtocolTypeType,  # (1)
    SubscriptionType: SubscriptionTypeType,  # (2)
) -> CreateNotificationSubscriptionResponseTypeDef:  # (3)
    ...
  1. See SubscriptionProtocolTypeType
  2. See SubscriptionTypeType
  3. See CreateNotificationSubscriptionResponseTypeDef
Usage example with kwargs
kwargs: CreateNotificationSubscriptionRequestRequestTypeDef = {  # (1)
    "OrganizationId": ...,
    "Endpoint": ...,
    "Protocol": ...,
    "SubscriptionType": ...,
}

parent.create_notification_subscription(**kwargs)
  1. See CreateNotificationSubscriptionRequestRequestTypeDef

create_user

Creates a user in a Simple AD or Microsoft AD directory.

Type annotations and code completion for boto3.client("workdocs").create_user method. boto3 documentation

Method definition
def create_user(
    self,
    *,
    Username: str,
    GivenName: str,
    Surname: str,
    Password: str,
    OrganizationId: str = ...,
    EmailAddress: str = ...,
    TimeZoneId: str = ...,
    StorageRule: StorageRuleTypeTypeDef = ...,  # (1)
    AuthenticationToken: str = ...,
) -> CreateUserResponseTypeDef:  # (2)
    ...
  1. See StorageRuleTypeTypeDef
  2. See CreateUserResponseTypeDef
Usage example with kwargs
kwargs: CreateUserRequestRequestTypeDef = {  # (1)
    "Username": ...,
    "GivenName": ...,
    "Surname": ...,
    "Password": ...,
}

parent.create_user(**kwargs)
  1. See CreateUserRequestRequestTypeDef

deactivate_user

Deactivates the specified user, which revokes the user's access to Amazon WorkDocs.

Type annotations and code completion for boto3.client("workdocs").deactivate_user method. boto3 documentation

Method definition
def deactivate_user(
    self,
    *,
    UserId: str,
    AuthenticationToken: str = ...,
) -> EmptyResponseMetadataTypeDef:  # (1)
    ...
  1. See EmptyResponseMetadataTypeDef
Usage example with kwargs
kwargs: DeactivateUserRequestRequestTypeDef = {  # (1)
    "UserId": ...,
}

parent.deactivate_user(**kwargs)
  1. See DeactivateUserRequestRequestTypeDef

delete_comment

Deletes the specified comment from the document version.

Type annotations and code completion for boto3.client("workdocs").delete_comment method. boto3 documentation

Method definition
def delete_comment(
    self,
    *,
    DocumentId: str,
    VersionId: str,
    CommentId: str,
    AuthenticationToken: str = ...,
) -> EmptyResponseMetadataTypeDef:  # (1)
    ...
  1. See EmptyResponseMetadataTypeDef
Usage example with kwargs
kwargs: DeleteCommentRequestRequestTypeDef = {  # (1)
    "DocumentId": ...,
    "VersionId": ...,
    "CommentId": ...,
}

parent.delete_comment(**kwargs)
  1. See DeleteCommentRequestRequestTypeDef

delete_custom_metadata

Deletes custom metadata from the specified resource.

Type annotations and code completion for boto3.client("workdocs").delete_custom_metadata method. boto3 documentation

Method definition
def delete_custom_metadata(
    self,
    *,
    ResourceId: str,
    AuthenticationToken: str = ...,
    VersionId: str = ...,
    Keys: Sequence[str] = ...,
    DeleteAll: bool = ...,
) -> Dict[str, Any]:
    ...
Usage example with kwargs
kwargs: DeleteCustomMetadataRequestRequestTypeDef = {  # (1)
    "ResourceId": ...,
}

parent.delete_custom_metadata(**kwargs)
  1. See DeleteCustomMetadataRequestRequestTypeDef

delete_document

Permanently deletes the specified document and its associated metadata.

Type annotations and code completion for boto3.client("workdocs").delete_document method. boto3 documentation

Method definition
def delete_document(
    self,
    *,
    DocumentId: str,
    AuthenticationToken: str = ...,
) -> EmptyResponseMetadataTypeDef:  # (1)
    ...
  1. See EmptyResponseMetadataTypeDef
Usage example with kwargs
kwargs: DeleteDocumentRequestRequestTypeDef = {  # (1)
    "DocumentId": ...,
}

parent.delete_document(**kwargs)
  1. See DeleteDocumentRequestRequestTypeDef

delete_document_version

Deletes a specific version of a document.

Type annotations and code completion for boto3.client("workdocs").delete_document_version method. boto3 documentation

Method definition
def delete_document_version(
    self,
    *,
    DocumentId: str,
    VersionId: str,
    DeletePriorVersions: bool,
    AuthenticationToken: str = ...,
) -> EmptyResponseMetadataTypeDef:  # (1)
    ...
  1. See EmptyResponseMetadataTypeDef
Usage example with kwargs
kwargs: DeleteDocumentVersionRequestRequestTypeDef = {  # (1)
    "DocumentId": ...,
    "VersionId": ...,
    "DeletePriorVersions": ...,
}

parent.delete_document_version(**kwargs)
  1. See DeleteDocumentVersionRequestRequestTypeDef

delete_folder

Permanently deletes the specified folder and its contents.

Type annotations and code completion for boto3.client("workdocs").delete_folder method. boto3 documentation

Method definition
def delete_folder(
    self,
    *,
    FolderId: str,
    AuthenticationToken: str = ...,
) -> EmptyResponseMetadataTypeDef:  # (1)
    ...
  1. See EmptyResponseMetadataTypeDef
Usage example with kwargs
kwargs: DeleteFolderRequestRequestTypeDef = {  # (1)
    "FolderId": ...,
}

parent.delete_folder(**kwargs)
  1. See DeleteFolderRequestRequestTypeDef

delete_folder_contents

Deletes the contents of the specified folder.

Type annotations and code completion for boto3.client("workdocs").delete_folder_contents method. boto3 documentation

Method definition
def delete_folder_contents(
    self,
    *,
    FolderId: str,
    AuthenticationToken: str = ...,
) -> EmptyResponseMetadataTypeDef:  # (1)
    ...
  1. See EmptyResponseMetadataTypeDef
Usage example with kwargs
kwargs: DeleteFolderContentsRequestRequestTypeDef = {  # (1)
    "FolderId": ...,
}

parent.delete_folder_contents(**kwargs)
  1. See DeleteFolderContentsRequestRequestTypeDef

delete_labels

Deletes the specified list of labels from a resource.

Type annotations and code completion for boto3.client("workdocs").delete_labels method. boto3 documentation

Method definition
def delete_labels(
    self,
    *,
    ResourceId: str,
    AuthenticationToken: str = ...,
    Labels: Sequence[str] = ...,
    DeleteAll: bool = ...,
) -> Dict[str, Any]:
    ...
Usage example with kwargs
kwargs: DeleteLabelsRequestRequestTypeDef = {  # (1)
    "ResourceId": ...,
}

parent.delete_labels(**kwargs)
  1. See DeleteLabelsRequestRequestTypeDef

delete_notification_subscription

Deletes the specified subscription from the specified organization.

Type annotations and code completion for boto3.client("workdocs").delete_notification_subscription method. boto3 documentation

Method definition
def delete_notification_subscription(
    self,
    *,
    SubscriptionId: str,
    OrganizationId: str,
) -> EmptyResponseMetadataTypeDef:  # (1)
    ...
  1. See EmptyResponseMetadataTypeDef
Usage example with kwargs
kwargs: DeleteNotificationSubscriptionRequestRequestTypeDef = {  # (1)
    "SubscriptionId": ...,
    "OrganizationId": ...,
}

parent.delete_notification_subscription(**kwargs)
  1. See DeleteNotificationSubscriptionRequestRequestTypeDef

delete_user

Deletes the specified user from a Simple AD or Microsoft AD directory.

Type annotations and code completion for boto3.client("workdocs").delete_user method. boto3 documentation

Method definition
def delete_user(
    self,
    *,
    UserId: str,
    AuthenticationToken: str = ...,
) -> EmptyResponseMetadataTypeDef:  # (1)
    ...
  1. See EmptyResponseMetadataTypeDef
Usage example with kwargs
kwargs: DeleteUserRequestRequestTypeDef = {  # (1)
    "UserId": ...,
}

parent.delete_user(**kwargs)
  1. See DeleteUserRequestRequestTypeDef

describe_activities

Describes the user activities in a specified time period.

Type annotations and code completion for boto3.client("workdocs").describe_activities method. boto3 documentation

Method definition
def describe_activities(
    self,
    *,
    AuthenticationToken: str = ...,
    StartTime: Union[datetime, str] = ...,
    EndTime: Union[datetime, str] = ...,
    OrganizationId: str = ...,
    ActivityTypes: str = ...,
    ResourceId: str = ...,
    UserId: str = ...,
    IncludeIndirectActivities: bool = ...,
    Limit: int = ...,
    Marker: str = ...,
) -> DescribeActivitiesResponseTypeDef:  # (1)
    ...
  1. See DescribeActivitiesResponseTypeDef
Usage example with kwargs
kwargs: DescribeActivitiesRequestRequestTypeDef = {  # (1)
    "AuthenticationToken": ...,
}

parent.describe_activities(**kwargs)
  1. See DescribeActivitiesRequestRequestTypeDef

describe_comments

List all the comments for the specified document version.

Type annotations and code completion for boto3.client("workdocs").describe_comments method. boto3 documentation

Method definition
def describe_comments(
    self,
    *,
    DocumentId: str,
    VersionId: str,
    AuthenticationToken: str = ...,
    Limit: int = ...,
    Marker: str = ...,
) -> DescribeCommentsResponseTypeDef:  # (1)
    ...
  1. See DescribeCommentsResponseTypeDef
Usage example with kwargs
kwargs: DescribeCommentsRequestRequestTypeDef = {  # (1)
    "DocumentId": ...,
    "VersionId": ...,
}

parent.describe_comments(**kwargs)
  1. See DescribeCommentsRequestRequestTypeDef

describe_document_versions

Retrieves the document versions for the specified document.

Type annotations and code completion for boto3.client("workdocs").describe_document_versions method. boto3 documentation

Method definition
def describe_document_versions(
    self,
    *,
    DocumentId: str,
    AuthenticationToken: str = ...,
    Marker: str = ...,
    Limit: int = ...,
    Include: str = ...,
    Fields: str = ...,
) -> DescribeDocumentVersionsResponseTypeDef:  # (1)
    ...
  1. See DescribeDocumentVersionsResponseTypeDef
Usage example with kwargs
kwargs: DescribeDocumentVersionsRequestRequestTypeDef = {  # (1)
    "DocumentId": ...,
}

parent.describe_document_versions(**kwargs)
  1. See DescribeDocumentVersionsRequestRequestTypeDef

describe_folder_contents

Describes the contents of the specified folder, including its documents and subfolders.

Type annotations and code completion for boto3.client("workdocs").describe_folder_contents method. boto3 documentation

Method definition
def describe_folder_contents(
    self,
    *,
    FolderId: str,
    AuthenticationToken: str = ...,
    Sort: ResourceSortTypeType = ...,  # (1)
    Order: OrderTypeType = ...,  # (2)
    Limit: int = ...,
    Marker: str = ...,
    Type: FolderContentTypeType = ...,  # (3)
    Include: str = ...,
) -> DescribeFolderContentsResponseTypeDef:  # (4)
    ...
  1. See ResourceSortTypeType
  2. See OrderTypeType
  3. See FolderContentTypeType
  4. See DescribeFolderContentsResponseTypeDef
Usage example with kwargs
kwargs: DescribeFolderContentsRequestRequestTypeDef = {  # (1)
    "FolderId": ...,
}

parent.describe_folder_contents(**kwargs)
  1. See DescribeFolderContentsRequestRequestTypeDef

describe_groups

Describes the groups specified by the query.

Type annotations and code completion for boto3.client("workdocs").describe_groups method. boto3 documentation

Method definition
def describe_groups(
    self,
    *,
    SearchQuery: str,
    AuthenticationToken: str = ...,
    OrganizationId: str = ...,
    Marker: str = ...,
    Limit: int = ...,
) -> DescribeGroupsResponseTypeDef:  # (1)
    ...
  1. See DescribeGroupsResponseTypeDef
Usage example with kwargs
kwargs: DescribeGroupsRequestRequestTypeDef = {  # (1)
    "SearchQuery": ...,
}

parent.describe_groups(**kwargs)
  1. See DescribeGroupsRequestRequestTypeDef

describe_notification_subscriptions

Lists the specified notification subscriptions.

Type annotations and code completion for boto3.client("workdocs").describe_notification_subscriptions method. boto3 documentation

Method definition
def describe_notification_subscriptions(
    self,
    *,
    OrganizationId: str,
    Marker: str = ...,
    Limit: int = ...,
) -> DescribeNotificationSubscriptionsResponseTypeDef:  # (1)
    ...
  1. See DescribeNotificationSubscriptionsResponseTypeDef
Usage example with kwargs
kwargs: DescribeNotificationSubscriptionsRequestRequestTypeDef = {  # (1)
    "OrganizationId": ...,
}

parent.describe_notification_subscriptions(**kwargs)
  1. See DescribeNotificationSubscriptionsRequestRequestTypeDef

describe_resource_permissions

Describes the permissions of a specified resource.

Type annotations and code completion for boto3.client("workdocs").describe_resource_permissions method. boto3 documentation

Method definition
def describe_resource_permissions(
    self,
    *,
    ResourceId: str,
    AuthenticationToken: str = ...,
    PrincipalId: str = ...,
    Limit: int = ...,
    Marker: str = ...,
) -> DescribeResourcePermissionsResponseTypeDef:  # (1)
    ...
  1. See DescribeResourcePermissionsResponseTypeDef
Usage example with kwargs
kwargs: DescribeResourcePermissionsRequestRequestTypeDef = {  # (1)
    "ResourceId": ...,
}

parent.describe_resource_permissions(**kwargs)
  1. See DescribeResourcePermissionsRequestRequestTypeDef

describe_root_folders

Describes the current user's special folders; the RootFolder and the RecycleBin.

Type annotations and code completion for boto3.client("workdocs").describe_root_folders method. boto3 documentation

Method definition
def describe_root_folders(
    self,
    *,
    AuthenticationToken: str,
    Limit: int = ...,
    Marker: str = ...,
) -> DescribeRootFoldersResponseTypeDef:  # (1)
    ...
  1. See DescribeRootFoldersResponseTypeDef
Usage example with kwargs
kwargs: DescribeRootFoldersRequestRequestTypeDef = {  # (1)
    "AuthenticationToken": ...,
}

parent.describe_root_folders(**kwargs)
  1. See DescribeRootFoldersRequestRequestTypeDef

describe_users

Describes the specified users.

Type annotations and code completion for boto3.client("workdocs").describe_users method. boto3 documentation

Method definition
def describe_users(
    self,
    *,
    AuthenticationToken: str = ...,
    OrganizationId: str = ...,
    UserIds: str = ...,
    Query: str = ...,
    Include: UserFilterTypeType = ...,  # (1)
    Order: OrderTypeType = ...,  # (2)
    Sort: UserSortTypeType = ...,  # (3)
    Marker: str = ...,
    Limit: int = ...,
    Fields: str = ...,
) -> DescribeUsersResponseTypeDef:  # (4)
    ...
  1. See UserFilterTypeType
  2. See OrderTypeType
  3. See UserSortTypeType
  4. See DescribeUsersResponseTypeDef
Usage example with kwargs
kwargs: DescribeUsersRequestRequestTypeDef = {  # (1)
    "AuthenticationToken": ...,
}

parent.describe_users(**kwargs)
  1. See DescribeUsersRequestRequestTypeDef

generate_presigned_url

Generate a presigned url given a client, its method, and arguments.

Type annotations and code completion for boto3.client("workdocs").generate_presigned_url method. boto3 documentation

Method definition
def generate_presigned_url(
    self,
    ClientMethod: str,
    Params: Mapping[str, Any] = ...,
    ExpiresIn: int = 3600,
    HttpMethod: str = ...,
) -> str:
    ...

get_current_user

Retrieves details of the current user for whom the authentication token was generated.

Type annotations and code completion for boto3.client("workdocs").get_current_user method. boto3 documentation

Method definition
def get_current_user(
    self,
    *,
    AuthenticationToken: str,
) -> GetCurrentUserResponseTypeDef:  # (1)
    ...
  1. See GetCurrentUserResponseTypeDef
Usage example with kwargs
kwargs: GetCurrentUserRequestRequestTypeDef = {  # (1)
    "AuthenticationToken": ...,
}

parent.get_current_user(**kwargs)
  1. See GetCurrentUserRequestRequestTypeDef

get_document

Retrieves details of a document.

Type annotations and code completion for boto3.client("workdocs").get_document method. boto3 documentation

Method definition
def get_document(
    self,
    *,
    DocumentId: str,
    AuthenticationToken: str = ...,
    IncludeCustomMetadata: bool = ...,
) -> GetDocumentResponseTypeDef:  # (1)
    ...
  1. See GetDocumentResponseTypeDef
Usage example with kwargs
kwargs: GetDocumentRequestRequestTypeDef = {  # (1)
    "DocumentId": ...,
}

parent.get_document(**kwargs)
  1. See GetDocumentRequestRequestTypeDef

get_document_path

Retrieves the path information (the hierarchy from the root folder) for the requested document.

Type annotations and code completion for boto3.client("workdocs").get_document_path method. boto3 documentation

Method definition
def get_document_path(
    self,
    *,
    DocumentId: str,
    AuthenticationToken: str = ...,
    Limit: int = ...,
    Fields: str = ...,
    Marker: str = ...,
) -> GetDocumentPathResponseTypeDef:  # (1)
    ...
  1. See GetDocumentPathResponseTypeDef
Usage example with kwargs
kwargs: GetDocumentPathRequestRequestTypeDef = {  # (1)
    "DocumentId": ...,
}

parent.get_document_path(**kwargs)
  1. See GetDocumentPathRequestRequestTypeDef

get_document_version

Retrieves version metadata for the specified document.

Type annotations and code completion for boto3.client("workdocs").get_document_version method. boto3 documentation

Method definition
def get_document_version(
    self,
    *,
    DocumentId: str,
    VersionId: str,
    AuthenticationToken: str = ...,
    Fields: str = ...,
    IncludeCustomMetadata: bool = ...,
) -> GetDocumentVersionResponseTypeDef:  # (1)
    ...
  1. See GetDocumentVersionResponseTypeDef
Usage example with kwargs
kwargs: GetDocumentVersionRequestRequestTypeDef = {  # (1)
    "DocumentId": ...,
    "VersionId": ...,
}

parent.get_document_version(**kwargs)
  1. See GetDocumentVersionRequestRequestTypeDef

get_folder

Retrieves the metadata of the specified folder.

Type annotations and code completion for boto3.client("workdocs").get_folder method. boto3 documentation

Method definition
def get_folder(
    self,
    *,
    FolderId: str,
    AuthenticationToken: str = ...,
    IncludeCustomMetadata: bool = ...,
) -> GetFolderResponseTypeDef:  # (1)
    ...
  1. See GetFolderResponseTypeDef
Usage example with kwargs
kwargs: GetFolderRequestRequestTypeDef = {  # (1)
    "FolderId": ...,
}

parent.get_folder(**kwargs)
  1. See GetFolderRequestRequestTypeDef

get_folder_path

Retrieves the path information (the hierarchy from the root folder) for the specified folder.

Type annotations and code completion for boto3.client("workdocs").get_folder_path method. boto3 documentation

Method definition
def get_folder_path(
    self,
    *,
    FolderId: str,
    AuthenticationToken: str = ...,
    Limit: int = ...,
    Fields: str = ...,
    Marker: str = ...,
) -> GetFolderPathResponseTypeDef:  # (1)
    ...
  1. See GetFolderPathResponseTypeDef
Usage example with kwargs
kwargs: GetFolderPathRequestRequestTypeDef = {  # (1)
    "FolderId": ...,
}

parent.get_folder_path(**kwargs)
  1. See GetFolderPathRequestRequestTypeDef

get_resources

Retrieves a collection of resources, including folders and documents.

Type annotations and code completion for boto3.client("workdocs").get_resources method. boto3 documentation

Method definition
def get_resources(
    self,
    *,
    AuthenticationToken: str = ...,
    UserId: str = ...,
    CollectionType: ResourceCollectionTypeType = ...,  # (1)
    Limit: int = ...,
    Marker: str = ...,
) -> GetResourcesResponseTypeDef:  # (2)
    ...
  1. See ResourceCollectionTypeType
  2. See GetResourcesResponseTypeDef
Usage example with kwargs
kwargs: GetResourcesRequestRequestTypeDef = {  # (1)
    "AuthenticationToken": ...,
}

parent.get_resources(**kwargs)
  1. See GetResourcesRequestRequestTypeDef

initiate_document_version_upload

Creates a new document object and version object.

Type annotations and code completion for boto3.client("workdocs").initiate_document_version_upload method. boto3 documentation

Method definition
def initiate_document_version_upload(
    self,
    *,
    AuthenticationToken: str = ...,
    Id: str = ...,
    Name: str = ...,
    ContentCreatedTimestamp: Union[datetime, str] = ...,
    ContentModifiedTimestamp: Union[datetime, str] = ...,
    ContentType: str = ...,
    DocumentSizeInBytes: int = ...,
    ParentFolderId: str = ...,
) -> InitiateDocumentVersionUploadResponseTypeDef:  # (1)
    ...
  1. See InitiateDocumentVersionUploadResponseTypeDef
Usage example with kwargs
kwargs: InitiateDocumentVersionUploadRequestRequestTypeDef = {  # (1)
    "AuthenticationToken": ...,
}

parent.initiate_document_version_upload(**kwargs)
  1. See InitiateDocumentVersionUploadRequestRequestTypeDef

remove_all_resource_permissions

Removes all the permissions from the specified resource.

Type annotations and code completion for boto3.client("workdocs").remove_all_resource_permissions method. boto3 documentation

Method definition
def remove_all_resource_permissions(
    self,
    *,
    ResourceId: str,
    AuthenticationToken: str = ...,
) -> EmptyResponseMetadataTypeDef:  # (1)
    ...
  1. See EmptyResponseMetadataTypeDef
Usage example with kwargs
kwargs: RemoveAllResourcePermissionsRequestRequestTypeDef = {  # (1)
    "ResourceId": ...,
}

parent.remove_all_resource_permissions(**kwargs)
  1. See RemoveAllResourcePermissionsRequestRequestTypeDef

remove_resource_permission

Removes the permission for the specified principal from the specified resource.

Type annotations and code completion for boto3.client("workdocs").remove_resource_permission method. boto3 documentation

Method definition
def remove_resource_permission(
    self,
    *,
    ResourceId: str,
    PrincipalId: str,
    AuthenticationToken: str = ...,
    PrincipalType: PrincipalTypeType = ...,  # (1)
) -> EmptyResponseMetadataTypeDef:  # (2)
    ...
  1. See PrincipalTypeType
  2. See EmptyResponseMetadataTypeDef
Usage example with kwargs
kwargs: RemoveResourcePermissionRequestRequestTypeDef = {  # (1)
    "ResourceId": ...,
    "PrincipalId": ...,
}

parent.remove_resource_permission(**kwargs)
  1. See RemoveResourcePermissionRequestRequestTypeDef

restore_document_versions

Recovers a deleted version of an Amazon WorkDocs document.

Type annotations and code completion for boto3.client("workdocs").restore_document_versions method. boto3 documentation

Method definition
def restore_document_versions(
    self,
    *,
    DocumentId: str,
    AuthenticationToken: str = ...,
) -> EmptyResponseMetadataTypeDef:  # (1)
    ...
  1. See EmptyResponseMetadataTypeDef
Usage example with kwargs
kwargs: RestoreDocumentVersionsRequestRequestTypeDef = {  # (1)
    "DocumentId": ...,
}

parent.restore_document_versions(**kwargs)
  1. See RestoreDocumentVersionsRequestRequestTypeDef

update_document

Updates the specified attributes of a document.

Type annotations and code completion for boto3.client("workdocs").update_document method. boto3 documentation

Method definition
def update_document(
    self,
    *,
    DocumentId: str,
    AuthenticationToken: str = ...,
    Name: str = ...,
    ParentFolderId: str = ...,
    ResourceState: ResourceStateTypeType = ...,  # (1)
) -> EmptyResponseMetadataTypeDef:  # (2)
    ...
  1. See ResourceStateTypeType
  2. See EmptyResponseMetadataTypeDef
Usage example with kwargs
kwargs: UpdateDocumentRequestRequestTypeDef = {  # (1)
    "DocumentId": ...,
}

parent.update_document(**kwargs)
  1. See UpdateDocumentRequestRequestTypeDef

update_document_version

Changes the status of the document version to ACTIVE.

Type annotations and code completion for boto3.client("workdocs").update_document_version method. boto3 documentation

Method definition
def update_document_version(
    self,
    *,
    DocumentId: str,
    VersionId: str,
    AuthenticationToken: str = ...,
    VersionStatus: DocumentVersionStatusType = ...,  # (1)
) -> EmptyResponseMetadataTypeDef:  # (2)
    ...
  1. See DocumentVersionStatusType
  2. See EmptyResponseMetadataTypeDef
Usage example with kwargs
kwargs: UpdateDocumentVersionRequestRequestTypeDef = {  # (1)
    "DocumentId": ...,
    "VersionId": ...,
}

parent.update_document_version(**kwargs)
  1. See UpdateDocumentVersionRequestRequestTypeDef

update_folder

Updates the specified attributes of the specified folder.

Type annotations and code completion for boto3.client("workdocs").update_folder method. boto3 documentation

Method definition
def update_folder(
    self,
    *,
    FolderId: str,
    AuthenticationToken: str = ...,
    Name: str = ...,
    ParentFolderId: str = ...,
    ResourceState: ResourceStateTypeType = ...,  # (1)
) -> EmptyResponseMetadataTypeDef:  # (2)
    ...
  1. See ResourceStateTypeType
  2. See EmptyResponseMetadataTypeDef
Usage example with kwargs
kwargs: UpdateFolderRequestRequestTypeDef = {  # (1)
    "FolderId": ...,
}

parent.update_folder(**kwargs)
  1. See UpdateFolderRequestRequestTypeDef

update_user

Updates the specified attributes of the specified user, and grants or revokes administrative privileges to the Amazon WorkDocs site.

Type annotations and code completion for boto3.client("workdocs").update_user method. boto3 documentation

Method definition
def update_user(
    self,
    *,
    UserId: str,
    AuthenticationToken: str = ...,
    GivenName: str = ...,
    Surname: str = ...,
    Type: UserTypeType = ...,  # (1)
    StorageRule: StorageRuleTypeTypeDef = ...,  # (2)
    TimeZoneId: str = ...,
    Locale: LocaleTypeType = ...,  # (3)
    GrantPoweruserPrivileges: BooleanEnumTypeType = ...,  # (4)
) -> UpdateUserResponseTypeDef:  # (5)
    ...
  1. See UserTypeType
  2. See StorageRuleTypeTypeDef
  3. See LocaleTypeType
  4. See BooleanEnumTypeType
  5. See UpdateUserResponseTypeDef
Usage example with kwargs
kwargs: UpdateUserRequestRequestTypeDef = {  # (1)
    "UserId": ...,
}

parent.update_user(**kwargs)
  1. See UpdateUserRequestRequestTypeDef

get_paginator

Type annotations and code completion for boto3.client("workdocs").get_paginator method with overloads.