@azure/arm-databox 3.0.0 → 5.0.0-beta.1

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 (142) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/LICENSE +21 -0
  3. package/README.md +72 -73
  4. package/dist/index.js +5592 -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/dataBoxManagementClient.d.ts +29 -0
  9. package/dist-esm/src/dataBoxManagementClient.d.ts.map +1 -0
  10. package/dist-esm/src/dataBoxManagementClient.js +89 -0
  11. package/dist-esm/src/dataBoxManagementClient.js.map +1 -0
  12. package/dist-esm/src/index.d.ts +5 -0
  13. package/dist-esm/src/index.d.ts.map +1 -0
  14. package/dist-esm/src/index.js +12 -0
  15. package/dist-esm/src/index.js.map +1 -0
  16. package/dist-esm/src/lroImpl.d.ts +16 -0
  17. package/dist-esm/src/lroImpl.d.ts.map +1 -0
  18. package/dist-esm/src/lroImpl.js +29 -0
  19. package/dist-esm/src/lroImpl.js.map +1 -0
  20. package/dist-esm/src/models/index.d.ts +2157 -0
  21. package/dist-esm/src/models/index.d.ts.map +1 -0
  22. package/dist-esm/src/models/index.js +168 -0
  23. package/dist-esm/src/models/index.js.map +1 -0
  24. package/dist-esm/src/models/mappers.d.ts +163 -0
  25. package/dist-esm/src/models/mappers.d.ts.map +1 -0
  26. package/dist-esm/src/models/mappers.js +3911 -0
  27. package/dist-esm/src/models/mappers.js.map +1 -0
  28. package/dist-esm/src/models/parameters.d.ts +24 -0
  29. package/dist-esm/src/models/parameters.d.ts.map +1 -0
  30. package/dist-esm/src/models/parameters.js +176 -0
  31. package/dist-esm/src/models/parameters.js.map +1 -0
  32. package/{esm → dist-esm/src}/operations/index.d.ts +0 -0
  33. package/dist-esm/src/operations/index.d.ts.map +1 -0
  34. package/dist-esm/src/operations/index.js +11 -0
  35. package/dist-esm/src/operations/index.js.map +1 -0
  36. package/dist-esm/src/operations/jobs.d.ts +161 -0
  37. package/dist-esm/src/operations/jobs.d.ts.map +1 -0
  38. package/dist-esm/src/operations/jobs.js +687 -0
  39. package/dist-esm/src/operations/jobs.js.map +1 -0
  40. package/dist-esm/src/operations/operations.d.ts +32 -0
  41. package/dist-esm/src/operations/operations.d.ts.map +1 -0
  42. package/dist-esm/src/operations/operations.js +120 -0
  43. package/dist-esm/src/operations/operations.js.map +1 -0
  44. package/dist-esm/src/operations/service.d.ts +83 -0
  45. package/dist-esm/src/operations/service.d.ts.map +1 -0
  46. package/dist-esm/src/operations/service.js +307 -0
  47. package/dist-esm/src/operations/service.js.map +1 -0
  48. package/dist-esm/src/operationsInterfaces/index.d.ts +4 -0
  49. package/dist-esm/src/operationsInterfaces/index.d.ts.map +1 -0
  50. package/dist-esm/src/operationsInterfaces/index.js +11 -0
  51. package/dist-esm/src/operationsInterfaces/index.js.map +1 -0
  52. package/dist-esm/src/operationsInterfaces/jobs.d.ts +115 -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/operations.d.ts +11 -0
  57. package/dist-esm/src/operationsInterfaces/operations.d.ts.map +1 -0
  58. package/dist-esm/src/operationsInterfaces/operations.js +9 -0
  59. package/dist-esm/src/operationsInterfaces/operations.js.map +1 -0
  60. package/dist-esm/src/operationsInterfaces/service.d.ts +54 -0
  61. package/dist-esm/src/operationsInterfaces/service.d.ts.map +1 -0
  62. package/dist-esm/src/operationsInterfaces/service.js +9 -0
  63. package/dist-esm/src/operationsInterfaces/service.js.map +1 -0
  64. package/dist-esm/test/sampleTest.d.ts +2 -0
  65. package/dist-esm/test/sampleTest.d.ts.map +1 -0
  66. package/dist-esm/test/sampleTest.js +40 -0
  67. package/dist-esm/test/sampleTest.js.map +1 -0
  68. package/package.json +65 -31
  69. package/review/arm-databox.api.md +1376 -0
  70. package/rollup.config.js +181 -30
  71. package/src/dataBoxManagementClient.ts +113 -29
  72. package/src/index.ts +12 -0
  73. package/src/lroImpl.ts +34 -0
  74. package/src/models/index.ts +1924 -1354
  75. package/src/models/mappers.ts +3160 -1086
  76. package/src/models/parameters.ts +144 -54
  77. package/src/operations/index.ts +3 -5
  78. package/src/operations/jobs.ts +702 -480
  79. package/src/operations/operations.ts +89 -75
  80. package/src/operations/service.ts +342 -127
  81. package/src/operationsInterfaces/index.ts +11 -0
  82. package/src/operationsInterfaces/jobs.ts +205 -0
  83. package/src/operationsInterfaces/operations.ts +22 -0
  84. package/src/operationsInterfaces/service.ts +107 -0
  85. package/tsconfig.json +3 -3
  86. package/types/arm-databox.d.ts +2558 -0
  87. package/types/tsdoc-metadata.json +11 -0
  88. package/dist/arm-databox.js +0 -3090
  89. package/dist/arm-databox.js.map +0 -1
  90. package/dist/arm-databox.min.js +0 -1
  91. package/dist/arm-databox.min.js.map +0 -1
  92. package/esm/dataBoxManagementClient.d.ts +0 -20
  93. package/esm/dataBoxManagementClient.d.ts.map +0 -1
  94. package/esm/dataBoxManagementClient.js +0 -35
  95. package/esm/dataBoxManagementClient.js.map +0 -1
  96. package/esm/dataBoxManagementClientContext.d.ts +0 -16
  97. package/esm/dataBoxManagementClientContext.d.ts.map +0 -1
  98. package/esm/dataBoxManagementClientContext.js +0 -57
  99. package/esm/dataBoxManagementClientContext.js.map +0 -1
  100. package/esm/models/index.d.ts +0 -1754
  101. package/esm/models/index.d.ts.map +0 -1
  102. package/esm/models/index.js +0 -8
  103. package/esm/models/index.js.map +0 -1
  104. package/esm/models/jobsMappers.d.ts +0 -2
  105. package/esm/models/jobsMappers.d.ts.map +0 -1
  106. package/esm/models/jobsMappers.js +0 -9
  107. package/esm/models/jobsMappers.js.map +0 -1
  108. package/esm/models/mappers.d.ts +0 -75
  109. package/esm/models/mappers.d.ts.map +0 -1
  110. package/esm/models/mappers.js +0 -2020
  111. package/esm/models/mappers.js.map +0 -1
  112. package/esm/models/operationsMappers.d.ts +0 -2
  113. package/esm/models/operationsMappers.d.ts.map +0 -1
  114. package/esm/models/operationsMappers.js +0 -9
  115. package/esm/models/operationsMappers.js.map +0 -1
  116. package/esm/models/parameters.d.ts +0 -12
  117. package/esm/models/parameters.d.ts.map +0 -1
  118. package/esm/models/parameters.js +0 -122
  119. package/esm/models/parameters.js.map +0 -1
  120. package/esm/models/serviceMappers.d.ts +0 -2
  121. package/esm/models/serviceMappers.d.ts.map +0 -1
  122. package/esm/models/serviceMappers.js +0 -9
  123. package/esm/models/serviceMappers.js.map +0 -1
  124. package/esm/operations/index.d.ts.map +0 -1
  125. package/esm/operations/index.js +0 -13
  126. package/esm/operations/index.js.map +0 -1
  127. package/esm/operations/jobs.d.ts +0 -245
  128. package/esm/operations/jobs.d.ts.map +0 -1
  129. package/esm/operations/jobs.js +0 -444
  130. package/esm/operations/jobs.js.map +0 -1
  131. package/esm/operations/operations.d.ts +0 -46
  132. package/esm/operations/operations.d.ts.map +0 -1
  133. package/esm/operations/operations.js +0 -77
  134. package/esm/operations/operations.js.map +0 -1
  135. package/esm/operations/service.d.ts +0 -79
  136. package/esm/operations/service.d.ts.map +0 -1
  137. package/esm/operations/service.js +0 -126
  138. package/esm/operations/service.js.map +0 -1
  139. package/src/dataBoxManagementClientContext.ts +0 -69
  140. package/src/models/jobsMappers.ts +0 -55
  141. package/src/models/operationsMappers.ts +0 -15
  142. package/src/models/serviceMappers.ts +0 -22
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sources":["../src/models/index.ts","../src/models/mappers.ts","../src/models/parameters.ts","../src/operations/operations.ts","../src/lroImpl.ts","../src/operations/jobs.ts","../src/operations/service.ts","../src/dataBoxManagementClient.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\nexport type JobDetailsUnion =\n | JobDetails\n | DataBoxCustomerDiskJobDetails\n | DataBoxDiskJobDetails\n | DataBoxHeavyJobDetails\n | DataBoxJobDetails;\nexport type DataAccountDetailsUnion =\n | DataAccountDetails\n | ManagedDiskDetails\n | StorageAccountDetails;\nexport type CopyLogDetailsUnion =\n | CopyLogDetails\n | DataBoxAccountCopyLogDetails\n | DataBoxCustomerDiskCopyLogDetails\n | DataBoxDiskCopyLogDetails\n | DataBoxHeavyAccountCopyLogDetails;\nexport type DatacenterAddressResponseUnion =\n | DatacenterAddressResponse\n | DatacenterAddressInstructionResponse\n | DatacenterAddressLocationResponse;\nexport type ValidationInputRequestUnion =\n | ValidationInputRequest\n | ValidateAddress\n | CreateOrderLimitForSubscriptionValidationRequest\n | DataTransferDetailsValidationRequest\n | PreferencesValidationRequest\n | SkuAvailabilityValidationRequest\n | SubscriptionIsAllowedToCreateJobValidationRequest;\nexport type ValidationInputResponseUnion =\n | ValidationInputResponse\n | AddressValidationProperties\n | CreateOrderLimitForSubscriptionValidationResponseProperties\n | DataTransferDetailsValidationResponseProperties\n | PreferencesValidationResponseProperties\n | SkuAvailabilityValidationResponseProperties\n | SubscriptionIsAllowedToCreateJobValidationResponseProperties;\nexport type ValidationRequestUnion = ValidationRequest | CreateJobValidations;\nexport type JobSecretsUnion =\n | JobSecrets\n | CustomerDiskJobSecrets\n | DataBoxDiskJobSecrets\n | DataBoxHeavyJobSecrets\n | DataboxJobSecrets;\nexport type ScheduleAvailabilityRequestUnion =\n | ScheduleAvailabilityRequest\n | DataBoxScheduleAvailabilityRequest\n | DiskScheduleAvailabilityRequest\n | HeavyScheduleAvailabilityRequest;\n\n/** Operation Collection. */\nexport interface OperationList {\n /**\n * List of operations.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly value?: Operation[];\n /** Link for the next set of operations. */\n nextLink?: string;\n}\n\n/** Operation entity. */\nexport interface Operation {\n /**\n * Name of the operation. Format: {resourceProviderNamespace}/{resourceType}/{read|write|delete|action}\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly name?: string;\n /**\n * Operation display values.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly display?: OperationDisplay;\n /**\n * Operation properties.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly properties?: Record<string, unknown>;\n /**\n * Origin of the operation. Can be : user|system|user,system\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly origin?: string;\n /** Indicates whether the operation is a data action */\n isDataAction?: boolean;\n}\n\n/** Operation display */\nexport interface OperationDisplay {\n /** Provider name. */\n provider?: string;\n /** Resource name. */\n resource?: string;\n /** Localized name of the operation for display purpose. */\n operation?: string;\n /** Localized description of the operation for display purpose. */\n description?: string;\n}\n\nexport interface ApiError {\n error: ErrorDetail;\n}\n\nexport interface ErrorDetail {\n code: string;\n message: string;\n details?: Details[];\n target?: string;\n}\n\nexport interface Details {\n code: string;\n message: string;\n}\n\n/** Job Resource Collection */\nexport interface JobResourceList {\n /** List of job resources. */\n value?: JobResource[];\n /** Link for the next set of job resources. */\n nextLink?: string;\n}\n\n/** Cloud error. */\nexport interface CloudError {\n /** Cloud error code. */\n code?: string;\n /** Cloud error message. */\n message?: string;\n /** Cloud error target. */\n target?: string;\n /**\n * Cloud error details.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly details?: CloudError[];\n /**\n * Cloud error additional info.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly additionalInfo?: AdditionalErrorInfo[];\n}\n\n/** Additional error info. */\nexport interface AdditionalErrorInfo {\n /** Additional error type. */\n type?: string;\n /** Additional error info. */\n info?: Record<string, unknown>;\n}\n\n/** Job details. */\nexport interface JobDetails {\n /** Polymorphic discriminator, which specifies the different types this object can be */\n jobDetailsType:\n | \"DataBoxCustomerDisk\"\n | \"DataBoxDisk\"\n | \"DataBoxHeavy\"\n | \"DataBox\";\n /**\n * List of stages that run in the job.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly jobStages?: JobStages[];\n /** Contact details for notification and shipping. */\n contactDetails: ContactDetails;\n /** Shipping address of the customer. */\n shippingAddress?: ShippingAddress;\n /**\n * Delivery package shipping details.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly deliveryPackage?: PackageShippingDetails;\n /**\n * Return package shipping details.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly returnPackage?: PackageShippingDetails;\n /** Details of the data to be imported into azure. */\n dataImportDetails?: DataImportDetails[];\n /** Details of the data to be exported from azure. */\n dataExportDetails?: DataExportDetails[];\n /** Preferences for the order. */\n preferences?: Preferences;\n /**\n * List of copy log details.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly copyLogDetails?: CopyLogDetailsUnion[];\n /**\n * Shared access key to download the return shipment label\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly reverseShipmentLabelSasKey?: string;\n /**\n * Shared access key to download the chain of custody logs\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly chainOfCustodySasKey?: string;\n /** Details about which key encryption type is being used. */\n keyEncryptionKey?: KeyEncryptionKey;\n /** The expected size of the data, which needs to be transferred in this job, in terabytes. */\n expectedDataSizeInTeraBytes?: number;\n /**\n * Available actions on the job.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly actions?: CustomerResolutionCode[];\n /**\n * Last mitigation action performed on the job.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly lastMitigationActionOnJob?: LastMitigationActionOnJob;\n /**\n * Datacenter address to ship to, for the given sku and storage location.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly datacenterAddress?: DatacenterAddressResponseUnion;\n /**\n * DataCenter code.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly dataCenterCode?: DataCenterCode;\n}\n\n/** Job stages. */\nexport interface JobStages {\n /**\n * Name of the job stage.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly stageName?: StageName;\n /**\n * Display name of the job stage.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly displayName?: string;\n /**\n * Status of the job stage.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly stageStatus?: StageStatus;\n /**\n * Time for the job stage in UTC ISO 8601 format.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly stageTime?: Date;\n /**\n * Job Stage Details\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly jobStageDetails?: Record<string, unknown>;\n}\n\n/** Contact Details. */\nexport interface ContactDetails {\n /** Contact name of the person. */\n contactName: string;\n /** Phone number of the contact person. */\n phone: string;\n /** Phone extension number of the contact person. */\n phoneExtension?: string;\n /** Mobile number of the contact person. */\n mobile?: string;\n /** List of Email-ids to be notified about job progress. */\n emailList: string[];\n /** Notification preference for a job stage. */\n notificationPreference?: NotificationPreference[];\n}\n\n/** Notification preference for a job stage. */\nexport interface NotificationPreference {\n /** Name of the stage. */\n stageName: NotificationStageName;\n /** Notification is required or not. */\n sendNotification: boolean;\n}\n\n/** Shipping address where customer wishes to receive the device. */\nexport interface ShippingAddress {\n /** Street Address line 1. */\n streetAddress1: string;\n /** Street Address line 2. */\n streetAddress2?: string;\n /** Street Address line 3. */\n streetAddress3?: string;\n /** Name of the City. */\n city?: string;\n /** Name of the State or Province. */\n stateOrProvince?: string;\n /** Name of the Country. */\n country: string;\n /** Postal code. */\n postalCode?: string;\n /** Extended Zip Code. */\n zipExtendedCode?: string;\n /** Name of the company. */\n companyName?: string;\n /** Type of address. */\n addressType?: AddressType;\n}\n\n/** package shipping details */\nexport interface PackageShippingDetails {\n /**\n * Url where shipment can be tracked.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly trackingUrl?: string;\n /**\n * Name of the carrier.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly carrierName?: string;\n /**\n * Tracking Id of shipment.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly trackingId?: string;\n}\n\n/** Details of the data to be used for importing data to azure. */\nexport interface DataImportDetails {\n /** Account details of the data to be transferred */\n accountDetails: DataAccountDetailsUnion;\n /** Level of the logs to be collected. */\n logCollectionLevel?: LogCollectionLevel;\n}\n\n/** Account details of the data to be transferred */\nexport interface DataAccountDetails {\n /** Polymorphic discriminator, which specifies the different types this object can be */\n dataAccountType: \"ManagedDisk\" | \"StorageAccount\";\n /** Password for all the shares to be created on the device. Should not be passed for TransferType:ExportFromAzure jobs. If this is not passed, the service will generate password itself. This will not be returned in Get Call. Password Requirements : Password must be minimum of 12 and maximum of 64 characters. Password must have at least one uppercase alphabet, one number and one special character. Password cannot have the following characters : IilLoO0 Password can have only alphabets, numbers and these characters : @#\\-$%^!+=;:_()]+ */\n sharePassword?: string;\n}\n\n/** Details of the data to be used for exporting data from azure. */\nexport interface DataExportDetails {\n /** Configuration for the data transfer. */\n transferConfiguration: TransferConfiguration;\n /** Level of the logs to be collected. */\n logCollectionLevel?: LogCollectionLevel;\n /** Account details of the data to be transferred */\n accountDetails: DataAccountDetailsUnion;\n}\n\n/** Configuration for defining the transfer of data. */\nexport interface TransferConfiguration {\n /** Type of the configuration for transfer. */\n transferConfigurationType: TransferConfigurationType;\n /** Map of filter type and the details to filter. This field is required only if the TransferConfigurationType is given as TransferUsingFilter. */\n transferFilterDetails?: TransferConfigurationTransferFilterDetails;\n /** Map of filter type and the details to transfer all data. This field is required only if the TransferConfigurationType is given as TransferAll */\n transferAllDetails?: TransferConfigurationTransferAllDetails;\n}\n\n/** Map of filter type and the details to filter. This field is required only if the TransferConfigurationType is given as TransferUsingFilter. */\nexport interface TransferConfigurationTransferFilterDetails {\n /** Details of the filtering the transfer of data. */\n include?: TransferFilterDetails;\n}\n\n/** Details of the filtering the transfer of data. */\nexport interface TransferFilterDetails {\n /** Type of the account of data. */\n dataAccountType: DataAccountType;\n /** Filter details to transfer blobs. */\n blobFilterDetails?: BlobFilterDetails;\n /** Filter details to transfer Azure files. */\n azureFileFilterDetails?: AzureFileFilterDetails;\n /** Details of the filter files to be used for data transfer. */\n filterFileDetails?: FilterFileDetails[];\n}\n\n/** Filter details to transfer Azure Blobs */\nexport interface BlobFilterDetails {\n /** Prefix list of the Azure blobs to be transferred. */\n blobPrefixList?: string[];\n /** List of full path of the blobs to be transferred. */\n blobPathList?: string[];\n /** List of blob containers to be transferred. */\n containerList?: string[];\n}\n\n/** Filter details to transfer Azure files */\nexport interface AzureFileFilterDetails {\n /** Prefix list of the Azure files to be transferred. */\n filePrefixList?: string[];\n /** List of full path of the files to be transferred. */\n filePathList?: string[];\n /** List of file shares to be transferred. */\n fileShareList?: string[];\n}\n\n/** Details of the filter files to be used for data transfer. */\nexport interface FilterFileDetails {\n /** Type of the filter file. */\n filterFileType: FilterFileType;\n /** Path of the file that contains the details of all items to transfer. */\n filterFilePath: string;\n}\n\n/** Map of filter type and the details to transfer all data. This field is required only if the TransferConfigurationType is given as TransferAll */\nexport interface TransferConfigurationTransferAllDetails {\n /** Details to transfer all data. */\n include?: TransferAllDetails;\n}\n\n/** Details to transfer all data. */\nexport interface TransferAllDetails {\n /** Type of the account of data */\n dataAccountType: DataAccountType;\n /** To indicate if all Azure blobs have to be transferred */\n transferAllBlobs?: boolean;\n /** To indicate if all Azure Files have to be transferred */\n transferAllFiles?: boolean;\n}\n\n/** Preferences related to the order */\nexport interface Preferences {\n /** Preferred data center region. */\n preferredDataCenterRegion?: string[];\n /** Preferences related to the shipment logistics of the sku. */\n transportPreferences?: TransportPreferences;\n /** Preferences related to the Encryption. */\n encryptionPreferences?: EncryptionPreferences;\n}\n\n/** Preferences related to the shipment logistics of the sku */\nexport interface TransportPreferences {\n /** Indicates Shipment Logistics type that the customer preferred. */\n preferredShipmentType: TransportShipmentTypes;\n}\n\n/** Preferences related to the Encryption. */\nexport interface EncryptionPreferences {\n /** Defines secondary layer of software-based encryption enablement. */\n doubleEncryption?: DoubleEncryption;\n}\n\n/** Details for log generated during copy. */\nexport interface CopyLogDetails {\n /** Polymorphic discriminator, which specifies the different types this object can be */\n copyLogDetailsType:\n | \"DataBox\"\n | \"DataBoxCustomerDisk\"\n | \"DataBoxDisk\"\n | \"DataBoxHeavy\";\n}\n\n/** Encryption key containing details about key to encrypt different keys. */\nexport interface KeyEncryptionKey {\n /** Type of encryption key used for key encryption. */\n kekType: KekType;\n /** Managed identity properties used for key encryption. */\n identityProperties?: IdentityProperties;\n /** Key encryption key. It is required in case of Customer managed KekType. */\n kekUrl?: string;\n /** Kek vault resource id. It is required in case of Customer managed KekType. */\n kekVaultResourceID?: string;\n}\n\n/** Managed identity properties. */\nexport interface IdentityProperties {\n /** Managed service identity type. */\n type?: string;\n /** User assigned identity properties. */\n userAssigned?: UserAssignedProperties;\n}\n\n/** User assigned identity properties. */\nexport interface UserAssignedProperties {\n /** Arm resource id for user assigned identity to be used to fetch MSI token. */\n resourceId?: string;\n}\n\n/** Last Mitigation Action Performed On Job */\nexport interface LastMitigationActionOnJob {\n /** Action performed date time */\n actionDateTimeInUtc?: Date;\n /**\n * Action performed by customer,\n * possibility is that mitigation might happen by customer or service or by ops\n */\n isPerformedByCustomer?: boolean;\n /** Resolution code provided by customer */\n customerResolution?: CustomerResolutionCode;\n}\n\n/** Datacenter address for given storage location. */\nexport interface DatacenterAddressResponse {\n /** Polymorphic discriminator, which specifies the different types this object can be */\n datacenterAddressType:\n | \"DatacenterAddressInstruction\"\n | \"DatacenterAddressLocation\";\n /**\n * List of supported carriers for return shipment.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly supportedCarriersForReturnShipment?: string[];\n /**\n * Azure Location where the Data Center serves primarily.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly dataCenterAzureLocation?: string;\n}\n\n/** Additional delivery info. */\nexport interface JobDeliveryInfo {\n /** Scheduled date time. */\n scheduledDateTime?: Date;\n}\n\n/** Provides details about resource creation and update time */\nexport interface SystemData {\n /**\n * A string identifier for the identity that created the resource\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly createdBy?: string;\n /**\n * The type of identity that created the resource: user, application, managedIdentity\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly createdByType?: string;\n /**\n * The timestamp of resource creation (UTC)\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly createdAt?: Date;\n /**\n * A string identifier for the identity that last modified the resource\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly lastModifiedBy?: string;\n /**\n * The type of identity that last modified the resource: user, application, managedIdentity\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly lastModifiedByType?: string;\n /**\n * The timestamp of resource last modification (UTC)\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly lastModifiedAt?: Date;\n}\n\n/** Model of the Resource. */\nexport interface Resource {\n /** The location of the resource. This will be one of the supported and registered Azure Regions (e.g. West US, East US, Southeast Asia, etc.). The region of a resource cannot be changed once it is created, but if an identical region is specified on update the request will succeed. */\n location: string;\n /** The list of key value pairs that describe the resource. These tags can be used in viewing and grouping this resource (across resource groups). */\n tags?: { [propertyName: string]: string };\n /** The sku type. */\n sku: Sku;\n /** Msi identity of the resource */\n identity?: ResourceIdentity;\n}\n\n/** The Sku. */\nexport interface Sku {\n /** The sku name. */\n name: SkuName;\n /** The display name of the sku. */\n displayName?: string;\n /** The sku family. */\n family?: string;\n}\n\n/** Msi identity details of the resource */\nexport interface ResourceIdentity {\n /** Identity type */\n type?: string;\n /**\n * Service Principal Id backing the Msi\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly principalId?: string;\n /**\n * Home Tenant Id\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly tenantId?: string;\n /** User Assigned Identities */\n userAssignedIdentities?: { [propertyName: string]: UserAssignedIdentity };\n}\n\n/** Class defining User assigned identity details. */\nexport interface UserAssignedIdentity {\n /**\n * The principal id of user assigned identity.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly principalId?: string;\n /**\n * The client id of user assigned identity.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly clientId?: string;\n}\n\n/** The Mitigate Job captured from request body for Mitigate API */\nexport interface MitigateJobRequest {\n /** Resolution code for the job */\n customerResolutionCode: CustomerResolutionCode;\n}\n\n/** The request body to provide the delivery package details of job */\nexport interface MarkDevicesShippedRequest {\n /** Delivery package details */\n deliverToDcPackageDetails: PackageCarrierInfo;\n}\n\n/** package carrier info */\nexport interface PackageCarrierInfo {\n /** Name of the carrier. */\n carrierName?: string;\n /** Tracking Id of shipment. */\n trackingId?: string;\n}\n\n/** The filters for showing the available skus. */\nexport interface AvailableSkuRequest {\n /** Type of the transfer. */\n transferType: TransferType;\n /** ISO country code. Country for hardware shipment. For codes check: https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#Officially_assigned_code_elements */\n country: string;\n /** Location for data transfer. For locations check: https://management.azure.com/subscriptions/SUBSCRIPTIONID/locations?api-version=2018-01-01 */\n location: string;\n /** Sku Names to filter for available skus */\n skuNames?: SkuName[];\n}\n\n/** The available skus operation response. */\nexport interface AvailableSkusResult {\n /**\n * List of available skus.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly value?: SkuInformation[];\n /** Link for the next set of skus. */\n nextLink?: string;\n}\n\n/** Information of the sku. */\nexport interface SkuInformation {\n /**\n * The Sku.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly sku?: Sku;\n /**\n * The sku is enabled or not.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly enabled?: boolean;\n /**\n * The map of data location to service location.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly dataLocationToServiceLocationMap?: DataLocationToServiceLocationMap[];\n /**\n * Capacity of the Sku.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly capacity?: SkuCapacity;\n /**\n * Cost of the Sku.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly costs?: SkuCost[];\n /**\n * Api versions that support this Sku.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly apiVersions?: string[];\n /**\n * Reason why the Sku is disabled.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly disabledReason?: SkuDisabledReason;\n /**\n * Message for why the Sku is disabled.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly disabledReasonMessage?: string;\n /**\n * Required feature to access the sku.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly requiredFeature?: string;\n}\n\n/** Map of data location to service location */\nexport interface DataLocationToServiceLocationMap {\n /**\n * Location of the data.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly dataLocation?: string;\n /**\n * Location of the service.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly serviceLocation?: string;\n}\n\n/** Capacity of the sku. */\nexport interface SkuCapacity {\n /**\n * Usable capacity in TB.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly usable?: string;\n /**\n * Maximum capacity in TB.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly maximum?: string;\n}\n\n/** Describes metadata for retrieving price info. */\nexport interface SkuCost {\n /**\n * Meter id of the Sku.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly meterId?: string;\n /**\n * The type of the meter.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly meterType?: string;\n /**\n * Multiplier specifies the region specific value to be multiplied with 1$ guid. Eg: Our new regions will be using 1$ shipping guid with appropriate multiplier specific to region.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly multiplier?: number;\n}\n\n/** Minimum fields that must be present in any type of validation request. */\nexport interface ValidationInputRequest {\n /** Polymorphic discriminator, which specifies the different types this object can be */\n validationType:\n | \"ValidateAddress\"\n | \"ValidateCreateOrderLimit\"\n | \"ValidateDataTransferDetails\"\n | \"ValidatePreferences\"\n | \"ValidateSkuAvailability\"\n | \"ValidateSubscriptionIsAllowedToCreateJob\";\n}\n\n/** Output of the address validation api. */\nexport interface AddressValidationOutput {\n /** Identifies the type of validation response. */\n validationType?: ValidationInputDiscriminator;\n /**\n * Error code and message of validation response.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly error?: CloudError;\n /**\n * The address validation status.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly validationStatus?: AddressValidationStatus;\n /**\n * List of alternate addresses.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly alternateAddresses?: ShippingAddress[];\n}\n\n/** Minimum properties that should be present in each individual validation response. */\nexport interface ValidationInputResponse {\n /** Polymorphic discriminator, which specifies the different types this object can be */\n validationType:\n | \"ValidateAddress\"\n | \"ValidateCreateOrderLimit\"\n | \"ValidateDataTransferDetails\"\n | \"ValidatePreferences\"\n | \"ValidateSkuAvailability\"\n | \"ValidateSubscriptionIsAllowedToCreateJob\";\n /**\n * Error code and message of validation response.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly error?: CloudError;\n}\n\n/** Minimum request requirement of any validation category. */\nexport interface ValidationRequest {\n /** Polymorphic discriminator, which specifies the different types this object can be */\n validationCategory: \"JobCreationValidation\";\n /** List of request details contain validationType and its request as key and value respectively. */\n individualRequestDetails: ValidationInputRequestUnion[];\n}\n\n/** Response of pre job creation validations. */\nexport interface ValidationResponse {\n /**\n * Overall validation status.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly status?: OverallValidationStatus;\n /**\n * List of response details contain validationType and its response as key and value respectively.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly individualResponseDetails?: ValidationInputResponseUnion[];\n}\n\n/** The JobResourceUpdateParameter. */\nexport interface JobResourceUpdateParameter {\n /** The list of key value pairs that describe the resource. These tags can be used in viewing and grouping this resource (across resource groups). */\n tags?: { [propertyName: string]: string };\n /** Msi identity of the resource */\n identity?: ResourceIdentity;\n /** Details of a job to be updated. */\n details?: UpdateJobDetails;\n}\n\n/** Job details for update. */\nexport interface UpdateJobDetails {\n /** Contact details for notification and shipping. */\n contactDetails?: ContactDetails;\n /** Shipping address of the customer. */\n shippingAddress?: ShippingAddress;\n /** Key encryption key for the job. */\n keyEncryptionKey?: KeyEncryptionKey;\n /** Return package details of job. */\n returnToCustomerPackageDetails?: PackageCarrierDetails;\n}\n\n/** Package carrier details. */\nexport interface PackageCarrierDetails {\n /** Carrier Account Number of customer for customer disk. */\n carrierAccountNumber?: string;\n /** Name of the carrier. */\n carrierName?: string;\n /** Tracking Id of shipment. */\n trackingId?: string;\n}\n\n/** Shipment pick up request details. */\nexport interface ShipmentPickUpRequest {\n /** Minimum date after which the pick up should commence, this must be in local time of pick up area. */\n startTime: Date;\n /** Maximum date before which the pick up should commence, this must be in local time of pick up area. */\n endTime: Date;\n /** Shipment Location in the pickup place. Eg.front desk */\n shipmentLocation: string;\n}\n\n/** Shipment pick up response. */\nexport interface ShipmentPickUpResponse {\n /**\n * Confirmation number for the pick up request.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly confirmationNumber?: string;\n /**\n * Time by which shipment should be ready for pick up, this is in local time of pick up area.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly readyByTime?: Date;\n}\n\n/** Reason for cancellation. */\nexport interface CancellationReason {\n /** Reason for cancellation. */\n reason: string;\n}\n\n/** List of unencrypted credentials for accessing device. */\nexport interface UnencryptedCredentialsList {\n /** List of unencrypted credentials. */\n value?: UnencryptedCredentials[];\n /** Link for the next set of unencrypted credentials. */\n nextLink?: string;\n}\n\n/** Unencrypted credentials for accessing device. */\nexport interface UnencryptedCredentials {\n /**\n * Name of the job.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly jobName?: string;\n /**\n * Secrets related to this job.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly jobSecrets?: JobSecretsUnion;\n}\n\n/** The base class for the secrets */\nexport interface JobSecrets {\n /** Polymorphic discriminator, which specifies the different types this object can be */\n jobSecretsType:\n | \"DataBoxCustomerDisk\"\n | \"DataBoxDisk\"\n | \"DataBoxHeavy\"\n | \"DataBox\";\n /**\n * Dc Access Security Code for Customer Managed Shipping\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly dcAccessSecurityCode?: DcAccessSecurityCode;\n /**\n * Error while fetching the secrets.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly error?: CloudError;\n}\n\n/** Dc access security code */\nexport interface DcAccessSecurityCode {\n /** Reverse Dc access security code. */\n reverseDCAccessCode?: string;\n /** Forward Dc access security code. */\n forwardDCAccessCode?: string;\n}\n\n/** Request body to get the configuration for the region. */\nexport interface RegionConfigurationRequest {\n /** Request body to get the availability for scheduling orders. */\n scheduleAvailabilityRequest?: ScheduleAvailabilityRequestUnion;\n /** Request body to get the transport availability for given sku. */\n transportAvailabilityRequest?: TransportAvailabilityRequest;\n /** Request body to get the datacenter address for given sku. */\n datacenterAddressRequest?: DatacenterAddressRequest;\n}\n\n/** Request body to get the availability for scheduling orders. */\nexport interface ScheduleAvailabilityRequest {\n /** Polymorphic discriminator, which specifies the different types this object can be */\n skuName: \"DataBox\" | \"DataBoxDisk\" | \"DataBoxHeavy\";\n /** Location for data transfer. For locations check: https://management.azure.com/subscriptions/SUBSCRIPTIONID/locations?api-version=2018-01-01 */\n storageLocation: string;\n /** Country in which storage location should be supported. */\n country?: string;\n}\n\n/** Request body to get the transport availability for given sku. */\nexport interface TransportAvailabilityRequest {\n /** Type of the device. */\n skuName?: SkuName;\n}\n\n/** Request body to get the datacenter address. */\nexport interface DatacenterAddressRequest {\n /** Storage location. For locations check: https://management.azure.com/subscriptions/SUBSCRIPTIONID/locations?api-version=2018-01-01 */\n storageLocation: string;\n /** Sku Name for which the data center address requested. */\n skuName: SkuName;\n}\n\n/** Configuration response specific to a region. */\nexport interface RegionConfigurationResponse {\n /**\n * Schedule availability for given sku in a region.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly scheduleAvailabilityResponse?: ScheduleAvailabilityResponse;\n /**\n * Transport options available for given sku in a region.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly transportAvailabilityResponse?: TransportAvailabilityResponse;\n /**\n * Datacenter address for given sku in a region.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly datacenterAddressResponse?: DatacenterAddressResponseUnion;\n}\n\n/** Schedule availability for given sku in a region. */\nexport interface ScheduleAvailabilityResponse {\n /**\n * List of dates available to schedule\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly availableDates?: Date[];\n}\n\n/** Transport options available for given sku in a region. */\nexport interface TransportAvailabilityResponse {\n /**\n * List of transport availability details for given region\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly transportAvailabilityDetails?: TransportAvailabilityDetails[];\n}\n\n/** Transport options availability details for given region. */\nexport interface TransportAvailabilityDetails {\n /**\n * Transport Shipment Type supported for given region.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly shipmentType?: TransportShipmentTypes;\n}\n\n/** Credential details of the account. */\nexport interface AccountCredentialDetails {\n /**\n * Name of the account.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly accountName?: string;\n /**\n * Type of the account.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly dataAccountType?: DataAccountType;\n /**\n * Connection string of the account endpoint to use the account as a storage endpoint on the device.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly accountConnectionString?: string;\n /**\n * Per share level unencrypted access credentials.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly shareCredentialDetails?: ShareCredentialDetails[];\n}\n\n/** Credential details of the shares in account. */\nexport interface ShareCredentialDetails {\n /**\n * Name of the share.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly shareName?: string;\n /**\n * Type of the share.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly shareType?: ShareDestinationFormatType;\n /**\n * User name for the share.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly userName?: string;\n /**\n * Password for the share.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly password?: string;\n /**\n * Access protocols supported on the device.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly supportedAccessProtocols?: AccessProtocol[];\n}\n\n/** The Network Adapter configuration of a DataBox. */\nexport interface ApplianceNetworkConfiguration {\n /**\n * Name of the network.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly name?: string;\n /**\n * Mac Address.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly macAddress?: string;\n}\n\n/** Base class for all objects under resource. */\nexport interface ArmBaseObject {\n /**\n * Name of the object.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly name?: string;\n /**\n * Id of the object.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly id?: string;\n /**\n * Type of the object.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly type?: string;\n}\n\n/** Copy progress. */\nexport interface CopyProgress {\n /**\n * Name of the storage account. This will be empty for data account types other than storage account.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly storageAccountName?: string;\n /**\n * Transfer type of data\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly transferType?: TransferType;\n /**\n * Data Account Type.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly dataAccountType?: DataAccountType;\n /**\n * Id of the account where the data needs to be uploaded.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly accountId?: string;\n /**\n * To indicate bytes transferred.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly bytesProcessed?: number;\n /**\n * Total amount of data to be processed by the job.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly totalBytesToProcess?: number;\n /**\n * Number of files processed\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly filesProcessed?: number;\n /**\n * Total files to process\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly totalFilesToProcess?: number;\n /**\n * Number of files not adhering to azure naming conventions which were processed by automatic renaming\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly invalidFilesProcessed?: number;\n /**\n * Total amount of data not adhering to azure naming conventions which were processed by automatic renaming\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly invalidFileBytesUploaded?: number;\n /**\n * Number of folders not adhering to azure naming conventions which were processed by automatic renaming\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly renamedContainerCount?: number;\n /**\n * Number of files which could not be copied\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly filesErroredOut?: number;\n /**\n * To indicate directories errored out in the job.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly directoriesErroredOut?: number;\n /**\n * To indicate directories renamed\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly invalidDirectoriesProcessed?: number;\n /**\n * To indicate if enumeration of data is in progress.\n * Until this is true, the TotalBytesToProcess may not be valid.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly isEnumerationInProgress?: boolean;\n}\n\n/** Import disk details */\nexport interface ImportDiskDetails {\n /** The relative path of the manifest file on the disk. */\n manifestFile: string;\n /** The Base16-encoded MD5 hash of the manifest file on the disk. */\n manifestHash: string;\n /** BitLocker key used to encrypt the disk. */\n bitLockerKey: string;\n /**\n * Path to backed up manifest, only returned if enableManifestBackup is true.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly backupManifestCloudPath?: string;\n}\n\n/** Export disk details */\nexport interface ExportDiskDetails {\n /**\n * The relative path of the manifest file on the disk.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly manifestFile?: string;\n /**\n * The Base16-encoded MD5 hash of the manifest file on the disk.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly manifestHash?: string;\n /**\n * Path to backed up manifest, only returned if enableManifestBackup is true.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly backupManifestCloudPath?: string;\n}\n\n/** Contains all the secrets of a Disk. */\nexport interface DiskSecret {\n /**\n * Serial number of the assigned disk.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly diskSerialNumber?: string;\n /**\n * Bit Locker key of the disk which can be used to unlock the disk to copy data.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly bitLockerKey?: string;\n}\n\n/** DataBox Disk Copy Progress */\nexport interface DataBoxDiskCopyProgress {\n /**\n * The serial number of the disk\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly serialNumber?: string;\n /**\n * Bytes copied during the copy of disk.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly bytesCopied?: number;\n /**\n * Indicates the percentage completed for the copy of the disk.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly percentComplete?: number;\n /**\n * The Status of the copy\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly status?: CopyStatus;\n}\n\n/** The secrets related to a databox heavy. */\nexport interface DataBoxHeavySecret {\n /**\n * Serial number of the assigned device.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly deviceSerialNumber?: string;\n /**\n * Password for out of the box experience on device.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly devicePassword?: string;\n /**\n * Network configuration of the appliance.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly networkConfigurations?: ApplianceNetworkConfiguration[];\n /**\n * The base 64 encoded public key to authenticate with the device\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly encodedValidationCertPubKey?: string;\n /**\n * Per account level access credentials.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly accountCredentialDetails?: AccountCredentialDetails[];\n}\n\n/** The secrets related to a DataBox. */\nexport interface DataBoxSecret {\n /**\n * Serial number of the assigned device.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly deviceSerialNumber?: string;\n /**\n * Password for out of the box experience on device.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly devicePassword?: string;\n /**\n * Network configuration of the appliance.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly networkConfigurations?: ApplianceNetworkConfiguration[];\n /**\n * The base 64 encoded public key to authenticate with the device\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly encodedValidationCertPubKey?: string;\n /**\n * Per account level access credentials.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly accountCredentialDetails?: AccountCredentialDetails[];\n}\n\n/** Customer disk job details. */\nexport type DataBoxCustomerDiskJobDetails = JobDetails & {\n /** Polymorphic discriminator, which specifies the different types this object can be */\n jobDetailsType: \"DataBoxCustomerDisk\";\n /** Contains the map of disk serial number to the disk details for import jobs. */\n importDiskDetailsCollection?: { [propertyName: string]: ImportDiskDetails };\n /**\n * Contains the map of disk serial number to the disk details for export jobs.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly exportDiskDetailsCollection?: {\n [propertyName: string]: ExportDiskDetails;\n };\n /**\n * Copy progress per disk.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly copyProgress?: DataBoxCustomerDiskCopyProgress[];\n /**\n * Delivery package shipping details.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly deliverToDcPackageDetails?: PackageCarrierInfo;\n /** Return package shipping details. */\n returnToCustomerPackageDetails: PackageCarrierDetails;\n /** Flag to indicate if disk manifest should be backed-up in the Storage Account. */\n enableManifestBackup?: boolean;\n};\n\n/** DataBox Disk Job Details. */\nexport type DataBoxDiskJobDetails = JobDetails & {\n /** Polymorphic discriminator, which specifies the different types this object can be */\n jobDetailsType: \"DataBoxDisk\";\n /** User preference on what size disks are needed for the job. The map is from the disk size in TB to the count. Eg. {2,5} means 5 disks of 2 TB size. Key is string but will be checked against an int. */\n preferredDisks?: { [propertyName: string]: number };\n /**\n * Copy progress per disk.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly copyProgress?: DataBoxDiskCopyProgress[];\n /**\n * Contains the map of disk serial number to the disk size being used for the job. Is returned only after the disks are shipped to the customer.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly disksAndSizeDetails?: { [propertyName: string]: number };\n /** User entered passkey for DataBox Disk job. */\n passkey?: string;\n};\n\n/** Databox Heavy Device Job Details */\nexport type DataBoxHeavyJobDetails = JobDetails & {\n /** Polymorphic discriminator, which specifies the different types this object can be */\n jobDetailsType: \"DataBoxHeavy\";\n /**\n * Copy progress per account.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly copyProgress?: CopyProgress[];\n /** Set Device password for unlocking Databox Heavy. Should not be passed for TransferType:ExportFromAzure jobs. If this is not passed, the service will generate password itself. This will not be returned in Get Call. Password Requirements : Password must be minimum of 12 and maximum of 64 characters. Password must have at least one uppercase alphabet, one number and one special character. Password cannot have the following characters : IilLoO0 Password can have only alphabets, numbers and these characters : @#\\-$%^!+=;:_()]+ */\n devicePassword?: string;\n};\n\n/** Databox Job Details */\nexport type DataBoxJobDetails = JobDetails & {\n /** Polymorphic discriminator, which specifies the different types this object can be */\n jobDetailsType: \"DataBox\";\n /**\n * Copy progress per storage account.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly copyProgress?: CopyProgress[];\n /** Set Device password for unlocking Databox. Should not be passed for TransferType:ExportFromAzure jobs. If this is not passed, the service will generate password itself. This will not be returned in Get Call. Password Requirements : Password must be minimum of 12 and maximum of 64 characters. Password must have at least one uppercase alphabet, one number and one special character. Password cannot have the following characters : IilLoO0 Password can have only alphabets, numbers and these characters : @#\\-$%^!+=;:_()]+ */\n devicePassword?: string;\n};\n\n/** Details of the managed disks. */\nexport type ManagedDiskDetails = DataAccountDetails & {\n /** Polymorphic discriminator, which specifies the different types this object can be */\n dataAccountType: \"ManagedDisk\";\n /** Resource Group Id of the compute disks. */\n resourceGroupId: string;\n /** Resource Id of the storage account that can be used to copy the vhd for staging. */\n stagingStorageAccountId: string;\n};\n\n/** Details for the storage account. */\nexport type StorageAccountDetails = DataAccountDetails & {\n /** Polymorphic discriminator, which specifies the different types this object can be */\n dataAccountType: \"StorageAccount\";\n /** Storage Account Resource Id. */\n storageAccountId: string;\n};\n\n/** Copy log details for a storage account of a DataBox job */\nexport type DataBoxAccountCopyLogDetails = CopyLogDetails & {\n /** Polymorphic discriminator, which specifies the different types this object can be */\n copyLogDetailsType: \"DataBox\";\n /**\n * Account name.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly accountName?: string;\n /**\n * Link for copy logs.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly copyLogLink?: string;\n /**\n * Link for copy verbose logs. This will be set only when LogCollectionLevel is set to Verbose.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly copyVerboseLogLink?: string;\n};\n\n/** Copy Log Details for customer disk */\nexport type DataBoxCustomerDiskCopyLogDetails = CopyLogDetails & {\n /** Polymorphic discriminator, which specifies the different types this object can be */\n copyLogDetailsType: \"DataBoxCustomerDisk\";\n /**\n * Disk Serial Number.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly serialNumber?: string;\n /**\n * Link for copy error logs.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly errorLogLink?: string;\n /**\n * Link for copy verbose logs.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly verboseLogLink?: string;\n};\n\n/** Copy Log Details for a disk */\nexport type DataBoxDiskCopyLogDetails = CopyLogDetails & {\n /** Polymorphic discriminator, which specifies the different types this object can be */\n copyLogDetailsType: \"DataBoxDisk\";\n /**\n * Disk Serial Number.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly diskSerialNumber?: string;\n /**\n * Link for copy error logs.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly errorLogLink?: string;\n /**\n * Link for copy verbose logs.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly verboseLogLink?: string;\n};\n\n/** Copy log details for a storage account for Databox heavy */\nexport type DataBoxHeavyAccountCopyLogDetails = CopyLogDetails & {\n /** Polymorphic discriminator, which specifies the different types this object can be */\n copyLogDetailsType: \"DataBoxHeavy\";\n /**\n * Account name.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly accountName?: string;\n /**\n * Link for copy logs.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly copyLogLink?: string[];\n /**\n * Link for copy verbose logs. This will be set only when the LogCollectionLevel is set to verbose.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly copyVerboseLogLink?: string[];\n};\n\n/** Datacenter instruction for given storage location. */\nexport type DatacenterAddressInstructionResponse = DatacenterAddressResponse & {\n /** Polymorphic discriminator, which specifies the different types this object can be */\n datacenterAddressType: \"DatacenterAddressInstruction\";\n /**\n * Data center communication instruction\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly communicationInstruction?: string;\n};\n\n/** Datacenter address for given storage location. */\nexport type DatacenterAddressLocationResponse = DatacenterAddressResponse & {\n /** Polymorphic discriminator, which specifies the different types this object can be */\n datacenterAddressType: \"DatacenterAddressLocation\";\n /**\n * Contact person name\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly contactPersonName?: string;\n /**\n * Company name\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly company?: string;\n /**\n * Street address line 1\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly street1?: string;\n /**\n * Street address line 2\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly street2?: string;\n /**\n * Street address line 3\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly street3?: string;\n /**\n * City name\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly city?: string;\n /**\n * name of the state\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly state?: string;\n /**\n * Zip code\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly zip?: string;\n /**\n * name of the country\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly country?: string;\n /**\n * Phone number\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly phone?: string;\n /**\n * Phone extension\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly phoneExtension?: string;\n /**\n * Address type\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly addressType?: string;\n /**\n * Special instruction for shipping\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly additionalShippingInformation?: string;\n};\n\n/** Job Resource. */\nexport type JobResource = Resource & {\n /**\n * Name of the object.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly name?: string;\n /**\n * Id of the object.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly id?: string;\n /**\n * Type of the object.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly type?: string;\n /**\n * Metadata pertaining to creation and last modification of the resource.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly systemData?: SystemData;\n /** Type of the data transfer. */\n transferType: TransferType;\n /**\n * Describes whether the job is cancellable or not.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly isCancellable?: boolean;\n /**\n * Describes whether the job is deletable or not.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly isDeletable?: boolean;\n /**\n * Describes whether the shipping address is editable or not.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly isShippingAddressEditable?: boolean;\n /**\n * Is Prepare To Ship Enabled on this job\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly isPrepareToShipEnabled?: boolean;\n /**\n * Name of the stage which is in progress.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly status?: StageName;\n /**\n * Time at which the job was started in UTC ISO 8601 format.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly startTime?: Date;\n /**\n * Top level error for the job.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly error?: CloudError;\n /** Details of a job run. This field will only be sent for expand details filter. */\n details?: JobDetailsUnion;\n /**\n * Reason for cancellation.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly cancellationReason?: string;\n /** Delivery type of Job. */\n deliveryType?: JobDeliveryType;\n /** Delivery Info of Job. */\n deliveryInfo?: JobDeliveryInfo;\n /**\n * Flag to indicate cancellation of scheduled job.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly isCancellableWithoutFee?: boolean;\n};\n\n/** The requirements to validate customer address where the device needs to be shipped. */\nexport type ValidateAddress = ValidationInputRequest & {\n /** Polymorphic discriminator, which specifies the different types this object can be */\n validationType: \"ValidateAddress\";\n /** Shipping address of the customer. */\n shippingAddress: ShippingAddress;\n /** Device type to be used for the job. */\n deviceType: SkuName;\n /** Preferences related to the shipment logistics of the sku. */\n transportPreferences?: TransportPreferences;\n};\n\n/** Request to validate create order limit for current subscription. */\nexport type CreateOrderLimitForSubscriptionValidationRequest = ValidationInputRequest & {\n /** Polymorphic discriminator, which specifies the different types this object can be */\n validationType: \"ValidateCreateOrderLimit\";\n /** Device type to be used for the job. */\n deviceType: SkuName;\n};\n\n/** Request to validate export and import data details. */\nexport type DataTransferDetailsValidationRequest = ValidationInputRequest & {\n /** Polymorphic discriminator, which specifies the different types this object can be */\n validationType: \"ValidateDataTransferDetails\";\n /** List of DataTransfer details to be used to export data from azure. */\n dataExportDetails?: DataExportDetails[];\n /** List of DataTransfer details to be used to import data to azure. */\n dataImportDetails?: DataImportDetails[];\n /** Device type. */\n deviceType: SkuName;\n /** Type of the transfer. */\n transferType: TransferType;\n};\n\n/** Request to validate preference of transport and data center. */\nexport type PreferencesValidationRequest = ValidationInputRequest & {\n /** Polymorphic discriminator, which specifies the different types this object can be */\n validationType: \"ValidatePreferences\";\n /** Preference of transport and data center. */\n preference?: Preferences;\n /** Device type to be used for the job. */\n deviceType: SkuName;\n};\n\n/** Request to validate sku availability. */\nexport type SkuAvailabilityValidationRequest = ValidationInputRequest & {\n /** Polymorphic discriminator, which specifies the different types this object can be */\n validationType: \"ValidateSkuAvailability\";\n /** Device type to be used for the job. */\n deviceType: SkuName;\n /** Type of the transfer. */\n transferType: TransferType;\n /** ISO country code. Country for hardware shipment. For codes check: https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#Officially_assigned_code_elements */\n country: string;\n /** Location for data transfer. For locations check: https://management.azure.com/subscriptions/SUBSCRIPTIONID/locations?api-version=2018-01-01 */\n location: string;\n};\n\n/** Request to validate subscription permission to create jobs. */\nexport type SubscriptionIsAllowedToCreateJobValidationRequest = ValidationInputRequest & {\n /** Polymorphic discriminator, which specifies the different types this object can be */\n validationType: \"ValidateSubscriptionIsAllowedToCreateJob\";\n};\n\n/** The address validation output. */\nexport type AddressValidationProperties = ValidationInputResponse & {\n /** Polymorphic discriminator, which specifies the different types this object can be */\n validationType: \"ValidateAddress\";\n /**\n * The address validation status.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly validationStatus?: AddressValidationStatus;\n /**\n * List of alternate addresses.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly alternateAddresses?: ShippingAddress[];\n};\n\n/** Properties of create order limit for subscription validation response. */\nexport type CreateOrderLimitForSubscriptionValidationResponseProperties = ValidationInputResponse & {\n /** Polymorphic discriminator, which specifies the different types this object can be */\n validationType: \"ValidateCreateOrderLimit\";\n /**\n * Create order limit validation status.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly status?: ValidationStatus;\n};\n\n/** Properties of data transfer details validation response. */\nexport type DataTransferDetailsValidationResponseProperties = ValidationInputResponse & {\n /** Polymorphic discriminator, which specifies the different types this object can be */\n validationType: \"ValidateDataTransferDetails\";\n /**\n * Data transfer details validation status.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly status?: ValidationStatus;\n};\n\n/** Properties of data center and transport preference validation response. */\nexport type PreferencesValidationResponseProperties = ValidationInputResponse & {\n /** Polymorphic discriminator, which specifies the different types this object can be */\n validationType: \"ValidatePreferences\";\n /**\n * Validation status of requested data center and transport.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly status?: ValidationStatus;\n};\n\n/** Properties of sku availability validation response. */\nexport type SkuAvailabilityValidationResponseProperties = ValidationInputResponse & {\n /** Polymorphic discriminator, which specifies the different types this object can be */\n validationType: \"ValidateSkuAvailability\";\n /**\n * Sku availability validation status.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly status?: ValidationStatus;\n};\n\n/** Properties of subscription permission to create job validation response. */\nexport type SubscriptionIsAllowedToCreateJobValidationResponseProperties = ValidationInputResponse & {\n /** Polymorphic discriminator, which specifies the different types this object can be */\n validationType: \"ValidateSubscriptionIsAllowedToCreateJob\";\n /**\n * Validation status of subscription permission to create job.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly status?: ValidationStatus;\n};\n\n/** It does all pre-job creation validations. */\nexport type CreateJobValidations = ValidationRequest & {\n /** Polymorphic discriminator, which specifies the different types this object can be */\n validationCategory: \"JobCreationValidation\";\n};\n\n/** The secrets related to customer disk job. */\nexport type CustomerDiskJobSecrets = JobSecrets & {\n /** Polymorphic discriminator, which specifies the different types this object can be */\n jobSecretsType: \"DataBoxCustomerDisk\";\n /**\n * Contains the list of secrets object for that device.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly diskSecrets?: DiskSecret[];\n /**\n * Carrier Account Number of the customer\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly carrierAccountNumber?: string;\n};\n\n/** The secrets related to disk job. */\nexport type DataBoxDiskJobSecrets = JobSecrets & {\n /** Polymorphic discriminator, which specifies the different types this object can be */\n jobSecretsType: \"DataBoxDisk\";\n /**\n * Contains the list of secrets object for that device.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly diskSecrets?: DiskSecret[];\n /**\n * PassKey for the disk Job.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly passKey?: string;\n /**\n * Whether passkey was provided by user.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly isPasskeyUserDefined?: boolean;\n};\n\n/** The secrets related to a databox heavy job. */\nexport type DataBoxHeavyJobSecrets = JobSecrets & {\n /** Polymorphic discriminator, which specifies the different types this object can be */\n jobSecretsType: \"DataBoxHeavy\";\n /**\n * Contains the list of secret objects for a databox heavy job.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly cabinetPodSecrets?: DataBoxHeavySecret[];\n};\n\n/** The secrets related to a databox job. */\nexport type DataboxJobSecrets = JobSecrets & {\n /** Polymorphic discriminator, which specifies the different types this object can be */\n jobSecretsType: \"DataBox\";\n /** Contains the list of secret objects for a job. */\n podSecrets?: DataBoxSecret[];\n};\n\n/** Request body to get the availability for scheduling data box orders orders. */\nexport type DataBoxScheduleAvailabilityRequest = ScheduleAvailabilityRequest & {\n /** Polymorphic discriminator, which specifies the different types this object can be */\n skuName: \"DataBox\";\n};\n\n/** Request body to get the availability for scheduling disk orders. */\nexport type DiskScheduleAvailabilityRequest = ScheduleAvailabilityRequest & {\n /** Polymorphic discriminator, which specifies the different types this object can be */\n skuName: \"DataBoxDisk\";\n /** The expected size of the data, which needs to be transferred in this job, in terabytes. */\n expectedDataSizeInTeraBytes: number;\n};\n\n/** Request body to get the availability for scheduling heavy orders. */\nexport type HeavyScheduleAvailabilityRequest = ScheduleAvailabilityRequest & {\n /** Polymorphic discriminator, which specifies the different types this object can be */\n skuName: \"DataBoxHeavy\";\n};\n\n/** DataBox CustomerDisk Copy Progress */\nexport type DataBoxCustomerDiskCopyProgress = CopyProgress & {\n /**\n * Disk Serial Number.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly serialNumber?: string;\n /**\n * The Status of the copy\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly copyStatus?: CopyStatus;\n};\n\n/** Known values of {@link StageName} that the service accepts. */\nexport enum KnownStageName {\n /** An order has been created. */\n DeviceOrdered = \"DeviceOrdered\",\n /** A device has been prepared for the order. */\n DevicePrepared = \"DevicePrepared\",\n /** Device has been dispatched to the user of the order. */\n Dispatched = \"Dispatched\",\n /** Device has been delivered to the user of the order. */\n Delivered = \"Delivered\",\n /** Device has been picked up from user and in transit to Azure datacenter. */\n PickedUp = \"PickedUp\",\n /** Device has been received at Azure datacenter from the user. */\n AtAzureDC = \"AtAzureDC\",\n /** Data copy from the device at Azure datacenter. */\n DataCopy = \"DataCopy\",\n /** Order has completed. */\n Completed = \"Completed\",\n /** Order has completed with errors. */\n CompletedWithErrors = \"CompletedWithErrors\",\n /** Order has been cancelled. */\n Cancelled = \"Cancelled\",\n /** Order has failed due to issue reported by user. */\n FailedIssueReportedAtCustomer = \"Failed_IssueReportedAtCustomer\",\n /** Order has failed due to issue detected at Azure datacenter. */\n FailedIssueDetectedAtAzureDC = \"Failed_IssueDetectedAtAzureDC\",\n /** Order has been aborted. */\n Aborted = \"Aborted\",\n /** Order has completed with warnings. */\n CompletedWithWarnings = \"CompletedWithWarnings\",\n /** Device is ready to be handed to customer from Azure DC. */\n ReadyToDispatchFromAzureDC = \"ReadyToDispatchFromAzureDC\",\n /** Device can be dropped off at Azure DC. */\n ReadyToReceiveAtAzureDC = \"ReadyToReceiveAtAzureDC\",\n /** Job created by the customer. */\n Created = \"Created\",\n /** User shipped the device to AzureDC. */\n ShippedToAzureDC = \"ShippedToAzureDC\",\n /** Awaiting shipment details of device from customer. */\n AwaitingShipmentDetails = \"AwaitingShipmentDetails\",\n /** Preparing the device to ship to customer. */\n PreparingToShipFromAzureDC = \"PreparingToShipFromAzureDC\",\n /** Shipped the device to customer. */\n ShippedToCustomer = \"ShippedToCustomer\"\n}\n\n/**\n * Defines values for StageName. \\\n * {@link KnownStageName} can be used interchangeably with StageName,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **DeviceOrdered**: An order has been created. \\\n * **DevicePrepared**: A device has been prepared for the order. \\\n * **Dispatched**: Device has been dispatched to the user of the order. \\\n * **Delivered**: Device has been delivered to the user of the order. \\\n * **PickedUp**: Device has been picked up from user and in transit to Azure datacenter. \\\n * **AtAzureDC**: Device has been received at Azure datacenter from the user. \\\n * **DataCopy**: Data copy from the device at Azure datacenter. \\\n * **Completed**: Order has completed. \\\n * **CompletedWithErrors**: Order has completed with errors. \\\n * **Cancelled**: Order has been cancelled. \\\n * **Failed_IssueReportedAtCustomer**: Order has failed due to issue reported by user. \\\n * **Failed_IssueDetectedAtAzureDC**: Order has failed due to issue detected at Azure datacenter. \\\n * **Aborted**: Order has been aborted. \\\n * **CompletedWithWarnings**: Order has completed with warnings. \\\n * **ReadyToDispatchFromAzureDC**: Device is ready to be handed to customer from Azure DC. \\\n * **ReadyToReceiveAtAzureDC**: Device can be dropped off at Azure DC. \\\n * **Created**: Job created by the customer. \\\n * **ShippedToAzureDC**: User shipped the device to AzureDC. \\\n * **AwaitingShipmentDetails**: Awaiting shipment details of device from customer. \\\n * **PreparingToShipFromAzureDC**: Preparing the device to ship to customer. \\\n * **ShippedToCustomer**: Shipped the device to customer.\n */\nexport type StageName = string;\n\n/** Known values of {@link NotificationStageName} that the service accepts. */\nexport enum KnownNotificationStageName {\n /** Notification at device prepared stage. */\n DevicePrepared = \"DevicePrepared\",\n /** Notification at device dispatched stage. */\n Dispatched = \"Dispatched\",\n /** Notification at device delivered stage. */\n Delivered = \"Delivered\",\n /** Notification at device picked up from user stage. */\n PickedUp = \"PickedUp\",\n /** Notification at device received at Azure datacenter stage. */\n AtAzureDC = \"AtAzureDC\",\n /** Notification at data copy started stage. */\n DataCopy = \"DataCopy\",\n /** Notification at job created stage. */\n Created = \"Created\",\n /** Notification at shipped devices to customer stage. */\n ShippedToCustomer = \"ShippedToCustomer\"\n}\n\n/**\n * Defines values for NotificationStageName. \\\n * {@link KnownNotificationStageName} can be used interchangeably with NotificationStageName,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **DevicePrepared**: Notification at device prepared stage. \\\n * **Dispatched**: Notification at device dispatched stage. \\\n * **Delivered**: Notification at device delivered stage. \\\n * **PickedUp**: Notification at device picked up from user stage. \\\n * **AtAzureDC**: Notification at device received at Azure datacenter stage. \\\n * **DataCopy**: Notification at data copy started stage. \\\n * **Created**: Notification at job created stage. \\\n * **ShippedToCustomer**: Notification at shipped devices to customer stage.\n */\nexport type NotificationStageName = string;\n\n/** Known values of {@link DataCenterCode} that the service accepts. */\nexport enum KnownDataCenterCode {\n Invalid = \"Invalid\",\n BY2 = \"BY2\",\n BY1 = \"BY1\",\n ORK70 = \"ORK70\",\n AM2 = \"AM2\",\n AMS20 = \"AMS20\",\n BY21 = \"BY21\",\n BY24 = \"BY24\",\n MWH01 = \"MWH01\",\n AMS06 = \"AMS06\",\n SSE90 = \"SSE90\",\n SYD03 = \"SYD03\",\n SYD23 = \"SYD23\",\n CBR20 = \"CBR20\",\n YTO20 = \"YTO20\",\n CWL20 = \"CWL20\",\n LON24 = \"LON24\",\n BOM01 = \"BOM01\",\n BL20 = \"BL20\",\n BL7 = \"BL7\",\n SEL20 = \"SEL20\",\n TYO01 = \"TYO01\",\n BN1 = \"BN1\",\n SN5 = \"SN5\",\n CYS04 = \"CYS04\",\n TYO22 = \"TYO22\",\n YTO21 = \"YTO21\",\n YQB20 = \"YQB20\",\n FRA22 = \"FRA22\",\n MAA01 = \"MAA01\",\n CPQ02 = \"CPQ02\",\n CPQ20 = \"CPQ20\",\n SIN20 = \"SIN20\",\n HKG20 = \"HKG20\",\n SG2 = \"SG2\",\n MEL23 = \"MEL23\",\n SEL21 = \"SEL21\",\n OSA20 = \"OSA20\",\n SHA03 = \"SHA03\",\n BJB = \"BJB\",\n JNB22 = \"JNB22\",\n JNB21 = \"JNB21\",\n MNZ21 = \"MNZ21\",\n SN8 = \"SN8\",\n AUH20 = \"AUH20\",\n ZRH20 = \"ZRH20\",\n PUS20 = \"PUS20\",\n AdHoc = \"AdHoc\",\n CH1 = \"CH1\",\n DSM05 = \"DSM05\"\n}\n\n/**\n * Defines values for DataCenterCode. \\\n * {@link KnownDataCenterCode} can be used interchangeably with DataCenterCode,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **Invalid** \\\n * **BY2** \\\n * **BY1** \\\n * **ORK70** \\\n * **AM2** \\\n * **AMS20** \\\n * **BY21** \\\n * **BY24** \\\n * **MWH01** \\\n * **AMS06** \\\n * **SSE90** \\\n * **SYD03** \\\n * **SYD23** \\\n * **CBR20** \\\n * **YTO20** \\\n * **CWL20** \\\n * **LON24** \\\n * **BOM01** \\\n * **BL20** \\\n * **BL7** \\\n * **SEL20** \\\n * **TYO01** \\\n * **BN1** \\\n * **SN5** \\\n * **CYS04** \\\n * **TYO22** \\\n * **YTO21** \\\n * **YQB20** \\\n * **FRA22** \\\n * **MAA01** \\\n * **CPQ02** \\\n * **CPQ20** \\\n * **SIN20** \\\n * **HKG20** \\\n * **SG2** \\\n * **MEL23** \\\n * **SEL21** \\\n * **OSA20** \\\n * **SHA03** \\\n * **BJB** \\\n * **JNB22** \\\n * **JNB21** \\\n * **MNZ21** \\\n * **SN8** \\\n * **AUH20** \\\n * **ZRH20** \\\n * **PUS20** \\\n * **AdHoc** \\\n * **CH1** \\\n * **DSM05**\n */\nexport type DataCenterCode = string;\n\n/** Known values of {@link CopyStatus} that the service accepts. */\nexport enum KnownCopyStatus {\n /** Data copy hasn't started yet. */\n NotStarted = \"NotStarted\",\n /** Data copy is in progress. */\n InProgress = \"InProgress\",\n /** Data copy completed. */\n Completed = \"Completed\",\n /** Data copy completed with errors. */\n CompletedWithErrors = \"CompletedWithErrors\",\n /** Data copy failed. No data was copied. */\n Failed = \"Failed\",\n /** No copy triggered as device was not returned. */\n NotReturned = \"NotReturned\",\n /** The Device has hit hardware issues. */\n HardwareError = \"HardwareError\",\n /** Data copy failed. The Device was formatted by user. */\n DeviceFormatted = \"DeviceFormatted\",\n /** Data copy failed. Device metadata was modified by user. */\n DeviceMetadataModified = \"DeviceMetadataModified\",\n /** Data copy failed. Storage Account was not accessible during copy. */\n StorageAccountNotAccessible = \"StorageAccountNotAccessible\",\n /** Data copy failed. The Device data content is not supported. */\n UnsupportedData = \"UnsupportedData\",\n /** No copy triggered as device was not received. */\n DriveNotReceived = \"DriveNotReceived\",\n /** No copy triggered as device type is not supported. */\n UnsupportedDrive = \"UnsupportedDrive\",\n /** Copy failed due to service error. */\n OtherServiceError = \"OtherServiceError\",\n /** Copy failed due to user error. */\n OtherUserError = \"OtherUserError\",\n /** Copy failed due to disk detection error. */\n DriveNotDetected = \"DriveNotDetected\",\n /** Copy failed due to corrupted drive. */\n DriveCorrupted = \"DriveCorrupted\",\n /** Copy failed due to modified or removed metadata files. */\n MetadataFilesModifiedOrRemoved = \"MetadataFilesModifiedOrRemoved\"\n}\n\n/**\n * Defines values for CopyStatus. \\\n * {@link KnownCopyStatus} can be used interchangeably with CopyStatus,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **NotStarted**: Data copy hasn't started yet. \\\n * **InProgress**: Data copy is in progress. \\\n * **Completed**: Data copy completed. \\\n * **CompletedWithErrors**: Data copy completed with errors. \\\n * **Failed**: Data copy failed. No data was copied. \\\n * **NotReturned**: No copy triggered as device was not returned. \\\n * **HardwareError**: The Device has hit hardware issues. \\\n * **DeviceFormatted**: Data copy failed. The Device was formatted by user. \\\n * **DeviceMetadataModified**: Data copy failed. Device metadata was modified by user. \\\n * **StorageAccountNotAccessible**: Data copy failed. Storage Account was not accessible during copy. \\\n * **UnsupportedData**: Data copy failed. The Device data content is not supported. \\\n * **DriveNotReceived**: No copy triggered as device was not received. \\\n * **UnsupportedDrive**: No copy triggered as device type is not supported. \\\n * **OtherServiceError**: Copy failed due to service error. \\\n * **OtherUserError**: Copy failed due to user error. \\\n * **DriveNotDetected**: Copy failed due to disk detection error. \\\n * **DriveCorrupted**: Copy failed due to corrupted drive. \\\n * **MetadataFilesModifiedOrRemoved**: Copy failed due to modified or removed metadata files.\n */\nexport type CopyStatus = string;\n/** Defines values for TransferType. */\nexport type TransferType = \"ImportToAzure\" | \"ExportFromAzure\";\n/** Defines values for StageStatus. */\nexport type StageStatus =\n | \"None\"\n | \"InProgress\"\n | \"Succeeded\"\n | \"Failed\"\n | \"Cancelled\"\n | \"Cancelling\"\n | \"SucceededWithErrors\"\n | \"WaitingForCustomerAction\"\n | \"SucceededWithWarnings\"\n | \"WaitingForCustomerActionForKek\"\n | \"WaitingForCustomerActionForCleanUp\"\n | \"CustomerActionPerformedForCleanUp\";\n/** Defines values for AddressType. */\nexport type AddressType = \"None\" | \"Residential\" | \"Commercial\";\n/** Defines values for DataAccountType. */\nexport type DataAccountType = \"StorageAccount\" | \"ManagedDisk\";\n/** Defines values for LogCollectionLevel. */\nexport type LogCollectionLevel = \"Error\" | \"Verbose\";\n/** Defines values for TransferConfigurationType. */\nexport type TransferConfigurationType = \"TransferAll\" | \"TransferUsingFilter\";\n/** Defines values for FilterFileType. */\nexport type FilterFileType = \"AzureBlob\" | \"AzureFile\";\n/** Defines values for ClassDiscriminator. */\nexport type ClassDiscriminator =\n | \"DataBox\"\n | \"DataBoxDisk\"\n | \"DataBoxHeavy\"\n | \"DataBoxCustomerDisk\";\n/** Defines values for TransportShipmentTypes. */\nexport type TransportShipmentTypes = \"CustomerManaged\" | \"MicrosoftManaged\";\n/** Defines values for DoubleEncryption. */\nexport type DoubleEncryption = \"Enabled\" | \"Disabled\";\n/** Defines values for KekType. */\nexport type KekType = \"MicrosoftManaged\" | \"CustomerManaged\";\n/** Defines values for CustomerResolutionCode. */\nexport type CustomerResolutionCode = \"None\" | \"MoveToCleanUpDevice\" | \"Resume\";\n/** Defines values for DatacenterAddressType. */\nexport type DatacenterAddressType =\n | \"DatacenterAddressLocation\"\n | \"DatacenterAddressInstruction\";\n/** Defines values for JobDeliveryType. */\nexport type JobDeliveryType = \"NonScheduled\" | \"Scheduled\";\n/** Defines values for SkuName. */\nexport type SkuName =\n | \"DataBox\"\n | \"DataBoxDisk\"\n | \"DataBoxHeavy\"\n | \"DataBoxCustomerDisk\";\n/** Defines values for SkuDisabledReason. */\nexport type SkuDisabledReason =\n | \"None\"\n | \"Country\"\n | \"Region\"\n | \"Feature\"\n | \"OfferType\"\n | \"NoSubscriptionInfo\";\n/** Defines values for ValidationInputDiscriminator. */\nexport type ValidationInputDiscriminator =\n | \"ValidateAddress\"\n | \"ValidateSubscriptionIsAllowedToCreateJob\"\n | \"ValidatePreferences\"\n | \"ValidateCreateOrderLimit\"\n | \"ValidateSkuAvailability\"\n | \"ValidateDataTransferDetails\";\n/** Defines values for AddressValidationStatus. */\nexport type AddressValidationStatus = \"Valid\" | \"Invalid\" | \"Ambiguous\";\n/** Defines values for OverallValidationStatus. */\nexport type OverallValidationStatus =\n | \"AllValidToProceed\"\n | \"InputsRevisitRequired\"\n | \"CertainInputValidationsSkipped\";\n/** Defines values for ShareDestinationFormatType. */\nexport type ShareDestinationFormatType =\n | \"UnknownType\"\n | \"HCS\"\n | \"BlockBlob\"\n | \"PageBlob\"\n | \"AzureFile\"\n | \"ManagedDisk\";\n/** Defines values for AccessProtocol. */\nexport type AccessProtocol = \"SMB\" | \"NFS\";\n/** Defines values for ValidationStatus. */\nexport type ValidationStatus = \"Valid\" | \"Invalid\" | \"Skipped\";\n\n/** Optional parameters. */\nexport interface OperationsListOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the list operation. */\nexport type OperationsListResponse = OperationList;\n\n/** Optional parameters. */\nexport interface OperationsListNextOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the listNext operation. */\nexport type OperationsListNextResponse = OperationList;\n\n/** Optional parameters. */\nexport interface JobsListOptionalParams extends coreClient.OperationOptions {\n /** $skipToken is supported on Get list of jobs, which provides the next page in the list of jobs. */\n skipToken?: string;\n}\n\n/** Contains response data for the list operation. */\nexport type JobsListResponse = JobResourceList;\n\n/** Optional parameters. */\nexport interface JobsMarkDevicesShippedOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Optional parameters. */\nexport interface JobsListByResourceGroupOptionalParams\n extends coreClient.OperationOptions {\n /** $skipToken is supported on Get list of jobs, which provides the next page in the list of jobs. */\n skipToken?: string;\n}\n\n/** Contains response data for the listByResourceGroup operation. */\nexport type JobsListByResourceGroupResponse = JobResourceList;\n\n/** Optional parameters. */\nexport interface JobsGetOptionalParams extends coreClient.OperationOptions {\n /** $expand is supported on details parameter for job, which provides details on the job stages. */\n expand?: string;\n}\n\n/** Contains response data for the get operation. */\nexport type JobsGetResponse = JobResource;\n\n/** Optional parameters. */\nexport interface JobsCreateOptionalParams extends coreClient.OperationOptions {\n /** Delay to wait until next poll, in milliseconds. */\n updateIntervalInMs?: number;\n /** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */\n resumeFrom?: string;\n}\n\n/** Contains response data for the create operation. */\nexport type JobsCreateResponse = JobResource;\n\n/** Optional parameters. */\nexport interface JobsDeleteOptionalParams extends coreClient.OperationOptions {\n /** Delay to wait until next poll, in milliseconds. */\n updateIntervalInMs?: number;\n /** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */\n resumeFrom?: string;\n}\n\n/** Optional parameters. */\nexport interface JobsUpdateOptionalParams extends coreClient.OperationOptions {\n /** Defines the If-Match condition. The patch will be performed only if the ETag of the job on the server matches this value. */\n ifMatch?: string;\n /** Delay to wait until next poll, in milliseconds. */\n updateIntervalInMs?: number;\n /** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */\n resumeFrom?: string;\n}\n\n/** Contains response data for the update operation. */\nexport type JobsUpdateResponse = JobResource;\n\n/** Optional parameters. */\nexport interface JobsBookShipmentPickUpOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the bookShipmentPickUp operation. */\nexport type JobsBookShipmentPickUpResponse = ShipmentPickUpResponse;\n\n/** Optional parameters. */\nexport interface JobsCancelOptionalParams extends coreClient.OperationOptions {}\n\n/** Optional parameters. */\nexport interface JobsListCredentialsOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the listCredentials operation. */\nexport type JobsListCredentialsResponse = UnencryptedCredentialsList;\n\n/** Optional parameters. */\nexport interface JobsListNextOptionalParams\n extends coreClient.OperationOptions {\n /** $skipToken is supported on Get list of jobs, which provides the next page in the list of jobs. */\n skipToken?: string;\n}\n\n/** Contains response data for the listNext operation. */\nexport type JobsListNextResponse = JobResourceList;\n\n/** Optional parameters. */\nexport interface JobsListByResourceGroupNextOptionalParams\n extends coreClient.OperationOptions {\n /** $skipToken is supported on Get list of jobs, which provides the next page in the list of jobs. */\n skipToken?: string;\n}\n\n/** Contains response data for the listByResourceGroupNext operation. */\nexport type JobsListByResourceGroupNextResponse = JobResourceList;\n\n/** Optional parameters. */\nexport interface MitigateOptionalParams extends coreClient.OperationOptions {}\n\n/** Optional parameters. */\nexport interface ServiceListAvailableSkusByResourceGroupOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the listAvailableSkusByResourceGroup operation. */\nexport type ServiceListAvailableSkusByResourceGroupResponse = AvailableSkusResult;\n\n/** Optional parameters. */\nexport interface ServiceValidateAddressOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the validateAddress operation. */\nexport type ServiceValidateAddressResponse = AddressValidationOutput;\n\n/** Optional parameters. */\nexport interface ServiceValidateInputsByResourceGroupOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the validateInputsByResourceGroup operation. */\nexport type ServiceValidateInputsByResourceGroupResponse = ValidationResponse;\n\n/** Optional parameters. */\nexport interface ServiceValidateInputsOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the validateInputs operation. */\nexport type ServiceValidateInputsResponse = ValidationResponse;\n\n/** Optional parameters. */\nexport interface ServiceRegionConfigurationOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the regionConfiguration operation. */\nexport type ServiceRegionConfigurationResponse = RegionConfigurationResponse;\n\n/** Optional parameters. */\nexport interface ServiceRegionConfigurationByResourceGroupOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the regionConfigurationByResourceGroup operation. */\nexport type ServiceRegionConfigurationByResourceGroupResponse = RegionConfigurationResponse;\n\n/** Optional parameters. */\nexport interface ServiceListAvailableSkusByResourceGroupNextOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the listAvailableSkusByResourceGroupNext operation. */\nexport type ServiceListAvailableSkusByResourceGroupNextResponse = AvailableSkusResult;\n\n/** Optional parameters. */\nexport interface DataBoxManagementClientOptionalParams\n extends coreClient.ServiceClientOptions {\n /** server parameter */\n $host?: string;\n /** Api Version */\n apiVersion?: 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 OperationList: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"OperationList\",\n modelProperties: {\n value: {\n serializedName: \"value\",\n readOnly: true,\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"Operation\"\n }\n }\n }\n },\n nextLink: {\n serializedName: \"nextLink\",\n type: {\n name: \"String\"\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 readOnly: true,\n type: {\n name: \"String\"\n }\n },\n display: {\n serializedName: \"display\",\n type: {\n name: \"Composite\",\n className: \"OperationDisplay\"\n }\n },\n properties: {\n serializedName: \"properties\",\n readOnly: true,\n type: {\n name: \"Dictionary\",\n value: { type: { name: \"any\" } }\n }\n },\n origin: {\n serializedName: \"origin\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n isDataAction: {\n serializedName: \"isDataAction\",\n type: {\n name: \"Boolean\"\n }\n }\n }\n }\n};\n\nexport const OperationDisplay: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"OperationDisplay\",\n modelProperties: {\n provider: {\n serializedName: \"provider\",\n type: {\n name: \"String\"\n }\n },\n resource: {\n serializedName: \"resource\",\n type: {\n name: \"String\"\n }\n },\n operation: {\n serializedName: \"operation\",\n type: {\n name: \"String\"\n }\n },\n description: {\n serializedName: \"description\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const ApiError: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ApiError\",\n modelProperties: {\n error: {\n serializedName: \"error\",\n type: {\n name: \"Composite\",\n className: \"ErrorDetail\"\n }\n }\n }\n }\n};\n\nexport const ErrorDetail: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ErrorDetail\",\n modelProperties: {\n code: {\n serializedName: \"code\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n message: {\n serializedName: \"message\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n details: {\n serializedName: \"details\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"Details\"\n }\n }\n }\n },\n target: {\n serializedName: \"target\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const Details: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"Details\",\n modelProperties: {\n code: {\n serializedName: \"code\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n message: {\n serializedName: \"message\",\n required: true,\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const JobResourceList: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"JobResourceList\",\n modelProperties: {\n value: {\n serializedName: \"value\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"JobResource\"\n }\n }\n }\n },\n nextLink: {\n serializedName: \"nextLink\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const CloudError: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"CloudError\",\n modelProperties: {\n code: {\n serializedName: \"code\",\n type: {\n name: \"String\"\n }\n },\n message: {\n serializedName: \"message\",\n type: {\n name: \"String\"\n }\n },\n target: {\n serializedName: \"target\",\n type: {\n name: \"String\"\n }\n },\n details: {\n serializedName: \"details\",\n readOnly: true,\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"CloudError\"\n }\n }\n }\n },\n additionalInfo: {\n serializedName: \"additionalInfo\",\n readOnly: true,\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"AdditionalErrorInfo\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const AdditionalErrorInfo: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"AdditionalErrorInfo\",\n modelProperties: {\n type: {\n serializedName: \"type\",\n type: {\n name: \"String\"\n }\n },\n info: {\n serializedName: \"info\",\n type: {\n name: \"Dictionary\",\n value: { type: { name: \"any\" } }\n }\n }\n }\n }\n};\n\nexport const JobDetails: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"JobDetails\",\n uberParent: \"JobDetails\",\n polymorphicDiscriminator: {\n serializedName: \"jobDetailsType\",\n clientName: \"jobDetailsType\"\n },\n modelProperties: {\n jobStages: {\n serializedName: \"jobStages\",\n readOnly: true,\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"JobStages\"\n }\n }\n }\n },\n contactDetails: {\n serializedName: \"contactDetails\",\n type: {\n name: \"Composite\",\n className: \"ContactDetails\"\n }\n },\n shippingAddress: {\n serializedName: \"shippingAddress\",\n type: {\n name: \"Composite\",\n className: \"ShippingAddress\"\n }\n },\n deliveryPackage: {\n serializedName: \"deliveryPackage\",\n type: {\n name: \"Composite\",\n className: \"PackageShippingDetails\"\n }\n },\n returnPackage: {\n serializedName: \"returnPackage\",\n type: {\n name: \"Composite\",\n className: \"PackageShippingDetails\"\n }\n },\n dataImportDetails: {\n serializedName: \"dataImportDetails\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"DataImportDetails\"\n }\n }\n }\n },\n dataExportDetails: {\n serializedName: \"dataExportDetails\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"DataExportDetails\"\n }\n }\n }\n },\n jobDetailsType: {\n serializedName: \"jobDetailsType\",\n required: true,\n type: {\n name: \"Enum\",\n allowedValues: [\n \"DataBox\",\n \"DataBoxDisk\",\n \"DataBoxHeavy\",\n \"DataBoxCustomerDisk\"\n ]\n }\n },\n preferences: {\n serializedName: \"preferences\",\n type: {\n name: \"Composite\",\n className: \"Preferences\"\n }\n },\n copyLogDetails: {\n serializedName: \"copyLogDetails\",\n readOnly: true,\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"CopyLogDetails\"\n }\n }\n }\n },\n reverseShipmentLabelSasKey: {\n serializedName: \"reverseShipmentLabelSasKey\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n chainOfCustodySasKey: {\n serializedName: \"chainOfCustodySasKey\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n keyEncryptionKey: {\n serializedName: \"keyEncryptionKey\",\n type: {\n name: \"Composite\",\n className: \"KeyEncryptionKey\"\n }\n },\n expectedDataSizeInTeraBytes: {\n serializedName: \"expectedDataSizeInTeraBytes\",\n type: {\n name: \"Number\"\n }\n },\n actions: {\n serializedName: \"actions\",\n readOnly: true,\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Enum\",\n allowedValues: [\"None\", \"MoveToCleanUpDevice\", \"Resume\"]\n }\n }\n }\n },\n lastMitigationActionOnJob: {\n serializedName: \"lastMitigationActionOnJob\",\n type: {\n name: \"Composite\",\n className: \"LastMitigationActionOnJob\"\n }\n },\n datacenterAddress: {\n serializedName: \"datacenterAddress\",\n type: {\n name: \"Composite\",\n className: \"DatacenterAddressResponse\"\n }\n },\n dataCenterCode: {\n serializedName: \"dataCenterCode\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const JobStages: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"JobStages\",\n modelProperties: {\n stageName: {\n serializedName: \"stageName\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n displayName: {\n serializedName: \"displayName\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n stageStatus: {\n serializedName: \"stageStatus\",\n readOnly: true,\n type: {\n name: \"Enum\",\n allowedValues: [\n \"None\",\n \"InProgress\",\n \"Succeeded\",\n \"Failed\",\n \"Cancelled\",\n \"Cancelling\",\n \"SucceededWithErrors\",\n \"WaitingForCustomerAction\",\n \"SucceededWithWarnings\",\n \"WaitingForCustomerActionForKek\",\n \"WaitingForCustomerActionForCleanUp\",\n \"CustomerActionPerformedForCleanUp\"\n ]\n }\n },\n stageTime: {\n serializedName: \"stageTime\",\n readOnly: true,\n type: {\n name: \"DateTime\"\n }\n },\n jobStageDetails: {\n serializedName: \"jobStageDetails\",\n readOnly: true,\n type: {\n name: \"Dictionary\",\n value: { type: { name: \"any\" } }\n }\n }\n }\n }\n};\n\nexport const ContactDetails: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ContactDetails\",\n modelProperties: {\n contactName: {\n serializedName: \"contactName\",\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 phoneExtension: {\n serializedName: \"phoneExtension\",\n type: {\n name: \"String\"\n }\n },\n mobile: {\n serializedName: \"mobile\",\n type: {\n name: \"String\"\n }\n },\n emailList: {\n serializedName: \"emailList\",\n required: true,\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n },\n notificationPreference: {\n serializedName: \"notificationPreference\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"NotificationPreference\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const NotificationPreference: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"NotificationPreference\",\n modelProperties: {\n stageName: {\n serializedName: \"stageName\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n sendNotification: {\n defaultValue: true,\n serializedName: \"sendNotification\",\n required: true,\n type: {\n name: \"Boolean\"\n }\n }\n }\n }\n};\n\nexport const ShippingAddress: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ShippingAddress\",\n modelProperties: {\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 streetAddress3: {\n serializedName: \"streetAddress3\",\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 country: {\n serializedName: \"country\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n postalCode: {\n serializedName: \"postalCode\",\n type: {\n name: \"String\"\n }\n },\n zipExtendedCode: {\n serializedName: \"zipExtendedCode\",\n type: {\n name: \"String\"\n }\n },\n companyName: {\n serializedName: \"companyName\",\n type: {\n name: \"String\"\n }\n },\n addressType: {\n defaultValue: \"None\",\n serializedName: \"addressType\",\n type: {\n name: \"Enum\",\n allowedValues: [\"None\", \"Residential\", \"Commercial\"]\n }\n }\n }\n }\n};\n\nexport const PackageShippingDetails: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"PackageShippingDetails\",\n modelProperties: {\n trackingUrl: {\n serializedName: \"trackingUrl\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n carrierName: {\n serializedName: \"carrierName\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n trackingId: {\n serializedName: \"trackingId\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const DataImportDetails: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"DataImportDetails\",\n modelProperties: {\n accountDetails: {\n serializedName: \"accountDetails\",\n type: {\n name: \"Composite\",\n className: \"DataAccountDetails\"\n }\n },\n logCollectionLevel: {\n serializedName: \"logCollectionLevel\",\n type: {\n name: \"Enum\",\n allowedValues: [\"Error\", \"Verbose\"]\n }\n }\n }\n }\n};\n\nexport const DataAccountDetails: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"DataAccountDetails\",\n uberParent: \"DataAccountDetails\",\n polymorphicDiscriminator: {\n serializedName: \"dataAccountType\",\n clientName: \"dataAccountType\"\n },\n modelProperties: {\n dataAccountType: {\n serializedName: \"dataAccountType\",\n required: true,\n type: {\n name: \"Enum\",\n allowedValues: [\"StorageAccount\", \"ManagedDisk\"]\n }\n },\n sharePassword: {\n serializedName: \"sharePassword\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const DataExportDetails: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"DataExportDetails\",\n modelProperties: {\n transferConfiguration: {\n serializedName: \"transferConfiguration\",\n type: {\n name: \"Composite\",\n className: \"TransferConfiguration\"\n }\n },\n logCollectionLevel: {\n serializedName: \"logCollectionLevel\",\n type: {\n name: \"Enum\",\n allowedValues: [\"Error\", \"Verbose\"]\n }\n },\n accountDetails: {\n serializedName: \"accountDetails\",\n type: {\n name: \"Composite\",\n className: \"DataAccountDetails\"\n }\n }\n }\n }\n};\n\nexport const TransferConfiguration: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"TransferConfiguration\",\n modelProperties: {\n transferConfigurationType: {\n serializedName: \"transferConfigurationType\",\n required: true,\n type: {\n name: \"Enum\",\n allowedValues: [\"TransferAll\", \"TransferUsingFilter\"]\n }\n },\n transferFilterDetails: {\n serializedName: \"transferFilterDetails\",\n type: {\n name: \"Composite\",\n className: \"TransferConfigurationTransferFilterDetails\"\n }\n },\n transferAllDetails: {\n serializedName: \"transferAllDetails\",\n type: {\n name: \"Composite\",\n className: \"TransferConfigurationTransferAllDetails\"\n }\n }\n }\n }\n};\n\nexport const TransferConfigurationTransferFilterDetails: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"TransferConfigurationTransferFilterDetails\",\n modelProperties: {\n include: {\n serializedName: \"include\",\n type: {\n name: \"Composite\",\n className: \"TransferFilterDetails\"\n }\n }\n }\n }\n};\n\nexport const TransferFilterDetails: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"TransferFilterDetails\",\n modelProperties: {\n dataAccountType: {\n serializedName: \"dataAccountType\",\n required: true,\n type: {\n name: \"Enum\",\n allowedValues: [\"StorageAccount\", \"ManagedDisk\"]\n }\n },\n blobFilterDetails: {\n serializedName: \"blobFilterDetails\",\n type: {\n name: \"Composite\",\n className: \"BlobFilterDetails\"\n }\n },\n azureFileFilterDetails: {\n serializedName: \"azureFileFilterDetails\",\n type: {\n name: \"Composite\",\n className: \"AzureFileFilterDetails\"\n }\n },\n filterFileDetails: {\n serializedName: \"filterFileDetails\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"FilterFileDetails\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const BlobFilterDetails: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"BlobFilterDetails\",\n modelProperties: {\n blobPrefixList: {\n serializedName: \"blobPrefixList\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n },\n blobPathList: {\n serializedName: \"blobPathList\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n },\n containerList: {\n serializedName: \"containerList\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const AzureFileFilterDetails: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"AzureFileFilterDetails\",\n modelProperties: {\n filePrefixList: {\n serializedName: \"filePrefixList\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n },\n filePathList: {\n serializedName: \"filePathList\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n },\n fileShareList: {\n serializedName: \"fileShareList\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const FilterFileDetails: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"FilterFileDetails\",\n modelProperties: {\n filterFileType: {\n serializedName: \"filterFileType\",\n required: true,\n type: {\n name: \"Enum\",\n allowedValues: [\"AzureBlob\", \"AzureFile\"]\n }\n },\n filterFilePath: {\n serializedName: \"filterFilePath\",\n required: true,\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const TransferConfigurationTransferAllDetails: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"TransferConfigurationTransferAllDetails\",\n modelProperties: {\n include: {\n serializedName: \"include\",\n type: {\n name: \"Composite\",\n className: \"TransferAllDetails\"\n }\n }\n }\n }\n};\n\nexport const TransferAllDetails: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"TransferAllDetails\",\n modelProperties: {\n dataAccountType: {\n serializedName: \"dataAccountType\",\n required: true,\n type: {\n name: \"Enum\",\n allowedValues: [\"StorageAccount\", \"ManagedDisk\"]\n }\n },\n transferAllBlobs: {\n serializedName: \"transferAllBlobs\",\n type: {\n name: \"Boolean\"\n }\n },\n transferAllFiles: {\n serializedName: \"transferAllFiles\",\n type: {\n name: \"Boolean\"\n }\n }\n }\n }\n};\n\nexport const Preferences: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"Preferences\",\n modelProperties: {\n preferredDataCenterRegion: {\n serializedName: \"preferredDataCenterRegion\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n },\n transportPreferences: {\n serializedName: \"transportPreferences\",\n type: {\n name: \"Composite\",\n className: \"TransportPreferences\"\n }\n },\n encryptionPreferences: {\n serializedName: \"encryptionPreferences\",\n type: {\n name: \"Composite\",\n className: \"EncryptionPreferences\"\n }\n }\n }\n }\n};\n\nexport const TransportPreferences: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"TransportPreferences\",\n modelProperties: {\n preferredShipmentType: {\n serializedName: \"preferredShipmentType\",\n required: true,\n type: {\n name: \"Enum\",\n allowedValues: [\"CustomerManaged\", \"MicrosoftManaged\"]\n }\n }\n }\n }\n};\n\nexport const EncryptionPreferences: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"EncryptionPreferences\",\n modelProperties: {\n doubleEncryption: {\n defaultValue: \"Disabled\",\n serializedName: \"doubleEncryption\",\n type: {\n name: \"Enum\",\n allowedValues: [\"Enabled\", \"Disabled\"]\n }\n }\n }\n }\n};\n\nexport const CopyLogDetails: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"CopyLogDetails\",\n uberParent: \"CopyLogDetails\",\n polymorphicDiscriminator: {\n serializedName: \"copyLogDetailsType\",\n clientName: \"copyLogDetailsType\"\n },\n modelProperties: {\n copyLogDetailsType: {\n serializedName: \"copyLogDetailsType\",\n required: true,\n type: {\n name: \"Enum\",\n allowedValues: [\n \"DataBox\",\n \"DataBoxDisk\",\n \"DataBoxHeavy\",\n \"DataBoxCustomerDisk\"\n ]\n }\n }\n }\n }\n};\n\nexport const KeyEncryptionKey: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"KeyEncryptionKey\",\n modelProperties: {\n kekType: {\n defaultValue: \"MicrosoftManaged\",\n serializedName: \"kekType\",\n required: true,\n type: {\n name: \"Enum\",\n allowedValues: [\"MicrosoftManaged\", \"CustomerManaged\"]\n }\n },\n identityProperties: {\n serializedName: \"identityProperties\",\n type: {\n name: \"Composite\",\n className: \"IdentityProperties\"\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 IdentityProperties: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"IdentityProperties\",\n modelProperties: {\n type: {\n serializedName: \"type\",\n type: {\n name: \"String\"\n }\n },\n userAssigned: {\n serializedName: \"userAssigned\",\n type: {\n name: \"Composite\",\n className: \"UserAssignedProperties\"\n }\n }\n }\n }\n};\n\nexport const UserAssignedProperties: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"UserAssignedProperties\",\n modelProperties: {\n resourceId: {\n serializedName: \"resourceId\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const LastMitigationActionOnJob: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"LastMitigationActionOnJob\",\n modelProperties: {\n actionDateTimeInUtc: {\n serializedName: \"actionDateTimeInUtc\",\n type: {\n name: \"DateTime\"\n }\n },\n isPerformedByCustomer: {\n serializedName: \"isPerformedByCustomer\",\n type: {\n name: \"Boolean\"\n }\n },\n customerResolution: {\n serializedName: \"customerResolution\",\n type: {\n name: \"Enum\",\n allowedValues: [\"None\", \"MoveToCleanUpDevice\", \"Resume\"]\n }\n }\n }\n }\n};\n\nexport const DatacenterAddressResponse: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"DatacenterAddressResponse\",\n uberParent: \"DatacenterAddressResponse\",\n polymorphicDiscriminator: {\n serializedName: \"datacenterAddressType\",\n clientName: \"datacenterAddressType\"\n },\n modelProperties: {\n datacenterAddressType: {\n serializedName: \"datacenterAddressType\",\n required: true,\n type: {\n name: \"Enum\",\n allowedValues: [\n \"DatacenterAddressLocation\",\n \"DatacenterAddressInstruction\"\n ]\n }\n },\n supportedCarriersForReturnShipment: {\n serializedName: \"supportedCarriersForReturnShipment\",\n readOnly: true,\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n },\n dataCenterAzureLocation: {\n serializedName: \"dataCenterAzureLocation\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const JobDeliveryInfo: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"JobDeliveryInfo\",\n modelProperties: {\n scheduledDateTime: {\n serializedName: \"scheduledDateTime\",\n type: {\n name: \"DateTime\"\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 readOnly: true,\n type: {\n name: \"String\"\n }\n },\n createdByType: {\n serializedName: \"createdByType\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n createdAt: {\n serializedName: \"createdAt\",\n readOnly: true,\n type: {\n name: \"DateTime\"\n }\n },\n lastModifiedBy: {\n serializedName: \"lastModifiedBy\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n lastModifiedByType: {\n serializedName: \"lastModifiedByType\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n lastModifiedAt: {\n serializedName: \"lastModifiedAt\",\n readOnly: true,\n type: {\n name: \"DateTime\"\n }\n }\n }\n }\n};\n\nexport const Resource: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"Resource\",\n modelProperties: {\n location: {\n serializedName: \"location\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n tags: {\n serializedName: \"tags\",\n type: {\n name: \"Dictionary\",\n value: { type: { name: \"String\" } }\n }\n },\n sku: {\n serializedName: \"sku\",\n type: {\n name: \"Composite\",\n className: \"Sku\"\n }\n },\n identity: {\n serializedName: \"identity\",\n type: {\n name: \"Composite\",\n className: \"ResourceIdentity\"\n }\n }\n }\n }\n};\n\nexport const Sku: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"Sku\",\n modelProperties: {\n name: {\n serializedName: \"name\",\n required: true,\n type: {\n name: \"Enum\",\n allowedValues: [\n \"DataBox\",\n \"DataBoxDisk\",\n \"DataBoxHeavy\",\n \"DataBoxCustomerDisk\"\n ]\n }\n },\n displayName: {\n serializedName: \"displayName\",\n type: {\n name: \"String\"\n }\n },\n family: {\n serializedName: \"family\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const ResourceIdentity: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ResourceIdentity\",\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 userAssignedIdentities: {\n serializedName: \"userAssignedIdentities\",\n type: {\n name: \"Dictionary\",\n value: {\n type: { name: \"Composite\", className: \"UserAssignedIdentity\" }\n }\n }\n }\n }\n }\n};\n\nexport const UserAssignedIdentity: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"UserAssignedIdentity\",\n modelProperties: {\n principalId: {\n serializedName: \"principalId\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n clientId: {\n serializedName: \"clientId\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const MitigateJobRequest: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"MitigateJobRequest\",\n modelProperties: {\n customerResolutionCode: {\n serializedName: \"customerResolutionCode\",\n required: true,\n type: {\n name: \"Enum\",\n allowedValues: [\"None\", \"MoveToCleanUpDevice\", \"Resume\"]\n }\n }\n }\n }\n};\n\nexport const MarkDevicesShippedRequest: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"MarkDevicesShippedRequest\",\n modelProperties: {\n deliverToDcPackageDetails: {\n serializedName: \"deliverToDcPackageDetails\",\n type: {\n name: \"Composite\",\n className: \"PackageCarrierInfo\"\n }\n }\n }\n }\n};\n\nexport const PackageCarrierInfo: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"PackageCarrierInfo\",\n modelProperties: {\n carrierName: {\n serializedName: \"carrierName\",\n type: {\n name: \"String\"\n }\n },\n trackingId: {\n serializedName: \"trackingId\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const AvailableSkuRequest: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"AvailableSkuRequest\",\n modelProperties: {\n transferType: {\n serializedName: \"transferType\",\n required: true,\n type: {\n name: \"Enum\",\n allowedValues: [\"ImportToAzure\", \"ExportFromAzure\"]\n }\n },\n country: {\n serializedName: \"country\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n location: {\n serializedName: \"location\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n skuNames: {\n serializedName: \"skuNames\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Enum\",\n allowedValues: [\n \"DataBox\",\n \"DataBoxDisk\",\n \"DataBoxHeavy\",\n \"DataBoxCustomerDisk\"\n ]\n }\n }\n }\n }\n }\n }\n};\n\nexport const AvailableSkusResult: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"AvailableSkusResult\",\n modelProperties: {\n value: {\n serializedName: \"value\",\n readOnly: true,\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"SkuInformation\"\n }\n }\n }\n },\n nextLink: {\n serializedName: \"nextLink\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const SkuInformation: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"SkuInformation\",\n modelProperties: {\n sku: {\n serializedName: \"sku\",\n type: {\n name: \"Composite\",\n className: \"Sku\"\n }\n },\n enabled: {\n serializedName: \"enabled\",\n readOnly: true,\n type: {\n name: \"Boolean\"\n }\n },\n dataLocationToServiceLocationMap: {\n serializedName: \"properties.dataLocationToServiceLocationMap\",\n readOnly: true,\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"DataLocationToServiceLocationMap\"\n }\n }\n }\n },\n capacity: {\n serializedName: \"properties.capacity\",\n type: {\n name: \"Composite\",\n className: \"SkuCapacity\"\n }\n },\n costs: {\n serializedName: \"properties.costs\",\n readOnly: true,\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"SkuCost\"\n }\n }\n }\n },\n apiVersions: {\n serializedName: \"properties.apiVersions\",\n readOnly: true,\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n },\n disabledReason: {\n serializedName: \"properties.disabledReason\",\n readOnly: true,\n type: {\n name: \"Enum\",\n allowedValues: [\n \"None\",\n \"Country\",\n \"Region\",\n \"Feature\",\n \"OfferType\",\n \"NoSubscriptionInfo\"\n ]\n }\n },\n disabledReasonMessage: {\n serializedName: \"properties.disabledReasonMessage\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n requiredFeature: {\n serializedName: \"properties.requiredFeature\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const DataLocationToServiceLocationMap: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"DataLocationToServiceLocationMap\",\n modelProperties: {\n dataLocation: {\n serializedName: \"dataLocation\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n serviceLocation: {\n serializedName: \"serviceLocation\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const SkuCapacity: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"SkuCapacity\",\n modelProperties: {\n usable: {\n serializedName: \"usable\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n maximum: {\n serializedName: \"maximum\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const SkuCost: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"SkuCost\",\n modelProperties: {\n meterId: {\n serializedName: \"meterId\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n meterType: {\n serializedName: \"meterType\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n multiplier: {\n serializedName: \"multiplier\",\n readOnly: true,\n type: {\n name: \"Number\"\n }\n }\n }\n }\n};\n\nexport const ValidationInputRequest: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ValidationInputRequest\",\n uberParent: \"ValidationInputRequest\",\n polymorphicDiscriminator: {\n serializedName: \"validationType\",\n clientName: \"validationType\"\n },\n modelProperties: {\n validationType: {\n serializedName: \"validationType\",\n required: true,\n type: {\n name: \"Enum\",\n allowedValues: [\n \"ValidateAddress\",\n \"ValidateSubscriptionIsAllowedToCreateJob\",\n \"ValidatePreferences\",\n \"ValidateCreateOrderLimit\",\n \"ValidateSkuAvailability\",\n \"ValidateDataTransferDetails\"\n ]\n }\n }\n }\n }\n};\n\nexport const AddressValidationOutput: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"AddressValidationOutput\",\n modelProperties: {\n validationType: {\n serializedName: \"properties.validationType\",\n type: {\n name: \"Enum\",\n allowedValues: [\n \"ValidateAddress\",\n \"ValidateSubscriptionIsAllowedToCreateJob\",\n \"ValidatePreferences\",\n \"ValidateCreateOrderLimit\",\n \"ValidateSkuAvailability\",\n \"ValidateDataTransferDetails\"\n ]\n }\n },\n error: {\n serializedName: \"properties.error\",\n type: {\n name: \"Composite\",\n className: \"CloudError\"\n }\n },\n validationStatus: {\n serializedName: \"properties.validationStatus\",\n readOnly: true,\n type: {\n name: \"Enum\",\n allowedValues: [\"Valid\", \"Invalid\", \"Ambiguous\"]\n }\n },\n alternateAddresses: {\n serializedName: \"properties.alternateAddresses\",\n readOnly: true,\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"ShippingAddress\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const ValidationInputResponse: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ValidationInputResponse\",\n uberParent: \"ValidationInputResponse\",\n polymorphicDiscriminator: {\n serializedName: \"validationType\",\n clientName: \"validationType\"\n },\n modelProperties: {\n validationType: {\n serializedName: \"validationType\",\n required: true,\n type: {\n name: \"Enum\",\n allowedValues: [\n \"ValidateAddress\",\n \"ValidateSubscriptionIsAllowedToCreateJob\",\n \"ValidatePreferences\",\n \"ValidateCreateOrderLimit\",\n \"ValidateSkuAvailability\",\n \"ValidateDataTransferDetails\"\n ]\n }\n },\n error: {\n serializedName: \"error\",\n type: {\n name: \"Composite\",\n className: \"CloudError\"\n }\n }\n }\n }\n};\n\nexport const ValidationRequest: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ValidationRequest\",\n uberParent: \"ValidationRequest\",\n polymorphicDiscriminator: {\n serializedName: \"validationCategory\",\n clientName: \"validationCategory\"\n },\n modelProperties: {\n validationCategory: {\n defaultValue: \"JobCreationValidation\",\n isConstant: true,\n serializedName: \"validationCategory\",\n type: {\n name: \"String\"\n }\n },\n individualRequestDetails: {\n serializedName: \"individualRequestDetails\",\n required: true,\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"ValidationInputRequest\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const ValidationResponse: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ValidationResponse\",\n modelProperties: {\n status: {\n serializedName: \"properties.status\",\n readOnly: true,\n type: {\n name: \"Enum\",\n allowedValues: [\n \"AllValidToProceed\",\n \"InputsRevisitRequired\",\n \"CertainInputValidationsSkipped\"\n ]\n }\n },\n individualResponseDetails: {\n serializedName: \"properties.individualResponseDetails\",\n readOnly: true,\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"ValidationInputResponse\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const JobResourceUpdateParameter: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"JobResourceUpdateParameter\",\n modelProperties: {\n tags: {\n serializedName: \"tags\",\n type: {\n name: \"Dictionary\",\n value: { type: { name: \"String\" } }\n }\n },\n identity: {\n serializedName: \"identity\",\n type: {\n name: \"Composite\",\n className: \"ResourceIdentity\"\n }\n },\n details: {\n serializedName: \"properties.details\",\n type: {\n name: \"Composite\",\n className: \"UpdateJobDetails\"\n }\n }\n }\n }\n};\n\nexport const UpdateJobDetails: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"UpdateJobDetails\",\n modelProperties: {\n contactDetails: {\n serializedName: \"contactDetails\",\n type: {\n name: \"Composite\",\n className: \"ContactDetails\"\n }\n },\n shippingAddress: {\n serializedName: \"shippingAddress\",\n type: {\n name: \"Composite\",\n className: \"ShippingAddress\"\n }\n },\n keyEncryptionKey: {\n serializedName: \"keyEncryptionKey\",\n type: {\n name: \"Composite\",\n className: \"KeyEncryptionKey\"\n }\n },\n returnToCustomerPackageDetails: {\n serializedName: \"returnToCustomerPackageDetails\",\n type: {\n name: \"Composite\",\n className: \"PackageCarrierDetails\"\n }\n }\n }\n }\n};\n\nexport const PackageCarrierDetails: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"PackageCarrierDetails\",\n modelProperties: {\n carrierAccountNumber: {\n serializedName: \"carrierAccountNumber\",\n type: {\n name: \"String\"\n }\n },\n carrierName: {\n serializedName: \"carrierName\",\n type: {\n name: \"String\"\n }\n },\n trackingId: {\n serializedName: \"trackingId\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const ShipmentPickUpRequest: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ShipmentPickUpRequest\",\n modelProperties: {\n startTime: {\n serializedName: \"startTime\",\n required: true,\n type: {\n name: \"DateTime\"\n }\n },\n endTime: {\n serializedName: \"endTime\",\n required: true,\n type: {\n name: \"DateTime\"\n }\n },\n shipmentLocation: {\n serializedName: \"shipmentLocation\",\n required: true,\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const ShipmentPickUpResponse: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ShipmentPickUpResponse\",\n modelProperties: {\n confirmationNumber: {\n serializedName: \"confirmationNumber\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n readyByTime: {\n serializedName: \"readyByTime\",\n readOnly: true,\n type: {\n name: \"DateTime\"\n }\n }\n }\n }\n};\n\nexport const CancellationReason: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"CancellationReason\",\n modelProperties: {\n reason: {\n serializedName: \"reason\",\n required: true,\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const UnencryptedCredentialsList: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"UnencryptedCredentialsList\",\n modelProperties: {\n value: {\n serializedName: \"value\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"UnencryptedCredentials\"\n }\n }\n }\n },\n nextLink: {\n serializedName: \"nextLink\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const UnencryptedCredentials: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"UnencryptedCredentials\",\n modelProperties: {\n jobName: {\n serializedName: \"jobName\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n jobSecrets: {\n serializedName: \"jobSecrets\",\n type: {\n name: \"Composite\",\n className: \"JobSecrets\"\n }\n }\n }\n }\n};\n\nexport const JobSecrets: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"JobSecrets\",\n uberParent: \"JobSecrets\",\n polymorphicDiscriminator: {\n serializedName: \"jobSecretsType\",\n clientName: \"jobSecretsType\"\n },\n modelProperties: {\n jobSecretsType: {\n serializedName: \"jobSecretsType\",\n required: true,\n type: {\n name: \"Enum\",\n allowedValues: [\n \"DataBox\",\n \"DataBoxDisk\",\n \"DataBoxHeavy\",\n \"DataBoxCustomerDisk\"\n ]\n }\n },\n dcAccessSecurityCode: {\n serializedName: \"dcAccessSecurityCode\",\n type: {\n name: \"Composite\",\n className: \"DcAccessSecurityCode\"\n }\n },\n error: {\n serializedName: \"error\",\n type: {\n name: \"Composite\",\n className: \"CloudError\"\n }\n }\n }\n }\n};\n\nexport const DcAccessSecurityCode: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"DcAccessSecurityCode\",\n modelProperties: {\n reverseDCAccessCode: {\n serializedName: \"reverseDCAccessCode\",\n type: {\n name: \"String\"\n }\n },\n forwardDCAccessCode: {\n serializedName: \"forwardDCAccessCode\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const RegionConfigurationRequest: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"RegionConfigurationRequest\",\n modelProperties: {\n scheduleAvailabilityRequest: {\n serializedName: \"scheduleAvailabilityRequest\",\n type: {\n name: \"Composite\",\n className: \"ScheduleAvailabilityRequest\"\n }\n },\n transportAvailabilityRequest: {\n serializedName: \"transportAvailabilityRequest\",\n type: {\n name: \"Composite\",\n className: \"TransportAvailabilityRequest\"\n }\n },\n datacenterAddressRequest: {\n serializedName: \"datacenterAddressRequest\",\n type: {\n name: \"Composite\",\n className: \"DatacenterAddressRequest\"\n }\n }\n }\n }\n};\n\nexport const ScheduleAvailabilityRequest: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ScheduleAvailabilityRequest\",\n uberParent: \"ScheduleAvailabilityRequest\",\n polymorphicDiscriminator: {\n serializedName: \"skuName\",\n clientName: \"skuName\"\n },\n modelProperties: {\n storageLocation: {\n serializedName: \"storageLocation\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n skuName: {\n serializedName: \"skuName\",\n required: true,\n type: {\n name: \"Enum\",\n allowedValues: [\n \"DataBox\",\n \"DataBoxDisk\",\n \"DataBoxHeavy\",\n \"DataBoxCustomerDisk\"\n ]\n }\n },\n country: {\n serializedName: \"country\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const TransportAvailabilityRequest: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"TransportAvailabilityRequest\",\n modelProperties: {\n skuName: {\n serializedName: \"skuName\",\n type: {\n name: \"Enum\",\n allowedValues: [\n \"DataBox\",\n \"DataBoxDisk\",\n \"DataBoxHeavy\",\n \"DataBoxCustomerDisk\"\n ]\n }\n }\n }\n }\n};\n\nexport const DatacenterAddressRequest: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"DatacenterAddressRequest\",\n modelProperties: {\n storageLocation: {\n serializedName: \"storageLocation\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n skuName: {\n serializedName: \"skuName\",\n required: true,\n type: {\n name: \"Enum\",\n allowedValues: [\n \"DataBox\",\n \"DataBoxDisk\",\n \"DataBoxHeavy\",\n \"DataBoxCustomerDisk\"\n ]\n }\n }\n }\n }\n};\n\nexport const RegionConfigurationResponse: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"RegionConfigurationResponse\",\n modelProperties: {\n scheduleAvailabilityResponse: {\n serializedName: \"scheduleAvailabilityResponse\",\n type: {\n name: \"Composite\",\n className: \"ScheduleAvailabilityResponse\"\n }\n },\n transportAvailabilityResponse: {\n serializedName: \"transportAvailabilityResponse\",\n type: {\n name: \"Composite\",\n className: \"TransportAvailabilityResponse\"\n }\n },\n datacenterAddressResponse: {\n serializedName: \"datacenterAddressResponse\",\n type: {\n name: \"Composite\",\n className: \"DatacenterAddressResponse\"\n }\n }\n }\n }\n};\n\nexport const ScheduleAvailabilityResponse: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ScheduleAvailabilityResponse\",\n modelProperties: {\n availableDates: {\n serializedName: \"availableDates\",\n readOnly: true,\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"DateTime\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const TransportAvailabilityResponse: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"TransportAvailabilityResponse\",\n modelProperties: {\n transportAvailabilityDetails: {\n serializedName: \"transportAvailabilityDetails\",\n readOnly: true,\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"TransportAvailabilityDetails\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const TransportAvailabilityDetails: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"TransportAvailabilityDetails\",\n modelProperties: {\n shipmentType: {\n serializedName: \"shipmentType\",\n readOnly: true,\n type: {\n name: \"Enum\",\n allowedValues: [\"CustomerManaged\", \"MicrosoftManaged\"]\n }\n }\n }\n }\n};\n\nexport const AccountCredentialDetails: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"AccountCredentialDetails\",\n modelProperties: {\n accountName: {\n serializedName: \"accountName\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n dataAccountType: {\n serializedName: \"dataAccountType\",\n readOnly: true,\n type: {\n name: \"Enum\",\n allowedValues: [\"StorageAccount\", \"ManagedDisk\"]\n }\n },\n accountConnectionString: {\n serializedName: \"accountConnectionString\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n shareCredentialDetails: {\n serializedName: \"shareCredentialDetails\",\n readOnly: true,\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"ShareCredentialDetails\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const ShareCredentialDetails: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ShareCredentialDetails\",\n modelProperties: {\n shareName: {\n serializedName: \"shareName\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n shareType: {\n serializedName: \"shareType\",\n readOnly: true,\n type: {\n name: \"Enum\",\n allowedValues: [\n \"UnknownType\",\n \"HCS\",\n \"BlockBlob\",\n \"PageBlob\",\n \"AzureFile\",\n \"ManagedDisk\"\n ]\n }\n },\n userName: {\n serializedName: \"userName\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n password: {\n serializedName: \"password\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n supportedAccessProtocols: {\n serializedName: \"supportedAccessProtocols\",\n readOnly: true,\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Enum\",\n allowedValues: [\"SMB\", \"NFS\"]\n }\n }\n }\n }\n }\n }\n};\n\nexport const ApplianceNetworkConfiguration: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ApplianceNetworkConfiguration\",\n modelProperties: {\n name: {\n serializedName: \"name\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n macAddress: {\n serializedName: \"macAddress\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const ArmBaseObject: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ArmBaseObject\",\n modelProperties: {\n name: {\n serializedName: \"name\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n id: {\n serializedName: \"id\",\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 }\n }\n};\n\nexport const CopyProgress: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"CopyProgress\",\n modelProperties: {\n storageAccountName: {\n serializedName: \"storageAccountName\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n transferType: {\n serializedName: \"transferType\",\n readOnly: true,\n type: {\n name: \"Enum\",\n allowedValues: [\"ImportToAzure\", \"ExportFromAzure\"]\n }\n },\n dataAccountType: {\n serializedName: \"dataAccountType\",\n readOnly: true,\n type: {\n name: \"Enum\",\n allowedValues: [\"StorageAccount\", \"ManagedDisk\"]\n }\n },\n accountId: {\n serializedName: \"accountId\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n bytesProcessed: {\n serializedName: \"bytesProcessed\",\n readOnly: true,\n type: {\n name: \"Number\"\n }\n },\n totalBytesToProcess: {\n serializedName: \"totalBytesToProcess\",\n readOnly: true,\n type: {\n name: \"Number\"\n }\n },\n filesProcessed: {\n serializedName: \"filesProcessed\",\n readOnly: true,\n type: {\n name: \"Number\"\n }\n },\n totalFilesToProcess: {\n serializedName: \"totalFilesToProcess\",\n readOnly: true,\n type: {\n name: \"Number\"\n }\n },\n invalidFilesProcessed: {\n serializedName: \"invalidFilesProcessed\",\n readOnly: true,\n type: {\n name: \"Number\"\n }\n },\n invalidFileBytesUploaded: {\n serializedName: \"invalidFileBytesUploaded\",\n readOnly: true,\n type: {\n name: \"Number\"\n }\n },\n renamedContainerCount: {\n serializedName: \"renamedContainerCount\",\n readOnly: true,\n type: {\n name: \"Number\"\n }\n },\n filesErroredOut: {\n serializedName: \"filesErroredOut\",\n readOnly: true,\n type: {\n name: \"Number\"\n }\n },\n directoriesErroredOut: {\n serializedName: \"directoriesErroredOut\",\n readOnly: true,\n type: {\n name: \"Number\"\n }\n },\n invalidDirectoriesProcessed: {\n serializedName: \"invalidDirectoriesProcessed\",\n readOnly: true,\n type: {\n name: \"Number\"\n }\n },\n isEnumerationInProgress: {\n serializedName: \"isEnumerationInProgress\",\n readOnly: true,\n type: {\n name: \"Boolean\"\n }\n }\n }\n }\n};\n\nexport const ImportDiskDetails: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ImportDiskDetails\",\n modelProperties: {\n manifestFile: {\n serializedName: \"manifestFile\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n manifestHash: {\n serializedName: \"manifestHash\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n bitLockerKey: {\n serializedName: \"bitLockerKey\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n backupManifestCloudPath: {\n serializedName: \"backupManifestCloudPath\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const ExportDiskDetails: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ExportDiskDetails\",\n modelProperties: {\n manifestFile: {\n serializedName: \"manifestFile\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n manifestHash: {\n serializedName: \"manifestHash\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n backupManifestCloudPath: {\n serializedName: \"backupManifestCloudPath\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const DiskSecret: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"DiskSecret\",\n modelProperties: {\n diskSerialNumber: {\n serializedName: \"diskSerialNumber\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n bitLockerKey: {\n serializedName: \"bitLockerKey\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const DataBoxDiskCopyProgress: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"DataBoxDiskCopyProgress\",\n modelProperties: {\n serialNumber: {\n serializedName: \"serialNumber\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n bytesCopied: {\n serializedName: \"bytesCopied\",\n readOnly: true,\n type: {\n name: \"Number\"\n }\n },\n percentComplete: {\n serializedName: \"percentComplete\",\n readOnly: true,\n type: {\n name: \"Number\"\n }\n },\n status: {\n serializedName: \"status\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const DataBoxHeavySecret: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"DataBoxHeavySecret\",\n modelProperties: {\n deviceSerialNumber: {\n serializedName: \"deviceSerialNumber\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n devicePassword: {\n serializedName: \"devicePassword\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n networkConfigurations: {\n serializedName: \"networkConfigurations\",\n readOnly: true,\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"ApplianceNetworkConfiguration\"\n }\n }\n }\n },\n encodedValidationCertPubKey: {\n serializedName: \"encodedValidationCertPubKey\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n accountCredentialDetails: {\n serializedName: \"accountCredentialDetails\",\n readOnly: true,\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"AccountCredentialDetails\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const DataBoxSecret: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"DataBoxSecret\",\n modelProperties: {\n deviceSerialNumber: {\n serializedName: \"deviceSerialNumber\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n devicePassword: {\n serializedName: \"devicePassword\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n networkConfigurations: {\n serializedName: \"networkConfigurations\",\n readOnly: true,\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"ApplianceNetworkConfiguration\"\n }\n }\n }\n },\n encodedValidationCertPubKey: {\n serializedName: \"encodedValidationCertPubKey\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n accountCredentialDetails: {\n serializedName: \"accountCredentialDetails\",\n readOnly: true,\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"AccountCredentialDetails\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const DataBoxCustomerDiskJobDetails: coreClient.CompositeMapper = {\n serializedName: \"DataBoxCustomerDisk\",\n type: {\n name: \"Composite\",\n className: \"DataBoxCustomerDiskJobDetails\",\n uberParent: \"JobDetails\",\n polymorphicDiscriminator: JobDetails.type.polymorphicDiscriminator,\n modelProperties: {\n ...JobDetails.type.modelProperties,\n importDiskDetailsCollection: {\n serializedName: \"importDiskDetailsCollection\",\n type: {\n name: \"Dictionary\",\n value: { type: { name: \"Composite\", className: \"ImportDiskDetails\" } }\n }\n },\n exportDiskDetailsCollection: {\n serializedName: \"exportDiskDetailsCollection\",\n readOnly: true,\n type: {\n name: \"Dictionary\",\n value: { type: { name: \"Composite\", className: \"ExportDiskDetails\" } }\n }\n },\n copyProgress: {\n serializedName: \"copyProgress\",\n readOnly: true,\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"DataBoxCustomerDiskCopyProgress\"\n }\n }\n }\n },\n deliverToDcPackageDetails: {\n serializedName: \"deliverToDcPackageDetails\",\n type: {\n name: \"Composite\",\n className: \"PackageCarrierInfo\"\n }\n },\n returnToCustomerPackageDetails: {\n serializedName: \"returnToCustomerPackageDetails\",\n type: {\n name: \"Composite\",\n className: \"PackageCarrierDetails\"\n }\n },\n enableManifestBackup: {\n defaultValue: false,\n serializedName: \"enableManifestBackup\",\n type: {\n name: \"Boolean\"\n }\n }\n }\n }\n};\n\nexport const DataBoxDiskJobDetails: coreClient.CompositeMapper = {\n serializedName: \"DataBoxDisk\",\n type: {\n name: \"Composite\",\n className: \"DataBoxDiskJobDetails\",\n uberParent: \"JobDetails\",\n polymorphicDiscriminator: JobDetails.type.polymorphicDiscriminator,\n modelProperties: {\n ...JobDetails.type.modelProperties,\n preferredDisks: {\n serializedName: \"preferredDisks\",\n type: {\n name: \"Dictionary\",\n value: { type: { name: \"Number\" } }\n }\n },\n copyProgress: {\n serializedName: \"copyProgress\",\n readOnly: true,\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"DataBoxDiskCopyProgress\"\n }\n }\n }\n },\n disksAndSizeDetails: {\n serializedName: \"disksAndSizeDetails\",\n readOnly: true,\n type: {\n name: \"Dictionary\",\n value: { type: { name: \"Number\" } }\n }\n },\n passkey: {\n serializedName: \"passkey\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const DataBoxHeavyJobDetails: coreClient.CompositeMapper = {\n serializedName: \"DataBoxHeavy\",\n type: {\n name: \"Composite\",\n className: \"DataBoxHeavyJobDetails\",\n uberParent: \"JobDetails\",\n polymorphicDiscriminator: JobDetails.type.polymorphicDiscriminator,\n modelProperties: {\n ...JobDetails.type.modelProperties,\n copyProgress: {\n serializedName: \"copyProgress\",\n readOnly: true,\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"CopyProgress\"\n }\n }\n }\n },\n devicePassword: {\n serializedName: \"devicePassword\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const DataBoxJobDetails: coreClient.CompositeMapper = {\n serializedName: \"DataBox\",\n type: {\n name: \"Composite\",\n className: \"DataBoxJobDetails\",\n uberParent: \"JobDetails\",\n polymorphicDiscriminator: JobDetails.type.polymorphicDiscriminator,\n modelProperties: {\n ...JobDetails.type.modelProperties,\n copyProgress: {\n serializedName: \"copyProgress\",\n readOnly: true,\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"CopyProgress\"\n }\n }\n }\n },\n devicePassword: {\n serializedName: \"devicePassword\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const ManagedDiskDetails: coreClient.CompositeMapper = {\n serializedName: \"ManagedDisk\",\n type: {\n name: \"Composite\",\n className: \"ManagedDiskDetails\",\n uberParent: \"DataAccountDetails\",\n polymorphicDiscriminator: DataAccountDetails.type.polymorphicDiscriminator,\n modelProperties: {\n ...DataAccountDetails.type.modelProperties,\n resourceGroupId: {\n serializedName: \"resourceGroupId\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n stagingStorageAccountId: {\n serializedName: \"stagingStorageAccountId\",\n required: true,\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const StorageAccountDetails: coreClient.CompositeMapper = {\n serializedName: \"StorageAccount\",\n type: {\n name: \"Composite\",\n className: \"StorageAccountDetails\",\n uberParent: \"DataAccountDetails\",\n polymorphicDiscriminator: DataAccountDetails.type.polymorphicDiscriminator,\n modelProperties: {\n ...DataAccountDetails.type.modelProperties,\n storageAccountId: {\n serializedName: \"storageAccountId\",\n required: true,\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const DataBoxAccountCopyLogDetails: coreClient.CompositeMapper = {\n serializedName: \"DataBox\",\n type: {\n name: \"Composite\",\n className: \"DataBoxAccountCopyLogDetails\",\n uberParent: \"CopyLogDetails\",\n polymorphicDiscriminator: CopyLogDetails.type.polymorphicDiscriminator,\n modelProperties: {\n ...CopyLogDetails.type.modelProperties,\n accountName: {\n serializedName: \"accountName\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n copyLogLink: {\n serializedName: \"copyLogLink\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n copyVerboseLogLink: {\n serializedName: \"copyVerboseLogLink\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const DataBoxCustomerDiskCopyLogDetails: coreClient.CompositeMapper = {\n serializedName: \"DataBoxCustomerDisk\",\n type: {\n name: \"Composite\",\n className: \"DataBoxCustomerDiskCopyLogDetails\",\n uberParent: \"CopyLogDetails\",\n polymorphicDiscriminator: CopyLogDetails.type.polymorphicDiscriminator,\n modelProperties: {\n ...CopyLogDetails.type.modelProperties,\n serialNumber: {\n serializedName: \"serialNumber\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n errorLogLink: {\n serializedName: \"errorLogLink\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n verboseLogLink: {\n serializedName: \"verboseLogLink\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const DataBoxDiskCopyLogDetails: coreClient.CompositeMapper = {\n serializedName: \"DataBoxDisk\",\n type: {\n name: \"Composite\",\n className: \"DataBoxDiskCopyLogDetails\",\n uberParent: \"CopyLogDetails\",\n polymorphicDiscriminator: CopyLogDetails.type.polymorphicDiscriminator,\n modelProperties: {\n ...CopyLogDetails.type.modelProperties,\n diskSerialNumber: {\n serializedName: \"diskSerialNumber\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n errorLogLink: {\n serializedName: \"errorLogLink\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n verboseLogLink: {\n serializedName: \"verboseLogLink\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const DataBoxHeavyAccountCopyLogDetails: coreClient.CompositeMapper = {\n serializedName: \"DataBoxHeavy\",\n type: {\n name: \"Composite\",\n className: \"DataBoxHeavyAccountCopyLogDetails\",\n uberParent: \"CopyLogDetails\",\n polymorphicDiscriminator: CopyLogDetails.type.polymorphicDiscriminator,\n modelProperties: {\n ...CopyLogDetails.type.modelProperties,\n accountName: {\n serializedName: \"accountName\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n copyLogLink: {\n serializedName: \"copyLogLink\",\n readOnly: true,\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n },\n copyVerboseLogLink: {\n serializedName: \"copyVerboseLogLink\",\n readOnly: true,\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const DatacenterAddressInstructionResponse: coreClient.CompositeMapper = {\n serializedName: \"DatacenterAddressInstruction\",\n type: {\n name: \"Composite\",\n className: \"DatacenterAddressInstructionResponse\",\n uberParent: \"DatacenterAddressResponse\",\n polymorphicDiscriminator:\n DatacenterAddressResponse.type.polymorphicDiscriminator,\n modelProperties: {\n ...DatacenterAddressResponse.type.modelProperties,\n communicationInstruction: {\n serializedName: \"communicationInstruction\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const DatacenterAddressLocationResponse: coreClient.CompositeMapper = {\n serializedName: \"DatacenterAddressLocation\",\n type: {\n name: \"Composite\",\n className: \"DatacenterAddressLocationResponse\",\n uberParent: \"DatacenterAddressResponse\",\n polymorphicDiscriminator:\n DatacenterAddressResponse.type.polymorphicDiscriminator,\n modelProperties: {\n ...DatacenterAddressResponse.type.modelProperties,\n contactPersonName: {\n serializedName: \"contactPersonName\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n company: {\n serializedName: \"company\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n street1: {\n serializedName: \"street1\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n street2: {\n serializedName: \"street2\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n street3: {\n serializedName: \"street3\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n city: {\n serializedName: \"city\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n state: {\n serializedName: \"state\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n zip: {\n serializedName: \"zip\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n country: {\n serializedName: \"country\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n phone: {\n serializedName: \"phone\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n phoneExtension: {\n serializedName: \"phoneExtension\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n addressType: {\n serializedName: \"addressType\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n additionalShippingInformation: {\n serializedName: \"additionalShippingInformation\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const JobResource: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"JobResource\",\n modelProperties: {\n ...Resource.type.modelProperties,\n name: {\n serializedName: \"name\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n id: {\n serializedName: \"id\",\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 systemData: {\n serializedName: \"systemData\",\n type: {\n name: \"Composite\",\n className: \"SystemData\"\n }\n },\n transferType: {\n serializedName: \"properties.transferType\",\n required: true,\n type: {\n name: \"Enum\",\n allowedValues: [\"ImportToAzure\", \"ExportFromAzure\"]\n }\n },\n isCancellable: {\n serializedName: \"properties.isCancellable\",\n readOnly: true,\n type: {\n name: \"Boolean\"\n }\n },\n isDeletable: {\n serializedName: \"properties.isDeletable\",\n readOnly: true,\n type: {\n name: \"Boolean\"\n }\n },\n isShippingAddressEditable: {\n serializedName: \"properties.isShippingAddressEditable\",\n readOnly: true,\n type: {\n name: \"Boolean\"\n }\n },\n isPrepareToShipEnabled: {\n serializedName: \"properties.isPrepareToShipEnabled\",\n readOnly: true,\n type: {\n name: \"Boolean\"\n }\n },\n status: {\n serializedName: \"properties.status\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n startTime: {\n serializedName: \"properties.startTime\",\n readOnly: true,\n type: {\n name: \"DateTime\"\n }\n },\n error: {\n serializedName: \"properties.error\",\n type: {\n name: \"Composite\",\n className: \"CloudError\"\n }\n },\n details: {\n serializedName: \"properties.details\",\n type: {\n name: \"Composite\",\n className: \"JobDetails\"\n }\n },\n cancellationReason: {\n serializedName: \"properties.cancellationReason\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n deliveryType: {\n defaultValue: \"NonScheduled\",\n serializedName: \"properties.deliveryType\",\n type: {\n name: \"Enum\",\n allowedValues: [\"NonScheduled\", \"Scheduled\"]\n }\n },\n deliveryInfo: {\n serializedName: \"properties.deliveryInfo\",\n type: {\n name: \"Composite\",\n className: \"JobDeliveryInfo\"\n }\n },\n isCancellableWithoutFee: {\n serializedName: \"properties.isCancellableWithoutFee\",\n readOnly: true,\n type: {\n name: \"Boolean\"\n }\n }\n }\n }\n};\n\nexport const ValidateAddress: coreClient.CompositeMapper = {\n serializedName: \"ValidateAddress\",\n type: {\n name: \"Composite\",\n className: \"ValidateAddress\",\n uberParent: \"ValidationInputRequest\",\n polymorphicDiscriminator:\n ValidationInputRequest.type.polymorphicDiscriminator,\n modelProperties: {\n ...ValidationInputRequest.type.modelProperties,\n shippingAddress: {\n serializedName: \"shippingAddress\",\n type: {\n name: \"Composite\",\n className: \"ShippingAddress\"\n }\n },\n deviceType: {\n serializedName: \"deviceType\",\n required: true,\n type: {\n name: \"Enum\",\n allowedValues: [\n \"DataBox\",\n \"DataBoxDisk\",\n \"DataBoxHeavy\",\n \"DataBoxCustomerDisk\"\n ]\n }\n },\n transportPreferences: {\n serializedName: \"transportPreferences\",\n type: {\n name: \"Composite\",\n className: \"TransportPreferences\"\n }\n }\n }\n }\n};\n\nexport const CreateOrderLimitForSubscriptionValidationRequest: coreClient.CompositeMapper = {\n serializedName: \"ValidateCreateOrderLimit\",\n type: {\n name: \"Composite\",\n className: \"CreateOrderLimitForSubscriptionValidationRequest\",\n uberParent: \"ValidationInputRequest\",\n polymorphicDiscriminator:\n ValidationInputRequest.type.polymorphicDiscriminator,\n modelProperties: {\n ...ValidationInputRequest.type.modelProperties,\n deviceType: {\n serializedName: \"deviceType\",\n required: true,\n type: {\n name: \"Enum\",\n allowedValues: [\n \"DataBox\",\n \"DataBoxDisk\",\n \"DataBoxHeavy\",\n \"DataBoxCustomerDisk\"\n ]\n }\n }\n }\n }\n};\n\nexport const DataTransferDetailsValidationRequest: coreClient.CompositeMapper = {\n serializedName: \"ValidateDataTransferDetails\",\n type: {\n name: \"Composite\",\n className: \"DataTransferDetailsValidationRequest\",\n uberParent: \"ValidationInputRequest\",\n polymorphicDiscriminator:\n ValidationInputRequest.type.polymorphicDiscriminator,\n modelProperties: {\n ...ValidationInputRequest.type.modelProperties,\n dataExportDetails: {\n serializedName: \"dataExportDetails\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"DataExportDetails\"\n }\n }\n }\n },\n dataImportDetails: {\n serializedName: \"dataImportDetails\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"DataImportDetails\"\n }\n }\n }\n },\n deviceType: {\n serializedName: \"deviceType\",\n required: true,\n type: {\n name: \"Enum\",\n allowedValues: [\n \"DataBox\",\n \"DataBoxDisk\",\n \"DataBoxHeavy\",\n \"DataBoxCustomerDisk\"\n ]\n }\n },\n transferType: {\n serializedName: \"transferType\",\n required: true,\n type: {\n name: \"Enum\",\n allowedValues: [\"ImportToAzure\", \"ExportFromAzure\"]\n }\n }\n }\n }\n};\n\nexport const PreferencesValidationRequest: coreClient.CompositeMapper = {\n serializedName: \"ValidatePreferences\",\n type: {\n name: \"Composite\",\n className: \"PreferencesValidationRequest\",\n uberParent: \"ValidationInputRequest\",\n polymorphicDiscriminator:\n ValidationInputRequest.type.polymorphicDiscriminator,\n modelProperties: {\n ...ValidationInputRequest.type.modelProperties,\n preference: {\n serializedName: \"preference\",\n type: {\n name: \"Composite\",\n className: \"Preferences\"\n }\n },\n deviceType: {\n serializedName: \"deviceType\",\n required: true,\n type: {\n name: \"Enum\",\n allowedValues: [\n \"DataBox\",\n \"DataBoxDisk\",\n \"DataBoxHeavy\",\n \"DataBoxCustomerDisk\"\n ]\n }\n }\n }\n }\n};\n\nexport const SkuAvailabilityValidationRequest: coreClient.CompositeMapper = {\n serializedName: \"ValidateSkuAvailability\",\n type: {\n name: \"Composite\",\n className: \"SkuAvailabilityValidationRequest\",\n uberParent: \"ValidationInputRequest\",\n polymorphicDiscriminator:\n ValidationInputRequest.type.polymorphicDiscriminator,\n modelProperties: {\n ...ValidationInputRequest.type.modelProperties,\n deviceType: {\n serializedName: \"deviceType\",\n required: true,\n type: {\n name: \"Enum\",\n allowedValues: [\n \"DataBox\",\n \"DataBoxDisk\",\n \"DataBoxHeavy\",\n \"DataBoxCustomerDisk\"\n ]\n }\n },\n transferType: {\n serializedName: \"transferType\",\n required: true,\n type: {\n name: \"Enum\",\n allowedValues: [\"ImportToAzure\", \"ExportFromAzure\"]\n }\n },\n country: {\n serializedName: \"country\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n location: {\n serializedName: \"location\",\n required: true,\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const SubscriptionIsAllowedToCreateJobValidationRequest: coreClient.CompositeMapper = {\n serializedName: \"ValidateSubscriptionIsAllowedToCreateJob\",\n type: {\n name: \"Composite\",\n className: \"SubscriptionIsAllowedToCreateJobValidationRequest\",\n uberParent: \"ValidationInputRequest\",\n polymorphicDiscriminator:\n ValidationInputRequest.type.polymorphicDiscriminator,\n modelProperties: {\n ...ValidationInputRequest.type.modelProperties\n }\n }\n};\n\nexport const AddressValidationProperties: coreClient.CompositeMapper = {\n serializedName: \"ValidateAddress\",\n type: {\n name: \"Composite\",\n className: \"AddressValidationProperties\",\n uberParent: \"ValidationInputResponse\",\n polymorphicDiscriminator:\n ValidationInputResponse.type.polymorphicDiscriminator,\n modelProperties: {\n ...ValidationInputResponse.type.modelProperties,\n validationStatus: {\n serializedName: \"validationStatus\",\n readOnly: true,\n type: {\n name: \"Enum\",\n allowedValues: [\"Valid\", \"Invalid\", \"Ambiguous\"]\n }\n },\n alternateAddresses: {\n serializedName: \"alternateAddresses\",\n readOnly: true,\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"ShippingAddress\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const CreateOrderLimitForSubscriptionValidationResponseProperties: coreClient.CompositeMapper = {\n serializedName: \"ValidateCreateOrderLimit\",\n type: {\n name: \"Composite\",\n className: \"CreateOrderLimitForSubscriptionValidationResponseProperties\",\n uberParent: \"ValidationInputResponse\",\n polymorphicDiscriminator:\n ValidationInputResponse.type.polymorphicDiscriminator,\n modelProperties: {\n ...ValidationInputResponse.type.modelProperties,\n status: {\n serializedName: \"status\",\n readOnly: true,\n type: {\n name: \"Enum\",\n allowedValues: [\"Valid\", \"Invalid\", \"Skipped\"]\n }\n }\n }\n }\n};\n\nexport const DataTransferDetailsValidationResponseProperties: coreClient.CompositeMapper = {\n serializedName: \"ValidateDataTransferDetails\",\n type: {\n name: \"Composite\",\n className: \"DataTransferDetailsValidationResponseProperties\",\n uberParent: \"ValidationInputResponse\",\n polymorphicDiscriminator:\n ValidationInputResponse.type.polymorphicDiscriminator,\n modelProperties: {\n ...ValidationInputResponse.type.modelProperties,\n status: {\n serializedName: \"status\",\n readOnly: true,\n type: {\n name: \"Enum\",\n allowedValues: [\"Valid\", \"Invalid\", \"Skipped\"]\n }\n }\n }\n }\n};\n\nexport const PreferencesValidationResponseProperties: coreClient.CompositeMapper = {\n serializedName: \"ValidatePreferences\",\n type: {\n name: \"Composite\",\n className: \"PreferencesValidationResponseProperties\",\n uberParent: \"ValidationInputResponse\",\n polymorphicDiscriminator:\n ValidationInputResponse.type.polymorphicDiscriminator,\n modelProperties: {\n ...ValidationInputResponse.type.modelProperties,\n status: {\n serializedName: \"status\",\n readOnly: true,\n type: {\n name: \"Enum\",\n allowedValues: [\"Valid\", \"Invalid\", \"Skipped\"]\n }\n }\n }\n }\n};\n\nexport const SkuAvailabilityValidationResponseProperties: coreClient.CompositeMapper = {\n serializedName: \"ValidateSkuAvailability\",\n type: {\n name: \"Composite\",\n className: \"SkuAvailabilityValidationResponseProperties\",\n uberParent: \"ValidationInputResponse\",\n polymorphicDiscriminator:\n ValidationInputResponse.type.polymorphicDiscriminator,\n modelProperties: {\n ...ValidationInputResponse.type.modelProperties,\n status: {\n serializedName: \"status\",\n readOnly: true,\n type: {\n name: \"Enum\",\n allowedValues: [\"Valid\", \"Invalid\", \"Skipped\"]\n }\n }\n }\n }\n};\n\nexport const SubscriptionIsAllowedToCreateJobValidationResponseProperties: coreClient.CompositeMapper = {\n serializedName: \"ValidateSubscriptionIsAllowedToCreateJob\",\n type: {\n name: \"Composite\",\n className: \"SubscriptionIsAllowedToCreateJobValidationResponseProperties\",\n uberParent: \"ValidationInputResponse\",\n polymorphicDiscriminator:\n ValidationInputResponse.type.polymorphicDiscriminator,\n modelProperties: {\n ...ValidationInputResponse.type.modelProperties,\n status: {\n serializedName: \"status\",\n readOnly: true,\n type: {\n name: \"Enum\",\n allowedValues: [\"Valid\", \"Invalid\", \"Skipped\"]\n }\n }\n }\n }\n};\n\nexport const CreateJobValidations: coreClient.CompositeMapper = {\n serializedName: \"JobCreationValidation\",\n type: {\n name: \"Composite\",\n className: \"CreateJobValidations\",\n uberParent: \"ValidationRequest\",\n polymorphicDiscriminator: ValidationRequest.type.polymorphicDiscriminator,\n modelProperties: {\n ...ValidationRequest.type.modelProperties\n }\n }\n};\n\nexport const CustomerDiskJobSecrets: coreClient.CompositeMapper = {\n serializedName: \"DataBoxCustomerDisk\",\n type: {\n name: \"Composite\",\n className: \"CustomerDiskJobSecrets\",\n uberParent: \"JobSecrets\",\n polymorphicDiscriminator: JobSecrets.type.polymorphicDiscriminator,\n modelProperties: {\n ...JobSecrets.type.modelProperties,\n diskSecrets: {\n serializedName: \"diskSecrets\",\n readOnly: true,\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"DiskSecret\"\n }\n }\n }\n },\n carrierAccountNumber: {\n serializedName: \"carrierAccountNumber\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const DataBoxDiskJobSecrets: coreClient.CompositeMapper = {\n serializedName: \"DataBoxDisk\",\n type: {\n name: \"Composite\",\n className: \"DataBoxDiskJobSecrets\",\n uberParent: \"JobSecrets\",\n polymorphicDiscriminator: JobSecrets.type.polymorphicDiscriminator,\n modelProperties: {\n ...JobSecrets.type.modelProperties,\n diskSecrets: {\n serializedName: \"diskSecrets\",\n readOnly: true,\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"DiskSecret\"\n }\n }\n }\n },\n passKey: {\n serializedName: \"passKey\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n isPasskeyUserDefined: {\n serializedName: \"isPasskeyUserDefined\",\n readOnly: true,\n type: {\n name: \"Boolean\"\n }\n }\n }\n }\n};\n\nexport const DataBoxHeavyJobSecrets: coreClient.CompositeMapper = {\n serializedName: \"DataBoxHeavy\",\n type: {\n name: \"Composite\",\n className: \"DataBoxHeavyJobSecrets\",\n uberParent: \"JobSecrets\",\n polymorphicDiscriminator: JobSecrets.type.polymorphicDiscriminator,\n modelProperties: {\n ...JobSecrets.type.modelProperties,\n cabinetPodSecrets: {\n serializedName: \"cabinetPodSecrets\",\n readOnly: true,\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"DataBoxHeavySecret\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const DataboxJobSecrets: coreClient.CompositeMapper = {\n serializedName: \"DataBox\",\n type: {\n name: \"Composite\",\n className: \"DataboxJobSecrets\",\n uberParent: \"JobSecrets\",\n polymorphicDiscriminator: JobSecrets.type.polymorphicDiscriminator,\n modelProperties: {\n ...JobSecrets.type.modelProperties,\n podSecrets: {\n serializedName: \"podSecrets\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"DataBoxSecret\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const DataBoxScheduleAvailabilityRequest: coreClient.CompositeMapper = {\n serializedName: \"DataBox\",\n type: {\n name: \"Composite\",\n className: \"DataBoxScheduleAvailabilityRequest\",\n uberParent: \"ScheduleAvailabilityRequest\",\n polymorphicDiscriminator:\n ScheduleAvailabilityRequest.type.polymorphicDiscriminator,\n modelProperties: {\n ...ScheduleAvailabilityRequest.type.modelProperties\n }\n }\n};\n\nexport const DiskScheduleAvailabilityRequest: coreClient.CompositeMapper = {\n serializedName: \"DataBoxDisk\",\n type: {\n name: \"Composite\",\n className: \"DiskScheduleAvailabilityRequest\",\n uberParent: \"ScheduleAvailabilityRequest\",\n polymorphicDiscriminator:\n ScheduleAvailabilityRequest.type.polymorphicDiscriminator,\n modelProperties: {\n ...ScheduleAvailabilityRequest.type.modelProperties,\n expectedDataSizeInTeraBytes: {\n serializedName: \"expectedDataSizeInTeraBytes\",\n required: true,\n type: {\n name: \"Number\"\n }\n }\n }\n }\n};\n\nexport const HeavyScheduleAvailabilityRequest: coreClient.CompositeMapper = {\n serializedName: \"DataBoxHeavy\",\n type: {\n name: \"Composite\",\n className: \"HeavyScheduleAvailabilityRequest\",\n uberParent: \"ScheduleAvailabilityRequest\",\n polymorphicDiscriminator:\n ScheduleAvailabilityRequest.type.polymorphicDiscriminator,\n modelProperties: {\n ...ScheduleAvailabilityRequest.type.modelProperties\n }\n }\n};\n\nexport const DataBoxCustomerDiskCopyProgress: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"DataBoxCustomerDiskCopyProgress\",\n modelProperties: {\n ...CopyProgress.type.modelProperties,\n serialNumber: {\n serializedName: \"serialNumber\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n copyStatus: {\n serializedName: \"copyStatus\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport let discriminators = {\n JobDetails: JobDetails,\n DataAccountDetails: DataAccountDetails,\n CopyLogDetails: CopyLogDetails,\n DatacenterAddressResponse: DatacenterAddressResponse,\n ValidationInputRequest: ValidationInputRequest,\n ValidationInputResponse: ValidationInputResponse,\n ValidationRequest: ValidationRequest,\n JobSecrets: JobSecrets,\n ScheduleAvailabilityRequest: ScheduleAvailabilityRequest,\n \"JobDetails.DataBoxCustomerDisk\": DataBoxCustomerDiskJobDetails,\n \"JobDetails.DataBoxDisk\": DataBoxDiskJobDetails,\n \"JobDetails.DataBoxHeavy\": DataBoxHeavyJobDetails,\n \"JobDetails.DataBox\": DataBoxJobDetails,\n \"DataAccountDetails.ManagedDisk\": ManagedDiskDetails,\n \"DataAccountDetails.StorageAccount\": StorageAccountDetails,\n \"CopyLogDetails.DataBox\": DataBoxAccountCopyLogDetails,\n \"CopyLogDetails.DataBoxCustomerDisk\": DataBoxCustomerDiskCopyLogDetails,\n \"CopyLogDetails.DataBoxDisk\": DataBoxDiskCopyLogDetails,\n \"CopyLogDetails.DataBoxHeavy\": DataBoxHeavyAccountCopyLogDetails,\n \"DatacenterAddressResponse.DatacenterAddressInstruction\": DatacenterAddressInstructionResponse,\n \"DatacenterAddressResponse.DatacenterAddressLocation\": DatacenterAddressLocationResponse,\n \"ValidationInputRequest.ValidateAddress\": ValidateAddress,\n \"ValidationInputRequest.ValidateCreateOrderLimit\": CreateOrderLimitForSubscriptionValidationRequest,\n \"ValidationInputRequest.ValidateDataTransferDetails\": DataTransferDetailsValidationRequest,\n \"ValidationInputRequest.ValidatePreferences\": PreferencesValidationRequest,\n \"ValidationInputRequest.ValidateSkuAvailability\": SkuAvailabilityValidationRequest,\n \"ValidationInputRequest.ValidateSubscriptionIsAllowedToCreateJob\": SubscriptionIsAllowedToCreateJobValidationRequest,\n \"ValidationInputResponse.ValidateAddress\": AddressValidationProperties,\n \"ValidationInputResponse.ValidateCreateOrderLimit\": CreateOrderLimitForSubscriptionValidationResponseProperties,\n \"ValidationInputResponse.ValidateDataTransferDetails\": DataTransferDetailsValidationResponseProperties,\n \"ValidationInputResponse.ValidatePreferences\": PreferencesValidationResponseProperties,\n \"ValidationInputResponse.ValidateSkuAvailability\": SkuAvailabilityValidationResponseProperties,\n \"ValidationInputResponse.ValidateSubscriptionIsAllowedToCreateJob\": SubscriptionIsAllowedToCreateJobValidationResponseProperties,\n \"ValidationRequest.JobCreationValidation\": CreateJobValidations,\n \"JobSecrets.DataBoxCustomerDisk\": CustomerDiskJobSecrets,\n \"JobSecrets.DataBoxDisk\": DataBoxDiskJobSecrets,\n \"JobSecrets.DataBoxHeavy\": DataBoxHeavyJobSecrets,\n \"JobSecrets.DataBox\": DataboxJobSecrets,\n \"ScheduleAvailabilityRequest.DataBox\": DataBoxScheduleAvailabilityRequest,\n \"ScheduleAvailabilityRequest.DataBoxDisk\": DiskScheduleAvailabilityRequest,\n \"ScheduleAvailabilityRequest.DataBoxHeavy\": HeavyScheduleAvailabilityRequest\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 MarkDevicesShippedRequest as MarkDevicesShippedRequestMapper,\n JobResource as JobResourceMapper,\n JobResourceUpdateParameter as JobResourceUpdateParameterMapper,\n ShipmentPickUpRequest as ShipmentPickUpRequestMapper,\n CancellationReason as CancellationReasonMapper,\n MitigateJobRequest as MitigateJobRequestMapper,\n AvailableSkuRequest as AvailableSkuRequestMapper,\n ValidateAddress as ValidateAddressMapper,\n ValidationRequest as ValidationRequestMapper,\n RegionConfigurationRequest as RegionConfigurationRequestMapper\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-08-01-preview\",\n isConstant: true,\n serializedName: \"api-version\",\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\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 skipToken: OperationQueryParameter = {\n parameterPath: [\"options\", \"skipToken\"],\n mapper: {\n serializedName: \"$skipToken\",\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 markDevicesShippedRequest: OperationParameter = {\n parameterPath: \"markDevicesShippedRequest\",\n mapper: MarkDevicesShippedRequestMapper\n};\n\nexport const jobName: OperationURLParameter = {\n parameterPath: \"jobName\",\n mapper: {\n constraints: {\n Pattern: new RegExp(\"^[-\\\\w\\\\.]+$\"),\n MaxLength: 24,\n MinLength: 3\n },\n serializedName: \"jobName\",\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 expand: OperationQueryParameter = {\n parameterPath: [\"options\", \"expand\"],\n mapper: {\n serializedName: \"$expand\",\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const jobResource: OperationParameter = {\n parameterPath: \"jobResource\",\n mapper: JobResourceMapper\n};\n\nexport const jobResourceUpdateParameter: OperationParameter = {\n parameterPath: \"jobResourceUpdateParameter\",\n mapper: JobResourceUpdateParameterMapper\n};\n\nexport const ifMatch: OperationParameter = {\n parameterPath: [\"options\", \"ifMatch\"],\n mapper: {\n serializedName: \"If-Match\",\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const shipmentPickUpRequest: OperationParameter = {\n parameterPath: \"shipmentPickUpRequest\",\n mapper: ShipmentPickUpRequestMapper\n};\n\nexport const cancellationReason: OperationParameter = {\n parameterPath: \"cancellationReason\",\n mapper: CancellationReasonMapper\n};\n\nexport const mitigateJobRequest: OperationParameter = {\n parameterPath: \"mitigateJobRequest\",\n mapper: MitigateJobRequestMapper\n};\n\nexport const availableSkuRequest: OperationParameter = {\n parameterPath: \"availableSkuRequest\",\n mapper: AvailableSkuRequestMapper\n};\n\nexport const location: OperationURLParameter = {\n parameterPath: \"location\",\n mapper: {\n serializedName: \"location\",\n required: true,\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const validateAddress: OperationParameter = {\n parameterPath: \"validateAddress\",\n mapper: ValidateAddressMapper\n};\n\nexport const validationRequest: OperationParameter = {\n parameterPath: \"validationRequest\",\n mapper: ValidationRequestMapper\n};\n\nexport const regionConfigurationRequest: OperationParameter = {\n parameterPath: \"regionConfigurationRequest\",\n mapper: RegionConfigurationRequestMapper\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 { DataBoxManagementClient } from \"../dataBoxManagementClient\";\nimport {\n Operation,\n OperationsListNextOptionalParams,\n OperationsListOptionalParams,\n OperationsListResponse,\n OperationsListNextResponse\n} from \"../models\";\n\n/// <reference lib=\"esnext.asynciterable\" />\n/** Class containing Operations operations. */\nexport class OperationsImpl implements Operations {\n private readonly client: DataBoxManagementClient;\n\n /**\n * Initialize a new instance of the class Operations class.\n * @param client Reference to the service client\n */\n constructor(client: DataBoxManagementClient) {\n this.client = client;\n }\n\n /**\n * This method gets all the operations.\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 let continuationToken = result.nextLink;\n while (continuationToken) {\n result = await this._listNext(continuationToken, options);\n continuationToken = result.nextLink;\n yield result.value || [];\n }\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 * This method gets all the operations.\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 /**\n * ListNext\n * @param nextLink The nextLink from the previous successful call to the List method.\n * @param options The options parameters.\n */\n private _listNext(\n nextLink: string,\n options?: OperationsListNextOptionalParams\n ): Promise<OperationsListNextResponse> {\n return this.client.sendOperationRequest(\n { nextLink, options },\n listNextOperationSpec\n );\n }\n}\n// Operation Specifications\nconst serializer = coreClient.createSerializer(Mappers, /* isXml */ false);\n\nconst listOperationSpec: coreClient.OperationSpec = {\n path: \"/providers/Microsoft.DataBox/operations\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.OperationList\n },\n default: {\n bodyMapper: Mappers.ApiError\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [Parameters.$host],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst listNextOperationSpec: coreClient.OperationSpec = {\n path: \"{nextLink}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.OperationList\n },\n default: {\n bodyMapper: Mappers.ApiError\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [Parameters.$host, Parameters.nextLink],\n headerParameters: [Parameters.accept],\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 { LongRunningOperation, LroResponse } from \"@azure/core-lro\";\n\nexport class LroImpl<T> implements LongRunningOperation<T> {\n constructor(\n private sendOperationFn: (args: any, spec: any) => Promise<LroResponse<T>>,\n private args: Record<string, unknown>,\n private spec: {\n readonly requestBody?: unknown;\n readonly path?: string;\n readonly httpMethod: string;\n } & Record<string, any>,\n public requestPath: string = spec.path!,\n public requestMethod: string = spec.httpMethod\n ) {}\n public async sendInitialRequest(): Promise<LroResponse<T>> {\n return this.sendOperationFn(this.args, this.spec);\n }\n public async sendPollRequest(path: string): Promise<LroResponse<T>> {\n const { requestBody, ...restSpec } = this.spec;\n return this.sendOperationFn(this.args, {\n ...restSpec,\n path,\n httpMethod: \"GET\"\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 { 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 { DataBoxManagementClient } from \"../dataBoxManagementClient\";\nimport { PollerLike, PollOperationState, LroEngine } from \"@azure/core-lro\";\nimport { LroImpl } from \"../lroImpl\";\nimport {\n JobResource,\n JobsListNextOptionalParams,\n JobsListOptionalParams,\n JobsListByResourceGroupNextOptionalParams,\n JobsListByResourceGroupOptionalParams,\n UnencryptedCredentials,\n JobsListCredentialsOptionalParams,\n JobsListResponse,\n MarkDevicesShippedRequest,\n JobsMarkDevicesShippedOptionalParams,\n JobsListByResourceGroupResponse,\n JobsGetOptionalParams,\n JobsGetResponse,\n JobsCreateOptionalParams,\n JobsCreateResponse,\n JobsDeleteOptionalParams,\n JobResourceUpdateParameter,\n JobsUpdateOptionalParams,\n JobsUpdateResponse,\n ShipmentPickUpRequest,\n JobsBookShipmentPickUpOptionalParams,\n JobsBookShipmentPickUpResponse,\n CancellationReason,\n JobsCancelOptionalParams,\n JobsListCredentialsResponse,\n JobsListNextResponse,\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: DataBoxManagementClient;\n\n /**\n * Initialize a new instance of the class Jobs class.\n * @param client Reference to the service client\n */\n constructor(client: DataBoxManagementClient) {\n this.client = client;\n }\n\n /**\n * Lists all the jobs available under the subscription.\n * @param options The options parameters.\n */\n public list(\n options?: JobsListOptionalParams\n ): PagedAsyncIterableIterator<JobResource> {\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?: JobsListOptionalParams\n ): AsyncIterableIterator<JobResource[]> {\n let result = await this._list(options);\n yield result.value || [];\n let continuationToken = result.nextLink;\n while (continuationToken) {\n result = await this._listNext(continuationToken, options);\n continuationToken = result.nextLink;\n yield result.value || [];\n }\n }\n\n private async *listPagingAll(\n options?: JobsListOptionalParams\n ): AsyncIterableIterator<JobResource> {\n for await (const page of this.listPagingPage(options)) {\n yield* page;\n }\n }\n\n /**\n * Lists all the jobs available under the given resource group.\n * @param resourceGroupName The Resource Group Name\n * @param options The options parameters.\n */\n public listByResourceGroup(\n resourceGroupName: string,\n options?: JobsListByResourceGroupOptionalParams\n ): PagedAsyncIterableIterator<JobResource> {\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<JobResource[]> {\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<JobResource> {\n for await (const page of this.listByResourceGroupPagingPage(\n resourceGroupName,\n options\n )) {\n yield* page;\n }\n }\n\n /**\n * This method gets the unencrypted secrets related to the job.\n * @param resourceGroupName The Resource Group Name\n * @param jobName The name of the job Resource within the specified resource group. job names must be\n * between 3 and 24 characters in length and use any alphanumeric and underscore only\n * @param options The options parameters.\n */\n public listCredentials(\n resourceGroupName: string,\n jobName: string,\n options?: JobsListCredentialsOptionalParams\n ): PagedAsyncIterableIterator<UnencryptedCredentials> {\n const iter = this.listCredentialsPagingAll(\n resourceGroupName,\n jobName,\n options\n );\n return {\n next() {\n return iter.next();\n },\n [Symbol.asyncIterator]() {\n return this;\n },\n byPage: () => {\n return this.listCredentialsPagingPage(\n resourceGroupName,\n jobName,\n options\n );\n }\n };\n }\n\n private async *listCredentialsPagingPage(\n resourceGroupName: string,\n jobName: string,\n options?: JobsListCredentialsOptionalParams\n ): AsyncIterableIterator<UnencryptedCredentials[]> {\n let result = await this._listCredentials(\n resourceGroupName,\n jobName,\n options\n );\n yield result.value || [];\n }\n\n private async *listCredentialsPagingAll(\n resourceGroupName: string,\n jobName: string,\n options?: JobsListCredentialsOptionalParams\n ): AsyncIterableIterator<UnencryptedCredentials> {\n for await (const page of this.listCredentialsPagingPage(\n resourceGroupName,\n jobName,\n options\n )) {\n yield* page;\n }\n }\n\n /**\n * Lists all the jobs available under the subscription.\n * @param options The options parameters.\n */\n private _list(options?: JobsListOptionalParams): Promise<JobsListResponse> {\n return this.client.sendOperationRequest({ options }, listOperationSpec);\n }\n\n /**\n * Request to mark devices for a given job as shipped\n * @param jobName The name of the job Resource within the specified resource group. job names must be\n * between 3 and 24 characters in length and use any alphanumeric and underscore only\n * @param resourceGroupName The Resource Group Name\n * @param markDevicesShippedRequest Mark Devices Shipped Request\n * @param options The options parameters.\n */\n markDevicesShipped(\n jobName: string,\n resourceGroupName: string,\n markDevicesShippedRequest: MarkDevicesShippedRequest,\n options?: JobsMarkDevicesShippedOptionalParams\n ): Promise<void> {\n return this.client.sendOperationRequest(\n { jobName, resourceGroupName, markDevicesShippedRequest, options },\n markDevicesShippedOperationSpec\n );\n }\n\n /**\n * Lists all the jobs available under the given resource group.\n * @param resourceGroupName The Resource Group Name\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 the specified job.\n * @param resourceGroupName The Resource Group Name\n * @param jobName The name of the job Resource within the specified resource group. job names must be\n * between 3 and 24 characters in length and use any alphanumeric and underscore only\n * @param options The options parameters.\n */\n get(\n resourceGroupName: string,\n jobName: string,\n options?: JobsGetOptionalParams\n ): Promise<JobsGetResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, jobName, options },\n getOperationSpec\n );\n }\n\n /**\n * Creates a new job with the specified parameters. Existing job cannot be updated with this API and\n * should instead be updated with the Update job API.\n * @param resourceGroupName The Resource Group Name\n * @param jobName The name of the job Resource within the specified resource group. job names must be\n * between 3 and 24 characters in length and use any alphanumeric and underscore only\n * @param jobResource Job details from request body.\n * @param options The options parameters.\n */\n async beginCreate(\n resourceGroupName: string,\n jobName: string,\n jobResource: JobResource,\n options?: JobsCreateOptionalParams\n ): Promise<\n PollerLike<PollOperationState<JobsCreateResponse>, JobsCreateResponse>\n > {\n const directSendOperation = async (\n args: coreClient.OperationArguments,\n spec: coreClient.OperationSpec\n ): Promise<JobsCreateResponse> => {\n return this.client.sendOperationRequest(args, spec);\n };\n const sendOperation = async (\n args: coreClient.OperationArguments,\n spec: coreClient.OperationSpec\n ) => {\n let currentRawResponse:\n | coreClient.FullOperationResponse\n | undefined = undefined;\n const providedCallback = args.options?.onResponse;\n const callback: coreClient.RawResponseCallback = (\n rawResponse: coreClient.FullOperationResponse,\n flatResponse: unknown\n ) => {\n currentRawResponse = rawResponse;\n providedCallback?.(rawResponse, flatResponse);\n };\n const updatedArgs = {\n ...args,\n options: {\n ...args.options,\n onResponse: callback\n }\n };\n const flatResponse = await directSendOperation(updatedArgs, spec);\n return {\n flatResponse,\n rawResponse: {\n statusCode: currentRawResponse!.status,\n body: currentRawResponse!.parsedBody,\n headers: currentRawResponse!.headers.toJSON()\n }\n };\n };\n\n const lro = new LroImpl(\n sendOperation,\n { resourceGroupName, jobName, jobResource, options },\n createOperationSpec\n );\n return new LroEngine(lro, {\n resumeFrom: options?.resumeFrom,\n intervalInMs: options?.updateIntervalInMs\n });\n }\n\n /**\n * Creates a new job with the specified parameters. Existing job cannot be updated with this API and\n * should instead be updated with the Update job API.\n * @param resourceGroupName The Resource Group Name\n * @param jobName The name of the job Resource within the specified resource group. job names must be\n * between 3 and 24 characters in length and use any alphanumeric and underscore only\n * @param jobResource Job details from request body.\n * @param options The options parameters.\n */\n async beginCreateAndWait(\n resourceGroupName: string,\n jobName: string,\n jobResource: JobResource,\n options?: JobsCreateOptionalParams\n ): Promise<JobsCreateResponse> {\n const poller = await this.beginCreate(\n resourceGroupName,\n jobName,\n jobResource,\n options\n );\n return poller.pollUntilDone();\n }\n\n /**\n * Deletes a job.\n * @param resourceGroupName The Resource Group Name\n * @param jobName The name of the job Resource within the specified resource group. job names must be\n * between 3 and 24 characters in length and use any alphanumeric and underscore only\n * @param options The options parameters.\n */\n async beginDelete(\n resourceGroupName: string,\n jobName: string,\n options?: JobsDeleteOptionalParams\n ): Promise<PollerLike<PollOperationState<void>, void>> {\n const directSendOperation = async (\n args: coreClient.OperationArguments,\n spec: coreClient.OperationSpec\n ): Promise<void> => {\n return this.client.sendOperationRequest(args, spec);\n };\n const sendOperation = async (\n args: coreClient.OperationArguments,\n spec: coreClient.OperationSpec\n ) => {\n let currentRawResponse:\n | coreClient.FullOperationResponse\n | undefined = undefined;\n const providedCallback = args.options?.onResponse;\n const callback: coreClient.RawResponseCallback = (\n rawResponse: coreClient.FullOperationResponse,\n flatResponse: unknown\n ) => {\n currentRawResponse = rawResponse;\n providedCallback?.(rawResponse, flatResponse);\n };\n const updatedArgs = {\n ...args,\n options: {\n ...args.options,\n onResponse: callback\n }\n };\n const flatResponse = await directSendOperation(updatedArgs, spec);\n return {\n flatResponse,\n rawResponse: {\n statusCode: currentRawResponse!.status,\n body: currentRawResponse!.parsedBody,\n headers: currentRawResponse!.headers.toJSON()\n }\n };\n };\n\n const lro = new LroImpl(\n sendOperation,\n { resourceGroupName, jobName, options },\n deleteOperationSpec\n );\n return new LroEngine(lro, {\n resumeFrom: options?.resumeFrom,\n intervalInMs: options?.updateIntervalInMs\n });\n }\n\n /**\n * Deletes a job.\n * @param resourceGroupName The Resource Group Name\n * @param jobName The name of the job Resource within the specified resource group. job names must be\n * between 3 and 24 characters in length and use any alphanumeric and underscore only\n * @param options The options parameters.\n */\n async beginDeleteAndWait(\n resourceGroupName: string,\n jobName: string,\n options?: JobsDeleteOptionalParams\n ): Promise<void> {\n const poller = await this.beginDelete(resourceGroupName, jobName, options);\n return poller.pollUntilDone();\n }\n\n /**\n * Updates the properties of an existing job.\n * @param resourceGroupName The Resource Group Name\n * @param jobName The name of the job Resource within the specified resource group. job names must be\n * between 3 and 24 characters in length and use any alphanumeric and underscore only\n * @param jobResourceUpdateParameter Job update parameters from request body.\n * @param options The options parameters.\n */\n async beginUpdate(\n resourceGroupName: string,\n jobName: string,\n jobResourceUpdateParameter: JobResourceUpdateParameter,\n options?: JobsUpdateOptionalParams\n ): Promise<\n PollerLike<PollOperationState<JobsUpdateResponse>, JobsUpdateResponse>\n > {\n const directSendOperation = async (\n args: coreClient.OperationArguments,\n spec: coreClient.OperationSpec\n ): Promise<JobsUpdateResponse> => {\n return this.client.sendOperationRequest(args, spec);\n };\n const sendOperation = async (\n args: coreClient.OperationArguments,\n spec: coreClient.OperationSpec\n ) => {\n let currentRawResponse:\n | coreClient.FullOperationResponse\n | undefined = undefined;\n const providedCallback = args.options?.onResponse;\n const callback: coreClient.RawResponseCallback = (\n rawResponse: coreClient.FullOperationResponse,\n flatResponse: unknown\n ) => {\n currentRawResponse = rawResponse;\n providedCallback?.(rawResponse, flatResponse);\n };\n const updatedArgs = {\n ...args,\n options: {\n ...args.options,\n onResponse: callback\n }\n };\n const flatResponse = await directSendOperation(updatedArgs, spec);\n return {\n flatResponse,\n rawResponse: {\n statusCode: currentRawResponse!.status,\n body: currentRawResponse!.parsedBody,\n headers: currentRawResponse!.headers.toJSON()\n }\n };\n };\n\n const lro = new LroImpl(\n sendOperation,\n { resourceGroupName, jobName, jobResourceUpdateParameter, options },\n updateOperationSpec\n );\n return new LroEngine(lro, {\n resumeFrom: options?.resumeFrom,\n intervalInMs: options?.updateIntervalInMs\n });\n }\n\n /**\n * Updates the properties of an existing job.\n * @param resourceGroupName The Resource Group Name\n * @param jobName The name of the job Resource within the specified resource group. job names must be\n * between 3 and 24 characters in length and use any alphanumeric and underscore only\n * @param jobResourceUpdateParameter Job update parameters from request body.\n * @param options The options parameters.\n */\n async beginUpdateAndWait(\n resourceGroupName: string,\n jobName: string,\n jobResourceUpdateParameter: JobResourceUpdateParameter,\n options?: JobsUpdateOptionalParams\n ): Promise<JobsUpdateResponse> {\n const poller = await this.beginUpdate(\n resourceGroupName,\n jobName,\n jobResourceUpdateParameter,\n options\n );\n return poller.pollUntilDone();\n }\n\n /**\n * Book shipment pick up.\n * @param resourceGroupName The Resource Group Name\n * @param jobName The name of the job Resource within the specified resource group. job names must be\n * between 3 and 24 characters in length and use any alphanumeric and underscore only\n * @param shipmentPickUpRequest Details of shipment pick up request.\n * @param options The options parameters.\n */\n bookShipmentPickUp(\n resourceGroupName: string,\n jobName: string,\n shipmentPickUpRequest: ShipmentPickUpRequest,\n options?: JobsBookShipmentPickUpOptionalParams\n ): Promise<JobsBookShipmentPickUpResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, jobName, shipmentPickUpRequest, options },\n bookShipmentPickUpOperationSpec\n );\n }\n\n /**\n * CancelJob.\n * @param resourceGroupName The Resource Group Name\n * @param jobName The name of the job Resource within the specified resource group. job names must be\n * between 3 and 24 characters in length and use any alphanumeric and underscore only\n * @param cancellationReason Reason for cancellation.\n * @param options The options parameters.\n */\n cancel(\n resourceGroupName: string,\n jobName: string,\n cancellationReason: CancellationReason,\n options?: JobsCancelOptionalParams\n ): Promise<void> {\n return this.client.sendOperationRequest(\n { resourceGroupName, jobName, cancellationReason, options },\n cancelOperationSpec\n );\n }\n\n /**\n * This method gets the unencrypted secrets related to the job.\n * @param resourceGroupName The Resource Group Name\n * @param jobName The name of the job Resource within the specified resource group. job names must be\n * between 3 and 24 characters in length and use any alphanumeric and underscore only\n * @param options The options parameters.\n */\n private _listCredentials(\n resourceGroupName: string,\n jobName: string,\n options?: JobsListCredentialsOptionalParams\n ): Promise<JobsListCredentialsResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, jobName, options },\n listCredentialsOperationSpec\n );\n }\n\n /**\n * ListNext\n * @param nextLink The nextLink from the previous successful call to the List method.\n * @param options The options parameters.\n */\n private _listNext(\n nextLink: string,\n options?: JobsListNextOptionalParams\n ): Promise<JobsListNextResponse> {\n return this.client.sendOperationRequest(\n { nextLink, options },\n listNextOperationSpec\n );\n }\n\n /**\n * ListByResourceGroupNext\n * @param resourceGroupName The Resource Group Name\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 listOperationSpec: coreClient.OperationSpec = {\n path: \"/subscriptions/{subscriptionId}/providers/Microsoft.DataBox/jobs\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.JobResourceList\n },\n default: {\n bodyMapper: Mappers.ApiError\n }\n },\n queryParameters: [Parameters.apiVersion, Parameters.skipToken],\n urlParameters: [Parameters.$host, Parameters.subscriptionId],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst markDevicesShippedOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataBox/jobs/{jobName}/markDevicesShipped\",\n httpMethod: \"POST\",\n responses: {\n 204: {},\n default: {\n bodyMapper: Mappers.ApiError\n }\n },\n requestBody: Parameters.markDevicesShippedRequest,\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.jobName,\n Parameters.resourceGroupName\n ],\n headerParameters: [Parameters.accept, Parameters.contentType],\n mediaType: \"json\",\n serializer\n};\nconst listByResourceGroupOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataBox/jobs\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.JobResourceList\n },\n default: {\n bodyMapper: Mappers.ApiError\n }\n },\n queryParameters: [Parameters.apiVersion, Parameters.skipToken],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst getOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataBox/jobs/{jobName}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.JobResource\n },\n default: {\n bodyMapper: Mappers.ApiError\n }\n },\n queryParameters: [Parameters.apiVersion, Parameters.expand],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.jobName,\n Parameters.resourceGroupName\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst createOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataBox/jobs/{jobName}\",\n httpMethod: \"PUT\",\n responses: {\n 200: {\n bodyMapper: Mappers.JobResource\n },\n 201: {\n bodyMapper: Mappers.JobResource\n },\n 202: {\n bodyMapper: Mappers.JobResource\n },\n 204: {\n bodyMapper: Mappers.JobResource\n },\n default: {\n bodyMapper: Mappers.ApiError\n }\n },\n requestBody: Parameters.jobResource,\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.jobName,\n Parameters.resourceGroupName\n ],\n headerParameters: [Parameters.accept, Parameters.contentType],\n mediaType: \"json\",\n serializer\n};\nconst deleteOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataBox/jobs/{jobName}\",\n httpMethod: \"DELETE\",\n responses: {\n 200: {},\n 201: {},\n 202: {},\n 204: {},\n default: {\n bodyMapper: Mappers.ApiError\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.jobName,\n Parameters.resourceGroupName\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst updateOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataBox/jobs/{jobName}\",\n httpMethod: \"PATCH\",\n responses: {\n 200: {\n bodyMapper: Mappers.JobResource\n },\n 201: {\n bodyMapper: Mappers.JobResource\n },\n 202: {\n bodyMapper: Mappers.JobResource\n },\n 204: {\n bodyMapper: Mappers.JobResource\n },\n default: {\n bodyMapper: Mappers.ApiError\n }\n },\n requestBody: Parameters.jobResourceUpdateParameter,\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.jobName,\n Parameters.resourceGroupName\n ],\n headerParameters: [\n Parameters.accept,\n Parameters.contentType,\n Parameters.ifMatch\n ],\n mediaType: \"json\",\n serializer\n};\nconst bookShipmentPickUpOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataBox/jobs/{jobName}/bookShipmentPickUp\",\n httpMethod: \"POST\",\n responses: {\n 200: {\n bodyMapper: Mappers.ShipmentPickUpResponse\n },\n default: {\n bodyMapper: Mappers.ApiError\n }\n },\n requestBody: Parameters.shipmentPickUpRequest,\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.jobName,\n Parameters.resourceGroupName\n ],\n headerParameters: [Parameters.accept, Parameters.contentType],\n mediaType: \"json\",\n serializer\n};\nconst cancelOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataBox/jobs/{jobName}/cancel\",\n httpMethod: \"POST\",\n responses: {\n 204: {},\n default: {\n bodyMapper: Mappers.ApiError\n }\n },\n requestBody: Parameters.cancellationReason,\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.jobName,\n Parameters.resourceGroupName\n ],\n headerParameters: [Parameters.accept, Parameters.contentType],\n mediaType: \"json\",\n serializer\n};\nconst listCredentialsOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataBox/jobs/{jobName}/listCredentials\",\n httpMethod: \"POST\",\n responses: {\n 200: {\n bodyMapper: Mappers.UnencryptedCredentialsList\n },\n default: {\n bodyMapper: Mappers.ApiError\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.jobName,\n Parameters.resourceGroupName\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst listNextOperationSpec: coreClient.OperationSpec = {\n path: \"{nextLink}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.JobResourceList\n },\n default: {\n bodyMapper: Mappers.ApiError\n }\n },\n queryParameters: [Parameters.apiVersion, Parameters.skipToken],\n urlParameters: [\n Parameters.$host,\n Parameters.nextLink,\n Parameters.subscriptionId\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst listByResourceGroupNextOperationSpec: coreClient.OperationSpec = {\n path: \"{nextLink}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.JobResourceList\n },\n default: {\n bodyMapper: Mappers.ApiError\n }\n },\n queryParameters: [Parameters.apiVersion, Parameters.skipToken],\n urlParameters: [\n Parameters.$host,\n Parameters.nextLink,\n Parameters.subscriptionId,\n Parameters.resourceGroupName\n ],\n headerParameters: [Parameters.accept],\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 { Service } from \"../operationsInterfaces\";\nimport * as coreClient from \"@azure/core-client\";\nimport * as Mappers from \"../models/mappers\";\nimport * as Parameters from \"../models/parameters\";\nimport { DataBoxManagementClient } from \"../dataBoxManagementClient\";\nimport {\n SkuInformation,\n AvailableSkuRequest,\n ServiceListAvailableSkusByResourceGroupNextOptionalParams,\n ServiceListAvailableSkusByResourceGroupOptionalParams,\n ServiceListAvailableSkusByResourceGroupResponse,\n ValidateAddress,\n ServiceValidateAddressOptionalParams,\n ServiceValidateAddressResponse,\n ValidationRequestUnion,\n ServiceValidateInputsByResourceGroupOptionalParams,\n ServiceValidateInputsByResourceGroupResponse,\n ServiceValidateInputsOptionalParams,\n ServiceValidateInputsResponse,\n RegionConfigurationRequest,\n ServiceRegionConfigurationOptionalParams,\n ServiceRegionConfigurationResponse,\n ServiceRegionConfigurationByResourceGroupOptionalParams,\n ServiceRegionConfigurationByResourceGroupResponse,\n ServiceListAvailableSkusByResourceGroupNextResponse\n} from \"../models\";\n\n/// <reference lib=\"esnext.asynciterable\" />\n/** Class containing Service operations. */\nexport class ServiceImpl implements Service {\n private readonly client: DataBoxManagementClient;\n\n /**\n * Initialize a new instance of the class Service class.\n * @param client Reference to the service client\n */\n constructor(client: DataBoxManagementClient) {\n this.client = client;\n }\n\n /**\n * This method provides the list of available skus for the given subscription, resource group and\n * location.\n * @param resourceGroupName The Resource Group Name\n * @param location The location of the resource\n * @param availableSkuRequest Filters for showing the available skus.\n * @param options The options parameters.\n */\n public listAvailableSkusByResourceGroup(\n resourceGroupName: string,\n location: string,\n availableSkuRequest: AvailableSkuRequest,\n options?: ServiceListAvailableSkusByResourceGroupOptionalParams\n ): PagedAsyncIterableIterator<SkuInformation> {\n const iter = this.listAvailableSkusByResourceGroupPagingAll(\n resourceGroupName,\n location,\n availableSkuRequest,\n options\n );\n return {\n next() {\n return iter.next();\n },\n [Symbol.asyncIterator]() {\n return this;\n },\n byPage: () => {\n return this.listAvailableSkusByResourceGroupPagingPage(\n resourceGroupName,\n location,\n availableSkuRequest,\n options\n );\n }\n };\n }\n\n private async *listAvailableSkusByResourceGroupPagingPage(\n resourceGroupName: string,\n location: string,\n availableSkuRequest: AvailableSkuRequest,\n options?: ServiceListAvailableSkusByResourceGroupOptionalParams\n ): AsyncIterableIterator<SkuInformation[]> {\n let result = await this._listAvailableSkusByResourceGroup(\n resourceGroupName,\n location,\n availableSkuRequest,\n options\n );\n yield result.value || [];\n let continuationToken = result.nextLink;\n while (continuationToken) {\n result = await this._listAvailableSkusByResourceGroupNext(\n resourceGroupName,\n location,\n availableSkuRequest,\n continuationToken,\n options\n );\n continuationToken = result.nextLink;\n yield result.value || [];\n }\n }\n\n private async *listAvailableSkusByResourceGroupPagingAll(\n resourceGroupName: string,\n location: string,\n availableSkuRequest: AvailableSkuRequest,\n options?: ServiceListAvailableSkusByResourceGroupOptionalParams\n ): AsyncIterableIterator<SkuInformation> {\n for await (const page of this.listAvailableSkusByResourceGroupPagingPage(\n resourceGroupName,\n location,\n availableSkuRequest,\n options\n )) {\n yield* page;\n }\n }\n\n /**\n * This method provides the list of available skus for the given subscription, resource group and\n * location.\n * @param resourceGroupName The Resource Group Name\n * @param location The location of the resource\n * @param availableSkuRequest Filters for showing the available skus.\n * @param options The options parameters.\n */\n private _listAvailableSkusByResourceGroup(\n resourceGroupName: string,\n location: string,\n availableSkuRequest: AvailableSkuRequest,\n options?: ServiceListAvailableSkusByResourceGroupOptionalParams\n ): Promise<ServiceListAvailableSkusByResourceGroupResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, location, availableSkuRequest, options },\n listAvailableSkusByResourceGroupOperationSpec\n );\n }\n\n /**\n * [DEPRECATED NOTICE: This operation will soon be removed]. This method validates the customer\n * shipping address and provide alternate addresses if any.\n * @param location The location of the resource\n * @param validateAddress Shipping address of the customer.\n * @param options The options parameters.\n */\n validateAddress(\n location: string,\n validateAddress: ValidateAddress,\n options?: ServiceValidateAddressOptionalParams\n ): Promise<ServiceValidateAddressResponse> {\n return this.client.sendOperationRequest(\n { location, validateAddress, options },\n validateAddressOperationSpec\n );\n }\n\n /**\n * This method does all necessary pre-job creation validation under resource group.\n * @param resourceGroupName The Resource Group Name\n * @param location The location of the resource\n * @param validationRequest Inputs of the customer.\n * @param options The options parameters.\n */\n validateInputsByResourceGroup(\n resourceGroupName: string,\n location: string,\n validationRequest: ValidationRequestUnion,\n options?: ServiceValidateInputsByResourceGroupOptionalParams\n ): Promise<ServiceValidateInputsByResourceGroupResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, location, validationRequest, options },\n validateInputsByResourceGroupOperationSpec\n );\n }\n\n /**\n * This method does all necessary pre-job creation validation under subscription.\n * @param location The location of the resource\n * @param validationRequest Inputs of the customer.\n * @param options The options parameters.\n */\n validateInputs(\n location: string,\n validationRequest: ValidationRequestUnion,\n options?: ServiceValidateInputsOptionalParams\n ): Promise<ServiceValidateInputsResponse> {\n return this.client.sendOperationRequest(\n { location, validationRequest, options },\n validateInputsOperationSpec\n );\n }\n\n /**\n * This API provides configuration details specific to given region/location at Subscription level.\n * @param location The location of the resource\n * @param regionConfigurationRequest Request body to get the configuration for the region.\n * @param options The options parameters.\n */\n regionConfiguration(\n location: string,\n regionConfigurationRequest: RegionConfigurationRequest,\n options?: ServiceRegionConfigurationOptionalParams\n ): Promise<ServiceRegionConfigurationResponse> {\n return this.client.sendOperationRequest(\n { location, regionConfigurationRequest, options },\n regionConfigurationOperationSpec\n );\n }\n\n /**\n * This API provides configuration details specific to given region/location at Resource group level.\n * @param resourceGroupName The Resource Group Name\n * @param location The location of the resource\n * @param regionConfigurationRequest Request body to get the configuration for the region at resource\n * group level.\n * @param options The options parameters.\n */\n regionConfigurationByResourceGroup(\n resourceGroupName: string,\n location: string,\n regionConfigurationRequest: RegionConfigurationRequest,\n options?: ServiceRegionConfigurationByResourceGroupOptionalParams\n ): Promise<ServiceRegionConfigurationByResourceGroupResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, location, regionConfigurationRequest, options },\n regionConfigurationByResourceGroupOperationSpec\n );\n }\n\n /**\n * ListAvailableSkusByResourceGroupNext\n * @param resourceGroupName The Resource Group Name\n * @param location The location of the resource\n * @param availableSkuRequest Filters for showing the available skus.\n * @param nextLink The nextLink from the previous successful call to the\n * ListAvailableSkusByResourceGroup method.\n * @param options The options parameters.\n */\n private _listAvailableSkusByResourceGroupNext(\n resourceGroupName: string,\n location: string,\n availableSkuRequest: AvailableSkuRequest,\n nextLink: string,\n options?: ServiceListAvailableSkusByResourceGroupNextOptionalParams\n ): Promise<ServiceListAvailableSkusByResourceGroupNextResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, location, availableSkuRequest, nextLink, options },\n listAvailableSkusByResourceGroupNextOperationSpec\n );\n }\n}\n// Operation Specifications\nconst serializer = coreClient.createSerializer(Mappers, /* isXml */ false);\n\nconst listAvailableSkusByResourceGroupOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataBox/locations/{location}/availableSkus\",\n httpMethod: \"POST\",\n responses: {\n 200: {\n bodyMapper: Mappers.AvailableSkusResult\n },\n default: {\n bodyMapper: Mappers.ApiError\n }\n },\n requestBody: Parameters.availableSkuRequest,\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.location\n ],\n headerParameters: [Parameters.accept, Parameters.contentType],\n mediaType: \"json\",\n serializer\n};\nconst validateAddressOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/providers/Microsoft.DataBox/locations/{location}/validateAddress\",\n httpMethod: \"POST\",\n responses: {\n 200: {\n bodyMapper: Mappers.AddressValidationOutput\n },\n default: {\n bodyMapper: Mappers.ApiError\n }\n },\n requestBody: Parameters.validateAddress,\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.location\n ],\n headerParameters: [Parameters.accept, Parameters.contentType],\n mediaType: \"json\",\n serializer\n};\nconst validateInputsByResourceGroupOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataBox/locations/{location}/validateInputs\",\n httpMethod: \"POST\",\n responses: {\n 200: {\n bodyMapper: Mappers.ValidationResponse\n },\n default: {\n bodyMapper: Mappers.ApiError\n }\n },\n requestBody: Parameters.validationRequest,\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.location\n ],\n headerParameters: [Parameters.accept, Parameters.contentType],\n mediaType: \"json\",\n serializer\n};\nconst validateInputsOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/providers/Microsoft.DataBox/locations/{location}/validateInputs\",\n httpMethod: \"POST\",\n responses: {\n 200: {\n bodyMapper: Mappers.ValidationResponse\n },\n default: {\n bodyMapper: Mappers.ApiError\n }\n },\n requestBody: Parameters.validationRequest,\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.location\n ],\n headerParameters: [Parameters.accept, Parameters.contentType],\n mediaType: \"json\",\n serializer\n};\nconst regionConfigurationOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/providers/Microsoft.DataBox/locations/{location}/regionConfiguration\",\n httpMethod: \"POST\",\n responses: {\n 200: {\n bodyMapper: Mappers.RegionConfigurationResponse\n },\n default: {\n bodyMapper: Mappers.ApiError\n }\n },\n requestBody: Parameters.regionConfigurationRequest,\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.location\n ],\n headerParameters: [Parameters.accept, Parameters.contentType],\n mediaType: \"json\",\n serializer\n};\nconst regionConfigurationByResourceGroupOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataBox/locations/{location}/regionConfiguration\",\n httpMethod: \"POST\",\n responses: {\n 200: {\n bodyMapper: Mappers.RegionConfigurationResponse\n },\n default: {\n bodyMapper: Mappers.ApiError\n }\n },\n requestBody: Parameters.regionConfigurationRequest,\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.location\n ],\n headerParameters: [Parameters.accept, Parameters.contentType],\n mediaType: \"json\",\n serializer\n};\nconst listAvailableSkusByResourceGroupNextOperationSpec: coreClient.OperationSpec = {\n path: \"{nextLink}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.AvailableSkusResult\n },\n default: {\n bodyMapper: Mappers.ApiError\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.nextLink,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.location\n ],\n headerParameters: [Parameters.accept, Parameters.contentType],\n mediaType: \"json\",\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 { OperationsImpl, JobsImpl, ServiceImpl } from \"./operations\";\nimport { Operations, Jobs, Service } from \"./operationsInterfaces\";\nimport * as Parameters from \"./models/parameters\";\nimport * as Mappers from \"./models/mappers\";\nimport {\n DataBoxManagementClientOptionalParams,\n MitigateJobRequest,\n MitigateOptionalParams\n} from \"./models\";\n\nexport class DataBoxManagementClient extends coreClient.ServiceClient {\n $host: string;\n apiVersion: string;\n subscriptionId: string;\n\n /**\n * Initializes a new instance of the DataBoxManagementClient class.\n * @param credentials Subscription credentials which uniquely identify client subscription.\n * @param subscriptionId The Subscription Id\n * @param options The parameter options\n */\n constructor(\n credentials: coreAuth.TokenCredential,\n subscriptionId: string,\n options?: DataBoxManagementClientOptionalParams\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: DataBoxManagementClientOptionalParams = {\n requestContentType: \"application/json; charset=utf-8\",\n credential: credentials\n };\n\n const packageDetails = `azsdk-js-arm-databox/5.0.0-beta.1`;\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-08-01-preview\";\n this.operations = new OperationsImpl(this);\n this.jobs = new JobsImpl(this);\n this.service = new ServiceImpl(this);\n }\n\n /**\n * Request to mitigate for a given job\n * @param jobName The name of the job Resource within the specified resource group. job names must be\n * between 3 and 24 characters in length and use any alphanumeric and underscore only\n * @param resourceGroupName The Resource Group Name\n * @param mitigateJobRequest Mitigation Request\n * @param options The options parameters.\n */\n mitigate(\n jobName: string,\n resourceGroupName: string,\n mitigateJobRequest: MitigateJobRequest,\n options?: MitigateOptionalParams\n ): Promise<void> {\n return this.sendOperationRequest(\n { jobName, resourceGroupName, mitigateJobRequest, options },\n mitigateOperationSpec\n );\n }\n\n operations: Operations;\n jobs: Jobs;\n service: Service;\n}\n// Operation Specifications\nconst serializer = coreClient.createSerializer(Mappers, /* isXml */ false);\n\nconst mitigateOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataBox/jobs/{jobName}/mitigate\",\n httpMethod: \"POST\",\n responses: {\n 204: {},\n default: {\n bodyMapper: Mappers.ApiError\n }\n },\n requestBody: Parameters.mitigateJobRequest,\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.jobName,\n Parameters.resourceGroupName\n ],\n headerParameters: [Parameters.accept, Parameters.contentType],\n mediaType: \"json\",\n serializer\n};\n"],"names":["KnownStageName","KnownNotificationStageName","KnownDataCenterCode","KnownCopyStatus","MarkDevicesShippedRequestMapper","JobResourceMapper","JobResourceUpdateParameterMapper","ShipmentPickUpRequestMapper","CancellationReasonMapper","MitigateJobRequestMapper","AvailableSkuRequestMapper","ValidateAddressMapper","ValidationRequestMapper","RegionConfigurationRequestMapper","__asyncValues","__asyncDelegator","coreClient.createSerializer","Mappers.OperationList","Mappers.ApiError","Parameters.apiVersion","Parameters.$host","Parameters.accept","Parameters.nextLink","listOperationSpec","LroEngine","listNextOperationSpec","serializer","Mappers.JobResourceList","Parameters.skipToken","Parameters.subscriptionId","Parameters.markDevicesShippedRequest","Parameters.jobName","Parameters.resourceGroupName","Parameters.contentType","Mappers.JobResource","Parameters.expand","Parameters.jobResource","Parameters.jobResourceUpdateParameter","Parameters.ifMatch","Mappers.ShipmentPickUpResponse","Parameters.shipmentPickUpRequest","Parameters.cancellationReason","Mappers.UnencryptedCredentialsList","Mappers.AvailableSkusResult","Parameters.availableSkuRequest","Parameters.location","Mappers.AddressValidationOutput","Parameters.validateAddress","Mappers.ValidationResponse","Parameters.validationRequest","Mappers.RegionConfigurationResponse","Parameters.regionConfigurationRequest","coreClient.ServiceClient","Parameters.mitigateJobRequest"],"mappings":"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"}