/** * **Not applicable for Head operation** * The optional information you can request for. To request more than one of the following, specify this parameter multiple times in the request. Possible values: * * - ``createdDate`` * - ``lastAccessedDate`` * - ``lastModifiedDate`` * - ``userDefinedMetadata`` * * @export * @enum {string} */ export declare const With: { readonly CreatedDate: "createdDate"; readonly LastAccessedDate: "lastAccessedDate"; readonly LastModifiedDate: "lastModifiedDate"; readonly UserDefinedMetadata: "userDefinedMetadata"; }; export type With = typeof With[keyof typeof With];