@azure/storage-file-datalake 12.12.0 → 12.13.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.
- package/dist/index.js +54 -9
- package/dist/index.js.map +1 -1
- package/dist-esm/storage-file-datalake/src/clients.js +6 -3
- package/dist-esm/storage-file-datalake/src/clients.js.map +1 -1
- package/dist-esm/storage-file-datalake/src/generated/src/models/index.js.map +1 -1
- package/dist-esm/storage-file-datalake/src/generated/src/models/mappers.js +7 -0
- package/dist-esm/storage-file-datalake/src/generated/src/models/mappers.js.map +1 -1
- package/dist-esm/storage-file-datalake/src/generated/src/models/parameters.js +11 -1
- package/dist-esm/storage-file-datalake/src/generated/src/models/parameters.js.map +1 -1
- package/dist-esm/storage-file-datalake/src/generated/src/operations/path.js +2 -1
- package/dist-esm/storage-file-datalake/src/generated/src/operations/path.js.map +1 -1
- package/dist-esm/storage-file-datalake/src/generated/src/storageClientContext.js +2 -2
- package/dist-esm/storage-file-datalake/src/generated/src/storageClientContext.js.map +1 -1
- package/dist-esm/storage-file-datalake/src/models.js.map +1 -1
- package/dist-esm/storage-file-datalake/src/utils/constants.js +2 -2
- package/dist-esm/storage-file-datalake/src/utils/constants.js.map +1 -1
- package/dist-esm/storage-file-datalake/src/utils/utils.common.js +25 -1
- package/dist-esm/storage-file-datalake/src/utils/utils.common.js.map +1 -1
- package/package.json +2 -2
- package/types/3.1/storage-file-datalake.d.ts +25 -0
- package/types/latest/storage-file-datalake.d.ts +25 -0
|
@@ -2058,6 +2058,10 @@ export declare interface FileParallelUploadOptions extends CommonOptions {
|
|
|
2058
2058
|
* Customer Provided Key Info.
|
|
2059
2059
|
*/
|
|
2060
2060
|
customerProvidedKey?: CpkInfo;
|
|
2061
|
+
/**
|
|
2062
|
+
* Specifies the encryption context to set on the file.
|
|
2063
|
+
*/
|
|
2064
|
+
encryptionContext?: string;
|
|
2061
2065
|
}
|
|
2062
2066
|
/**
|
|
2063
2067
|
* Options to query file with Apache Arrow format. Only valid for {@link FileQueryOptions.outputTextConfiguration}.
|
|
@@ -2206,6 +2210,10 @@ export declare interface FileReadHeaders {
|
|
|
2206
2210
|
encryptionKeySha256?: string;
|
|
2207
2211
|
fileContentMD5?: Uint8Array;
|
|
2208
2212
|
contentCrc64?: Uint8Array;
|
|
2213
|
+
/**
|
|
2214
|
+
* Specifies the encryption context to set on the file.
|
|
2215
|
+
*/
|
|
2216
|
+
encryptionContext?: string;
|
|
2209
2217
|
}
|
|
2210
2218
|
/** *********************************************************/
|
|
2211
2219
|
/** DataLakeFileClient option and response related models **/
|
|
@@ -2840,6 +2848,10 @@ export declare interface Path {
|
|
|
2840
2848
|
* Expiry time of the path.
|
|
2841
2849
|
*/
|
|
2842
2850
|
expiresOn?: Date;
|
|
2851
|
+
/**
|
|
2852
|
+
* Specifies the encryption context to set on the file.
|
|
2853
|
+
*/
|
|
2854
|
+
encryptionContext?: string;
|
|
2843
2855
|
}
|
|
2844
2856
|
export declare interface PathAccessControl {
|
|
2845
2857
|
owner?: string;
|
|
@@ -3003,6 +3015,10 @@ export declare interface PathCreateIfNotExistsOptions extends CommonOptions {
|
|
|
3003
3015
|
* Does not apply to directories.
|
|
3004
3016
|
*/
|
|
3005
3017
|
expiresOn?: number | Date;
|
|
3018
|
+
/**
|
|
3019
|
+
* Optional. Specifies the encryption context to set on the file.
|
|
3020
|
+
*/
|
|
3021
|
+
encryptionContext?: string;
|
|
3006
3022
|
}
|
|
3007
3023
|
/**
|
|
3008
3024
|
* Contains response data for the {@link DataLakePathClient.createIfNotExists} operation.
|
|
@@ -3051,6 +3067,10 @@ export declare interface PathCreateOptions extends CommonOptions {
|
|
|
3051
3067
|
* Does not apply to directories.
|
|
3052
3068
|
*/
|
|
3053
3069
|
expiresOn?: number | Date;
|
|
3070
|
+
/**
|
|
3071
|
+
* Optional. Specifies the encryption context to set on the file.
|
|
3072
|
+
*/
|
|
3073
|
+
encryptionContext?: string;
|
|
3054
3074
|
}
|
|
3055
3075
|
/** Contains response data for the create operation. */
|
|
3056
3076
|
export declare type PathCreateResponse = PathCreateHeaders & {
|
|
@@ -3219,6 +3239,10 @@ export declare interface PathGetPropertiesHeaders {
|
|
|
3219
3239
|
* The time the file will expire.
|
|
3220
3240
|
*/
|
|
3221
3241
|
expiresOn?: Date;
|
|
3242
|
+
/**
|
|
3243
|
+
* Optional. Specifies the encryption context to set on the file.
|
|
3244
|
+
*/
|
|
3245
|
+
encryptionContext?: string;
|
|
3222
3246
|
}
|
|
3223
3247
|
/** Defines headers for Path_getProperties operation. */
|
|
3224
3248
|
export declare interface PathGetPropertiesHeadersModel {
|
|
@@ -3311,6 +3335,7 @@ export declare interface PathModel {
|
|
|
3311
3335
|
encryptionScope?: string;
|
|
3312
3336
|
creationTime?: string;
|
|
3313
3337
|
expiryTime?: string;
|
|
3338
|
+
encryptionContext?: string;
|
|
3314
3339
|
}
|
|
3315
3340
|
export declare interface PathMoveOptions extends CommonOptions {
|
|
3316
3341
|
abortSignal?: AbortSignalLike;
|
|
@@ -2114,6 +2114,10 @@ export declare interface FileParallelUploadOptions extends CommonOptions {
|
|
|
2114
2114
|
* Customer Provided Key Info.
|
|
2115
2115
|
*/
|
|
2116
2116
|
customerProvidedKey?: CpkInfo;
|
|
2117
|
+
/**
|
|
2118
|
+
* Specifies the encryption context to set on the file.
|
|
2119
|
+
*/
|
|
2120
|
+
encryptionContext?: string;
|
|
2117
2121
|
}
|
|
2118
2122
|
|
|
2119
2123
|
/**
|
|
@@ -2269,6 +2273,10 @@ export declare interface FileReadHeaders {
|
|
|
2269
2273
|
encryptionKeySha256?: string;
|
|
2270
2274
|
fileContentMD5?: Uint8Array;
|
|
2271
2275
|
contentCrc64?: Uint8Array;
|
|
2276
|
+
/**
|
|
2277
|
+
* Specifies the encryption context to set on the file.
|
|
2278
|
+
*/
|
|
2279
|
+
encryptionContext?: string;
|
|
2272
2280
|
}
|
|
2273
2281
|
|
|
2274
2282
|
/** *********************************************************/
|
|
@@ -2970,6 +2978,10 @@ export declare interface Path {
|
|
|
2970
2978
|
* Expiry time of the path.
|
|
2971
2979
|
*/
|
|
2972
2980
|
expiresOn?: Date;
|
|
2981
|
+
/**
|
|
2982
|
+
* Specifies the encryption context to set on the file.
|
|
2983
|
+
*/
|
|
2984
|
+
encryptionContext?: string;
|
|
2973
2985
|
}
|
|
2974
2986
|
|
|
2975
2987
|
export declare interface PathAccessControl {
|
|
@@ -3141,6 +3153,10 @@ export declare interface PathCreateIfNotExistsOptions extends CommonOptions {
|
|
|
3141
3153
|
* Does not apply to directories.
|
|
3142
3154
|
*/
|
|
3143
3155
|
expiresOn?: number | Date;
|
|
3156
|
+
/**
|
|
3157
|
+
* Optional. Specifies the encryption context to set on the file.
|
|
3158
|
+
*/
|
|
3159
|
+
encryptionContext?: string;
|
|
3144
3160
|
}
|
|
3145
3161
|
|
|
3146
3162
|
/**
|
|
@@ -3191,6 +3207,10 @@ export declare interface PathCreateOptions extends CommonOptions {
|
|
|
3191
3207
|
* Does not apply to directories.
|
|
3192
3208
|
*/
|
|
3193
3209
|
expiresOn?: number | Date;
|
|
3210
|
+
/**
|
|
3211
|
+
* Optional. Specifies the encryption context to set on the file.
|
|
3212
|
+
*/
|
|
3213
|
+
encryptionContext?: string;
|
|
3194
3214
|
}
|
|
3195
3215
|
|
|
3196
3216
|
/** Contains response data for the create operation. */
|
|
@@ -3373,6 +3393,10 @@ export declare interface PathGetPropertiesHeaders {
|
|
|
3373
3393
|
* The time the file will expire.
|
|
3374
3394
|
*/
|
|
3375
3395
|
expiresOn?: Date;
|
|
3396
|
+
/**
|
|
3397
|
+
* Optional. Specifies the encryption context to set on the file.
|
|
3398
|
+
*/
|
|
3399
|
+
encryptionContext?: string;
|
|
3376
3400
|
}
|
|
3377
3401
|
|
|
3378
3402
|
/** Defines headers for Path_getProperties operation. */
|
|
@@ -3472,6 +3496,7 @@ export declare interface PathModel {
|
|
|
3472
3496
|
encryptionScope?: string;
|
|
3473
3497
|
creationTime?: string;
|
|
3474
3498
|
expiryTime?: string;
|
|
3499
|
+
encryptionContext?: string;
|
|
3475
3500
|
}
|
|
3476
3501
|
|
|
3477
3502
|
export declare interface PathMoveOptions extends CommonOptions {
|