1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package glacier
import (
"context"
"fmt"
awsmiddleware "github.com/aws/aws-sdk-go-v2/aws/middleware"
glaciercust "github.com/aws/aws-sdk-go-v2/service/glacier/internal/customizations"
"github.com/aws/smithy-go/middleware"
smithyhttp "github.com/aws/smithy-go/transport/http"
"io"
)
// This operation downloads the output of the job you initiated using InitiateJob. Depending
// on the job type you specified when you initiated the job, the output will be
// either the content of an archive or a vault inventory.
//
// You can download all the job output or download a portion of the output by
// specifying a byte range. In the case of an archive retrieval job, depending on
// the byte range you specify, Amazon S3 Glacier (Glacier) returns the checksum for
// the portion of the data. You can compute the checksum on the client and verify
// that the values match to ensure the portion you downloaded is the correct data.
//
// A job ID will not expire for at least 24 hours after Glacier completes the job.
// That a byte range. For both archive and inventory retrieval jobs, you should
// verify the downloaded size against the size returned in the headers from the Get
// Job Output response.
//
// For archive retrieval jobs, you should also verify that the size is what you
// expected. If you download a portion of the output, the expected size is based on
// the range of bytes you specified. For example, if you specify a range of
// bytes=0-1048575 , you should verify your download size is 1,048,576 bytes. If
// you download an entire archive, the expected size is the size of the archive
// when you uploaded it to Amazon S3 Glacier The expected size is also returned in
// the headers from the Get Job Output response.
//
// In the case of an archive retrieval job, depending on the byte range you
// specify, Glacier returns the checksum for the portion of the data. To ensure the
// portion you downloaded is the correct data, compute the checksum on the client,
// verify that the values match, and verify that the size is what you expected.
//
// A job ID does not expire for at least 24 hours after Glacier completes the job.
// That is, you can download the job output within the 24 hours period after Amazon
// Glacier completes the job.
//
// An AWS account has full permission to perform all operations (actions).
// However, AWS Identity and Access Management (IAM) users don't have any
// permissions by default. You must grant them explicit permission to perform
// specific actions. For more information, see [Access Control Using AWS Identity and Access Management (IAM)].
//
// For conceptual information and the underlying REST API, see [Downloading a Vault Inventory], [Downloading an Archive], and [Get Job Output]
//
// [Downloading a Vault Inventory]: https://docs.aws.amazon.com/amazonglacier/latest/dev/vault-inventory.html
// [Downloading an Archive]: https://docs.aws.amazon.com/amazonglacier/latest/dev/downloading-an-archive.html
// [Access Control Using AWS Identity and Access Management (IAM)]: https://docs.aws.amazon.com/amazonglacier/latest/dev/using-iam-with-amazon-glacier.html
// [Get Job Output]: https://docs.aws.amazon.com/amazonglacier/latest/dev/api-job-output-get.html
func (c *Client) GetJobOutput(ctx context.Context, params *GetJobOutputInput, optFns ...func(*Options)) (*GetJobOutputOutput, error) {
if params == nil {
params = &GetJobOutputInput{}
}
result, metadata, err := c.invokeOperation(ctx, "GetJobOutput", params, optFns, c.addOperationGetJobOutputMiddlewares)
if err != nil {
return nil, err
}
out := result.(*GetJobOutputOutput)
out.ResultMetadata = metadata
return out, nil
}
// Provides options for downloading output of an Amazon S3 Glacier job.
type GetJobOutputInput struct {
// The AccountId value is the AWS account ID of the account that owns the vault.
// You can either specify an AWS account ID or optionally a single ' - ' (hyphen),
// in which case Amazon S3 Glacier uses the AWS account ID associated with the
// credentials used to sign the request. If you use an account ID, do not include
// any hyphens ('-') in the ID.
//
// This member is required.
AccountId *string
// The job ID whose data is downloaded.
//
// This member is required.
JobId *string
// The name of the vault.
//
// This member is required.
VaultName *string
// The range of bytes to retrieve from the output. For example, if you want to
// download the first 1,048,576 bytes, specify the range as bytes=0-1048575 . By
// default, this operation downloads the entire output.
//
// If the job output is large, then you can use a range to retrieve a portion of
// the output. This allows you to download the entire output in smaller chunks of
// bytes. For example, suppose you have 1 GB of job output you want to download and
// you decide to download 128 MB chunks of data at a time, which is a total of
// eight Get Job Output requests. You use the following process to download the job
// output:
//
// - Download a 128 MB chunk of output by specifying the appropriate byte range.
// Verify that all 128 MB of data was received.
//
// - Along with the data, the response includes a SHA256 tree hash of the
// payload. You compute the checksum of the payload on the client and compare it
// with the checksum you received in the response to ensure you received all the
// expected data.
//
// - Repeat steps 1 and 2 for all the eight 128 MB chunks of output data, each
// time specifying the appropriate byte range.
//
// - After downloading all the parts of the job output, you have a list of eight
// checksum values. Compute the tree hash of these values to find the checksum of
// the entire output. Using the DescribeJobAPI, obtain job information of the job that
// provided you the output. The response includes the checksum of the entire
// archive stored in Amazon S3 Glacier. You compare this value with the checksum
// you computed to ensure you have downloaded the entire archive content with no
// errors.
Range *string
noSmithyDocumentSerde
}
// Contains the Amazon S3 Glacier response to your request.
type GetJobOutputOutput struct {
// Indicates the range units accepted. For more information, see [RFC2616].
//
// [RFC2616]: http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html
AcceptRanges *string
// The description of an archive.
ArchiveDescription *string
// The job data, either archive data or inventory data.
Body io.ReadCloser
// The checksum of the data in the response. This header is returned only when
// retrieving the output for an archive retrieval job. Furthermore, this header
// appears only under the following conditions:
//
// - You get the entire range of the archive.
//
// - You request a range to return of the archive that starts and ends on a
// multiple of 1 MB. For example, if you have an 3.1 MB archive and you specify a
// range to return that starts at 1 MB and ends at 2 MB, then the
// x-amz-sha256-tree-hash is returned as a response header.
//
// - You request a range of the archive to return that starts on a multiple of 1
// MB and goes to the end of the archive. For example, if you have a 3.1 MB archive
// and you specify a range that starts at 2 MB and ends at 3.1 MB (the end of the
// archive), then the x-amz-sha256-tree-hash is returned as a response header.
Checksum *string
// The range of bytes returned by Amazon S3 Glacier. If only partial output is
// downloaded, the response provides the range of bytes Amazon S3 Glacier returned.
// For example, bytes 0-1048575/8388608 returns the first 1 MB from 8 MB.
ContentRange *string
// The Content-Type depends on whether the job output is an archive or a vault
// inventory. For archive data, the Content-Type is application/octet-stream. For
// vault inventory, if you requested CSV format when you initiated the job, the
// Content-Type is text/csv. Otherwise, by default, vault inventory is returned as
// JSON, and the Content-Type is application/json.
ContentType *string
// The HTTP response code for a job output request. The value depends on whether a
// range was specified in the request.
Status int32
// Metadata pertaining to the operation's result.
ResultMetadata middleware.Metadata
noSmithyDocumentSerde
}
func (c *Client) addOperationGetJobOutputMiddlewares(stack *middleware.Stack, options Options) (err error) {
if err := stack.Serialize.Add(&setOperationInputMiddleware{}, middleware.After); err != nil {
return err
}
err = stack.Serialize.Add(&awsRestjson1_serializeOpGetJobOutput{}, middleware.After)
if err != nil {
return err
}
err = stack.Deserialize.Add(&awsRestjson1_deserializeOpGetJobOutput{}, middleware.After)
if err != nil {
return err
}
if err := addProtocolFinalizerMiddlewares(stack, options, "GetJobOutput"); err != nil {
return fmt.Errorf("add protocol finalizers: %v", err)
}
if err = addlegacyEndpointContextSetter(stack, options); err != nil {
return err
}
if err = addSetLoggerMiddleware(stack, options); err != nil {
return err
}
if err = addClientRequestID(stack); err != nil {
return err
}
if err = addComputeContentLength(stack); err != nil {
return err
}
if err = addResolveEndpointMiddleware(stack, options); err != nil {
return err
}
if err = addComputePayloadSHA256(stack); err != nil {
return err
}
if err = addRetry(stack, options); err != nil {
return err
}
if err = addRawResponseToMetadata(stack); err != nil {
return err
}
if err = addRecordResponseTiming(stack); err != nil {
return err
}
if err = addClientUserAgent(stack, options); err != nil {
return err
}
if err = smithyhttp.AddErrorCloseResponseBodyMiddleware(stack); err != nil {
return err
}
if err = addSetLegacyContextSigningOptionsMiddleware(stack); err != nil {
return err
}
if err = addTimeOffsetBuild(stack, c); err != nil {
return err
}
if err = addUserAgentRetryMode(stack, options); err != nil {
return err
}
if err = addOpGetJobOutputValidationMiddleware(stack); err != nil {
return err
}
if err = stack.Initialize.Add(newServiceMetadataMiddleware_opGetJobOutput(options.Region), middleware.Before); err != nil {
return err
}
if err = addRecursionDetection(stack); err != nil {
return err
}
if err = addRequestIDRetrieverMiddleware(stack); err != nil {
return err
}
if err = addResponseErrorMiddleware(stack); err != nil {
return err
}
if err = glaciercust.AddTreeHashMiddleware(stack); err != nil {
return err
}
if err = glaciercust.AddGlacierAPIVersionMiddleware(stack, ServiceAPIVersion); err != nil {
return err
}
if err = glaciercust.AddDefaultAccountIDMiddleware(stack, setDefaultAccountID); err != nil {
return err
}
if err = addRequestResponseLogging(stack, options); err != nil {
return err
}
if err = addDisableHTTPSMiddleware(stack, options); err != nil {
return err
}
return nil
}
func newServiceMetadataMiddleware_opGetJobOutput(region string) *awsmiddleware.RegisterServiceMetadata {
return &awsmiddleware.RegisterServiceMetadata{
Region: region,
ServiceID: ServiceID,
OperationName: "GetJobOutput",
}
}
|