@azure/arm-storageimportexport 1.3.1 → 2.0.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.
Files changed (154) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/LICENSE +21 -0
  3. package/README.md +69 -80
  4. package/dist/index.js +1999 -0
  5. package/dist/index.js.map +1 -0
  6. package/dist/index.min.js +1 -0
  7. package/dist/index.min.js.map +1 -0
  8. package/dist-esm/src/index.d.ts +5 -0
  9. package/dist-esm/src/index.d.ts.map +1 -0
  10. package/dist-esm/src/index.js +12 -0
  11. package/dist-esm/src/index.js.map +1 -0
  12. package/dist-esm/src/models/index.d.ts +504 -0
  13. package/dist-esm/src/models/index.d.ts.map +1 -0
  14. package/dist-esm/src/models/index.js +40 -0
  15. package/dist-esm/src/models/index.js.map +1 -0
  16. package/dist-esm/src/models/mappers.d.ts +25 -0
  17. package/dist-esm/src/models/mappers.d.ts.map +1 -0
  18. package/{esm → dist-esm/src}/models/mappers.js +570 -422
  19. package/dist-esm/src/models/mappers.js.map +1 -0
  20. package/dist-esm/src/models/parameters.d.ts +17 -0
  21. package/dist-esm/src/models/parameters.d.ts.map +1 -0
  22. package/{esm → dist-esm/src}/models/parameters.js +79 -49
  23. package/dist-esm/src/models/parameters.js.map +1 -0
  24. package/dist-esm/src/operations/bitLockerKeys.d.ts +32 -0
  25. package/dist-esm/src/operations/bitLockerKeys.d.ts.map +1 -0
  26. package/dist-esm/src/operations/bitLockerKeys.js +101 -0
  27. package/dist-esm/src/operations/bitLockerKeys.js.map +1 -0
  28. package/{esm → dist-esm/src}/operations/index.d.ts +0 -0
  29. package/dist-esm/src/operations/index.d.ts.map +1 -0
  30. package/{esm → dist-esm/src}/operations/index.js +3 -5
  31. package/dist-esm/src/operations/index.js.map +1 -0
  32. package/dist-esm/src/operations/jobs.d.ts +92 -0
  33. package/dist-esm/src/operations/jobs.d.ts.map +1 -0
  34. package/dist-esm/src/operations/jobs.js +376 -0
  35. package/dist-esm/src/operations/jobs.js.map +1 -0
  36. package/dist-esm/src/operations/locations.d.ts +35 -0
  37. package/dist-esm/src/operations/locations.d.ts.map +1 -0
  38. package/dist-esm/src/operations/locations.js +117 -0
  39. package/dist-esm/src/operations/locations.js.map +1 -0
  40. package/dist-esm/src/operations/operations.d.ts +26 -0
  41. package/dist-esm/src/operations/operations.d.ts.map +1 -0
  42. package/dist-esm/src/operations/operations.js +90 -0
  43. package/dist-esm/src/operations/operations.js.map +1 -0
  44. package/dist-esm/src/operationsInterfaces/bitLockerKeys.d.ts +14 -0
  45. package/dist-esm/src/operationsInterfaces/bitLockerKeys.d.ts.map +1 -0
  46. package/dist-esm/src/operationsInterfaces/bitLockerKeys.js +9 -0
  47. package/dist-esm/src/operationsInterfaces/bitLockerKeys.js.map +1 -0
  48. package/dist-esm/src/operationsInterfaces/index.d.ts +5 -0
  49. package/dist-esm/src/operationsInterfaces/index.d.ts.map +1 -0
  50. package/dist-esm/src/operationsInterfaces/index.js +12 -0
  51. package/dist-esm/src/operationsInterfaces/index.js.map +1 -0
  52. package/dist-esm/src/operationsInterfaces/jobs.d.ts +54 -0
  53. package/dist-esm/src/operationsInterfaces/jobs.d.ts.map +1 -0
  54. package/dist-esm/src/operationsInterfaces/jobs.js +9 -0
  55. package/dist-esm/src/operationsInterfaces/jobs.js.map +1 -0
  56. package/dist-esm/src/operationsInterfaces/locations.d.ts +19 -0
  57. package/dist-esm/src/operationsInterfaces/locations.d.ts.map +1 -0
  58. package/dist-esm/src/operationsInterfaces/locations.js +9 -0
  59. package/dist-esm/src/operationsInterfaces/locations.js.map +1 -0
  60. package/dist-esm/src/operationsInterfaces/operations.d.ts +11 -0
  61. package/dist-esm/src/operationsInterfaces/operations.d.ts.map +1 -0
  62. package/dist-esm/src/operationsInterfaces/operations.js +9 -0
  63. package/dist-esm/src/operationsInterfaces/operations.js.map +1 -0
  64. package/dist-esm/src/storageImportExport.d.ts +22 -0
  65. package/dist-esm/src/storageImportExport.d.ts.map +1 -0
  66. package/dist-esm/src/storageImportExport.js +54 -0
  67. package/dist-esm/src/storageImportExport.js.map +1 -0
  68. package/dist-esm/test/sampleTest.d.ts +2 -0
  69. package/dist-esm/test/sampleTest.d.ts.map +1 -0
  70. package/dist-esm/test/sampleTest.js +40 -0
  71. package/dist-esm/test/sampleTest.js.map +1 -0
  72. package/package.json +85 -26
  73. package/review/arm-storageimportexport.api.md +438 -0
  74. package/rollup.config.js +184 -27
  75. package/src/index.ts +12 -0
  76. package/src/models/index.ts +432 -839
  77. package/src/models/mappers.ts +575 -424
  78. package/src/models/parameters.ts +101 -50
  79. package/src/operations/bitLockerKeys.ts +90 -55
  80. package/src/operations/index.ts +3 -5
  81. package/src/operations/jobs.ts +302 -335
  82. package/src/operations/locations.ts +85 -78
  83. package/src/operations/operations.ts +66 -42
  84. package/src/operationsInterfaces/bitLockerKeys.ts +27 -0
  85. package/src/operationsInterfaces/index.ts +12 -0
  86. package/src/operationsInterfaces/jobs.ts +99 -0
  87. package/src/operationsInterfaces/locations.ts +38 -0
  88. package/src/operationsInterfaces/operations.ts +22 -0
  89. package/src/storageImportExport.ts +92 -0
  90. package/tsconfig.json +20 -7
  91. package/types/arm-storageimportexport.d.ts +671 -0
  92. package/types/tsdoc-metadata.json +11 -0
  93. package/dist/arm-storageimportexport.js +0 -1764
  94. package/dist/arm-storageimportexport.js.map +0 -1
  95. package/dist/arm-storageimportexport.min.js +0 -1
  96. package/dist/arm-storageimportexport.min.js.map +0 -1
  97. package/esm/models/bitLockerKeysMappers.d.ts +0 -2
  98. package/esm/models/bitLockerKeysMappers.d.ts.map +0 -1
  99. package/esm/models/bitLockerKeysMappers.js +0 -11
  100. package/esm/models/bitLockerKeysMappers.js.map +0 -1
  101. package/esm/models/index.d.ts +0 -928
  102. package/esm/models/index.d.ts.map +0 -1
  103. package/esm/models/index.js +0 -10
  104. package/esm/models/index.js.map +0 -1
  105. package/esm/models/jobsMappers.d.ts +0 -2
  106. package/esm/models/jobsMappers.d.ts.map +0 -1
  107. package/esm/models/jobsMappers.js +0 -11
  108. package/esm/models/jobsMappers.js.map +0 -1
  109. package/esm/models/locationsMappers.d.ts +0 -2
  110. package/esm/models/locationsMappers.d.ts.map +0 -1
  111. package/esm/models/locationsMappers.js +0 -11
  112. package/esm/models/locationsMappers.js.map +0 -1
  113. package/esm/models/mappers.d.ts +0 -23
  114. package/esm/models/mappers.d.ts.map +0 -1
  115. package/esm/models/mappers.js.map +0 -1
  116. package/esm/models/operationsMappers.d.ts +0 -2
  117. package/esm/models/operationsMappers.d.ts.map +0 -1
  118. package/esm/models/operationsMappers.js +0 -11
  119. package/esm/models/operationsMappers.js.map +0 -1
  120. package/esm/models/parameters.d.ts +0 -12
  121. package/esm/models/parameters.d.ts.map +0 -1
  122. package/esm/models/parameters.js.map +0 -1
  123. package/esm/operations/bitLockerKeys.d.ts +0 -37
  124. package/esm/operations/bitLockerKeys.d.ts.map +0 -1
  125. package/esm/operations/bitLockerKeys.js +0 -58
  126. package/esm/operations/bitLockerKeys.js.map +0 -1
  127. package/esm/operations/index.d.ts.map +0 -1
  128. package/esm/operations/index.js.map +0 -1
  129. package/esm/operations/jobs.d.ts +0 -189
  130. package/esm/operations/jobs.d.ts.map +0 -1
  131. package/esm/operations/jobs.js +0 -276
  132. package/esm/operations/jobs.js.map +0 -1
  133. package/esm/operations/locations.d.ts +0 -48
  134. package/esm/operations/locations.d.ts.map +0 -1
  135. package/esm/operations/locations.js +0 -79
  136. package/esm/operations/locations.js.map +0 -1
  137. package/esm/operations/operations.d.ts +0 -28
  138. package/esm/operations/operations.d.ts.map +0 -1
  139. package/esm/operations/operations.js +0 -51
  140. package/esm/operations/operations.js.map +0 -1
  141. package/esm/storageImportExportManagementClient.d.ts +0 -27
  142. package/esm/storageImportExportManagementClient.d.ts.map +0 -1
  143. package/esm/storageImportExportManagementClient.js +0 -41
  144. package/esm/storageImportExportManagementClient.js.map +0 -1
  145. package/esm/storageImportExportManagementClientContext.d.ts +0 -22
  146. package/esm/storageImportExportManagementClientContext.d.ts.map +0 -1
  147. package/esm/storageImportExportManagementClientContext.js +0 -60
  148. package/esm/storageImportExportManagementClientContext.js.map +0 -1
  149. package/src/models/bitLockerKeysMappers.ts +0 -17
  150. package/src/models/jobsMappers.ts +0 -27
  151. package/src/models/locationsMappers.ts +0 -17
  152. package/src/models/operationsMappers.ts +0 -17
  153. package/src/storageImportExportManagementClient.ts +0 -54
  154. package/src/storageImportExportManagementClientContext.ts +0 -67
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sources":["../src/models/index.ts","../src/models/mappers.ts","../src/models/parameters.ts","../src/operations/locations.ts","../src/operations/jobs.ts","../src/operations/bitLockerKeys.ts","../src/operations/operations.ts","../src/storageImportExport.ts"],"sourcesContent":["/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport * as coreClient from \"@azure/core-client\";\n\n/** Locations response */\nexport interface LocationsResponse {\n /** locations */\n value?: Location[];\n}\n\n/** Provides information about an Azure data center location. */\nexport interface Location {\n /** Specifies the resource identifier of the location. */\n id?: string;\n /** Specifies the name of the location. Use List Locations to get all supported locations. */\n name?: string;\n /** Specifies the type of the location. */\n type?: string;\n /** The recipient name to use when shipping the drives to the Azure data center. */\n recipientName?: string;\n /** The first line of the street address to use when shipping the drives to the Azure data center. */\n streetAddress1?: string;\n /** The second line of the street address to use when shipping the drives to the Azure data center. */\n streetAddress2?: string;\n /** The city name to use when shipping the drives to the Azure data center. */\n city?: string;\n /** The state or province to use when shipping the drives to the Azure data center. */\n stateOrProvince?: string;\n /** The postal code to use when shipping the drives to the Azure data center. */\n postalCode?: string;\n /** The country or region to use when shipping the drives to the Azure data center. */\n countryOrRegion?: string;\n /** The phone number for the Azure data center. */\n phone?: string;\n /** Additional shipping information for customer, specific to datacenter to which customer should send their disks. */\n additionalShippingInformation?: string;\n /** A list of carriers that are supported at this location. */\n supportedCarriers?: string[];\n /** A list of location IDs that should be used to ship shipping drives to for jobs created against the current location. If the current location is active, it will be part of the list. If it is temporarily closed due to maintenance, this list may contain other locations. */\n alternateLocations?: string[];\n}\n\n/** Response when errors occurred */\nexport interface ErrorResponse {\n /** Provides information about the error code. */\n code?: string;\n /** Provides information about the error message. */\n message?: string;\n /** Provides information about the error target. */\n target?: string;\n /** Describes the error details if present. */\n details?: ErrorResponseErrorDetailsItem[];\n /** Inner error object if present. */\n innererror?: Record<string, unknown>;\n}\n\nexport interface ErrorResponseErrorDetailsItem {\n /** Provides information about the error code. */\n code?: string;\n /** Provides information about the error target. */\n target?: string;\n /** Provides information about the error message. */\n message?: string;\n}\n\n/** List jobs response */\nexport interface ListJobsResponse {\n /** link to next batch of jobs */\n nextLink?: string;\n /** Job list */\n value?: JobResponse[];\n}\n\n/** Contains the job information. */\nexport interface JobResponse {\n /**\n * SystemData of ImportExport Jobs.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly systemData?: SystemData;\n /**\n * Specifies the resource identifier of the job.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly id?: string;\n /**\n * Specifies the name of the job.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly name?: string;\n /**\n * Specifies the type of the job resource.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly type?: string;\n /** Specifies the Azure location where the job is created. */\n location?: string;\n /** Specifies the tags that are assigned to the job. */\n tags?: Record<string, unknown>;\n /** Specifies the job properties */\n properties?: JobDetails;\n /** Specifies the job identity details */\n identity?: IdentityDetails;\n}\n\n/** Metadata pertaining to creation and last modification of the resource. */\nexport interface SystemData {\n /** The identity that created the resource. */\n createdBy?: string;\n /** The type of identity that created the resource. */\n createdByType?: CreatedByType;\n /** The timestamp of resource creation (UTC). */\n createdAt?: Date;\n /** The identity that last modified the resource. */\n lastModifiedBy?: string;\n /** The type of identity that last modified the resource. */\n lastModifiedByType?: CreatedByType;\n /** The timestamp of resource last modification (UTC) */\n lastModifiedAt?: Date;\n}\n\n/** Specifies the job properties */\nexport interface JobDetails {\n /** The resource identifier of the storage account where data will be imported to or exported from. */\n storageAccountId?: string;\n /** The type of job */\n jobType?: string;\n /** Specifies the return address information for the job. */\n returnAddress?: ReturnAddress;\n /** Specifies the return carrier and customer's account with the carrier. */\n returnShipping?: ReturnShipping;\n /** Contains information about the Microsoft datacenter to which the drives should be shipped. */\n shippingInformation?: ShippingInformation;\n /** Contains information about the package being shipped by the customer to the Microsoft data center. */\n deliveryPackage?: DeliveryPackageInformation;\n /** Contains information about the package being shipped from the Microsoft data center to the customer to return the drives. The format is the same as the deliveryPackage property above. This property is not included if the drives have not yet been returned. */\n returnPackage?: PackageInformation;\n /** The virtual blob directory to which the copy logs and backups of drive manifest files (if enabled) will be stored. */\n diagnosticsPath?: string;\n /** Default value is Error. Indicates whether error logging or verbose logging will be enabled. */\n logLevel?: string;\n /** Default value is false. Indicates whether the manifest files on the drives should be copied to block blobs. */\n backupDriveManifest?: boolean;\n /** Current state of the job. */\n state?: string;\n /** Indicates whether a request has been submitted to cancel the job. */\n cancelRequested?: boolean;\n /** Overall percentage completed for the job. */\n percentComplete?: number;\n /** A blob path that points to a block blob containing a list of blob names that were not exported due to insufficient drive space. If all blobs were exported successfully, then this element is not included in the response. */\n incompleteBlobListUri?: string;\n /** List of up to ten drives that comprise the job. The drive list is a required element for an import job; it is not specified for export jobs. */\n driveList?: DriveStatus[];\n /** A property containing information about the blobs to be exported for an export job. This property is included for export jobs only. */\n export?: Export;\n /** Specifies the provisioning state of the job. */\n provisioningState?: string;\n /** Contains information about the encryption key. */\n encryptionKey?: EncryptionKeyDetails;\n}\n\n/** Specifies the return address information for the job. */\nexport interface ReturnAddress {\n /** The name of the recipient who will receive the hard drives when they are returned. */\n recipientName: string;\n /** The first line of the street address to use when returning the drives. */\n streetAddress1: string;\n /** The second line of the street address to use when returning the drives. */\n streetAddress2?: string;\n /** The city name to use when returning the drives. */\n city: string;\n /** The state or province to use when returning the drives. */\n stateOrProvince?: string;\n /** The postal code to use when returning the drives. */\n postalCode: string;\n /** The country or region to use when returning the drives. */\n countryOrRegion: string;\n /** Phone number of the recipient of the returned drives. */\n phone: string;\n /** Email address of the recipient of the returned drives. */\n email: string;\n}\n\n/** Specifies the return carrier and customer's account with the carrier. */\nexport interface ReturnShipping {\n /** The carrier's name. */\n carrierName: string;\n /** The customer's account number with the carrier. */\n carrierAccountNumber: string;\n}\n\n/** Contains information about the Microsoft datacenter to which the drives should be shipped. */\nexport interface ShippingInformation {\n /** The name of the recipient who will receive the hard drives when they are returned. */\n recipientName?: string;\n /** The first line of the street address to use when returning the drives. */\n streetAddress1?: string;\n /** The second line of the street address to use when returning the drives. */\n streetAddress2?: string;\n /** The city name to use when returning the drives. */\n city?: string;\n /** The state or province to use when returning the drives. */\n stateOrProvince?: string;\n /** The postal code to use when returning the drives. */\n postalCode?: string;\n /** The country or region to use when returning the drives. */\n countryOrRegion?: string;\n /** Phone number of the recipient of the returned drives. */\n phone?: string;\n /**\n * Additional shipping information for customer, specific to datacenter to which customer should send their disks.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly additionalInformation?: string;\n}\n\n/** Contains information about the delivery package being shipped by the customer to the Microsoft data center. */\nexport interface DeliveryPackageInformation {\n /** The name of the carrier that is used to ship the import or export drives. */\n carrierName: string;\n /** The tracking number of the package. */\n trackingNumber: string;\n /** The number of drives included in the package. */\n driveCount?: number;\n /** The date when the package is shipped. */\n shipDate?: string;\n}\n\n/** Contains information about the package being shipped by the customer to the Microsoft data center. */\nexport interface PackageInformation {\n /** The name of the carrier that is used to ship the import or export drives. */\n carrierName: string;\n /** The tracking number of the package. */\n trackingNumber: string;\n /** The number of drives included in the package. */\n driveCount: number;\n /** The date when the package is shipped. */\n shipDate: string;\n}\n\n/** Provides information about the drive's status */\nexport interface DriveStatus {\n /** The drive's hardware serial number, without spaces. */\n driveId?: string;\n /** The BitLocker key used to encrypt the drive. */\n bitLockerKey?: string;\n /** The relative path of the manifest file on the drive. */\n manifestFile?: string;\n /** The Base16-encoded MD5 hash of the manifest file on the drive. */\n manifestHash?: string;\n /** The drive header hash value. */\n driveHeaderHash?: string;\n /** The drive's current state. */\n state?: DriveState;\n /** Detailed status about the data transfer process. This field is not returned in the response until the drive is in the Transferring state. */\n copyStatus?: string;\n /** Percentage completed for the drive. */\n percentComplete?: number;\n /** A URI that points to the blob containing the verbose log for the data transfer operation. */\n verboseLogUri?: string;\n /** A URI that points to the blob containing the error log for the data transfer operation. */\n errorLogUri?: string;\n /** A URI that points to the blob containing the drive manifest file. */\n manifestUri?: string;\n /** Bytes successfully transferred for the drive. */\n bytesSucceeded?: number;\n}\n\n/** A property containing information about the blobs to be exported for an export job. This property is required for export jobs, but must not be specified for import jobs. */\nexport interface Export {\n /** The relative URI to the block blob that contains the list of blob paths or blob path prefixes as defined above, beginning with the container name. If the blob is in root container, the URI must begin with $root. */\n blobListBlobPath?: string;\n /** A collection of blob-path strings. */\n blobPath?: string[];\n /** A collection of blob-prefix strings. */\n blobPathPrefix?: string[];\n}\n\n/** Specifies the encryption key properties */\nexport interface EncryptionKeyDetails {\n /** The type of kek encryption key */\n kekType?: EncryptionKekType;\n /** Specifies the url for kek encryption key. */\n kekUrl?: string;\n /** Specifies the keyvault resource id for kek encryption key. */\n kekVaultResourceID?: string;\n}\n\n/** Specifies the identity properties. */\nexport interface IdentityDetails {\n /** The type of identity */\n type?: IdentityType;\n /**\n * Specifies the principal id for the identity for the job.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly principalId?: string;\n /**\n * Specifies the tenant id for the identity for the job.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly tenantId?: string;\n}\n\n/** Update Job parameters */\nexport interface UpdateJobParameters {\n /** Specifies the tags that will be assigned to the job */\n tags?: Record<string, unknown>;\n /** If specified, the value must be true. The service will attempt to cancel the job. */\n cancelRequested?: boolean;\n /** If specified, the value must be Shipping, which tells the Import/Export service that the package for the job has been shipped. The ReturnAddress and DeliveryPackage properties must have been set either in this request or in a previous request, otherwise the request will fail. */\n state?: string;\n /** Specifies the return address information for the job. */\n returnAddress?: ReturnAddress;\n /** Specifies the return carrier and customer's account with the carrier. */\n returnShipping?: ReturnShipping;\n /** Contains information about the package being shipped by the customer to the Microsoft data center. */\n deliveryPackage?: DeliveryPackageInformation;\n /** Indicates whether error logging or verbose logging is enabled. */\n logLevel?: string;\n /** Indicates whether the manifest files on the drives should be copied to block blobs. */\n backupDriveManifest?: boolean;\n /** List of drives that comprise the job. */\n driveList?: DriveStatus[];\n}\n\n/** Put Job parameters */\nexport interface PutJobParameters {\n /** Specifies the supported Azure location where the job should be created */\n location?: string;\n /** Specifies the tags that will be assigned to the job. */\n tags?: Record<string, unknown>;\n /** Specifies the job properties */\n properties?: JobDetails;\n}\n\n/** GetBitLockerKeys response */\nexport interface GetBitLockerKeysResponse {\n /** drive status */\n value?: DriveBitLockerKey[];\n}\n\n/** BitLocker recovery key or password to the specified drive */\nexport interface DriveBitLockerKey {\n /** BitLocker recovery key or password */\n bitLockerKey?: string;\n /** Drive ID */\n driveId?: string;\n}\n\n/** List operations response */\nexport interface ListOperationsResponse {\n /** operations */\n value?: Operation[];\n}\n\n/** Describes a supported operation by the Storage Import/Export job API. */\nexport interface Operation {\n /** Name of the operation. */\n name: string;\n /** The resource provider name to which the operation belongs. */\n provider?: string;\n /** The name of the resource to which the operation belongs. */\n resource?: string;\n /** The display name of the operation. */\n operation?: string;\n /** Short description of the operation. */\n description?: string;\n}\n\n/** Known values of {@link CreatedByType} that the service accepts. */\nexport enum KnownCreatedByType {\n User = \"User\",\n Application = \"Application\",\n ManagedIdentity = \"ManagedIdentity\",\n Key = \"Key\"\n}\n\n/**\n * Defines values for CreatedByType. \\\n * {@link KnownCreatedByType} can be used interchangeably with CreatedByType,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **User** \\\n * **Application** \\\n * **ManagedIdentity** \\\n * **Key**\n */\nexport type CreatedByType = string;\n\n/** Known values of {@link DriveState} that the service accepts. */\nexport enum KnownDriveState {\n Specified = \"Specified\",\n Received = \"Received\",\n NeverReceived = \"NeverReceived\",\n Transferring = \"Transferring\",\n Completed = \"Completed\",\n CompletedMoreInfo = \"CompletedMoreInfo\",\n ShippedBack = \"ShippedBack\"\n}\n\n/**\n * Defines values for DriveState. \\\n * {@link KnownDriveState} can be used interchangeably with DriveState,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **Specified** \\\n * **Received** \\\n * **NeverReceived** \\\n * **Transferring** \\\n * **Completed** \\\n * **CompletedMoreInfo** \\\n * **ShippedBack**\n */\nexport type DriveState = string;\n\n/** Known values of {@link EncryptionKekType} that the service accepts. */\nexport enum KnownEncryptionKekType {\n MicrosoftManaged = \"MicrosoftManaged\",\n CustomerManaged = \"CustomerManaged\"\n}\n\n/**\n * Defines values for EncryptionKekType. \\\n * {@link KnownEncryptionKekType} can be used interchangeably with EncryptionKekType,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **MicrosoftManaged** \\\n * **CustomerManaged**\n */\nexport type EncryptionKekType = string;\n\n/** Known values of {@link IdentityType} that the service accepts. */\nexport enum KnownIdentityType {\n None = \"None\",\n SystemAssigned = \"SystemAssigned\",\n UserAssigned = \"UserAssigned\"\n}\n\n/**\n * Defines values for IdentityType. \\\n * {@link KnownIdentityType} can be used interchangeably with IdentityType,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **None** \\\n * **SystemAssigned** \\\n * **UserAssigned**\n */\nexport type IdentityType = string;\n\n/** Optional parameters. */\nexport interface LocationsListOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the list operation. */\nexport type LocationsListResponse = LocationsResponse;\n\n/** Optional parameters. */\nexport interface LocationsGetOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the get operation. */\nexport type LocationsGetResponse = Location;\n\n/** Optional parameters. */\nexport interface JobsListBySubscriptionOptionalParams\n extends coreClient.OperationOptions {\n /** An integer value that specifies how many jobs at most should be returned. The value cannot exceed 100. */\n top?: number;\n /** Can be used to restrict the results to certain conditions. */\n filter?: string;\n}\n\n/** Contains response data for the listBySubscription operation. */\nexport type JobsListBySubscriptionResponse = ListJobsResponse;\n\n/** Optional parameters. */\nexport interface JobsListByResourceGroupOptionalParams\n extends coreClient.OperationOptions {\n /** An integer value that specifies how many jobs at most should be returned. The value cannot exceed 100. */\n top?: number;\n /** Can be used to restrict the results to certain conditions. */\n filter?: string;\n}\n\n/** Contains response data for the listByResourceGroup operation. */\nexport type JobsListByResourceGroupResponse = ListJobsResponse;\n\n/** Optional parameters. */\nexport interface JobsGetOptionalParams extends coreClient.OperationOptions {}\n\n/** Contains response data for the get operation. */\nexport type JobsGetResponse = JobResponse;\n\n/** Optional parameters. */\nexport interface JobsUpdateOptionalParams extends coreClient.OperationOptions {}\n\n/** Contains response data for the update operation. */\nexport type JobsUpdateResponse = JobResponse;\n\n/** Optional parameters. */\nexport interface JobsCreateOptionalParams extends coreClient.OperationOptions {\n /** The tenant ID of the client making the request. */\n clientTenantId?: string;\n}\n\n/** Contains response data for the create operation. */\nexport type JobsCreateResponse = JobResponse;\n\n/** Optional parameters. */\nexport interface JobsDeleteOptionalParams extends coreClient.OperationOptions {}\n\n/** Optional parameters. */\nexport interface JobsListBySubscriptionNextOptionalParams\n extends coreClient.OperationOptions {\n /** An integer value that specifies how many jobs at most should be returned. The value cannot exceed 100. */\n top?: number;\n /** Can be used to restrict the results to certain conditions. */\n filter?: string;\n}\n\n/** Contains response data for the listBySubscriptionNext operation. */\nexport type JobsListBySubscriptionNextResponse = ListJobsResponse;\n\n/** Optional parameters. */\nexport interface JobsListByResourceGroupNextOptionalParams\n extends coreClient.OperationOptions {\n /** An integer value that specifies how many jobs at most should be returned. The value cannot exceed 100. */\n top?: number;\n /** Can be used to restrict the results to certain conditions. */\n filter?: string;\n}\n\n/** Contains response data for the listByResourceGroupNext operation. */\nexport type JobsListByResourceGroupNextResponse = ListJobsResponse;\n\n/** Optional parameters. */\nexport interface BitLockerKeysListOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the list operation. */\nexport type BitLockerKeysListResponse = GetBitLockerKeysResponse;\n\n/** Optional parameters. */\nexport interface OperationsListOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the list operation. */\nexport type OperationsListResponse = ListOperationsResponse;\n\n/** Optional parameters. */\nexport interface StorageImportExportOptionalParams\n extends coreClient.ServiceClientOptions {\n /** server parameter */\n $host?: string;\n /** Api Version */\n apiVersion?: string;\n /** Specifies the preferred language for the response. */\n acceptLanguage?: string;\n /** Overrides client endpoint. */\n endpoint?: string;\n}\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport * as coreClient from \"@azure/core-client\";\n\nexport const LocationsResponse: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"LocationsResponse\",\n modelProperties: {\n value: {\n serializedName: \"value\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"Location\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const Location: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"Location\",\n modelProperties: {\n id: {\n serializedName: \"id\",\n type: {\n name: \"String\"\n }\n },\n name: {\n serializedName: \"name\",\n type: {\n name: \"String\"\n }\n },\n type: {\n serializedName: \"type\",\n type: {\n name: \"String\"\n }\n },\n recipientName: {\n serializedName: \"properties.recipientName\",\n type: {\n name: \"String\"\n }\n },\n streetAddress1: {\n serializedName: \"properties.streetAddress1\",\n type: {\n name: \"String\"\n }\n },\n streetAddress2: {\n serializedName: \"properties.streetAddress2\",\n type: {\n name: \"String\"\n }\n },\n city: {\n serializedName: \"properties.city\",\n type: {\n name: \"String\"\n }\n },\n stateOrProvince: {\n serializedName: \"properties.stateOrProvince\",\n type: {\n name: \"String\"\n }\n },\n postalCode: {\n serializedName: \"properties.postalCode\",\n type: {\n name: \"String\"\n }\n },\n countryOrRegion: {\n serializedName: \"properties.countryOrRegion\",\n type: {\n name: \"String\"\n }\n },\n phone: {\n serializedName: \"properties.phone\",\n type: {\n name: \"String\"\n }\n },\n additionalShippingInformation: {\n serializedName: \"properties.additionalShippingInformation\",\n type: {\n name: \"String\"\n }\n },\n supportedCarriers: {\n serializedName: \"properties.supportedCarriers\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n },\n alternateLocations: {\n serializedName: \"properties.alternateLocations\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const ErrorResponse: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ErrorResponse\",\n modelProperties: {\n code: {\n serializedName: \"error.code\",\n type: {\n name: \"String\"\n }\n },\n message: {\n serializedName: \"error.message\",\n type: {\n name: \"String\"\n }\n },\n target: {\n serializedName: \"error.target\",\n type: {\n name: \"String\"\n }\n },\n details: {\n serializedName: \"error.details\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"ErrorResponseErrorDetailsItem\"\n }\n }\n }\n },\n innererror: {\n serializedName: \"error.innererror\",\n type: {\n name: \"Dictionary\",\n value: { type: { name: \"any\" } }\n }\n }\n }\n }\n};\n\nexport const ErrorResponseErrorDetailsItem: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ErrorResponseErrorDetailsItem\",\n modelProperties: {\n code: {\n serializedName: \"code\",\n type: {\n name: \"String\"\n }\n },\n target: {\n serializedName: \"target\",\n type: {\n name: \"String\"\n }\n },\n message: {\n serializedName: \"message\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const ListJobsResponse: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ListJobsResponse\",\n modelProperties: {\n nextLink: {\n serializedName: \"nextLink\",\n type: {\n name: \"String\"\n }\n },\n value: {\n serializedName: \"value\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"JobResponse\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const JobResponse: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"JobResponse\",\n modelProperties: {\n systemData: {\n serializedName: \"systemData\",\n type: {\n name: \"Composite\",\n className: \"SystemData\"\n }\n },\n id: {\n serializedName: \"id\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n name: {\n serializedName: \"name\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n type: {\n serializedName: \"type\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n location: {\n serializedName: \"location\",\n type: {\n name: \"String\"\n }\n },\n tags: {\n serializedName: \"tags\",\n type: {\n name: \"Dictionary\",\n value: { type: { name: \"any\" } }\n }\n },\n properties: {\n serializedName: \"properties\",\n type: {\n name: \"Composite\",\n className: \"JobDetails\"\n }\n },\n identity: {\n serializedName: \"identity\",\n type: {\n name: \"Composite\",\n className: \"IdentityDetails\"\n }\n }\n }\n }\n};\n\nexport const SystemData: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"SystemData\",\n modelProperties: {\n createdBy: {\n serializedName: \"createdBy\",\n type: {\n name: \"String\"\n }\n },\n createdByType: {\n serializedName: \"createdByType\",\n type: {\n name: \"String\"\n }\n },\n createdAt: {\n serializedName: \"createdAt\",\n type: {\n name: \"DateTime\"\n }\n },\n lastModifiedBy: {\n serializedName: \"lastModifiedBy\",\n type: {\n name: \"String\"\n }\n },\n lastModifiedByType: {\n serializedName: \"lastModifiedByType\",\n type: {\n name: \"String\"\n }\n },\n lastModifiedAt: {\n serializedName: \"lastModifiedAt\",\n type: {\n name: \"DateTime\"\n }\n }\n }\n }\n};\n\nexport const JobDetails: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"JobDetails\",\n modelProperties: {\n storageAccountId: {\n serializedName: \"storageAccountId\",\n type: {\n name: \"String\"\n }\n },\n jobType: {\n serializedName: \"jobType\",\n type: {\n name: \"String\"\n }\n },\n returnAddress: {\n serializedName: \"returnAddress\",\n type: {\n name: \"Composite\",\n className: \"ReturnAddress\"\n }\n },\n returnShipping: {\n serializedName: \"returnShipping\",\n type: {\n name: \"Composite\",\n className: \"ReturnShipping\"\n }\n },\n shippingInformation: {\n serializedName: \"shippingInformation\",\n type: {\n name: \"Composite\",\n className: \"ShippingInformation\"\n }\n },\n deliveryPackage: {\n serializedName: \"deliveryPackage\",\n type: {\n name: \"Composite\",\n className: \"DeliveryPackageInformation\"\n }\n },\n returnPackage: {\n serializedName: \"returnPackage\",\n type: {\n name: \"Composite\",\n className: \"PackageInformation\"\n }\n },\n diagnosticsPath: {\n serializedName: \"diagnosticsPath\",\n type: {\n name: \"String\"\n }\n },\n logLevel: {\n serializedName: \"logLevel\",\n type: {\n name: \"String\"\n }\n },\n backupDriveManifest: {\n defaultValue: false,\n serializedName: \"backupDriveManifest\",\n type: {\n name: \"Boolean\"\n }\n },\n state: {\n defaultValue: \"Creating\",\n serializedName: \"state\",\n type: {\n name: \"String\"\n }\n },\n cancelRequested: {\n defaultValue: false,\n serializedName: \"cancelRequested\",\n type: {\n name: \"Boolean\"\n }\n },\n percentComplete: {\n serializedName: \"percentComplete\",\n type: {\n name: \"Number\"\n }\n },\n incompleteBlobListUri: {\n serializedName: \"incompleteBlobListUri\",\n type: {\n name: \"String\"\n }\n },\n driveList: {\n serializedName: \"driveList\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"DriveStatus\"\n }\n }\n }\n },\n export: {\n serializedName: \"export\",\n type: {\n name: \"Composite\",\n className: \"Export\"\n }\n },\n provisioningState: {\n serializedName: \"provisioningState\",\n type: {\n name: \"String\"\n }\n },\n encryptionKey: {\n serializedName: \"encryptionKey\",\n type: {\n name: \"Composite\",\n className: \"EncryptionKeyDetails\"\n }\n }\n }\n }\n};\n\nexport const ReturnAddress: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ReturnAddress\",\n modelProperties: {\n recipientName: {\n serializedName: \"recipientName\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n streetAddress1: {\n serializedName: \"streetAddress1\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n streetAddress2: {\n serializedName: \"streetAddress2\",\n type: {\n name: \"String\"\n }\n },\n city: {\n serializedName: \"city\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n stateOrProvince: {\n serializedName: \"stateOrProvince\",\n type: {\n name: \"String\"\n }\n },\n postalCode: {\n serializedName: \"postalCode\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n countryOrRegion: {\n serializedName: \"countryOrRegion\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n phone: {\n serializedName: \"phone\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n email: {\n serializedName: \"email\",\n required: true,\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const ReturnShipping: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ReturnShipping\",\n modelProperties: {\n carrierName: {\n serializedName: \"carrierName\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n carrierAccountNumber: {\n serializedName: \"carrierAccountNumber\",\n required: true,\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const ShippingInformation: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ShippingInformation\",\n modelProperties: {\n recipientName: {\n serializedName: \"recipientName\",\n type: {\n name: \"String\"\n }\n },\n streetAddress1: {\n serializedName: \"streetAddress1\",\n type: {\n name: \"String\"\n }\n },\n streetAddress2: {\n serializedName: \"streetAddress2\",\n type: {\n name: \"String\"\n }\n },\n city: {\n serializedName: \"city\",\n type: {\n name: \"String\"\n }\n },\n stateOrProvince: {\n serializedName: \"stateOrProvince\",\n type: {\n name: \"String\"\n }\n },\n postalCode: {\n serializedName: \"postalCode\",\n type: {\n name: \"String\"\n }\n },\n countryOrRegion: {\n serializedName: \"countryOrRegion\",\n type: {\n name: \"String\"\n }\n },\n phone: {\n serializedName: \"phone\",\n type: {\n name: \"String\"\n }\n },\n additionalInformation: {\n serializedName: \"additionalInformation\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const DeliveryPackageInformation: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"DeliveryPackageInformation\",\n modelProperties: {\n carrierName: {\n serializedName: \"carrierName\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n trackingNumber: {\n serializedName: \"trackingNumber\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n driveCount: {\n serializedName: \"driveCount\",\n type: {\n name: \"Number\"\n }\n },\n shipDate: {\n serializedName: \"shipDate\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const PackageInformation: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"PackageInformation\",\n modelProperties: {\n carrierName: {\n serializedName: \"carrierName\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n trackingNumber: {\n serializedName: \"trackingNumber\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n driveCount: {\n serializedName: \"driveCount\",\n required: true,\n type: {\n name: \"Number\"\n }\n },\n shipDate: {\n serializedName: \"shipDate\",\n required: true,\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const DriveStatus: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"DriveStatus\",\n modelProperties: {\n driveId: {\n serializedName: \"driveId\",\n type: {\n name: \"String\"\n }\n },\n bitLockerKey: {\n serializedName: \"bitLockerKey\",\n type: {\n name: \"String\"\n }\n },\n manifestFile: {\n serializedName: \"manifestFile\",\n type: {\n name: \"String\"\n }\n },\n manifestHash: {\n serializedName: \"manifestHash\",\n type: {\n name: \"String\"\n }\n },\n driveHeaderHash: {\n serializedName: \"driveHeaderHash\",\n type: {\n name: \"String\"\n }\n },\n state: {\n defaultValue: \"Specified\",\n serializedName: \"state\",\n type: {\n name: \"String\"\n }\n },\n copyStatus: {\n serializedName: \"copyStatus\",\n type: {\n name: \"String\"\n }\n },\n percentComplete: {\n serializedName: \"percentComplete\",\n type: {\n name: \"Number\"\n }\n },\n verboseLogUri: {\n serializedName: \"verboseLogUri\",\n type: {\n name: \"String\"\n }\n },\n errorLogUri: {\n serializedName: \"errorLogUri\",\n type: {\n name: \"String\"\n }\n },\n manifestUri: {\n serializedName: \"manifestUri\",\n type: {\n name: \"String\"\n }\n },\n bytesSucceeded: {\n serializedName: \"bytesSucceeded\",\n type: {\n name: \"Number\"\n }\n }\n }\n }\n};\n\nexport const Export: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"Export\",\n modelProperties: {\n blobListBlobPath: {\n serializedName: \"blobListBlobPath\",\n type: {\n name: \"String\"\n }\n },\n blobPath: {\n serializedName: \"blobList.blobPath\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n },\n blobPathPrefix: {\n serializedName: \"blobList.blobPathPrefix\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const EncryptionKeyDetails: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"EncryptionKeyDetails\",\n modelProperties: {\n kekType: {\n defaultValue: \"MicrosoftManaged\",\n serializedName: \"kekType\",\n type: {\n name: \"String\"\n }\n },\n kekUrl: {\n serializedName: \"kekUrl\",\n type: {\n name: \"String\"\n }\n },\n kekVaultResourceID: {\n serializedName: \"kekVaultResourceID\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const IdentityDetails: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"IdentityDetails\",\n modelProperties: {\n type: {\n defaultValue: \"None\",\n serializedName: \"type\",\n type: {\n name: \"String\"\n }\n },\n principalId: {\n serializedName: \"principalId\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n tenantId: {\n serializedName: \"tenantId\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const UpdateJobParameters: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"UpdateJobParameters\",\n modelProperties: {\n tags: {\n serializedName: \"tags\",\n type: {\n name: \"Dictionary\",\n value: { type: { name: \"any\" } }\n }\n },\n cancelRequested: {\n defaultValue: false,\n serializedName: \"properties.cancelRequested\",\n type: {\n name: \"Boolean\"\n }\n },\n state: {\n serializedName: \"properties.state\",\n type: {\n name: \"String\"\n }\n },\n returnAddress: {\n serializedName: \"properties.returnAddress\",\n type: {\n name: \"Composite\",\n className: \"ReturnAddress\"\n }\n },\n returnShipping: {\n serializedName: \"properties.returnShipping\",\n type: {\n name: \"Composite\",\n className: \"ReturnShipping\"\n }\n },\n deliveryPackage: {\n serializedName: \"properties.deliveryPackage\",\n type: {\n name: \"Composite\",\n className: \"DeliveryPackageInformation\"\n }\n },\n logLevel: {\n serializedName: \"properties.logLevel\",\n type: {\n name: \"String\"\n }\n },\n backupDriveManifest: {\n defaultValue: false,\n serializedName: \"properties.backupDriveManifest\",\n type: {\n name: \"Boolean\"\n }\n },\n driveList: {\n serializedName: \"properties.driveList\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"DriveStatus\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const PutJobParameters: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"PutJobParameters\",\n modelProperties: {\n location: {\n serializedName: \"location\",\n type: {\n name: \"String\"\n }\n },\n tags: {\n serializedName: \"tags\",\n type: {\n name: \"Dictionary\",\n value: { type: { name: \"any\" } }\n }\n },\n properties: {\n serializedName: \"properties\",\n type: {\n name: \"Composite\",\n className: \"JobDetails\"\n }\n }\n }\n }\n};\n\nexport const GetBitLockerKeysResponse: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"GetBitLockerKeysResponse\",\n modelProperties: {\n value: {\n serializedName: \"value\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"DriveBitLockerKey\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const DriveBitLockerKey: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"DriveBitLockerKey\",\n modelProperties: {\n bitLockerKey: {\n serializedName: \"bitLockerKey\",\n type: {\n name: \"String\"\n }\n },\n driveId: {\n serializedName: \"driveId\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const ListOperationsResponse: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ListOperationsResponse\",\n modelProperties: {\n value: {\n serializedName: \"value\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"Operation\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const Operation: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"Operation\",\n modelProperties: {\n name: {\n serializedName: \"name\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n provider: {\n serializedName: \"display.provider\",\n type: {\n name: \"String\"\n }\n },\n resource: {\n serializedName: \"display.resource\",\n type: {\n name: \"String\"\n }\n },\n operation: {\n serializedName: \"display.operation\",\n type: {\n name: \"String\"\n }\n },\n description: {\n serializedName: \"display.description\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport {\n OperationParameter,\n OperationURLParameter,\n OperationQueryParameter\n} from \"@azure/core-client\";\nimport {\n UpdateJobParameters as UpdateJobParametersMapper,\n PutJobParameters as PutJobParametersMapper\n} from \"../models/mappers\";\n\nexport const accept: OperationParameter = {\n parameterPath: \"accept\",\n mapper: {\n defaultValue: \"application/json\",\n isConstant: true,\n serializedName: \"Accept\",\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const $host: OperationURLParameter = {\n parameterPath: \"$host\",\n mapper: {\n serializedName: \"$host\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n skipEncoding: true\n};\n\nexport const apiVersion: OperationQueryParameter = {\n parameterPath: \"apiVersion\",\n mapper: {\n defaultValue: \"2021-01-01\",\n isConstant: true,\n serializedName: \"api-version\",\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const acceptLanguage: OperationParameter = {\n parameterPath: \"acceptLanguage\",\n mapper: {\n serializedName: \"Accept-Language\",\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const locationName: OperationURLParameter = {\n parameterPath: \"locationName\",\n mapper: {\n serializedName: \"locationName\",\n required: true,\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const top: OperationQueryParameter = {\n parameterPath: [\"options\", \"top\"],\n mapper: {\n serializedName: \"$top\",\n type: {\n name: \"Number\"\n }\n }\n};\n\nexport const filter: OperationQueryParameter = {\n parameterPath: [\"options\", \"filter\"],\n mapper: {\n serializedName: \"$filter\",\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const subscriptionId: OperationURLParameter = {\n parameterPath: \"subscriptionId\",\n mapper: {\n serializedName: \"subscriptionId\",\n required: true,\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const resourceGroupName: OperationURLParameter = {\n parameterPath: \"resourceGroupName\",\n mapper: {\n serializedName: \"resourceGroupName\",\n required: true,\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const jobName: OperationURLParameter = {\n parameterPath: \"jobName\",\n mapper: {\n serializedName: \"jobName\",\n required: true,\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const contentType: OperationParameter = {\n parameterPath: [\"options\", \"contentType\"],\n mapper: {\n defaultValue: \"application/json\",\n isConstant: true,\n serializedName: \"Content-Type\",\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const body: OperationParameter = {\n parameterPath: \"body\",\n mapper: UpdateJobParametersMapper\n};\n\nexport const body1: OperationParameter = {\n parameterPath: \"body\",\n mapper: PutJobParametersMapper\n};\n\nexport const clientTenantId: OperationParameter = {\n parameterPath: [\"options\", \"clientTenantId\"],\n mapper: {\n serializedName: \"x-ms-client-tenant-id\",\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const nextLink: OperationURLParameter = {\n parameterPath: \"nextLink\",\n mapper: {\n serializedName: \"nextLink\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n skipEncoding: true\n};\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport { PagedAsyncIterableIterator } from \"@azure/core-paging\";\nimport { Locations } from \"../operationsInterfaces\";\nimport * as coreClient from \"@azure/core-client\";\nimport * as Mappers from \"../models/mappers\";\nimport * as Parameters from \"../models/parameters\";\nimport { StorageImportExport } from \"../storageImportExport\";\nimport {\n Location,\n LocationsListOptionalParams,\n LocationsListResponse,\n LocationsGetOptionalParams,\n LocationsGetResponse\n} from \"../models\";\n\n/// <reference lib=\"esnext.asynciterable\" />\n/** Class containing Locations operations. */\nexport class LocationsImpl implements Locations {\n private readonly client: StorageImportExport;\n\n /**\n * Initialize a new instance of the class Locations class.\n * @param client Reference to the service client\n */\n constructor(client: StorageImportExport) {\n this.client = client;\n }\n\n /**\n * Returns a list of locations to which you can ship the disks associated with an import or export job.\n * A location is a Microsoft data center region.\n * @param options The options parameters.\n */\n public list(\n options?: LocationsListOptionalParams\n ): PagedAsyncIterableIterator<Location> {\n const iter = this.listPagingAll(options);\n return {\n next() {\n return iter.next();\n },\n [Symbol.asyncIterator]() {\n return this;\n },\n byPage: () => {\n return this.listPagingPage(options);\n }\n };\n }\n\n private async *listPagingPage(\n options?: LocationsListOptionalParams\n ): AsyncIterableIterator<Location[]> {\n let result = await this._list(options);\n yield result.value || [];\n }\n\n private async *listPagingAll(\n options?: LocationsListOptionalParams\n ): AsyncIterableIterator<Location> {\n for await (const page of this.listPagingPage(options)) {\n yield* page;\n }\n }\n\n /**\n * Returns a list of locations to which you can ship the disks associated with an import or export job.\n * A location is a Microsoft data center region.\n * @param options The options parameters.\n */\n private _list(\n options?: LocationsListOptionalParams\n ): Promise<LocationsListResponse> {\n return this.client.sendOperationRequest({ options }, listOperationSpec);\n }\n\n /**\n * Returns the details about a location to which you can ship the disks associated with an import or\n * export job. A location is an Azure region.\n * @param locationName The name of the location. For example, West US or westus.\n * @param options The options parameters.\n */\n get(\n locationName: string,\n options?: LocationsGetOptionalParams\n ): Promise<LocationsGetResponse> {\n return this.client.sendOperationRequest(\n { locationName, options },\n getOperationSpec\n );\n }\n}\n// Operation Specifications\nconst serializer = coreClient.createSerializer(Mappers, /* isXml */ false);\n\nconst listOperationSpec: coreClient.OperationSpec = {\n path: \"/providers/Microsoft.ImportExport/locations\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.LocationsResponse\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [Parameters.$host],\n headerParameters: [Parameters.accept, Parameters.acceptLanguage],\n serializer\n};\nconst getOperationSpec: coreClient.OperationSpec = {\n path: \"/providers/Microsoft.ImportExport/locations/{locationName}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.Location\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [Parameters.$host, Parameters.locationName],\n headerParameters: [Parameters.accept, Parameters.acceptLanguage],\n serializer\n};\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport { PagedAsyncIterableIterator } from \"@azure/core-paging\";\nimport { Jobs } from \"../operationsInterfaces\";\nimport * as coreClient from \"@azure/core-client\";\nimport * as Mappers from \"../models/mappers\";\nimport * as Parameters from \"../models/parameters\";\nimport { StorageImportExport } from \"../storageImportExport\";\nimport {\n JobResponse,\n JobsListBySubscriptionNextOptionalParams,\n JobsListBySubscriptionOptionalParams,\n JobsListByResourceGroupNextOptionalParams,\n JobsListByResourceGroupOptionalParams,\n JobsListBySubscriptionResponse,\n JobsListByResourceGroupResponse,\n JobsGetOptionalParams,\n JobsGetResponse,\n UpdateJobParameters,\n JobsUpdateOptionalParams,\n JobsUpdateResponse,\n PutJobParameters,\n JobsCreateOptionalParams,\n JobsCreateResponse,\n JobsDeleteOptionalParams,\n JobsListBySubscriptionNextResponse,\n JobsListByResourceGroupNextResponse\n} from \"../models\";\n\n/// <reference lib=\"esnext.asynciterable\" />\n/** Class containing Jobs operations. */\nexport class JobsImpl implements Jobs {\n private readonly client: StorageImportExport;\n\n /**\n * Initialize a new instance of the class Jobs class.\n * @param client Reference to the service client\n */\n constructor(client: StorageImportExport) {\n this.client = client;\n }\n\n /**\n * Returns all active and completed jobs in a subscription.\n * @param options The options parameters.\n */\n public listBySubscription(\n options?: JobsListBySubscriptionOptionalParams\n ): PagedAsyncIterableIterator<JobResponse> {\n const iter = this.listBySubscriptionPagingAll(options);\n return {\n next() {\n return iter.next();\n },\n [Symbol.asyncIterator]() {\n return this;\n },\n byPage: () => {\n return this.listBySubscriptionPagingPage(options);\n }\n };\n }\n\n private async *listBySubscriptionPagingPage(\n options?: JobsListBySubscriptionOptionalParams\n ): AsyncIterableIterator<JobResponse[]> {\n let result = await this._listBySubscription(options);\n yield result.value || [];\n let continuationToken = result.nextLink;\n while (continuationToken) {\n result = await this._listBySubscriptionNext(continuationToken, options);\n continuationToken = result.nextLink;\n yield result.value || [];\n }\n }\n\n private async *listBySubscriptionPagingAll(\n options?: JobsListBySubscriptionOptionalParams\n ): AsyncIterableIterator<JobResponse> {\n for await (const page of this.listBySubscriptionPagingPage(options)) {\n yield* page;\n }\n }\n\n /**\n * Returns all active and completed jobs in a resource group.\n * @param resourceGroupName The resource group name uniquely identifies the resource group within the\n * user subscription.\n * @param options The options parameters.\n */\n public listByResourceGroup(\n resourceGroupName: string,\n options?: JobsListByResourceGroupOptionalParams\n ): PagedAsyncIterableIterator<JobResponse> {\n const iter = this.listByResourceGroupPagingAll(resourceGroupName, options);\n return {\n next() {\n return iter.next();\n },\n [Symbol.asyncIterator]() {\n return this;\n },\n byPage: () => {\n return this.listByResourceGroupPagingPage(resourceGroupName, options);\n }\n };\n }\n\n private async *listByResourceGroupPagingPage(\n resourceGroupName: string,\n options?: JobsListByResourceGroupOptionalParams\n ): AsyncIterableIterator<JobResponse[]> {\n let result = await this._listByResourceGroup(resourceGroupName, options);\n yield result.value || [];\n let continuationToken = result.nextLink;\n while (continuationToken) {\n result = await this._listByResourceGroupNext(\n resourceGroupName,\n continuationToken,\n options\n );\n continuationToken = result.nextLink;\n yield result.value || [];\n }\n }\n\n private async *listByResourceGroupPagingAll(\n resourceGroupName: string,\n options?: JobsListByResourceGroupOptionalParams\n ): AsyncIterableIterator<JobResponse> {\n for await (const page of this.listByResourceGroupPagingPage(\n resourceGroupName,\n options\n )) {\n yield* page;\n }\n }\n\n /**\n * Returns all active and completed jobs in a subscription.\n * @param options The options parameters.\n */\n private _listBySubscription(\n options?: JobsListBySubscriptionOptionalParams\n ): Promise<JobsListBySubscriptionResponse> {\n return this.client.sendOperationRequest(\n { options },\n listBySubscriptionOperationSpec\n );\n }\n\n /**\n * Returns all active and completed jobs in a resource group.\n * @param resourceGroupName The resource group name uniquely identifies the resource group within the\n * user subscription.\n * @param options The options parameters.\n */\n private _listByResourceGroup(\n resourceGroupName: string,\n options?: JobsListByResourceGroupOptionalParams\n ): Promise<JobsListByResourceGroupResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, options },\n listByResourceGroupOperationSpec\n );\n }\n\n /**\n * Gets information about an existing job.\n * @param jobName The name of the import/export job.\n * @param resourceGroupName The resource group name uniquely identifies the resource group within the\n * user subscription.\n * @param options The options parameters.\n */\n get(\n jobName: string,\n resourceGroupName: string,\n options?: JobsGetOptionalParams\n ): Promise<JobsGetResponse> {\n return this.client.sendOperationRequest(\n { jobName, resourceGroupName, options },\n getOperationSpec\n );\n }\n\n /**\n * Updates specific properties of a job. You can call this operation to notify the Import/Export\n * service that the hard drives comprising the import or export job have been shipped to the Microsoft\n * data center. It can also be used to cancel an existing job.\n * @param jobName The name of the import/export job.\n * @param resourceGroupName The resource group name uniquely identifies the resource group within the\n * user subscription.\n * @param body The parameters to update in the job\n * @param options The options parameters.\n */\n update(\n jobName: string,\n resourceGroupName: string,\n body: UpdateJobParameters,\n options?: JobsUpdateOptionalParams\n ): Promise<JobsUpdateResponse> {\n return this.client.sendOperationRequest(\n { jobName, resourceGroupName, body, options },\n updateOperationSpec\n );\n }\n\n /**\n * Creates a new job or updates an existing job in the specified subscription.\n * @param jobName The name of the import/export job.\n * @param resourceGroupName The resource group name uniquely identifies the resource group within the\n * user subscription.\n * @param body The parameters used for creating the job\n * @param options The options parameters.\n */\n create(\n jobName: string,\n resourceGroupName: string,\n body: PutJobParameters,\n options?: JobsCreateOptionalParams\n ): Promise<JobsCreateResponse> {\n return this.client.sendOperationRequest(\n { jobName, resourceGroupName, body, options },\n createOperationSpec\n );\n }\n\n /**\n * Deletes an existing job. Only jobs in the Creating or Completed states can be deleted.\n * @param jobName The name of the import/export job.\n * @param resourceGroupName The resource group name uniquely identifies the resource group within the\n * user subscription.\n * @param options The options parameters.\n */\n delete(\n jobName: string,\n resourceGroupName: string,\n options?: JobsDeleteOptionalParams\n ): Promise<void> {\n return this.client.sendOperationRequest(\n { jobName, resourceGroupName, options },\n deleteOperationSpec\n );\n }\n\n /**\n * ListBySubscriptionNext\n * @param nextLink The nextLink from the previous successful call to the ListBySubscription method.\n * @param options The options parameters.\n */\n private _listBySubscriptionNext(\n nextLink: string,\n options?: JobsListBySubscriptionNextOptionalParams\n ): Promise<JobsListBySubscriptionNextResponse> {\n return this.client.sendOperationRequest(\n { nextLink, options },\n listBySubscriptionNextOperationSpec\n );\n }\n\n /**\n * ListByResourceGroupNext\n * @param resourceGroupName The resource group name uniquely identifies the resource group within the\n * user subscription.\n * @param nextLink The nextLink from the previous successful call to the ListByResourceGroup method.\n * @param options The options parameters.\n */\n private _listByResourceGroupNext(\n resourceGroupName: string,\n nextLink: string,\n options?: JobsListByResourceGroupNextOptionalParams\n ): Promise<JobsListByResourceGroupNextResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, nextLink, options },\n listByResourceGroupNextOperationSpec\n );\n }\n}\n// Operation Specifications\nconst serializer = coreClient.createSerializer(Mappers, /* isXml */ false);\n\nconst listBySubscriptionOperationSpec: coreClient.OperationSpec = {\n path: \"/subscriptions/{subscriptionId}/providers/Microsoft.ImportExport/jobs\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.ListJobsResponse\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [Parameters.apiVersion, Parameters.top, Parameters.filter],\n urlParameters: [Parameters.$host, Parameters.subscriptionId],\n headerParameters: [Parameters.accept, Parameters.acceptLanguage],\n serializer\n};\nconst listByResourceGroupOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ImportExport/jobs\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.ListJobsResponse\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [Parameters.apiVersion, Parameters.top, Parameters.filter],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName\n ],\n headerParameters: [Parameters.accept, Parameters.acceptLanguage],\n serializer\n};\nconst getOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ImportExport/jobs/{jobName}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.JobResponse\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.jobName\n ],\n headerParameters: [Parameters.accept, Parameters.acceptLanguage],\n serializer\n};\nconst updateOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ImportExport/jobs/{jobName}\",\n httpMethod: \"PATCH\",\n responses: {\n 200: {\n bodyMapper: Mappers.JobResponse\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n requestBody: Parameters.body,\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.jobName\n ],\n headerParameters: [\n Parameters.accept,\n Parameters.acceptLanguage,\n Parameters.contentType\n ],\n mediaType: \"json\",\n serializer\n};\nconst createOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ImportExport/jobs/{jobName}\",\n httpMethod: \"PUT\",\n responses: {\n 200: {\n bodyMapper: Mappers.JobResponse\n },\n 201: {\n bodyMapper: Mappers.JobResponse\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n requestBody: Parameters.body1,\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.jobName\n ],\n headerParameters: [\n Parameters.accept,\n Parameters.acceptLanguage,\n Parameters.contentType,\n Parameters.clientTenantId\n ],\n mediaType: \"json\",\n serializer\n};\nconst deleteOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ImportExport/jobs/{jobName}\",\n httpMethod: \"DELETE\",\n responses: {\n 200: {},\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.jobName\n ],\n headerParameters: [Parameters.accept, Parameters.acceptLanguage],\n serializer\n};\nconst listBySubscriptionNextOperationSpec: coreClient.OperationSpec = {\n path: \"{nextLink}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.ListJobsResponse\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [Parameters.apiVersion, Parameters.top, Parameters.filter],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.nextLink\n ],\n headerParameters: [Parameters.accept, Parameters.acceptLanguage],\n serializer\n};\nconst listByResourceGroupNextOperationSpec: coreClient.OperationSpec = {\n path: \"{nextLink}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.ListJobsResponse\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [Parameters.apiVersion, Parameters.top, Parameters.filter],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.nextLink\n ],\n headerParameters: [Parameters.accept, Parameters.acceptLanguage],\n serializer\n};\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport { PagedAsyncIterableIterator } from \"@azure/core-paging\";\nimport { BitLockerKeys } from \"../operationsInterfaces\";\nimport * as coreClient from \"@azure/core-client\";\nimport * as Mappers from \"../models/mappers\";\nimport * as Parameters from \"../models/parameters\";\nimport { StorageImportExport } from \"../storageImportExport\";\nimport {\n DriveBitLockerKey,\n BitLockerKeysListOptionalParams,\n BitLockerKeysListResponse\n} from \"../models\";\n\n/// <reference lib=\"esnext.asynciterable\" />\n/** Class containing BitLockerKeys operations. */\nexport class BitLockerKeysImpl implements BitLockerKeys {\n private readonly client: StorageImportExport;\n\n /**\n * Initialize a new instance of the class BitLockerKeys class.\n * @param client Reference to the service client\n */\n constructor(client: StorageImportExport) {\n this.client = client;\n }\n\n /**\n * Returns the BitLocker Keys for all drives in the specified job.\n * @param jobName The name of the import/export job.\n * @param resourceGroupName The resource group name uniquely identifies the resource group within the\n * user subscription.\n * @param options The options parameters.\n */\n public list(\n jobName: string,\n resourceGroupName: string,\n options?: BitLockerKeysListOptionalParams\n ): PagedAsyncIterableIterator<DriveBitLockerKey> {\n const iter = this.listPagingAll(jobName, resourceGroupName, options);\n return {\n next() {\n return iter.next();\n },\n [Symbol.asyncIterator]() {\n return this;\n },\n byPage: () => {\n return this.listPagingPage(jobName, resourceGroupName, options);\n }\n };\n }\n\n private async *listPagingPage(\n jobName: string,\n resourceGroupName: string,\n options?: BitLockerKeysListOptionalParams\n ): AsyncIterableIterator<DriveBitLockerKey[]> {\n let result = await this._list(jobName, resourceGroupName, options);\n yield result.value || [];\n }\n\n private async *listPagingAll(\n jobName: string,\n resourceGroupName: string,\n options?: BitLockerKeysListOptionalParams\n ): AsyncIterableIterator<DriveBitLockerKey> {\n for await (const page of this.listPagingPage(\n jobName,\n resourceGroupName,\n options\n )) {\n yield* page;\n }\n }\n\n /**\n * Returns the BitLocker Keys for all drives in the specified job.\n * @param jobName The name of the import/export job.\n * @param resourceGroupName The resource group name uniquely identifies the resource group within the\n * user subscription.\n * @param options The options parameters.\n */\n private _list(\n jobName: string,\n resourceGroupName: string,\n options?: BitLockerKeysListOptionalParams\n ): Promise<BitLockerKeysListResponse> {\n return this.client.sendOperationRequest(\n { jobName, resourceGroupName, options },\n listOperationSpec\n );\n }\n}\n// Operation Specifications\nconst serializer = coreClient.createSerializer(Mappers, /* isXml */ false);\n\nconst listOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ImportExport/jobs/{jobName}/listBitLockerKeys\",\n httpMethod: \"POST\",\n responses: {\n 200: {\n bodyMapper: Mappers.GetBitLockerKeysResponse\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.jobName\n ],\n headerParameters: [Parameters.accept, Parameters.acceptLanguage],\n serializer\n};\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport { PagedAsyncIterableIterator } from \"@azure/core-paging\";\nimport { Operations } from \"../operationsInterfaces\";\nimport * as coreClient from \"@azure/core-client\";\nimport * as Mappers from \"../models/mappers\";\nimport * as Parameters from \"../models/parameters\";\nimport { StorageImportExport } from \"../storageImportExport\";\nimport {\n Operation,\n OperationsListOptionalParams,\n OperationsListResponse\n} from \"../models\";\n\n/// <reference lib=\"esnext.asynciterable\" />\n/** Class containing Operations operations. */\nexport class OperationsImpl implements Operations {\n private readonly client: StorageImportExport;\n\n /**\n * Initialize a new instance of the class Operations class.\n * @param client Reference to the service client\n */\n constructor(client: StorageImportExport) {\n this.client = client;\n }\n\n /**\n * Returns the list of operations supported by the import/export resource provider.\n * @param options The options parameters.\n */\n public list(\n options?: OperationsListOptionalParams\n ): PagedAsyncIterableIterator<Operation> {\n const iter = this.listPagingAll(options);\n return {\n next() {\n return iter.next();\n },\n [Symbol.asyncIterator]() {\n return this;\n },\n byPage: () => {\n return this.listPagingPage(options);\n }\n };\n }\n\n private async *listPagingPage(\n options?: OperationsListOptionalParams\n ): AsyncIterableIterator<Operation[]> {\n let result = await this._list(options);\n yield result.value || [];\n }\n\n private async *listPagingAll(\n options?: OperationsListOptionalParams\n ): AsyncIterableIterator<Operation> {\n for await (const page of this.listPagingPage(options)) {\n yield* page;\n }\n }\n\n /**\n * Returns the list of operations supported by the import/export resource provider.\n * @param options The options parameters.\n */\n private _list(\n options?: OperationsListOptionalParams\n ): Promise<OperationsListResponse> {\n return this.client.sendOperationRequest({ options }, listOperationSpec);\n }\n}\n// Operation Specifications\nconst serializer = coreClient.createSerializer(Mappers, /* isXml */ false);\n\nconst listOperationSpec: coreClient.OperationSpec = {\n path: \"/providers/Microsoft.ImportExport/operations\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.ListOperationsResponse\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [Parameters.$host],\n headerParameters: [Parameters.accept, Parameters.acceptLanguage],\n serializer\n};\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport * as coreClient from \"@azure/core-client\";\nimport * as coreAuth from \"@azure/core-auth\";\nimport {\n LocationsImpl,\n JobsImpl,\n BitLockerKeysImpl,\n OperationsImpl\n} from \"./operations\";\nimport {\n Locations,\n Jobs,\n BitLockerKeys,\n Operations\n} from \"./operationsInterfaces\";\nimport { StorageImportExportOptionalParams } from \"./models\";\n\nexport class StorageImportExport extends coreClient.ServiceClient {\n $host: string;\n apiVersion: string;\n acceptLanguage?: string;\n subscriptionId: string;\n\n /**\n * Initializes a new instance of the StorageImportExport class.\n * @param credentials Subscription credentials which uniquely identify client subscription.\n * @param subscriptionId The subscription ID for the Azure user.\n * @param options The parameter options\n */\n constructor(\n credentials: coreAuth.TokenCredential,\n subscriptionId: string,\n options?: StorageImportExportOptionalParams\n ) {\n if (credentials === undefined) {\n throw new Error(\"'credentials' cannot be null\");\n }\n if (subscriptionId === undefined) {\n throw new Error(\"'subscriptionId' cannot be null\");\n }\n\n // Initializing default values for options\n if (!options) {\n options = {};\n }\n const defaults: StorageImportExportOptionalParams = {\n requestContentType: \"application/json; charset=utf-8\",\n credential: credentials\n };\n\n const packageDetails = `azsdk-js-arm-storageimportexport/2.0.0`;\n const userAgentPrefix =\n options.userAgentOptions && options.userAgentOptions.userAgentPrefix\n ? `${options.userAgentOptions.userAgentPrefix} ${packageDetails}`\n : `${packageDetails}`;\n\n if (!options.credentialScopes) {\n options.credentialScopes = [\"https://management.azure.com/.default\"];\n }\n const optionsWithDefaults = {\n ...defaults,\n ...options,\n userAgentOptions: {\n userAgentPrefix\n },\n baseUri: options.endpoint || \"https://management.azure.com\"\n };\n super(optionsWithDefaults);\n // Parameter assignments\n this.subscriptionId = subscriptionId;\n\n // Assigning values to Constant parameters\n this.$host = options.$host || \"https://management.azure.com\";\n this.apiVersion = options.apiVersion || \"2021-01-01\";\n this.locations = new LocationsImpl(this);\n this.jobs = new JobsImpl(this);\n this.bitLockerKeys = new BitLockerKeysImpl(this);\n this.operations = new OperationsImpl(this);\n }\n\n locations: Locations;\n jobs: Jobs;\n bitLockerKeys: BitLockerKeys;\n operations: Operations;\n}\n"],"names":["KnownCreatedByType","KnownDriveState","KnownEncryptionKekType","KnownIdentityType","UpdateJobParametersMapper","PutJobParametersMapper","__asyncValues","__asyncDelegator","coreClient.createSerializer","Mappers.LocationsResponse","Mappers.ErrorResponse","Parameters.apiVersion","Parameters.$host","Parameters.accept","Parameters.acceptLanguage","Mappers.Location","Parameters.locationName","getOperationSpec","serializer","Mappers.ListJobsResponse","Parameters.top","Parameters.filter","Parameters.subscriptionId","Parameters.resourceGroupName","Mappers.JobResponse","Parameters.jobName","Parameters.body","Parameters.contentType","Parameters.body1","Parameters.clientTenantId","Parameters.nextLink","listOperationSpec","Mappers.GetBitLockerKeysResponse","Mappers.ListOperationsResponse","coreClient.ServiceClient"],"mappings":"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"}
@@ -0,0 +1 @@
1
+ "use strict";Object.defineProperty(exports,"__esModule",{value:!0});var coreClient=require("@azure/core-client"),tslib=require("tslib");!function(e){e.User="User",e.Application="Application",e.ManagedIdentity="ManagedIdentity",e.Key="Key"}(exports.KnownCreatedByType||(exports.KnownCreatedByType={})),function(e){e.Specified="Specified",e.Received="Received",e.NeverReceived="NeverReceived",e.Transferring="Transferring",e.Completed="Completed",e.CompletedMoreInfo="CompletedMoreInfo",e.ShippedBack="ShippedBack"}(exports.KnownDriveState||(exports.KnownDriveState={})),function(e){e.MicrosoftManaged="MicrosoftManaged",e.CustomerManaged="CustomerManaged"}(exports.KnownEncryptionKekType||(exports.KnownEncryptionKekType={})),function(e){e.None="None",e.SystemAssigned="SystemAssigned",e.UserAssigned="UserAssigned"}(exports.KnownIdentityType||(exports.KnownIdentityType={}));const LocationsResponse={type:{name:"Composite",className:"LocationsResponse",modelProperties:{value:{serializedName:"value",type:{name:"Sequence",element:{type:{name:"Composite",className:"Location"}}}}}}},Location={type:{name:"Composite",className:"Location",modelProperties:{id:{serializedName:"id",type:{name:"String"}},name:{serializedName:"name",type:{name:"String"}},type:{serializedName:"type",type:{name:"String"}},recipientName:{serializedName:"properties.recipientName",type:{name:"String"}},streetAddress1:{serializedName:"properties.streetAddress1",type:{name:"String"}},streetAddress2:{serializedName:"properties.streetAddress2",type:{name:"String"}},city:{serializedName:"properties.city",type:{name:"String"}},stateOrProvince:{serializedName:"properties.stateOrProvince",type:{name:"String"}},postalCode:{serializedName:"properties.postalCode",type:{name:"String"}},countryOrRegion:{serializedName:"properties.countryOrRegion",type:{name:"String"}},phone:{serializedName:"properties.phone",type:{name:"String"}},additionalShippingInformation:{serializedName:"properties.additionalShippingInformation",type:{name:"String"}},supportedCarriers:{serializedName:"properties.supportedCarriers",type:{name:"Sequence",element:{type:{name:"String"}}}},alternateLocations:{serializedName:"properties.alternateLocations",type:{name:"Sequence",element:{type:{name:"String"}}}}}}},ErrorResponse={type:{name:"Composite",className:"ErrorResponse",modelProperties:{code:{serializedName:"error.code",type:{name:"String"}},message:{serializedName:"error.message",type:{name:"String"}},target:{serializedName:"error.target",type:{name:"String"}},details:{serializedName:"error.details",type:{name:"Sequence",element:{type:{name:"Composite",className:"ErrorResponseErrorDetailsItem"}}}},innererror:{serializedName:"error.innererror",type:{name:"Dictionary",value:{type:{name:"any"}}}}}}},ErrorResponseErrorDetailsItem={type:{name:"Composite",className:"ErrorResponseErrorDetailsItem",modelProperties:{code:{serializedName:"code",type:{name:"String"}},target:{serializedName:"target",type:{name:"String"}},message:{serializedName:"message",type:{name:"String"}}}}},ListJobsResponse={type:{name:"Composite",className:"ListJobsResponse",modelProperties:{nextLink:{serializedName:"nextLink",type:{name:"String"}},value:{serializedName:"value",type:{name:"Sequence",element:{type:{name:"Composite",className:"JobResponse"}}}}}}},JobResponse={type:{name:"Composite",className:"JobResponse",modelProperties:{systemData:{serializedName:"systemData",type:{name:"Composite",className:"SystemData"}},id:{serializedName:"id",readOnly:!0,type:{name:"String"}},name:{serializedName:"name",readOnly:!0,type:{name:"String"}},type:{serializedName:"type",readOnly:!0,type:{name:"String"}},location:{serializedName:"location",type:{name:"String"}},tags:{serializedName:"tags",type:{name:"Dictionary",value:{type:{name:"any"}}}},properties:{serializedName:"properties",type:{name:"Composite",className:"JobDetails"}},identity:{serializedName:"identity",type:{name:"Composite",className:"IdentityDetails"}}}}},SystemData={type:{name:"Composite",className:"SystemData",modelProperties:{createdBy:{serializedName:"createdBy",type:{name:"String"}},createdByType:{serializedName:"createdByType",type:{name:"String"}},createdAt:{serializedName:"createdAt",type:{name:"DateTime"}},lastModifiedBy:{serializedName:"lastModifiedBy",type:{name:"String"}},lastModifiedByType:{serializedName:"lastModifiedByType",type:{name:"String"}},lastModifiedAt:{serializedName:"lastModifiedAt",type:{name:"DateTime"}}}}},JobDetails={type:{name:"Composite",className:"JobDetails",modelProperties:{storageAccountId:{serializedName:"storageAccountId",type:{name:"String"}},jobType:{serializedName:"jobType",type:{name:"String"}},returnAddress:{serializedName:"returnAddress",type:{name:"Composite",className:"ReturnAddress"}},returnShipping:{serializedName:"returnShipping",type:{name:"Composite",className:"ReturnShipping"}},shippingInformation:{serializedName:"shippingInformation",type:{name:"Composite",className:"ShippingInformation"}},deliveryPackage:{serializedName:"deliveryPackage",type:{name:"Composite",className:"DeliveryPackageInformation"}},returnPackage:{serializedName:"returnPackage",type:{name:"Composite",className:"PackageInformation"}},diagnosticsPath:{serializedName:"diagnosticsPath",type:{name:"String"}},logLevel:{serializedName:"logLevel",type:{name:"String"}},backupDriveManifest:{defaultValue:!1,serializedName:"backupDriveManifest",type:{name:"Boolean"}},state:{defaultValue:"Creating",serializedName:"state",type:{name:"String"}},cancelRequested:{defaultValue:!1,serializedName:"cancelRequested",type:{name:"Boolean"}},percentComplete:{serializedName:"percentComplete",type:{name:"Number"}},incompleteBlobListUri:{serializedName:"incompleteBlobListUri",type:{name:"String"}},driveList:{serializedName:"driveList",type:{name:"Sequence",element:{type:{name:"Composite",className:"DriveStatus"}}}},export:{serializedName:"export",type:{name:"Composite",className:"Export"}},provisioningState:{serializedName:"provisioningState",type:{name:"String"}},encryptionKey:{serializedName:"encryptionKey",type:{name:"Composite",className:"EncryptionKeyDetails"}}}}},ReturnAddress={type:{name:"Composite",className:"ReturnAddress",modelProperties:{recipientName:{serializedName:"recipientName",required:!0,type:{name:"String"}},streetAddress1:{serializedName:"streetAddress1",required:!0,type:{name:"String"}},streetAddress2:{serializedName:"streetAddress2",type:{name:"String"}},city:{serializedName:"city",required:!0,type:{name:"String"}},stateOrProvince:{serializedName:"stateOrProvince",type:{name:"String"}},postalCode:{serializedName:"postalCode",required:!0,type:{name:"String"}},countryOrRegion:{serializedName:"countryOrRegion",required:!0,type:{name:"String"}},phone:{serializedName:"phone",required:!0,type:{name:"String"}},email:{serializedName:"email",required:!0,type:{name:"String"}}}}},ReturnShipping={type:{name:"Composite",className:"ReturnShipping",modelProperties:{carrierName:{serializedName:"carrierName",required:!0,type:{name:"String"}},carrierAccountNumber:{serializedName:"carrierAccountNumber",required:!0,type:{name:"String"}}}}},ShippingInformation={type:{name:"Composite",className:"ShippingInformation",modelProperties:{recipientName:{serializedName:"recipientName",type:{name:"String"}},streetAddress1:{serializedName:"streetAddress1",type:{name:"String"}},streetAddress2:{serializedName:"streetAddress2",type:{name:"String"}},city:{serializedName:"city",type:{name:"String"}},stateOrProvince:{serializedName:"stateOrProvince",type:{name:"String"}},postalCode:{serializedName:"postalCode",type:{name:"String"}},countryOrRegion:{serializedName:"countryOrRegion",type:{name:"String"}},phone:{serializedName:"phone",type:{name:"String"}},additionalInformation:{serializedName:"additionalInformation",readOnly:!0,type:{name:"String"}}}}},DeliveryPackageInformation={type:{name:"Composite",className:"DeliveryPackageInformation",modelProperties:{carrierName:{serializedName:"carrierName",required:!0,type:{name:"String"}},trackingNumber:{serializedName:"trackingNumber",required:!0,type:{name:"String"}},driveCount:{serializedName:"driveCount",type:{name:"Number"}},shipDate:{serializedName:"shipDate",type:{name:"String"}}}}},PackageInformation={type:{name:"Composite",className:"PackageInformation",modelProperties:{carrierName:{serializedName:"carrierName",required:!0,type:{name:"String"}},trackingNumber:{serializedName:"trackingNumber",required:!0,type:{name:"String"}},driveCount:{serializedName:"driveCount",required:!0,type:{name:"Number"}},shipDate:{serializedName:"shipDate",required:!0,type:{name:"String"}}}}},DriveStatus={type:{name:"Composite",className:"DriveStatus",modelProperties:{driveId:{serializedName:"driveId",type:{name:"String"}},bitLockerKey:{serializedName:"bitLockerKey",type:{name:"String"}},manifestFile:{serializedName:"manifestFile",type:{name:"String"}},manifestHash:{serializedName:"manifestHash",type:{name:"String"}},driveHeaderHash:{serializedName:"driveHeaderHash",type:{name:"String"}},state:{defaultValue:"Specified",serializedName:"state",type:{name:"String"}},copyStatus:{serializedName:"copyStatus",type:{name:"String"}},percentComplete:{serializedName:"percentComplete",type:{name:"Number"}},verboseLogUri:{serializedName:"verboseLogUri",type:{name:"String"}},errorLogUri:{serializedName:"errorLogUri",type:{name:"String"}},manifestUri:{serializedName:"manifestUri",type:{name:"String"}},bytesSucceeded:{serializedName:"bytesSucceeded",type:{name:"Number"}}}}},Export={type:{name:"Composite",className:"Export",modelProperties:{blobListBlobPath:{serializedName:"blobListBlobPath",type:{name:"String"}},blobPath:{serializedName:"blobList.blobPath",type:{name:"Sequence",element:{type:{name:"String"}}}},blobPathPrefix:{serializedName:"blobList.blobPathPrefix",type:{name:"Sequence",element:{type:{name:"String"}}}}}}},EncryptionKeyDetails={type:{name:"Composite",className:"EncryptionKeyDetails",modelProperties:{kekType:{defaultValue:"MicrosoftManaged",serializedName:"kekType",type:{name:"String"}},kekUrl:{serializedName:"kekUrl",type:{name:"String"}},kekVaultResourceID:{serializedName:"kekVaultResourceID",type:{name:"String"}}}}},IdentityDetails={type:{name:"Composite",className:"IdentityDetails",modelProperties:{type:{defaultValue:"None",serializedName:"type",type:{name:"String"}},principalId:{serializedName:"principalId",readOnly:!0,type:{name:"String"}},tenantId:{serializedName:"tenantId",readOnly:!0,type:{name:"String"}}}}},UpdateJobParameters={type:{name:"Composite",className:"UpdateJobParameters",modelProperties:{tags:{serializedName:"tags",type:{name:"Dictionary",value:{type:{name:"any"}}}},cancelRequested:{defaultValue:!1,serializedName:"properties.cancelRequested",type:{name:"Boolean"}},state:{serializedName:"properties.state",type:{name:"String"}},returnAddress:{serializedName:"properties.returnAddress",type:{name:"Composite",className:"ReturnAddress"}},returnShipping:{serializedName:"properties.returnShipping",type:{name:"Composite",className:"ReturnShipping"}},deliveryPackage:{serializedName:"properties.deliveryPackage",type:{name:"Composite",className:"DeliveryPackageInformation"}},logLevel:{serializedName:"properties.logLevel",type:{name:"String"}},backupDriveManifest:{defaultValue:!1,serializedName:"properties.backupDriveManifest",type:{name:"Boolean"}},driveList:{serializedName:"properties.driveList",type:{name:"Sequence",element:{type:{name:"Composite",className:"DriveStatus"}}}}}}},PutJobParameters={type:{name:"Composite",className:"PutJobParameters",modelProperties:{location:{serializedName:"location",type:{name:"String"}},tags:{serializedName:"tags",type:{name:"Dictionary",value:{type:{name:"any"}}}},properties:{serializedName:"properties",type:{name:"Composite",className:"JobDetails"}}}}},GetBitLockerKeysResponse={type:{name:"Composite",className:"GetBitLockerKeysResponse",modelProperties:{value:{serializedName:"value",type:{name:"Sequence",element:{type:{name:"Composite",className:"DriveBitLockerKey"}}}}}}},DriveBitLockerKey={type:{name:"Composite",className:"DriveBitLockerKey",modelProperties:{bitLockerKey:{serializedName:"bitLockerKey",type:{name:"String"}},driveId:{serializedName:"driveId",type:{name:"String"}}}}},ListOperationsResponse={type:{name:"Composite",className:"ListOperationsResponse",modelProperties:{value:{serializedName:"value",type:{name:"Sequence",element:{type:{name:"Composite",className:"Operation"}}}}}}},Operation={type:{name:"Composite",className:"Operation",modelProperties:{name:{serializedName:"name",required:!0,type:{name:"String"}},provider:{serializedName:"display.provider",type:{name:"String"}},resource:{serializedName:"display.resource",type:{name:"String"}},operation:{serializedName:"display.operation",type:{name:"String"}},description:{serializedName:"display.description",type:{name:"String"}}}}};var Mappers=Object.freeze({__proto__:null,LocationsResponse:LocationsResponse,Location:Location,ErrorResponse:ErrorResponse,ErrorResponseErrorDetailsItem:ErrorResponseErrorDetailsItem,ListJobsResponse:ListJobsResponse,JobResponse:JobResponse,SystemData:SystemData,JobDetails:JobDetails,ReturnAddress:ReturnAddress,ReturnShipping:ReturnShipping,ShippingInformation:ShippingInformation,DeliveryPackageInformation:DeliveryPackageInformation,PackageInformation:PackageInformation,DriveStatus:DriveStatus,Export:Export,EncryptionKeyDetails:EncryptionKeyDetails,IdentityDetails:IdentityDetails,UpdateJobParameters:UpdateJobParameters,PutJobParameters:PutJobParameters,GetBitLockerKeysResponse:GetBitLockerKeysResponse,DriveBitLockerKey:DriveBitLockerKey,ListOperationsResponse:ListOperationsResponse,Operation:Operation});const accept={parameterPath:"accept",mapper:{defaultValue:"application/json",isConstant:!0,serializedName:"Accept",type:{name:"String"}}},$host={parameterPath:"$host",mapper:{serializedName:"$host",required:!0,type:{name:"String"}},skipEncoding:!0},apiVersion={parameterPath:"apiVersion",mapper:{defaultValue:"2021-01-01",isConstant:!0,serializedName:"api-version",type:{name:"String"}}},acceptLanguage={parameterPath:"acceptLanguage",mapper:{serializedName:"Accept-Language",type:{name:"String"}}},locationName={parameterPath:"locationName",mapper:{serializedName:"locationName",required:!0,type:{name:"String"}}},top={parameterPath:["options","top"],mapper:{serializedName:"$top",type:{name:"Number"}}},filter={parameterPath:["options","filter"],mapper:{serializedName:"$filter",type:{name:"String"}}},subscriptionId={parameterPath:"subscriptionId",mapper:{serializedName:"subscriptionId",required:!0,type:{name:"String"}}},resourceGroupName={parameterPath:"resourceGroupName",mapper:{serializedName:"resourceGroupName",required:!0,type:{name:"String"}}},jobName={parameterPath:"jobName",mapper:{serializedName:"jobName",required:!0,type:{name:"String"}}},contentType={parameterPath:["options","contentType"],mapper:{defaultValue:"application/json",isConstant:!0,serializedName:"Content-Type",type:{name:"String"}}},body={parameterPath:"body",mapper:UpdateJobParameters},body1={parameterPath:"body",mapper:PutJobParameters},clientTenantId={parameterPath:["options","clientTenantId"],mapper:{serializedName:"x-ms-client-tenant-id",type:{name:"String"}}},nextLink={parameterPath:"nextLink",mapper:{serializedName:"nextLink",required:!0,type:{name:"String"}},skipEncoding:!0};class LocationsImpl{constructor(e){this.client=e}list(e){const t=this.listPagingAll(e);return{next(){return t.next()},[Symbol.asyncIterator](){return this},byPage:()=>this.listPagingPage(e)}}listPagingPage(t){return tslib.__asyncGenerator(this,arguments,function*(){var e=yield tslib.__await(this._list(t));yield yield tslib.__await(e.value||[])})}listPagingAll(s){return tslib.__asyncGenerator(this,arguments,function*(){var t,e;try{for(var r,a=tslib.__asyncValues(this.listPagingPage(s));!(r=yield tslib.__await(a.next())).done;){var i=r.value;yield tslib.__await(yield*tslib.__asyncDelegator(tslib.__asyncValues(i)))}}catch(e){t={error:e}}finally{try{r&&!r.done&&(e=a.return)&&(yield tslib.__await(e.call(a)))}finally{if(t)throw t.error}}})}_list(e){return this.client.sendOperationRequest({options:e},listOperationSpec)}get(e,t){return this.client.sendOperationRequest({locationName:e,options:t},getOperationSpec)}}const serializer=coreClient.createSerializer(Mappers,!1),listOperationSpec={path:"/providers/Microsoft.ImportExport/locations",httpMethod:"GET",responses:{200:{bodyMapper:LocationsResponse},default:{bodyMapper:ErrorResponse}},queryParameters:[apiVersion],urlParameters:[$host],headerParameters:[accept,acceptLanguage],serializer:serializer},getOperationSpec={path:"/providers/Microsoft.ImportExport/locations/{locationName}",httpMethod:"GET",responses:{200:{bodyMapper:Location},default:{bodyMapper:ErrorResponse}},queryParameters:[apiVersion],urlParameters:[$host,locationName],headerParameters:[accept,acceptLanguage],serializer:serializer};class JobsImpl{constructor(e){this.client=e}listBySubscription(e){const t=this.listBySubscriptionPagingAll(e);return{next(){return t.next()},[Symbol.asyncIterator](){return this},byPage:()=>this.listBySubscriptionPagingPage(e)}}listBySubscriptionPagingPage(r){return tslib.__asyncGenerator(this,arguments,function*(){var e=yield tslib.__await(this._listBySubscription(r));yield yield tslib.__await(e.value||[]);let t=e.nextLink;for(;t;)e=yield tslib.__await(this._listBySubscriptionNext(t,r)),t=e.nextLink,yield yield tslib.__await(e.value||[])})}listBySubscriptionPagingAll(s){return tslib.__asyncGenerator(this,arguments,function*(){var t,e;try{for(var r,a=tslib.__asyncValues(this.listBySubscriptionPagingPage(s));!(r=yield tslib.__await(a.next())).done;){var i=r.value;yield tslib.__await(yield*tslib.__asyncDelegator(tslib.__asyncValues(i)))}}catch(e){t={error:e}}finally{try{r&&!r.done&&(e=a.return)&&(yield tslib.__await(e.call(a)))}finally{if(t)throw t.error}}})}listByResourceGroup(e,t){const r=this.listByResourceGroupPagingAll(e,t);return{next(){return r.next()},[Symbol.asyncIterator](){return this},byPage:()=>this.listByResourceGroupPagingPage(e,t)}}listByResourceGroupPagingPage(r,a){return tslib.__asyncGenerator(this,arguments,function*(){var e=yield tslib.__await(this._listByResourceGroup(r,a));yield yield tslib.__await(e.value||[]);let t=e.nextLink;for(;t;)e=yield tslib.__await(this._listByResourceGroupNext(r,t,a)),t=e.nextLink,yield yield tslib.__await(e.value||[])})}listByResourceGroupPagingAll(s,n){return tslib.__asyncGenerator(this,arguments,function*(){var t,e;try{for(var r,a=tslib.__asyncValues(this.listByResourceGroupPagingPage(s,n));!(r=yield tslib.__await(a.next())).done;){var i=r.value;yield tslib.__await(yield*tslib.__asyncDelegator(tslib.__asyncValues(i)))}}catch(e){t={error:e}}finally{try{r&&!r.done&&(e=a.return)&&(yield tslib.__await(e.call(a)))}finally{if(t)throw t.error}}})}_listBySubscription(e){return this.client.sendOperationRequest({options:e},listBySubscriptionOperationSpec)}_listByResourceGroup(e,t){return this.client.sendOperationRequest({resourceGroupName:e,options:t},listByResourceGroupOperationSpec)}get(e,t,r){return this.client.sendOperationRequest({jobName:e,resourceGroupName:t,options:r},getOperationSpec$1)}update(e,t,r,a){return this.client.sendOperationRequest({jobName:e,resourceGroupName:t,body:r,options:a},updateOperationSpec)}create(e,t,r,a){return this.client.sendOperationRequest({jobName:e,resourceGroupName:t,body:r,options:a},createOperationSpec)}delete(e,t,r){return this.client.sendOperationRequest({jobName:e,resourceGroupName:t,options:r},deleteOperationSpec)}_listBySubscriptionNext(e,t){return this.client.sendOperationRequest({nextLink:e,options:t},listBySubscriptionNextOperationSpec)}_listByResourceGroupNext(e,t,r){return this.client.sendOperationRequest({resourceGroupName:e,nextLink:t,options:r},listByResourceGroupNextOperationSpec)}}const serializer$1=coreClient.createSerializer(Mappers,!1),listBySubscriptionOperationSpec={path:"/subscriptions/{subscriptionId}/providers/Microsoft.ImportExport/jobs",httpMethod:"GET",responses:{200:{bodyMapper:ListJobsResponse},default:{bodyMapper:ErrorResponse}},queryParameters:[apiVersion,top,filter],urlParameters:[$host,subscriptionId],headerParameters:[accept,acceptLanguage],serializer:serializer$1},listByResourceGroupOperationSpec={path:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ImportExport/jobs",httpMethod:"GET",responses:{200:{bodyMapper:ListJobsResponse},default:{bodyMapper:ErrorResponse}},queryParameters:[apiVersion,top,filter],urlParameters:[$host,subscriptionId,resourceGroupName],headerParameters:[accept,acceptLanguage],serializer:serializer$1},getOperationSpec$1={path:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ImportExport/jobs/{jobName}",httpMethod:"GET",responses:{200:{bodyMapper:JobResponse},default:{bodyMapper:ErrorResponse}},queryParameters:[apiVersion],urlParameters:[$host,subscriptionId,resourceGroupName,jobName],headerParameters:[accept,acceptLanguage],serializer:serializer$1},updateOperationSpec={path:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ImportExport/jobs/{jobName}",httpMethod:"PATCH",responses:{200:{bodyMapper:JobResponse},default:{bodyMapper:ErrorResponse}},requestBody:body,queryParameters:[apiVersion],urlParameters:[$host,subscriptionId,resourceGroupName,jobName],headerParameters:[accept,acceptLanguage,contentType],mediaType:"json",serializer:serializer$1},createOperationSpec={path:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ImportExport/jobs/{jobName}",httpMethod:"PUT",responses:{200:{bodyMapper:JobResponse},201:{bodyMapper:JobResponse},default:{bodyMapper:ErrorResponse}},requestBody:body1,queryParameters:[apiVersion],urlParameters:[$host,subscriptionId,resourceGroupName,jobName],headerParameters:[accept,acceptLanguage,contentType,clientTenantId],mediaType:"json",serializer:serializer$1},deleteOperationSpec={path:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ImportExport/jobs/{jobName}",httpMethod:"DELETE",responses:{200:{},default:{bodyMapper:ErrorResponse}},queryParameters:[apiVersion],urlParameters:[$host,subscriptionId,resourceGroupName,jobName],headerParameters:[accept,acceptLanguage],serializer:serializer$1},listBySubscriptionNextOperationSpec={path:"{nextLink}",httpMethod:"GET",responses:{200:{bodyMapper:ListJobsResponse},default:{bodyMapper:ErrorResponse}},queryParameters:[apiVersion,top,filter],urlParameters:[$host,subscriptionId,nextLink],headerParameters:[accept,acceptLanguage],serializer:serializer$1},listByResourceGroupNextOperationSpec={path:"{nextLink}",httpMethod:"GET",responses:{200:{bodyMapper:ListJobsResponse},default:{bodyMapper:ErrorResponse}},queryParameters:[apiVersion,top,filter],urlParameters:[$host,subscriptionId,resourceGroupName,nextLink],headerParameters:[accept,acceptLanguage],serializer:serializer$1};class BitLockerKeysImpl{constructor(e){this.client=e}list(e,t,r){const a=this.listPagingAll(e,t,r);return{next(){return a.next()},[Symbol.asyncIterator](){return this},byPage:()=>this.listPagingPage(e,t,r)}}listPagingPage(t,r,a){return tslib.__asyncGenerator(this,arguments,function*(){var e=yield tslib.__await(this._list(t,r,a));yield yield tslib.__await(e.value||[])})}listPagingAll(s,n,o){return tslib.__asyncGenerator(this,arguments,function*(){var t,e;try{for(var r,a=tslib.__asyncValues(this.listPagingPage(s,n,o));!(r=yield tslib.__await(a.next())).done;){var i=r.value;yield tslib.__await(yield*tslib.__asyncDelegator(tslib.__asyncValues(i)))}}catch(e){t={error:e}}finally{try{r&&!r.done&&(e=a.return)&&(yield tslib.__await(e.call(a)))}finally{if(t)throw t.error}}})}_list(e,t,r){return this.client.sendOperationRequest({jobName:e,resourceGroupName:t,options:r},listOperationSpec$1)}}const serializer$2=coreClient.createSerializer(Mappers,!1),listOperationSpec$1={path:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ImportExport/jobs/{jobName}/listBitLockerKeys",httpMethod:"POST",responses:{200:{bodyMapper:GetBitLockerKeysResponse},default:{bodyMapper:ErrorResponse}},queryParameters:[apiVersion],urlParameters:[$host,subscriptionId,resourceGroupName,jobName],headerParameters:[accept,acceptLanguage],serializer:serializer$2};class OperationsImpl{constructor(e){this.client=e}list(e){const t=this.listPagingAll(e);return{next(){return t.next()},[Symbol.asyncIterator](){return this},byPage:()=>this.listPagingPage(e)}}listPagingPage(t){return tslib.__asyncGenerator(this,arguments,function*(){var e=yield tslib.__await(this._list(t));yield yield tslib.__await(e.value||[])})}listPagingAll(s){return tslib.__asyncGenerator(this,arguments,function*(){var t,e;try{for(var r,a=tslib.__asyncValues(this.listPagingPage(s));!(r=yield tslib.__await(a.next())).done;){var i=r.value;yield tslib.__await(yield*tslib.__asyncDelegator(tslib.__asyncValues(i)))}}catch(e){t={error:e}}finally{try{r&&!r.done&&(e=a.return)&&(yield tslib.__await(e.call(a)))}finally{if(t)throw t.error}}})}_list(e){return this.client.sendOperationRequest({options:e},listOperationSpec$2)}}const serializer$3=coreClient.createSerializer(Mappers,!1),listOperationSpec$2={path:"/providers/Microsoft.ImportExport/operations",httpMethod:"GET",responses:{200:{bodyMapper:ListOperationsResponse},default:{bodyMapper:ErrorResponse}},queryParameters:[apiVersion],urlParameters:[$host],headerParameters:[accept,acceptLanguage],serializer:serializer$3};class StorageImportExport extends coreClient.ServiceClient{constructor(e,t,r){if(void 0===e)throw new Error("'credentials' cannot be null");if(void 0===t)throw new Error("'subscriptionId' cannot be null");var a={requestContentType:"application/json; charset=utf-8",credential:e},e="azsdk-js-arm-storageimportexport/2.0.0",e=(r=r||{}).userAgentOptions&&r.userAgentOptions.userAgentPrefix?r.userAgentOptions.userAgentPrefix+" "+e:e;r.credentialScopes||(r.credentialScopes=["https://management.azure.com/.default"]),super(Object.assign(Object.assign(Object.assign({},a),r),{userAgentOptions:{userAgentPrefix:e},baseUri:r.endpoint||"https://management.azure.com"})),this.subscriptionId=t,this.$host=r.$host||"https://management.azure.com",this.apiVersion=r.apiVersion||"2021-01-01",this.locations=new LocationsImpl(this),this.jobs=new JobsImpl(this),this.bitLockerKeys=new BitLockerKeysImpl(this),this.operations=new OperationsImpl(this)}}exports.StorageImportExport=StorageImportExport;
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/models/index.ts","../src/models/mappers.ts","../src/models/parameters.ts","../src/operations/locations.ts","../src/operations/jobs.ts","../src/operations/bitLockerKeys.ts","../src/operations/operations.ts","../src/storageImportExport.ts"],"names":["KnownCreatedByType","KnownDriveState","KnownEncryptionKekType","KnownIdentityType","LocationsResponse","type","name","className","modelProperties","value","serializedName","element","Location","id","recipientName","streetAddress1","streetAddress2","city","stateOrProvince","postalCode","countryOrRegion","phone","additionalShippingInformation","supportedCarriers","alternateLocations","ErrorResponse","code","message","target","details","innererror","ErrorResponseErrorDetailsItem","ListJobsResponse","nextLink","JobResponse","systemData","readOnly","location","tags","properties","identity","SystemData","createdBy","createdByType","createdAt","lastModifiedBy","lastModifiedByType","lastModifiedAt","JobDetails","storageAccountId","jobType","returnAddress","returnShipping","shippingInformation","deliveryPackage","returnPackage","diagnosticsPath","logLevel","backupDriveManifest","defaultValue","state","cancelRequested","percentComplete","incompleteBlobListUri","driveList","export","provisioningState","encryptionKey","ReturnAddress","required","email","ReturnShipping","carrierName","carrierAccountNumber","ShippingInformation","additionalInformation","DeliveryPackageInformation","trackingNumber","driveCount","shipDate","PackageInformation","DriveStatus","driveId","bitLockerKey","manifestFile","manifestHash","driveHeaderHash","copyStatus","verboseLogUri","errorLogUri","manifestUri","bytesSucceeded","Export","blobListBlobPath","blobPath","blobPathPrefix","EncryptionKeyDetails","kekType","kekUrl","kekVaultResourceID","IdentityDetails","principalId","tenantId","UpdateJobParameters","PutJobParameters","GetBitLockerKeysResponse","DriveBitLockerKey","ListOperationsResponse","Operation","provider","resource","operation","description","accept","parameterPath","mapper","isConstant","$host","skipEncoding","apiVersion","acceptLanguage","locationName","top","filter","subscriptionId","resourceGroupName","jobName","contentType","body","UpdateJobParametersMapper","body1","PutJobParametersMapper","clientTenantId","LocationsImpl","constructor","client","this","list","options","iter","listPagingAll","next","Symbol","asyncIterator","byPage","listPagingPage","let","result","tslib","__await","_list","_c","_b","__asyncValues","done","page","__asyncDelegator","sendOperationRequest","listOperationSpec","get","getOperationSpec","serializer","coreClient.createSerializer","Mappers","path","httpMethod","responses","200","bodyMapper","Mappers.LocationsResponse","default","Mappers.ErrorResponse","queryParameters","Parameters.apiVersion","urlParameters","Parameters.$host","headerParameters","Parameters.accept","Parameters.acceptLanguage","Mappers.Location","Parameters.locationName","JobsImpl","listBySubscription","listBySubscriptionPagingAll","listBySubscriptionPagingPage","_listBySubscription","continuationToken","_listBySubscriptionNext","listByResourceGroup","listByResourceGroupPagingAll","listByResourceGroupPagingPage","_listByResourceGroup","_listByResourceGroupNext","listBySubscriptionOperationSpec","listByResourceGroupOperationSpec","update","updateOperationSpec","create","createOperationSpec","delete","deleteOperationSpec","listBySubscriptionNextOperationSpec","listByResourceGroupNextOperationSpec","Mappers.ListJobsResponse","Parameters.top","Parameters.filter","Parameters.subscriptionId","Parameters.resourceGroupName","Mappers.JobResponse","Parameters.jobName","requestBody","Parameters.body","Parameters.contentType","mediaType","201","Parameters.body1","Parameters.clientTenantId","Parameters.nextLink","BitLockerKeysImpl","Mappers.GetBitLockerKeysResponse","OperationsImpl","Mappers.ListOperationsResponse","StorageImportExport","coreClient.ServiceClient","credentials","undefined","Error","defaults","requestContentType","credential","packageDetails","userAgentPrefix","userAgentOptions","credentialScopes","super","Object","assign","baseUri","endpoint","locations","jobs","bitLockerKeys","operations"],"mappings":"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"}
@@ -0,0 +1,5 @@
1
+ /// <reference lib="esnext.asynciterable" />
2
+ export * from "./models";
3
+ export { StorageImportExport } from "./storageImportExport";
4
+ export * from "./operationsInterfaces";
5
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";AASA,cAAc,UAAU,CAAC;AACzB,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AAC5D,cAAc,wBAAwB,CAAC"}
@@ -0,0 +1,12 @@
1
+ /*
2
+ * Copyright (c) Microsoft Corporation.
3
+ * Licensed under the MIT License.
4
+ *
5
+ * Code generated by Microsoft (R) AutoRest Code Generator.
6
+ * Changes may cause incorrect behavior and will be lost if the code is regenerated.
7
+ */
8
+ /// <reference lib="esnext.asynciterable" />
9
+ export * from "./models";
10
+ export { StorageImportExport } from "./storageImportExport";
11
+ export * from "./operationsInterfaces";
12
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,4CAA4C;AAC5C,cAAc,UAAU,CAAC;AACzB,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AAC5D,cAAc,wBAAwB,CAAC"}