IPWorks Cloud 2020 Python Edition

Questions / Feedback?

on_part_list Event

Fires once for each part when calling ListParts.

Syntax

class AmazonGlacierPartListEventParams(object):
  @property
  def archive_description() -> str: ...
  @property
  def creation_date() -> str: ...
  @property
  def upload_id() -> str: ...
  @property
  def start_position() -> int: ...
  @property
  def size() -> int: ...
  @property
  def sha256_tree_hash() -> str: ...
  @property
  def vault_arn() -> str: ...

# In class AmazonGlacier:
@property
def on_part_list() -> Callable[[AmazonGlacierPartListEventParams], None]: ...
@on_part_list.setter
def on_part_list(event_hook: Callable[[AmazonGlacierPartListEventParams], None]) -> None: ...

Remarks

This event fires once for each part when calling list_parts.

ArchiveDescription is the description of the archive (if any).

CreationDate is the UTC time that the multipart upload was started. This is a string representation of ISO 8601 date format. For example: "2012-03-20T17:03:43.221Z".

UploadId is the Id of the multipart upload associated with this part.

StartPosition is the byte offset in the archive of the current part.

Size is the part size in bytes.

SHA256TreeHash is the SHA256 tree hash value that Amazon calculated for the part.

VaultArn is the Amazon Resource Name (ARN) of the Vault in which the archive is created.

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks Cloud 2020 Python Edition - Version 20.0 [Build 8265]