@aws-sdk/client-glacier 3.428.0 → 3.429.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -161,7 +161,7 @@ export interface Grantee {
|
|
|
161
161
|
* @public
|
|
162
162
|
* <p>Type of grantee</p>
|
|
163
163
|
*/
|
|
164
|
-
Type: Type |
|
|
164
|
+
Type: Type | undefined;
|
|
165
165
|
/**
|
|
166
166
|
* @public
|
|
167
167
|
* <p>Screen name of the grantee.</p>
|
|
@@ -212,7 +212,7 @@ export interface Grant {
|
|
|
212
212
|
* @public
|
|
213
213
|
* <p>Specifies the permission given to the grantee. </p>
|
|
214
214
|
*/
|
|
215
|
-
Permission?: Permission
|
|
215
|
+
Permission?: Permission;
|
|
216
216
|
}
|
|
217
217
|
/**
|
|
218
218
|
* @public
|
|
@@ -437,7 +437,7 @@ export interface CSVInput {
|
|
|
437
437
|
* <p>Describes the first line of input. Valid values are <code>None</code>,
|
|
438
438
|
* <code>Ignore</code>, and <code>Use</code>.</p>
|
|
439
439
|
*/
|
|
440
|
-
FileHeaderInfo?: FileHeaderInfo
|
|
440
|
+
FileHeaderInfo?: FileHeaderInfo;
|
|
441
441
|
/**
|
|
442
442
|
* @public
|
|
443
443
|
* <p>A single character used to indicate that a row should be ignored when the character is
|
|
@@ -490,7 +490,7 @@ export interface CSVOutput {
|
|
|
490
490
|
* <p>A value that indicates whether all output fields should be contained within quotation
|
|
491
491
|
* marks.</p>
|
|
492
492
|
*/
|
|
493
|
-
QuoteFields?: QuoteFields
|
|
493
|
+
QuoteFields?: QuoteFields;
|
|
494
494
|
/**
|
|
495
495
|
* @public
|
|
496
496
|
* <p>A single character used for escaping the quotation-mark character inside an already
|
|
@@ -720,7 +720,7 @@ export interface Encryption {
|
|
|
720
720
|
* <p>The server-side encryption algorithm used when storing job results in Amazon S3, for
|
|
721
721
|
* example <code>AES256</code> or <code>aws:kms</code>.</p>
|
|
722
722
|
*/
|
|
723
|
-
EncryptionType?: EncryptionType
|
|
723
|
+
EncryptionType?: EncryptionType;
|
|
724
724
|
/**
|
|
725
725
|
* @public
|
|
726
726
|
* <p>The AWS KMS key ID to use for object encryption. All GET and PUT requests for an
|
|
@@ -772,7 +772,7 @@ export interface S3Location {
|
|
|
772
772
|
* @public
|
|
773
773
|
* <p>The canned access control list (ACL) to apply to the job results.</p>
|
|
774
774
|
*/
|
|
775
|
-
CannedACL?: CannedACL
|
|
775
|
+
CannedACL?: CannedACL;
|
|
776
776
|
/**
|
|
777
777
|
* @public
|
|
778
778
|
* <p>A list of grants that control access to the staged results.</p>
|
|
@@ -792,7 +792,7 @@ export interface S3Location {
|
|
|
792
792
|
* @public
|
|
793
793
|
* <p>The storage class used to store the job results.</p>
|
|
794
794
|
*/
|
|
795
|
-
StorageClass?: StorageClass
|
|
795
|
+
StorageClass?: StorageClass;
|
|
796
796
|
}
|
|
797
797
|
/**
|
|
798
798
|
* @public
|
|
@@ -852,7 +852,7 @@ export interface SelectParameters {
|
|
|
852
852
|
* @public
|
|
853
853
|
* <p>The type of the provided expression, for example <code>SQL</code>.</p>
|
|
854
854
|
*/
|
|
855
|
-
ExpressionType?: ExpressionType
|
|
855
|
+
ExpressionType?: ExpressionType;
|
|
856
856
|
/**
|
|
857
857
|
* @public
|
|
858
858
|
* <p>The expression that is used to select the object.</p>
|
|
@@ -898,7 +898,7 @@ export interface GlacierJobDescription {
|
|
|
898
898
|
* <code>InventoryRetrieval</code>, or
|
|
899
899
|
* <code>Select</code>. </p>
|
|
900
900
|
*/
|
|
901
|
-
Action?: ActionCode
|
|
901
|
+
Action?: ActionCode;
|
|
902
902
|
/**
|
|
903
903
|
* @public
|
|
904
904
|
* <p>The archive ID requested for a select job or archive retrieval. Otherwise, this
|
|
@@ -928,7 +928,7 @@ export interface GlacierJobDescription {
|
|
|
928
928
|
* <p>The status code can be <code>InProgress</code>, <code>Succeeded</code>, or
|
|
929
929
|
* <code>Failed</code>, and indicates the status of the job.</p>
|
|
930
930
|
*/
|
|
931
|
-
StatusCode?: StatusCode
|
|
931
|
+
StatusCode?: StatusCode;
|
|
932
932
|
/**
|
|
933
933
|
* @public
|
|
934
934
|
* <p>A friendly message that describes the job status.</p>
|
|
@@ -53,7 +53,7 @@ export declare const Type: {
|
|
|
53
53
|
};
|
|
54
54
|
export type Type = (typeof Type)[keyof typeof Type];
|
|
55
55
|
export interface Grantee {
|
|
56
|
-
Type: Type |
|
|
56
|
+
Type: Type | undefined;
|
|
57
57
|
DisplayName?: string;
|
|
58
58
|
URI?: string;
|
|
59
59
|
ID?: string;
|
|
@@ -69,7 +69,7 @@ export declare const Permission: {
|
|
|
69
69
|
export type Permission = (typeof Permission)[keyof typeof Permission];
|
|
70
70
|
export interface Grant {
|
|
71
71
|
Grantee?: Grantee;
|
|
72
|
-
Permission?: Permission
|
|
72
|
+
Permission?: Permission;
|
|
73
73
|
}
|
|
74
74
|
export declare const ActionCode: {
|
|
75
75
|
readonly ArchiveRetrieval: "ArchiveRetrieval";
|
|
@@ -133,7 +133,7 @@ export declare const FileHeaderInfo: {
|
|
|
133
133
|
export type FileHeaderInfo =
|
|
134
134
|
(typeof FileHeaderInfo)[keyof typeof FileHeaderInfo];
|
|
135
135
|
export interface CSVInput {
|
|
136
|
-
FileHeaderInfo?: FileHeaderInfo
|
|
136
|
+
FileHeaderInfo?: FileHeaderInfo;
|
|
137
137
|
Comments?: string;
|
|
138
138
|
QuoteEscapeCharacter?: string;
|
|
139
139
|
RecordDelimiter?: string;
|
|
@@ -146,7 +146,7 @@ export declare const QuoteFields: {
|
|
|
146
146
|
};
|
|
147
147
|
export type QuoteFields = (typeof QuoteFields)[keyof typeof QuoteFields];
|
|
148
148
|
export interface CSVOutput {
|
|
149
|
-
QuoteFields?: QuoteFields
|
|
149
|
+
QuoteFields?: QuoteFields;
|
|
150
150
|
QuoteEscapeCharacter?: string;
|
|
151
151
|
RecordDelimiter?: string;
|
|
152
152
|
FieldDelimiter?: string;
|
|
@@ -195,7 +195,7 @@ export declare const EncryptionType: {
|
|
|
195
195
|
export type EncryptionType =
|
|
196
196
|
(typeof EncryptionType)[keyof typeof EncryptionType];
|
|
197
197
|
export interface Encryption {
|
|
198
|
-
EncryptionType?: EncryptionType
|
|
198
|
+
EncryptionType?: EncryptionType;
|
|
199
199
|
KMSKeyId?: string;
|
|
200
200
|
KMSContext?: string;
|
|
201
201
|
}
|
|
@@ -209,11 +209,11 @@ export interface S3Location {
|
|
|
209
209
|
BucketName?: string;
|
|
210
210
|
Prefix?: string;
|
|
211
211
|
Encryption?: Encryption;
|
|
212
|
-
CannedACL?: CannedACL
|
|
212
|
+
CannedACL?: CannedACL;
|
|
213
213
|
AccessControlList?: Grant[];
|
|
214
214
|
Tagging?: Record<string, string>;
|
|
215
215
|
UserMetadata?: Record<string, string>;
|
|
216
|
-
StorageClass?: StorageClass
|
|
216
|
+
StorageClass?: StorageClass;
|
|
217
217
|
}
|
|
218
218
|
export interface OutputLocation {
|
|
219
219
|
S3?: S3Location;
|
|
@@ -231,7 +231,7 @@ export interface OutputSerialization {
|
|
|
231
231
|
}
|
|
232
232
|
export interface SelectParameters {
|
|
233
233
|
InputSerialization?: InputSerialization;
|
|
234
|
-
ExpressionType?: ExpressionType
|
|
234
|
+
ExpressionType?: ExpressionType;
|
|
235
235
|
Expression?: string;
|
|
236
236
|
OutputSerialization?: OutputSerialization;
|
|
237
237
|
}
|
|
@@ -244,12 +244,12 @@ export type StatusCode = (typeof StatusCode)[keyof typeof StatusCode];
|
|
|
244
244
|
export interface GlacierJobDescription {
|
|
245
245
|
JobId?: string;
|
|
246
246
|
JobDescription?: string;
|
|
247
|
-
Action?: ActionCode
|
|
247
|
+
Action?: ActionCode;
|
|
248
248
|
ArchiveId?: string;
|
|
249
249
|
VaultARN?: string;
|
|
250
250
|
CreationDate?: string;
|
|
251
251
|
Completed?: boolean;
|
|
252
|
-
StatusCode?: StatusCode
|
|
252
|
+
StatusCode?: StatusCode;
|
|
253
253
|
StatusMessage?: string;
|
|
254
254
|
ArchiveSizeInBytes?: number;
|
|
255
255
|
InventorySizeInBytes?: number;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-glacier",
|
|
3
3
|
"description": "AWS SDK for JavaScript Glacier Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.429.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -23,9 +23,9 @@
|
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
24
|
"@aws-sdk/body-checksum-browser": "3.428.0",
|
|
25
25
|
"@aws-sdk/body-checksum-node": "3.428.0",
|
|
26
|
-
"@aws-sdk/client-sts": "3.
|
|
27
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
26
|
+
"@aws-sdk/client-sts": "3.429.0",
|
|
27
|
+
"@aws-sdk/credential-provider-node": "3.429.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.429.0",
|
|
29
29
|
"@aws-sdk/middleware-logger": "3.428.0",
|
|
30
30
|
"@aws-sdk/middleware-recursion-detection": "3.428.0",
|
|
31
31
|
"@aws-sdk/middleware-sdk-glacier": "3.428.0",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"@smithy/hash-node": "^2.0.11",
|
|
42
42
|
"@smithy/invalid-dependency": "^2.0.11",
|
|
43
43
|
"@smithy/middleware-content-length": "^2.0.13",
|
|
44
|
-
"@smithy/middleware-endpoint": "^2.1.
|
|
44
|
+
"@smithy/middleware-endpoint": "^2.1.1",
|
|
45
45
|
"@smithy/middleware-retry": "^2.0.16",
|
|
46
46
|
"@smithy/middleware-serde": "^2.0.11",
|
|
47
47
|
"@smithy/middleware-stack": "^2.0.5",
|