@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,504 @@
1
+ import * as coreClient from "@azure/core-client";
2
+ /** Locations response */
3
+ export interface LocationsResponse {
4
+ /** locations */
5
+ value?: Location[];
6
+ }
7
+ /** Provides information about an Azure data center location. */
8
+ export interface Location {
9
+ /** Specifies the resource identifier of the location. */
10
+ id?: string;
11
+ /** Specifies the name of the location. Use List Locations to get all supported locations. */
12
+ name?: string;
13
+ /** Specifies the type of the location. */
14
+ type?: string;
15
+ /** The recipient name to use when shipping the drives to the Azure data center. */
16
+ recipientName?: string;
17
+ /** The first line of the street address to use when shipping the drives to the Azure data center. */
18
+ streetAddress1?: string;
19
+ /** The second line of the street address to use when shipping the drives to the Azure data center. */
20
+ streetAddress2?: string;
21
+ /** The city name to use when shipping the drives to the Azure data center. */
22
+ city?: string;
23
+ /** The state or province to use when shipping the drives to the Azure data center. */
24
+ stateOrProvince?: string;
25
+ /** The postal code to use when shipping the drives to the Azure data center. */
26
+ postalCode?: string;
27
+ /** The country or region to use when shipping the drives to the Azure data center. */
28
+ countryOrRegion?: string;
29
+ /** The phone number for the Azure data center. */
30
+ phone?: string;
31
+ /** Additional shipping information for customer, specific to datacenter to which customer should send their disks. */
32
+ additionalShippingInformation?: string;
33
+ /** A list of carriers that are supported at this location. */
34
+ supportedCarriers?: string[];
35
+ /** 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. */
36
+ alternateLocations?: string[];
37
+ }
38
+ /** Response when errors occurred */
39
+ export interface ErrorResponse {
40
+ /** Provides information about the error code. */
41
+ code?: string;
42
+ /** Provides information about the error message. */
43
+ message?: string;
44
+ /** Provides information about the error target. */
45
+ target?: string;
46
+ /** Describes the error details if present. */
47
+ details?: ErrorResponseErrorDetailsItem[];
48
+ /** Inner error object if present. */
49
+ innererror?: Record<string, unknown>;
50
+ }
51
+ export interface ErrorResponseErrorDetailsItem {
52
+ /** Provides information about the error code. */
53
+ code?: string;
54
+ /** Provides information about the error target. */
55
+ target?: string;
56
+ /** Provides information about the error message. */
57
+ message?: string;
58
+ }
59
+ /** List jobs response */
60
+ export interface ListJobsResponse {
61
+ /** link to next batch of jobs */
62
+ nextLink?: string;
63
+ /** Job list */
64
+ value?: JobResponse[];
65
+ }
66
+ /** Contains the job information. */
67
+ export interface JobResponse {
68
+ /**
69
+ * SystemData of ImportExport Jobs.
70
+ * NOTE: This property will not be serialized. It can only be populated by the server.
71
+ */
72
+ readonly systemData?: SystemData;
73
+ /**
74
+ * Specifies the resource identifier of the job.
75
+ * NOTE: This property will not be serialized. It can only be populated by the server.
76
+ */
77
+ readonly id?: string;
78
+ /**
79
+ * Specifies the name of the job.
80
+ * NOTE: This property will not be serialized. It can only be populated by the server.
81
+ */
82
+ readonly name?: string;
83
+ /**
84
+ * Specifies the type of the job resource.
85
+ * NOTE: This property will not be serialized. It can only be populated by the server.
86
+ */
87
+ readonly type?: string;
88
+ /** Specifies the Azure location where the job is created. */
89
+ location?: string;
90
+ /** Specifies the tags that are assigned to the job. */
91
+ tags?: Record<string, unknown>;
92
+ /** Specifies the job properties */
93
+ properties?: JobDetails;
94
+ /** Specifies the job identity details */
95
+ identity?: IdentityDetails;
96
+ }
97
+ /** Metadata pertaining to creation and last modification of the resource. */
98
+ export interface SystemData {
99
+ /** The identity that created the resource. */
100
+ createdBy?: string;
101
+ /** The type of identity that created the resource. */
102
+ createdByType?: CreatedByType;
103
+ /** The timestamp of resource creation (UTC). */
104
+ createdAt?: Date;
105
+ /** The identity that last modified the resource. */
106
+ lastModifiedBy?: string;
107
+ /** The type of identity that last modified the resource. */
108
+ lastModifiedByType?: CreatedByType;
109
+ /** The timestamp of resource last modification (UTC) */
110
+ lastModifiedAt?: Date;
111
+ }
112
+ /** Specifies the job properties */
113
+ export interface JobDetails {
114
+ /** The resource identifier of the storage account where data will be imported to or exported from. */
115
+ storageAccountId?: string;
116
+ /** The type of job */
117
+ jobType?: string;
118
+ /** Specifies the return address information for the job. */
119
+ returnAddress?: ReturnAddress;
120
+ /** Specifies the return carrier and customer's account with the carrier. */
121
+ returnShipping?: ReturnShipping;
122
+ /** Contains information about the Microsoft datacenter to which the drives should be shipped. */
123
+ shippingInformation?: ShippingInformation;
124
+ /** Contains information about the package being shipped by the customer to the Microsoft data center. */
125
+ deliveryPackage?: DeliveryPackageInformation;
126
+ /** 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. */
127
+ returnPackage?: PackageInformation;
128
+ /** The virtual blob directory to which the copy logs and backups of drive manifest files (if enabled) will be stored. */
129
+ diagnosticsPath?: string;
130
+ /** Default value is Error. Indicates whether error logging or verbose logging will be enabled. */
131
+ logLevel?: string;
132
+ /** Default value is false. Indicates whether the manifest files on the drives should be copied to block blobs. */
133
+ backupDriveManifest?: boolean;
134
+ /** Current state of the job. */
135
+ state?: string;
136
+ /** Indicates whether a request has been submitted to cancel the job. */
137
+ cancelRequested?: boolean;
138
+ /** Overall percentage completed for the job. */
139
+ percentComplete?: number;
140
+ /** 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. */
141
+ incompleteBlobListUri?: string;
142
+ /** 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. */
143
+ driveList?: DriveStatus[];
144
+ /** A property containing information about the blobs to be exported for an export job. This property is included for export jobs only. */
145
+ export?: Export;
146
+ /** Specifies the provisioning state of the job. */
147
+ provisioningState?: string;
148
+ /** Contains information about the encryption key. */
149
+ encryptionKey?: EncryptionKeyDetails;
150
+ }
151
+ /** Specifies the return address information for the job. */
152
+ export interface ReturnAddress {
153
+ /** The name of the recipient who will receive the hard drives when they are returned. */
154
+ recipientName: string;
155
+ /** The first line of the street address to use when returning the drives. */
156
+ streetAddress1: string;
157
+ /** The second line of the street address to use when returning the drives. */
158
+ streetAddress2?: string;
159
+ /** The city name to use when returning the drives. */
160
+ city: string;
161
+ /** The state or province to use when returning the drives. */
162
+ stateOrProvince?: string;
163
+ /** The postal code to use when returning the drives. */
164
+ postalCode: string;
165
+ /** The country or region to use when returning the drives. */
166
+ countryOrRegion: string;
167
+ /** Phone number of the recipient of the returned drives. */
168
+ phone: string;
169
+ /** Email address of the recipient of the returned drives. */
170
+ email: string;
171
+ }
172
+ /** Specifies the return carrier and customer's account with the carrier. */
173
+ export interface ReturnShipping {
174
+ /** The carrier's name. */
175
+ carrierName: string;
176
+ /** The customer's account number with the carrier. */
177
+ carrierAccountNumber: string;
178
+ }
179
+ /** Contains information about the Microsoft datacenter to which the drives should be shipped. */
180
+ export interface ShippingInformation {
181
+ /** The name of the recipient who will receive the hard drives when they are returned. */
182
+ recipientName?: string;
183
+ /** The first line of the street address to use when returning the drives. */
184
+ streetAddress1?: string;
185
+ /** The second line of the street address to use when returning the drives. */
186
+ streetAddress2?: string;
187
+ /** The city name to use when returning the drives. */
188
+ city?: string;
189
+ /** The state or province to use when returning the drives. */
190
+ stateOrProvince?: string;
191
+ /** The postal code to use when returning the drives. */
192
+ postalCode?: string;
193
+ /** The country or region to use when returning the drives. */
194
+ countryOrRegion?: string;
195
+ /** Phone number of the recipient of the returned drives. */
196
+ phone?: string;
197
+ /**
198
+ * Additional shipping information for customer, specific to datacenter to which customer should send their disks.
199
+ * NOTE: This property will not be serialized. It can only be populated by the server.
200
+ */
201
+ readonly additionalInformation?: string;
202
+ }
203
+ /** Contains information about the delivery package being shipped by the customer to the Microsoft data center. */
204
+ export interface DeliveryPackageInformation {
205
+ /** The name of the carrier that is used to ship the import or export drives. */
206
+ carrierName: string;
207
+ /** The tracking number of the package. */
208
+ trackingNumber: string;
209
+ /** The number of drives included in the package. */
210
+ driveCount?: number;
211
+ /** The date when the package is shipped. */
212
+ shipDate?: string;
213
+ }
214
+ /** Contains information about the package being shipped by the customer to the Microsoft data center. */
215
+ export interface PackageInformation {
216
+ /** The name of the carrier that is used to ship the import or export drives. */
217
+ carrierName: string;
218
+ /** The tracking number of the package. */
219
+ trackingNumber: string;
220
+ /** The number of drives included in the package. */
221
+ driveCount: number;
222
+ /** The date when the package is shipped. */
223
+ shipDate: string;
224
+ }
225
+ /** Provides information about the drive's status */
226
+ export interface DriveStatus {
227
+ /** The drive's hardware serial number, without spaces. */
228
+ driveId?: string;
229
+ /** The BitLocker key used to encrypt the drive. */
230
+ bitLockerKey?: string;
231
+ /** The relative path of the manifest file on the drive. */
232
+ manifestFile?: string;
233
+ /** The Base16-encoded MD5 hash of the manifest file on the drive. */
234
+ manifestHash?: string;
235
+ /** The drive header hash value. */
236
+ driveHeaderHash?: string;
237
+ /** The drive's current state. */
238
+ state?: DriveState;
239
+ /** Detailed status about the data transfer process. This field is not returned in the response until the drive is in the Transferring state. */
240
+ copyStatus?: string;
241
+ /** Percentage completed for the drive. */
242
+ percentComplete?: number;
243
+ /** A URI that points to the blob containing the verbose log for the data transfer operation. */
244
+ verboseLogUri?: string;
245
+ /** A URI that points to the blob containing the error log for the data transfer operation. */
246
+ errorLogUri?: string;
247
+ /** A URI that points to the blob containing the drive manifest file. */
248
+ manifestUri?: string;
249
+ /** Bytes successfully transferred for the drive. */
250
+ bytesSucceeded?: number;
251
+ }
252
+ /** 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. */
253
+ export interface Export {
254
+ /** 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. */
255
+ blobListBlobPath?: string;
256
+ /** A collection of blob-path strings. */
257
+ blobPath?: string[];
258
+ /** A collection of blob-prefix strings. */
259
+ blobPathPrefix?: string[];
260
+ }
261
+ /** Specifies the encryption key properties */
262
+ export interface EncryptionKeyDetails {
263
+ /** The type of kek encryption key */
264
+ kekType?: EncryptionKekType;
265
+ /** Specifies the url for kek encryption key. */
266
+ kekUrl?: string;
267
+ /** Specifies the keyvault resource id for kek encryption key. */
268
+ kekVaultResourceID?: string;
269
+ }
270
+ /** Specifies the identity properties. */
271
+ export interface IdentityDetails {
272
+ /** The type of identity */
273
+ type?: IdentityType;
274
+ /**
275
+ * Specifies the principal id for the identity for the job.
276
+ * NOTE: This property will not be serialized. It can only be populated by the server.
277
+ */
278
+ readonly principalId?: string;
279
+ /**
280
+ * Specifies the tenant id for the identity for the job.
281
+ * NOTE: This property will not be serialized. It can only be populated by the server.
282
+ */
283
+ readonly tenantId?: string;
284
+ }
285
+ /** Update Job parameters */
286
+ export interface UpdateJobParameters {
287
+ /** Specifies the tags that will be assigned to the job */
288
+ tags?: Record<string, unknown>;
289
+ /** If specified, the value must be true. The service will attempt to cancel the job. */
290
+ cancelRequested?: boolean;
291
+ /** 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. */
292
+ state?: string;
293
+ /** Specifies the return address information for the job. */
294
+ returnAddress?: ReturnAddress;
295
+ /** Specifies the return carrier and customer's account with the carrier. */
296
+ returnShipping?: ReturnShipping;
297
+ /** Contains information about the package being shipped by the customer to the Microsoft data center. */
298
+ deliveryPackage?: DeliveryPackageInformation;
299
+ /** Indicates whether error logging or verbose logging is enabled. */
300
+ logLevel?: string;
301
+ /** Indicates whether the manifest files on the drives should be copied to block blobs. */
302
+ backupDriveManifest?: boolean;
303
+ /** List of drives that comprise the job. */
304
+ driveList?: DriveStatus[];
305
+ }
306
+ /** Put Job parameters */
307
+ export interface PutJobParameters {
308
+ /** Specifies the supported Azure location where the job should be created */
309
+ location?: string;
310
+ /** Specifies the tags that will be assigned to the job. */
311
+ tags?: Record<string, unknown>;
312
+ /** Specifies the job properties */
313
+ properties?: JobDetails;
314
+ }
315
+ /** GetBitLockerKeys response */
316
+ export interface GetBitLockerKeysResponse {
317
+ /** drive status */
318
+ value?: DriveBitLockerKey[];
319
+ }
320
+ /** BitLocker recovery key or password to the specified drive */
321
+ export interface DriveBitLockerKey {
322
+ /** BitLocker recovery key or password */
323
+ bitLockerKey?: string;
324
+ /** Drive ID */
325
+ driveId?: string;
326
+ }
327
+ /** List operations response */
328
+ export interface ListOperationsResponse {
329
+ /** operations */
330
+ value?: Operation[];
331
+ }
332
+ /** Describes a supported operation by the Storage Import/Export job API. */
333
+ export interface Operation {
334
+ /** Name of the operation. */
335
+ name: string;
336
+ /** The resource provider name to which the operation belongs. */
337
+ provider?: string;
338
+ /** The name of the resource to which the operation belongs. */
339
+ resource?: string;
340
+ /** The display name of the operation. */
341
+ operation?: string;
342
+ /** Short description of the operation. */
343
+ description?: string;
344
+ }
345
+ /** Known values of {@link CreatedByType} that the service accepts. */
346
+ export declare enum KnownCreatedByType {
347
+ User = "User",
348
+ Application = "Application",
349
+ ManagedIdentity = "ManagedIdentity",
350
+ Key = "Key"
351
+ }
352
+ /**
353
+ * Defines values for CreatedByType. \
354
+ * {@link KnownCreatedByType} can be used interchangeably with CreatedByType,
355
+ * this enum contains the known values that the service supports.
356
+ * ### Known values supported by the service
357
+ * **User** \
358
+ * **Application** \
359
+ * **ManagedIdentity** \
360
+ * **Key**
361
+ */
362
+ export declare type CreatedByType = string;
363
+ /** Known values of {@link DriveState} that the service accepts. */
364
+ export declare enum KnownDriveState {
365
+ Specified = "Specified",
366
+ Received = "Received",
367
+ NeverReceived = "NeverReceived",
368
+ Transferring = "Transferring",
369
+ Completed = "Completed",
370
+ CompletedMoreInfo = "CompletedMoreInfo",
371
+ ShippedBack = "ShippedBack"
372
+ }
373
+ /**
374
+ * Defines values for DriveState. \
375
+ * {@link KnownDriveState} can be used interchangeably with DriveState,
376
+ * this enum contains the known values that the service supports.
377
+ * ### Known values supported by the service
378
+ * **Specified** \
379
+ * **Received** \
380
+ * **NeverReceived** \
381
+ * **Transferring** \
382
+ * **Completed** \
383
+ * **CompletedMoreInfo** \
384
+ * **ShippedBack**
385
+ */
386
+ export declare type DriveState = string;
387
+ /** Known values of {@link EncryptionKekType} that the service accepts. */
388
+ export declare enum KnownEncryptionKekType {
389
+ MicrosoftManaged = "MicrosoftManaged",
390
+ CustomerManaged = "CustomerManaged"
391
+ }
392
+ /**
393
+ * Defines values for EncryptionKekType. \
394
+ * {@link KnownEncryptionKekType} can be used interchangeably with EncryptionKekType,
395
+ * this enum contains the known values that the service supports.
396
+ * ### Known values supported by the service
397
+ * **MicrosoftManaged** \
398
+ * **CustomerManaged**
399
+ */
400
+ export declare type EncryptionKekType = string;
401
+ /** Known values of {@link IdentityType} that the service accepts. */
402
+ export declare enum KnownIdentityType {
403
+ None = "None",
404
+ SystemAssigned = "SystemAssigned",
405
+ UserAssigned = "UserAssigned"
406
+ }
407
+ /**
408
+ * Defines values for IdentityType. \
409
+ * {@link KnownIdentityType} can be used interchangeably with IdentityType,
410
+ * this enum contains the known values that the service supports.
411
+ * ### Known values supported by the service
412
+ * **None** \
413
+ * **SystemAssigned** \
414
+ * **UserAssigned**
415
+ */
416
+ export declare type IdentityType = string;
417
+ /** Optional parameters. */
418
+ export interface LocationsListOptionalParams extends coreClient.OperationOptions {
419
+ }
420
+ /** Contains response data for the list operation. */
421
+ export declare type LocationsListResponse = LocationsResponse;
422
+ /** Optional parameters. */
423
+ export interface LocationsGetOptionalParams extends coreClient.OperationOptions {
424
+ }
425
+ /** Contains response data for the get operation. */
426
+ export declare type LocationsGetResponse = Location;
427
+ /** Optional parameters. */
428
+ export interface JobsListBySubscriptionOptionalParams extends coreClient.OperationOptions {
429
+ /** An integer value that specifies how many jobs at most should be returned. The value cannot exceed 100. */
430
+ top?: number;
431
+ /** Can be used to restrict the results to certain conditions. */
432
+ filter?: string;
433
+ }
434
+ /** Contains response data for the listBySubscription operation. */
435
+ export declare type JobsListBySubscriptionResponse = ListJobsResponse;
436
+ /** Optional parameters. */
437
+ export interface JobsListByResourceGroupOptionalParams extends coreClient.OperationOptions {
438
+ /** An integer value that specifies how many jobs at most should be returned. The value cannot exceed 100. */
439
+ top?: number;
440
+ /** Can be used to restrict the results to certain conditions. */
441
+ filter?: string;
442
+ }
443
+ /** Contains response data for the listByResourceGroup operation. */
444
+ export declare type JobsListByResourceGroupResponse = ListJobsResponse;
445
+ /** Optional parameters. */
446
+ export interface JobsGetOptionalParams extends coreClient.OperationOptions {
447
+ }
448
+ /** Contains response data for the get operation. */
449
+ export declare type JobsGetResponse = JobResponse;
450
+ /** Optional parameters. */
451
+ export interface JobsUpdateOptionalParams extends coreClient.OperationOptions {
452
+ }
453
+ /** Contains response data for the update operation. */
454
+ export declare type JobsUpdateResponse = JobResponse;
455
+ /** Optional parameters. */
456
+ export interface JobsCreateOptionalParams extends coreClient.OperationOptions {
457
+ /** The tenant ID of the client making the request. */
458
+ clientTenantId?: string;
459
+ }
460
+ /** Contains response data for the create operation. */
461
+ export declare type JobsCreateResponse = JobResponse;
462
+ /** Optional parameters. */
463
+ export interface JobsDeleteOptionalParams extends coreClient.OperationOptions {
464
+ }
465
+ /** Optional parameters. */
466
+ export interface JobsListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
467
+ /** An integer value that specifies how many jobs at most should be returned. The value cannot exceed 100. */
468
+ top?: number;
469
+ /** Can be used to restrict the results to certain conditions. */
470
+ filter?: string;
471
+ }
472
+ /** Contains response data for the listBySubscriptionNext operation. */
473
+ export declare type JobsListBySubscriptionNextResponse = ListJobsResponse;
474
+ /** Optional parameters. */
475
+ export interface JobsListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
476
+ /** An integer value that specifies how many jobs at most should be returned. The value cannot exceed 100. */
477
+ top?: number;
478
+ /** Can be used to restrict the results to certain conditions. */
479
+ filter?: string;
480
+ }
481
+ /** Contains response data for the listByResourceGroupNext operation. */
482
+ export declare type JobsListByResourceGroupNextResponse = ListJobsResponse;
483
+ /** Optional parameters. */
484
+ export interface BitLockerKeysListOptionalParams extends coreClient.OperationOptions {
485
+ }
486
+ /** Contains response data for the list operation. */
487
+ export declare type BitLockerKeysListResponse = GetBitLockerKeysResponse;
488
+ /** Optional parameters. */
489
+ export interface OperationsListOptionalParams extends coreClient.OperationOptions {
490
+ }
491
+ /** Contains response data for the list operation. */
492
+ export declare type OperationsListResponse = ListOperationsResponse;
493
+ /** Optional parameters. */
494
+ export interface StorageImportExportOptionalParams extends coreClient.ServiceClientOptions {
495
+ /** server parameter */
496
+ $host?: string;
497
+ /** Api Version */
498
+ apiVersion?: string;
499
+ /** Specifies the preferred language for the response. */
500
+ acceptLanguage?: string;
501
+ /** Overrides client endpoint. */
502
+ endpoint?: string;
503
+ }
504
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/models/index.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,40 @@
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
+ /** Known values of {@link CreatedByType} that the service accepts. */
9
+ export var KnownCreatedByType;
10
+ (function (KnownCreatedByType) {
11
+ KnownCreatedByType["User"] = "User";
12
+ KnownCreatedByType["Application"] = "Application";
13
+ KnownCreatedByType["ManagedIdentity"] = "ManagedIdentity";
14
+ KnownCreatedByType["Key"] = "Key";
15
+ })(KnownCreatedByType || (KnownCreatedByType = {}));
16
+ /** Known values of {@link DriveState} that the service accepts. */
17
+ export var KnownDriveState;
18
+ (function (KnownDriveState) {
19
+ KnownDriveState["Specified"] = "Specified";
20
+ KnownDriveState["Received"] = "Received";
21
+ KnownDriveState["NeverReceived"] = "NeverReceived";
22
+ KnownDriveState["Transferring"] = "Transferring";
23
+ KnownDriveState["Completed"] = "Completed";
24
+ KnownDriveState["CompletedMoreInfo"] = "CompletedMoreInfo";
25
+ KnownDriveState["ShippedBack"] = "ShippedBack";
26
+ })(KnownDriveState || (KnownDriveState = {}));
27
+ /** Known values of {@link EncryptionKekType} that the service accepts. */
28
+ export var KnownEncryptionKekType;
29
+ (function (KnownEncryptionKekType) {
30
+ KnownEncryptionKekType["MicrosoftManaged"] = "MicrosoftManaged";
31
+ KnownEncryptionKekType["CustomerManaged"] = "CustomerManaged";
32
+ })(KnownEncryptionKekType || (KnownEncryptionKekType = {}));
33
+ /** Known values of {@link IdentityType} that the service accepts. */
34
+ export var KnownIdentityType;
35
+ (function (KnownIdentityType) {
36
+ KnownIdentityType["None"] = "None";
37
+ KnownIdentityType["SystemAssigned"] = "SystemAssigned";
38
+ KnownIdentityType["UserAssigned"] = "UserAssigned";
39
+ })(KnownIdentityType || (KnownIdentityType = {}));
40
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/models/index.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAkXH,sEAAsE;AACtE,MAAM,CAAN,IAAY,kBAKX;AALD,WAAY,kBAAkB;IAC5B,mCAAa,CAAA;IACb,iDAA2B,CAAA;IAC3B,yDAAmC,CAAA;IACnC,iCAAW,CAAA;AACb,CAAC,EALW,kBAAkB,KAAlB,kBAAkB,QAK7B;AAcD,mEAAmE;AACnE,MAAM,CAAN,IAAY,eAQX;AARD,WAAY,eAAe;IACzB,0CAAuB,CAAA;IACvB,wCAAqB,CAAA;IACrB,kDAA+B,CAAA;IAC/B,gDAA6B,CAAA;IAC7B,0CAAuB,CAAA;IACvB,0DAAuC,CAAA;IACvC,8CAA2B,CAAA;AAC7B,CAAC,EARW,eAAe,KAAf,eAAe,QAQ1B;AAiBD,0EAA0E;AAC1E,MAAM,CAAN,IAAY,sBAGX;AAHD,WAAY,sBAAsB;IAChC,+DAAqC,CAAA;IACrC,6DAAmC,CAAA;AACrC,CAAC,EAHW,sBAAsB,KAAtB,sBAAsB,QAGjC;AAYD,qEAAqE;AACrE,MAAM,CAAN,IAAY,iBAIX;AAJD,WAAY,iBAAiB;IAC3B,kCAAa,CAAA;IACb,sDAAiC,CAAA;IACjC,kDAA6B,CAAA;AAC/B,CAAC,EAJW,iBAAiB,KAAjB,iBAAiB,QAI5B"}
@@ -0,0 +1,25 @@
1
+ import * as coreClient from "@azure/core-client";
2
+ export declare const LocationsResponse: coreClient.CompositeMapper;
3
+ export declare const Location: coreClient.CompositeMapper;
4
+ export declare const ErrorResponse: coreClient.CompositeMapper;
5
+ export declare const ErrorResponseErrorDetailsItem: coreClient.CompositeMapper;
6
+ export declare const ListJobsResponse: coreClient.CompositeMapper;
7
+ export declare const JobResponse: coreClient.CompositeMapper;
8
+ export declare const SystemData: coreClient.CompositeMapper;
9
+ export declare const JobDetails: coreClient.CompositeMapper;
10
+ export declare const ReturnAddress: coreClient.CompositeMapper;
11
+ export declare const ReturnShipping: coreClient.CompositeMapper;
12
+ export declare const ShippingInformation: coreClient.CompositeMapper;
13
+ export declare const DeliveryPackageInformation: coreClient.CompositeMapper;
14
+ export declare const PackageInformation: coreClient.CompositeMapper;
15
+ export declare const DriveStatus: coreClient.CompositeMapper;
16
+ export declare const Export: coreClient.CompositeMapper;
17
+ export declare const EncryptionKeyDetails: coreClient.CompositeMapper;
18
+ export declare const IdentityDetails: coreClient.CompositeMapper;
19
+ export declare const UpdateJobParameters: coreClient.CompositeMapper;
20
+ export declare const PutJobParameters: coreClient.CompositeMapper;
21
+ export declare const GetBitLockerKeysResponse: coreClient.CompositeMapper;
22
+ export declare const DriveBitLockerKey: coreClient.CompositeMapper;
23
+ export declare const ListOperationsResponse: coreClient.CompositeMapper;
24
+ export declare const Operation: coreClient.CompositeMapper;
25
+ //# sourceMappingURL=mappers.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"mappers.d.ts","sourceRoot":"","sources":["../../../src/models/mappers.ts"],"names":[],"mappings":"AAQA,OAAO,KAAK,UAAU,MAAM,oBAAoB,CAAC;AAEjD,eAAO,MAAM,iBAAiB,EAAE,UAAU,CAAC,eAmB1C,CAAC;AAEF,eAAO,MAAM,QAAQ,EAAE,UAAU,CAAC,eAqGjC,CAAC;AAEF,eAAO,MAAM,aAAa,EAAE,UAAU,CAAC,eA4CtC,CAAC;AAEF,eAAO,MAAM,6BAA6B,EAAE,UAAU,CAAC,eAyBtD,CAAC;AAEF,eAAO,MAAM,gBAAgB,EAAE,UAAU,CAAC,eAyBzC,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,UAAU,CAAC,eA8DpC,CAAC;AAEF,eAAO,MAAM,UAAU,EAAE,UAAU,CAAC,eA2CnC,CAAC;AAEF,eAAO,MAAM,UAAU,EAAE,UAAU,CAAC,eAmInC,CAAC;AAEF,eAAO,MAAM,aAAa,EAAE,UAAU,CAAC,eAoEtC,CAAC;AAEF,eAAO,MAAM,cAAc,EAAE,UAAU,CAAC,eAqBvC,CAAC;AAEF,eAAO,MAAM,mBAAmB,EAAE,UAAU,CAAC,eA8D5C,CAAC;AAEF,eAAO,MAAM,0BAA0B,EAAE,UAAU,CAAC,eAiCnD,CAAC;AAEF,eAAO,MAAM,kBAAkB,EAAE,UAAU,CAAC,eAmC3C,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,UAAU,CAAC,eAgFpC,CAAC;AAEF,eAAO,MAAM,MAAM,EAAE,UAAU,CAAC,eAmC/B,CAAC;AAEF,eAAO,MAAM,oBAAoB,EAAE,UAAU,CAAC,eA0B7C,CAAC;AAEF,eAAO,MAAM,eAAe,EAAE,UAAU,CAAC,eA4BxC,CAAC;AAEF,eAAO,MAAM,mBAAmB,EAAE,UAAU,CAAC,eAyE5C,CAAC;AAEF,eAAO,MAAM,gBAAgB,EAAE,UAAU,CAAC,eA2BzC,CAAC;AAEF,eAAO,MAAM,wBAAwB,EAAE,UAAU,CAAC,eAmBjD,CAAC;AAEF,eAAO,MAAM,iBAAiB,EAAE,UAAU,CAAC,eAmB1C,CAAC;AAEF,eAAO,MAAM,sBAAsB,EAAE,UAAU,CAAC,eAmB/C,CAAC;AAEF,eAAO,MAAM,SAAS,EAAE,UAAU,CAAC,eAsClC,CAAC"}