upload_complete_part: Reports the completion of the part upload

Description Usage Arguments Value Examples

View source: R/api-misc.R

Description

The ETag is provided for the correctness check upon completion of the whole upload. Value for the ETag is provided by AWS S3 service when uploading the file in the ETag header.

Usage

1
2
3
4
5
6
7
upload_complete_part(
  token = NULL,
  upload_id = NULL,
  part_number = NULL,
  e_tag = NULL,
  ...
)

Arguments

token

auth token

upload_id

ID of the upload

part_number

ID of the part you wish to report as completed

e_tag

Value of the ETag header returned by AWS S3 when uploading part of the file.

...

parameters passed to api function

Value

parsed list of the returned json

Examples

1
2
3
4
5
6
7
token <- "your_token"
## Not run: 
req <- upload_complete_part(
  token, upload_id = "your_upload_id",
  part_number = "1", e_tag = "your_e_tag"
)
## End(Not run)

sbg/sevenbridges-r documentation built on March 26, 2021, 3:33 p.m.