@azure/arm-storageactions 1.0.0-beta.1 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +4 -2
- package/LICENSE +3 -3
- package/README.md +29 -23
- package/dist/browser/api/index.d.ts +2 -0
- package/dist/browser/api/index.js +4 -0
- package/dist/browser/api/index.js.map +1 -0
- package/dist/browser/api/operations/index.d.ts +3 -0
- package/dist/browser/api/operations/index.js +4 -0
- package/dist/browser/api/operations/index.js.map +1 -0
- package/dist/browser/api/operations/operations.d.ts +10 -0
- package/dist/browser/api/operations/operations.js +29 -0
- package/dist/browser/api/operations/operations.js.map +1 -0
- package/dist/browser/api/operations/options.d.ts +5 -0
- package/dist/browser/api/operations/options.js +4 -0
- package/dist/browser/api/operations/options.js.map +1 -0
- package/dist/browser/api/storageActionsManagementContext.d.ts +19 -0
- package/dist/browser/api/storageActionsManagementContext.js +36 -0
- package/dist/browser/api/storageActionsManagementContext.js.map +1 -0
- package/dist/browser/api/storageTaskAssignment/index.d.ts +3 -0
- package/dist/browser/api/storageTaskAssignment/index.js +4 -0
- package/dist/browser/api/storageTaskAssignment/index.js.map +1 -0
- package/dist/browser/api/storageTaskAssignment/operations.d.ts +10 -0
- package/dist/browser/api/storageTaskAssignment/operations.js +33 -0
- package/dist/browser/api/storageTaskAssignment/operations.js.map +1 -0
- package/dist/browser/api/storageTaskAssignment/options.d.ts +7 -0
- package/dist/browser/api/storageTaskAssignment/options.js +4 -0
- package/dist/browser/api/storageTaskAssignment/options.js.map +1 -0
- package/dist/browser/api/storageTasks/index.d.ts +3 -0
- package/dist/browser/api/storageTasks/index.js +4 -0
- package/dist/browser/api/storageTasks/index.js.map +1 -0
- package/dist/browser/api/storageTasks/operations.d.ts +40 -0
- package/dist/browser/api/storageTasks/operations.js +209 -0
- package/dist/browser/api/storageTasks/operations.js.map +1 -0
- package/dist/browser/api/storageTasks/options.d.ts +29 -0
- package/dist/browser/api/storageTasks/options.js +4 -0
- package/dist/browser/api/storageTasks/options.js.map +1 -0
- package/dist/browser/api/storageTasksReport/index.d.ts +3 -0
- package/dist/browser/api/storageTasksReport/index.js +4 -0
- package/dist/browser/api/storageTasksReport/index.js.map +1 -0
- package/dist/browser/api/storageTasksReport/operations.d.ts +10 -0
- package/dist/browser/api/storageTasksReport/operations.js +34 -0
- package/dist/browser/api/storageTasksReport/operations.js.map +1 -0
- package/dist/browser/api/storageTasksReport/options.d.ts +9 -0
- package/dist/browser/api/storageTasksReport/options.js +4 -0
- package/dist/browser/api/storageTasksReport/options.js.map +1 -0
- package/dist/browser/classic/index.d.ts +5 -0
- package/dist/browser/classic/index.js +4 -0
- package/dist/browser/classic/index.js.map +1 -0
- package/dist/browser/classic/operations/index.d.ts +11 -0
- package/dist/browser/classic/operations/index.js +12 -0
- package/dist/browser/classic/operations/index.js.map +1 -0
- package/dist/browser/classic/storageTaskAssignment/index.d.ts +11 -0
- package/dist/browser/classic/storageTaskAssignment/index.js +12 -0
- package/dist/browser/classic/storageTaskAssignment/index.js.map +1 -0
- package/dist/browser/classic/storageTasks/index.d.ts +29 -0
- package/dist/browser/classic/storageTasks/index.js +18 -0
- package/dist/browser/classic/storageTasks/index.js.map +1 -0
- package/dist/browser/classic/storageTasksReport/index.d.ts +11 -0
- package/dist/browser/classic/storageTasksReport/index.js +12 -0
- package/dist/browser/classic/storageTasksReport/index.js.map +1 -0
- package/dist/browser/index.d.ts +12 -0
- package/dist/browser/index.js +6 -0
- package/dist/browser/index.js.map +1 -0
- package/dist/browser/logger.d.ts +2 -0
- package/dist/browser/logger.js +5 -0
- package/dist/browser/logger.js.map +1 -0
- package/dist/browser/models/index.d.ts +2 -0
- package/dist/browser/models/index.js +4 -0
- package/dist/browser/models/index.js.map +1 -0
- package/dist/browser/models/models.d.ts +564 -0
- package/dist/browser/models/models.js +545 -0
- package/dist/browser/models/models.js.map +1 -0
- package/dist/browser/package.json +3 -0
- package/dist/browser/restorePollerHelpers.d.ts +21 -0
- package/dist/browser/restorePollerHelpers.js +98 -0
- package/dist/browser/restorePollerHelpers.js.map +1 -0
- package/dist/browser/static-helpers/pagingHelpers.d.ts +72 -0
- package/dist/browser/static-helpers/pagingHelpers.js +137 -0
- package/dist/browser/static-helpers/pagingHelpers.js.map +1 -0
- package/dist/browser/static-helpers/pollingHelpers.d.ts +30 -0
- package/dist/browser/static-helpers/pollingHelpers.js +76 -0
- package/dist/browser/static-helpers/pollingHelpers.js.map +1 -0
- package/dist/browser/static-helpers/urlTemplate.d.ts +5 -0
- package/dist/browser/static-helpers/urlTemplate.js +169 -0
- package/dist/browser/static-helpers/urlTemplate.js.map +1 -0
- package/dist/browser/storageActionsManagementClient.d.ts +24 -0
- package/dist/browser/storageActionsManagementClient.js +24 -0
- package/dist/browser/storageActionsManagementClient.js.map +1 -0
- package/dist/commonjs/api/index.d.ts +2 -0
- package/dist/commonjs/api/index.js +8 -0
- package/dist/commonjs/api/index.js.map +1 -0
- package/dist/commonjs/api/operations/index.d.ts +3 -0
- package/dist/commonjs/api/operations/index.js +8 -0
- package/dist/commonjs/api/operations/index.js.map +1 -0
- package/dist/commonjs/api/operations/operations.d.ts +10 -0
- package/dist/commonjs/api/operations/operations.js +34 -0
- package/dist/commonjs/api/operations/operations.js.map +1 -0
- package/dist/commonjs/api/operations/options.d.ts +5 -0
- package/dist/commonjs/api/operations/options.js +5 -0
- package/dist/commonjs/api/operations/options.js.map +1 -0
- package/dist/commonjs/api/storageActionsManagementContext.d.ts +19 -0
- package/dist/commonjs/api/storageActionsManagementContext.js +39 -0
- package/dist/commonjs/api/storageActionsManagementContext.js.map +1 -0
- package/dist/commonjs/api/storageTaskAssignment/index.d.ts +3 -0
- package/dist/commonjs/api/storageTaskAssignment/index.js +8 -0
- package/dist/commonjs/api/storageTaskAssignment/index.js.map +1 -0
- package/dist/commonjs/api/storageTaskAssignment/operations.d.ts +10 -0
- package/dist/commonjs/api/storageTaskAssignment/operations.js +38 -0
- package/dist/commonjs/api/storageTaskAssignment/operations.js.map +1 -0
- package/dist/commonjs/api/storageTaskAssignment/options.d.ts +7 -0
- package/dist/commonjs/api/storageTaskAssignment/options.js +5 -0
- package/dist/commonjs/api/storageTaskAssignment/options.js.map +1 -0
- package/dist/commonjs/api/storageTasks/index.d.ts +3 -0
- package/dist/commonjs/api/storageTasks/index.js +14 -0
- package/dist/commonjs/api/storageTasks/index.js.map +1 -0
- package/dist/commonjs/api/storageTasks/operations.d.ts +40 -0
- package/dist/commonjs/api/storageTasks/operations.js +232 -0
- package/dist/commonjs/api/storageTasks/operations.js.map +1 -0
- package/dist/commonjs/api/storageTasks/options.d.ts +29 -0
- package/dist/commonjs/api/storageTasks/options.js +5 -0
- package/dist/commonjs/api/storageTasks/options.js.map +1 -0
- package/dist/commonjs/api/storageTasksReport/index.d.ts +3 -0
- package/dist/commonjs/api/storageTasksReport/index.js +8 -0
- package/dist/commonjs/api/storageTasksReport/index.js.map +1 -0
- package/dist/commonjs/api/storageTasksReport/operations.d.ts +10 -0
- package/dist/commonjs/api/storageTasksReport/operations.js +39 -0
- package/dist/commonjs/api/storageTasksReport/operations.js.map +1 -0
- package/dist/commonjs/api/storageTasksReport/options.d.ts +9 -0
- package/dist/commonjs/api/storageTasksReport/options.js +5 -0
- package/dist/commonjs/api/storageTasksReport/options.js.map +1 -0
- package/dist/commonjs/classic/index.d.ts +5 -0
- package/dist/commonjs/classic/index.js +5 -0
- package/dist/commonjs/classic/index.js.map +1 -0
- package/dist/commonjs/classic/operations/index.d.ts +11 -0
- package/dist/commonjs/classic/operations/index.js +15 -0
- package/dist/commonjs/classic/operations/index.js.map +1 -0
- package/dist/commonjs/classic/storageTaskAssignment/index.d.ts +11 -0
- package/dist/commonjs/classic/storageTaskAssignment/index.js +15 -0
- package/dist/commonjs/classic/storageTaskAssignment/index.js.map +1 -0
- package/dist/commonjs/classic/storageTasks/index.d.ts +29 -0
- package/dist/commonjs/classic/storageTasks/index.js +21 -0
- package/dist/commonjs/classic/storageTasks/index.js.map +1 -0
- package/dist/commonjs/classic/storageTasksReport/index.d.ts +11 -0
- package/dist/commonjs/classic/storageTasksReport/index.js +15 -0
- package/dist/commonjs/classic/storageTasksReport/index.js.map +1 -0
- package/dist/commonjs/index.d.ts +12 -0
- package/dist/commonjs/index.js +23 -0
- package/dist/commonjs/index.js.map +1 -0
- package/dist/commonjs/logger.d.ts +2 -0
- package/dist/commonjs/logger.js +8 -0
- package/dist/commonjs/logger.js.map +1 -0
- package/dist/commonjs/models/index.d.ts +2 -0
- package/dist/commonjs/models/index.js +19 -0
- package/dist/commonjs/models/index.js.map +1 -0
- package/dist/commonjs/models/models.d.ts +564 -0
- package/dist/commonjs/models/models.js +611 -0
- package/dist/commonjs/models/models.js.map +1 -0
- package/dist/commonjs/package.json +3 -0
- package/dist/commonjs/restorePollerHelpers.d.ts +21 -0
- package/dist/commonjs/restorePollerHelpers.js +101 -0
- package/dist/commonjs/restorePollerHelpers.js.map +1 -0
- package/dist/commonjs/static-helpers/pagingHelpers.d.ts +72 -0
- package/dist/commonjs/static-helpers/pagingHelpers.js +140 -0
- package/dist/commonjs/static-helpers/pagingHelpers.js.map +1 -0
- package/dist/commonjs/static-helpers/pollingHelpers.d.ts +30 -0
- package/dist/commonjs/static-helpers/pollingHelpers.js +79 -0
- package/dist/commonjs/static-helpers/pollingHelpers.js.map +1 -0
- package/dist/commonjs/static-helpers/urlTemplate.d.ts +5 -0
- package/dist/commonjs/static-helpers/urlTemplate.js +172 -0
- package/dist/commonjs/static-helpers/urlTemplate.js.map +1 -0
- package/dist/commonjs/storageActionsManagementClient.d.ts +24 -0
- package/dist/commonjs/storageActionsManagementClient.js +28 -0
- package/dist/commonjs/storageActionsManagementClient.js.map +1 -0
- package/{types → dist/commonjs}/tsdoc-metadata.json +1 -1
- package/dist/esm/api/index.d.ts +2 -0
- package/dist/esm/api/index.js +4 -0
- package/dist/esm/api/index.js.map +1 -0
- package/dist/esm/api/operations/index.d.ts +3 -0
- package/dist/esm/api/operations/index.js +4 -0
- package/dist/esm/api/operations/index.js.map +1 -0
- package/dist/esm/api/operations/operations.d.ts +10 -0
- package/dist/esm/api/operations/operations.js +29 -0
- package/dist/esm/api/operations/operations.js.map +1 -0
- package/dist/esm/api/operations/options.d.ts +5 -0
- package/dist/esm/api/operations/options.js +4 -0
- package/dist/esm/api/operations/options.js.map +1 -0
- package/dist/esm/api/storageActionsManagementContext.d.ts +19 -0
- package/dist/esm/api/storageActionsManagementContext.js +36 -0
- package/dist/esm/api/storageActionsManagementContext.js.map +1 -0
- package/dist/esm/api/storageTaskAssignment/index.d.ts +3 -0
- package/dist/esm/api/storageTaskAssignment/index.js +4 -0
- package/dist/esm/api/storageTaskAssignment/index.js.map +1 -0
- package/dist/esm/api/storageTaskAssignment/operations.d.ts +10 -0
- package/dist/esm/api/storageTaskAssignment/operations.js +33 -0
- package/dist/esm/api/storageTaskAssignment/operations.js.map +1 -0
- package/dist/esm/api/storageTaskAssignment/options.d.ts +7 -0
- package/dist/esm/api/storageTaskAssignment/options.js +4 -0
- package/dist/esm/api/storageTaskAssignment/options.js.map +1 -0
- package/dist/esm/api/storageTasks/index.d.ts +3 -0
- package/dist/esm/api/storageTasks/index.js +4 -0
- package/dist/esm/api/storageTasks/index.js.map +1 -0
- package/dist/esm/api/storageTasks/operations.d.ts +40 -0
- package/dist/esm/api/storageTasks/operations.js +209 -0
- package/dist/esm/api/storageTasks/operations.js.map +1 -0
- package/dist/esm/api/storageTasks/options.d.ts +29 -0
- package/dist/esm/api/storageTasks/options.js +4 -0
- package/dist/esm/api/storageTasks/options.js.map +1 -0
- package/dist/esm/api/storageTasksReport/index.d.ts +3 -0
- package/dist/esm/api/storageTasksReport/index.js +4 -0
- package/dist/esm/api/storageTasksReport/index.js.map +1 -0
- package/dist/esm/api/storageTasksReport/operations.d.ts +10 -0
- package/dist/esm/api/storageTasksReport/operations.js +34 -0
- package/dist/esm/api/storageTasksReport/operations.js.map +1 -0
- package/dist/esm/api/storageTasksReport/options.d.ts +9 -0
- package/dist/esm/api/storageTasksReport/options.js +4 -0
- package/dist/esm/api/storageTasksReport/options.js.map +1 -0
- package/dist/esm/classic/index.d.ts +5 -0
- package/dist/esm/classic/index.js +4 -0
- package/dist/esm/classic/index.js.map +1 -0
- package/dist/esm/classic/operations/index.d.ts +11 -0
- package/dist/esm/classic/operations/index.js +12 -0
- package/dist/esm/classic/operations/index.js.map +1 -0
- package/dist/esm/classic/storageTaskAssignment/index.d.ts +11 -0
- package/dist/esm/classic/storageTaskAssignment/index.js +12 -0
- package/dist/esm/classic/storageTaskAssignment/index.js.map +1 -0
- package/dist/esm/classic/storageTasks/index.d.ts +29 -0
- package/dist/esm/classic/storageTasks/index.js +18 -0
- package/dist/esm/classic/storageTasks/index.js.map +1 -0
- package/dist/esm/classic/storageTasksReport/index.d.ts +11 -0
- package/dist/esm/classic/storageTasksReport/index.js +12 -0
- package/dist/esm/classic/storageTasksReport/index.js.map +1 -0
- package/dist/esm/index.d.ts +12 -0
- package/dist/esm/index.js +6 -0
- package/dist/esm/index.js.map +1 -0
- package/dist/esm/logger.d.ts +2 -0
- package/dist/esm/logger.js +5 -0
- package/dist/esm/logger.js.map +1 -0
- package/dist/esm/models/index.d.ts +2 -0
- package/dist/esm/models/index.js +4 -0
- package/dist/esm/models/index.js.map +1 -0
- package/dist/esm/models/models.d.ts +564 -0
- package/dist/esm/models/models.js +545 -0
- package/dist/esm/models/models.js.map +1 -0
- package/dist/esm/package.json +3 -0
- package/dist/esm/restorePollerHelpers.d.ts +21 -0
- package/dist/esm/restorePollerHelpers.js +98 -0
- package/dist/esm/restorePollerHelpers.js.map +1 -0
- package/dist/esm/static-helpers/pagingHelpers.d.ts +72 -0
- package/dist/esm/static-helpers/pagingHelpers.js +137 -0
- package/dist/esm/static-helpers/pagingHelpers.js.map +1 -0
- package/dist/esm/static-helpers/pollingHelpers.d.ts +30 -0
- package/dist/esm/static-helpers/pollingHelpers.js +76 -0
- package/dist/esm/static-helpers/pollingHelpers.js.map +1 -0
- package/dist/esm/static-helpers/urlTemplate.d.ts +5 -0
- package/dist/esm/static-helpers/urlTemplate.js +169 -0
- package/dist/esm/static-helpers/urlTemplate.js.map +1 -0
- package/dist/esm/storageActionsManagementClient.d.ts +24 -0
- package/dist/esm/storageActionsManagementClient.js +24 -0
- package/dist/esm/storageActionsManagementClient.js.map +1 -0
- package/dist/react-native/api/index.d.ts +2 -0
- package/dist/react-native/api/index.js +4 -0
- package/dist/react-native/api/index.js.map +1 -0
- package/dist/react-native/api/operations/index.d.ts +3 -0
- package/dist/react-native/api/operations/index.js +4 -0
- package/dist/react-native/api/operations/index.js.map +1 -0
- package/dist/react-native/api/operations/operations.d.ts +10 -0
- package/dist/react-native/api/operations/operations.js +29 -0
- package/dist/react-native/api/operations/operations.js.map +1 -0
- package/dist/react-native/api/operations/options.d.ts +5 -0
- package/dist/react-native/api/operations/options.js +4 -0
- package/dist/react-native/api/operations/options.js.map +1 -0
- package/dist/react-native/api/storageActionsManagementContext.d.ts +19 -0
- package/dist/react-native/api/storageActionsManagementContext.js +36 -0
- package/dist/react-native/api/storageActionsManagementContext.js.map +1 -0
- package/dist/react-native/api/storageTaskAssignment/index.d.ts +3 -0
- package/dist/react-native/api/storageTaskAssignment/index.js +4 -0
- package/dist/react-native/api/storageTaskAssignment/index.js.map +1 -0
- package/dist/react-native/api/storageTaskAssignment/operations.d.ts +10 -0
- package/dist/react-native/api/storageTaskAssignment/operations.js +33 -0
- package/dist/react-native/api/storageTaskAssignment/operations.js.map +1 -0
- package/dist/react-native/api/storageTaskAssignment/options.d.ts +7 -0
- package/dist/react-native/api/storageTaskAssignment/options.js +4 -0
- package/dist/react-native/api/storageTaskAssignment/options.js.map +1 -0
- package/dist/react-native/api/storageTasks/index.d.ts +3 -0
- package/dist/react-native/api/storageTasks/index.js +4 -0
- package/dist/react-native/api/storageTasks/index.js.map +1 -0
- package/dist/react-native/api/storageTasks/operations.d.ts +40 -0
- package/dist/react-native/api/storageTasks/operations.js +209 -0
- package/dist/react-native/api/storageTasks/operations.js.map +1 -0
- package/dist/react-native/api/storageTasks/options.d.ts +29 -0
- package/dist/react-native/api/storageTasks/options.js +4 -0
- package/dist/react-native/api/storageTasks/options.js.map +1 -0
- package/dist/react-native/api/storageTasksReport/index.d.ts +3 -0
- package/dist/react-native/api/storageTasksReport/index.js +4 -0
- package/dist/react-native/api/storageTasksReport/index.js.map +1 -0
- package/dist/react-native/api/storageTasksReport/operations.d.ts +10 -0
- package/dist/react-native/api/storageTasksReport/operations.js +34 -0
- package/dist/react-native/api/storageTasksReport/operations.js.map +1 -0
- package/dist/react-native/api/storageTasksReport/options.d.ts +9 -0
- package/dist/react-native/api/storageTasksReport/options.js +4 -0
- package/dist/react-native/api/storageTasksReport/options.js.map +1 -0
- package/dist/react-native/classic/index.d.ts +5 -0
- package/dist/react-native/classic/index.js +4 -0
- package/dist/react-native/classic/index.js.map +1 -0
- package/dist/react-native/classic/operations/index.d.ts +11 -0
- package/dist/react-native/classic/operations/index.js +12 -0
- package/dist/react-native/classic/operations/index.js.map +1 -0
- package/dist/react-native/classic/storageTaskAssignment/index.d.ts +11 -0
- package/dist/react-native/classic/storageTaskAssignment/index.js +12 -0
- package/dist/react-native/classic/storageTaskAssignment/index.js.map +1 -0
- package/dist/react-native/classic/storageTasks/index.d.ts +29 -0
- package/dist/react-native/classic/storageTasks/index.js +18 -0
- package/dist/react-native/classic/storageTasks/index.js.map +1 -0
- package/dist/react-native/classic/storageTasksReport/index.d.ts +11 -0
- package/dist/react-native/classic/storageTasksReport/index.js +12 -0
- package/dist/react-native/classic/storageTasksReport/index.js.map +1 -0
- package/dist/react-native/index.d.ts +12 -0
- package/dist/react-native/index.js +6 -0
- package/dist/react-native/index.js.map +1 -0
- package/dist/react-native/logger.d.ts +2 -0
- package/dist/react-native/logger.js +5 -0
- package/dist/react-native/logger.js.map +1 -0
- package/dist/react-native/models/index.d.ts +2 -0
- package/dist/react-native/models/index.js +4 -0
- package/dist/react-native/models/index.js.map +1 -0
- package/dist/react-native/models/models.d.ts +564 -0
- package/dist/react-native/models/models.js +545 -0
- package/dist/react-native/models/models.js.map +1 -0
- package/dist/react-native/package.json +3 -0
- package/dist/react-native/restorePollerHelpers.d.ts +21 -0
- package/dist/react-native/restorePollerHelpers.js +98 -0
- package/dist/react-native/restorePollerHelpers.js.map +1 -0
- package/dist/react-native/static-helpers/pagingHelpers.d.ts +72 -0
- package/dist/react-native/static-helpers/pagingHelpers.js +137 -0
- package/dist/react-native/static-helpers/pagingHelpers.js.map +1 -0
- package/dist/react-native/static-helpers/pollingHelpers.d.ts +30 -0
- package/dist/react-native/static-helpers/pollingHelpers.js +76 -0
- package/dist/react-native/static-helpers/pollingHelpers.js.map +1 -0
- package/dist/react-native/static-helpers/urlTemplate.d.ts +5 -0
- package/dist/react-native/static-helpers/urlTemplate.js +169 -0
- package/dist/react-native/static-helpers/urlTemplate.js.map +1 -0
- package/dist/react-native/storageActionsManagementClient.d.ts +24 -0
- package/dist/react-native/storageActionsManagementClient.js +24 -0
- package/dist/react-native/storageActionsManagementClient.js.map +1 -0
- package/package.json +221 -86
- package/review/arm-storageactions-api-operations.api.md +19 -0
- package/review/arm-storageactions-api-storageTaskAssignment.api.md +20 -0
- package/review/arm-storageactions-api-storageTasks.api.md +66 -0
- package/review/arm-storageactions-api-storageTasksReport.api.md +21 -0
- package/review/arm-storageactions-api.api.md +27 -0
- package/review/arm-storageactions-models.api.md +360 -0
- package/review/arm-storageactions.api.md +141 -179
- package/dist/index.js +0 -2533
- package/dist/index.js.map +0 -1
- package/dist/index.min.js +0 -1
- package/dist/index.min.js.map +0 -1
- package/dist-esm/samples-dev/operationsListSample.d.ts +0 -2
- package/dist-esm/samples-dev/operationsListSample.d.ts.map +0 -1
- package/dist-esm/samples-dev/operationsListSample.js +0 -53
- package/dist-esm/samples-dev/operationsListSample.js.map +0 -1
- package/dist-esm/samples-dev/storageTaskAssignmentListSample.d.ts +0 -2
- package/dist-esm/samples-dev/storageTaskAssignmentListSample.d.ts.map +0 -1
- package/dist-esm/samples-dev/storageTaskAssignmentListSample.js +0 -55
- package/dist-esm/samples-dev/storageTaskAssignmentListSample.js.map +0 -1
- package/dist-esm/samples-dev/storageTasksCreateSample.d.ts +0 -2
- package/dist-esm/samples-dev/storageTasksCreateSample.d.ts.map +0 -1
- package/dist-esm/samples-dev/storageTasksCreateSample.js +0 -64
- package/dist-esm/samples-dev/storageTasksCreateSample.js.map +0 -1
- package/dist-esm/samples-dev/storageTasksDeleteSample.d.ts +0 -2
- package/dist-esm/samples-dev/storageTasksDeleteSample.d.ts.map +0 -1
- package/dist-esm/samples-dev/storageTasksDeleteSample.js +0 -39
- package/dist-esm/samples-dev/storageTasksDeleteSample.js.map +0 -1
- package/dist-esm/samples-dev/storageTasksGetSample.d.ts +0 -2
- package/dist-esm/samples-dev/storageTasksGetSample.d.ts.map +0 -1
- package/dist-esm/samples-dev/storageTasksGetSample.js +0 -39
- package/dist-esm/samples-dev/storageTasksGetSample.js.map +0 -1
- package/dist-esm/samples-dev/storageTasksListByResourceGroupSample.d.ts +0 -2
- package/dist-esm/samples-dev/storageTasksListByResourceGroupSample.d.ts.map +0 -1
- package/dist-esm/samples-dev/storageTasksListByResourceGroupSample.js +0 -54
- package/dist-esm/samples-dev/storageTasksListByResourceGroupSample.js.map +0 -1
- package/dist-esm/samples-dev/storageTasksListBySubscriptionSample.d.ts +0 -2
- package/dist-esm/samples-dev/storageTasksListBySubscriptionSample.d.ts.map +0 -1
- package/dist-esm/samples-dev/storageTasksListBySubscriptionSample.js +0 -53
- package/dist-esm/samples-dev/storageTasksListBySubscriptionSample.js.map +0 -1
- package/dist-esm/samples-dev/storageTasksPreviewActionsSample.d.ts +0 -2
- package/dist-esm/samples-dev/storageTasksPreviewActionsSample.d.ts.map +0 -1
- package/dist-esm/samples-dev/storageTasksPreviewActionsSample.js +0 -87
- package/dist-esm/samples-dev/storageTasksPreviewActionsSample.js.map +0 -1
- package/dist-esm/samples-dev/storageTasksReportListSample.d.ts +0 -2
- package/dist-esm/samples-dev/storageTasksReportListSample.d.ts.map +0 -1
- package/dist-esm/samples-dev/storageTasksReportListSample.js +0 -55
- package/dist-esm/samples-dev/storageTasksReportListSample.js.map +0 -1
- package/dist-esm/samples-dev/storageTasksUpdateSample.d.ts +0 -2
- package/dist-esm/samples-dev/storageTasksUpdateSample.d.ts.map +0 -1
- package/dist-esm/samples-dev/storageTasksUpdateSample.js +0 -63
- package/dist-esm/samples-dev/storageTasksUpdateSample.js.map +0 -1
- package/dist-esm/src/index.d.ts +0 -6
- package/dist-esm/src/index.d.ts.map +0 -1
- package/dist-esm/src/index.js +0 -13
- package/dist-esm/src/index.js.map +0 -1
- package/dist-esm/src/lroImpl.d.ts +0 -11
- package/dist-esm/src/lroImpl.d.ts.map +0 -1
- package/dist-esm/src/lroImpl.js +0 -21
- package/dist-esm/src/lroImpl.js.map +0 -1
- package/dist-esm/src/models/index.d.ts +0 -720
- package/dist-esm/src/models/index.d.ts.map +0 -1
- package/dist-esm/src/models/index.js +0 -92
- package/dist-esm/src/models/index.js.map +0 -1
- package/dist-esm/src/models/mappers.d.ts +0 -37
- package/dist-esm/src/models/mappers.d.ts.map +0 -1
- package/dist-esm/src/models/mappers.js +0 -1043
- package/dist-esm/src/models/mappers.js.map +0 -1
- package/dist-esm/src/models/parameters.d.ts +0 -16
- package/dist-esm/src/models/parameters.d.ts.map +0 -1
- package/dist-esm/src/models/parameters.js +0 -143
- package/dist-esm/src/models/parameters.js.map +0 -1
- package/dist-esm/src/operations/index.d.ts +0 -5
- package/dist-esm/src/operations/index.d.ts.map +0 -1
- package/dist-esm/src/operations/index.js +0 -12
- package/dist-esm/src/operations/index.js.map +0 -1
- package/dist-esm/src/operations/operations.d.ts +0 -32
- package/dist-esm/src/operations/operations.d.ts.map +0 -1
- package/dist-esm/src/operations/operations.js +0 -133
- package/dist-esm/src/operations/operations.js.map +0 -1
- package/dist-esm/src/operations/storageTaskAssignmentOperations.d.ts +0 -44
- package/dist-esm/src/operations/storageTaskAssignmentOperations.d.ts.map +0 -1
- package/dist-esm/src/operations/storageTaskAssignmentOperations.js +0 -156
- package/dist-esm/src/operations/storageTaskAssignmentOperations.js.map +0 -1
- package/dist-esm/src/operations/storageTasks.d.ts +0 -135
- package/dist-esm/src/operations/storageTasks.d.ts.map +0 -1
- package/dist-esm/src/operations/storageTasks.js +0 -606
- package/dist-esm/src/operations/storageTasks.js.map +0 -1
- package/dist-esm/src/operations/storageTasksReport.d.ts +0 -44
- package/dist-esm/src/operations/storageTasksReport.d.ts.map +0 -1
- package/dist-esm/src/operations/storageTasksReport.js +0 -160
- package/dist-esm/src/operations/storageTasksReport.js.map +0 -1
- package/dist-esm/src/operationsInterfaces/index.d.ts +0 -5
- package/dist-esm/src/operationsInterfaces/index.d.ts.map +0 -1
- package/dist-esm/src/operationsInterfaces/index.js +0 -12
- package/dist-esm/src/operationsInterfaces/index.js.map +0 -1
- package/dist-esm/src/operationsInterfaces/operations.d.ts +0 -11
- package/dist-esm/src/operationsInterfaces/operations.d.ts.map +0 -1
- package/dist-esm/src/operationsInterfaces/operations.js +0 -9
- package/dist-esm/src/operationsInterfaces/operations.js.map +0 -1
- package/dist-esm/src/operationsInterfaces/storageTaskAssignmentOperations.d.ts +0 -15
- package/dist-esm/src/operationsInterfaces/storageTaskAssignmentOperations.d.ts.map +0 -1
- package/dist-esm/src/operationsInterfaces/storageTaskAssignmentOperations.js +0 -9
- package/dist-esm/src/operationsInterfaces/storageTaskAssignmentOperations.js.map +0 -1
- package/dist-esm/src/operationsInterfaces/storageTasks.d.ts +0 -99
- package/dist-esm/src/operationsInterfaces/storageTasks.d.ts.map +0 -1
- package/dist-esm/src/operationsInterfaces/storageTasks.js +0 -9
- package/dist-esm/src/operationsInterfaces/storageTasks.js.map +0 -1
- package/dist-esm/src/operationsInterfaces/storageTasksReport.d.ts +0 -15
- package/dist-esm/src/operationsInterfaces/storageTasksReport.d.ts.map +0 -1
- package/dist-esm/src/operationsInterfaces/storageTasksReport.js +0 -9
- package/dist-esm/src/operationsInterfaces/storageTasksReport.js.map +0 -1
- package/dist-esm/src/pagingHelper.d.ts +0 -13
- package/dist-esm/src/pagingHelper.d.ts.map +0 -1
- package/dist-esm/src/pagingHelper.js +0 -32
- package/dist-esm/src/pagingHelper.js.map +0 -1
- package/dist-esm/src/storageActionsManagementClient.d.ts +0 -23
- package/dist-esm/src/storageActionsManagementClient.d.ts.map +0 -1
- package/dist-esm/src/storageActionsManagementClient.js +0 -104
- package/dist-esm/src/storageActionsManagementClient.js.map +0 -1
- package/dist-esm/test/storageactions_operations_test.spec.d.ts +0 -4
- package/dist-esm/test/storageactions_operations_test.spec.d.ts.map +0 -1
- package/dist-esm/test/storageactions_operations_test.spec.js +0 -135
- package/dist-esm/test/storageactions_operations_test.spec.js.map +0 -1
- package/src/index.ts +0 -13
- package/src/lroImpl.ts +0 -42
- package/src/models/index.ts +0 -818
- package/src/models/mappers.ts +0 -1094
- package/src/models/parameters.ts +0 -166
- package/src/operations/index.ts +0 -12
- package/src/operations/operations.ts +0 -149
- package/src/operations/storageTaskAssignmentOperations.ts +0 -205
- package/src/operations/storageTasks.ts +0 -791
- package/src/operations/storageTasksReport.ts +0 -207
- package/src/operationsInterfaces/index.ts +0 -12
- package/src/operationsInterfaces/operations.ts +0 -22
- package/src/operationsInterfaces/storageTaskAssignmentOperations.ts +0 -31
- package/src/operationsInterfaces/storageTasks.ts +0 -180
- package/src/operationsInterfaces/storageTasksReport.ts +0 -31
- package/src/pagingHelper.ts +0 -39
- package/src/storageActionsManagementClient.ts +0 -158
- package/tsconfig.json +0 -33
- package/types/arm-storageactions.d.ts +0 -967
|
@@ -1,967 +0,0 @@
|
|
|
1
|
-
import * as coreAuth from '@azure/core-auth';
|
|
2
|
-
import * as coreClient from '@azure/core-client';
|
|
3
|
-
import { OperationState } from '@azure/core-lro';
|
|
4
|
-
import { PagedAsyncIterableIterator } from '@azure/core-paging';
|
|
5
|
-
import { SimplePollerLike } from '@azure/core-lro';
|
|
6
|
-
|
|
7
|
-
/**
|
|
8
|
-
* Defines values for ActionType. \
|
|
9
|
-
* {@link KnownActionType} can be used interchangeably with ActionType,
|
|
10
|
-
* this enum contains the known values that the service supports.
|
|
11
|
-
* ### Known values supported by the service
|
|
12
|
-
* **Internal**
|
|
13
|
-
*/
|
|
14
|
-
export declare type ActionType = string;
|
|
15
|
-
|
|
16
|
-
/**
|
|
17
|
-
* Defines values for CreatedByType. \
|
|
18
|
-
* {@link KnownCreatedByType} can be used interchangeably with CreatedByType,
|
|
19
|
-
* this enum contains the known values that the service supports.
|
|
20
|
-
* ### Known values supported by the service
|
|
21
|
-
* **User** \
|
|
22
|
-
* **Application** \
|
|
23
|
-
* **ManagedIdentity** \
|
|
24
|
-
* **Key**
|
|
25
|
-
*/
|
|
26
|
-
export declare type CreatedByType = string;
|
|
27
|
-
|
|
28
|
-
/** The else block of storage task operation */
|
|
29
|
-
export declare interface ElseCondition {
|
|
30
|
-
/** List of operations to execute in the else block */
|
|
31
|
-
operations: StorageTaskOperation[];
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
/** The resource management error additional info. */
|
|
35
|
-
export declare interface ErrorAdditionalInfo {
|
|
36
|
-
/**
|
|
37
|
-
* The additional info type.
|
|
38
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
39
|
-
*/
|
|
40
|
-
readonly type?: string;
|
|
41
|
-
/**
|
|
42
|
-
* The additional info.
|
|
43
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
44
|
-
*/
|
|
45
|
-
readonly info?: Record<string, unknown>;
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
/** The error detail. */
|
|
49
|
-
export declare interface ErrorDetail {
|
|
50
|
-
/**
|
|
51
|
-
* The error code.
|
|
52
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
53
|
-
*/
|
|
54
|
-
readonly code?: string;
|
|
55
|
-
/**
|
|
56
|
-
* The error message.
|
|
57
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
58
|
-
*/
|
|
59
|
-
readonly message?: string;
|
|
60
|
-
/**
|
|
61
|
-
* The error target.
|
|
62
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
63
|
-
*/
|
|
64
|
-
readonly target?: string;
|
|
65
|
-
/**
|
|
66
|
-
* The error details.
|
|
67
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
68
|
-
*/
|
|
69
|
-
readonly details?: ErrorDetail[];
|
|
70
|
-
/**
|
|
71
|
-
* The error additional info.
|
|
72
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
73
|
-
*/
|
|
74
|
-
readonly additionalInfo?: ErrorAdditionalInfo[];
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
/** Common error response for all Azure Resource Manager APIs to return error details for failed operations. (This also follows the OData error response format.). */
|
|
78
|
-
export declare interface ErrorResponse {
|
|
79
|
-
/** The error object. */
|
|
80
|
-
error?: ErrorDetail;
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
/**
|
|
84
|
-
* Given the last `.value` produced by the `byPage` iterator,
|
|
85
|
-
* returns a continuation token that can be used to begin paging from
|
|
86
|
-
* that point later.
|
|
87
|
-
* @param page An object from accessing `value` on the IteratorResult from a `byPage` iterator.
|
|
88
|
-
* @returns The continuation token that can be passed into byPage() during future calls.
|
|
89
|
-
*/
|
|
90
|
-
export declare function getContinuationToken(page: unknown): string | undefined;
|
|
91
|
-
|
|
92
|
-
/** The if block of storage task operation */
|
|
93
|
-
export declare interface IfCondition {
|
|
94
|
-
/** The condition predicate which is composed of object properties, eg: blob and container properties. */
|
|
95
|
-
condition: string;
|
|
96
|
-
/** List of operations to execute when the condition predicate satisfies. */
|
|
97
|
-
operations: StorageTaskOperation[];
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
/** Known values of {@link ActionType} that the service accepts. */
|
|
101
|
-
export declare enum KnownActionType {
|
|
102
|
-
/** Internal */
|
|
103
|
-
Internal = "Internal"
|
|
104
|
-
}
|
|
105
|
-
|
|
106
|
-
/** Known values of {@link CreatedByType} that the service accepts. */
|
|
107
|
-
export declare enum KnownCreatedByType {
|
|
108
|
-
/** User */
|
|
109
|
-
User = "User",
|
|
110
|
-
/** Application */
|
|
111
|
-
Application = "Application",
|
|
112
|
-
/** ManagedIdentity */
|
|
113
|
-
ManagedIdentity = "ManagedIdentity",
|
|
114
|
-
/** Key */
|
|
115
|
-
Key = "Key"
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
/** Known values of {@link ManagedServiceIdentityType} that the service accepts. */
|
|
119
|
-
export declare enum KnownManagedServiceIdentityType {
|
|
120
|
-
/** None */
|
|
121
|
-
None = "None",
|
|
122
|
-
/** SystemAssigned */
|
|
123
|
-
SystemAssigned = "SystemAssigned",
|
|
124
|
-
/** UserAssigned */
|
|
125
|
-
UserAssigned = "UserAssigned",
|
|
126
|
-
/** SystemAssignedUserAssigned */
|
|
127
|
-
SystemAssignedUserAssigned = "SystemAssigned,UserAssigned"
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
/** Known values of {@link MatchedBlockName} that the service accepts. */
|
|
131
|
-
export declare enum KnownMatchedBlockName {
|
|
132
|
-
/** If */
|
|
133
|
-
If = "If",
|
|
134
|
-
/** Else */
|
|
135
|
-
Else = "Else",
|
|
136
|
-
/** None */
|
|
137
|
-
None = "None"
|
|
138
|
-
}
|
|
139
|
-
|
|
140
|
-
/** Known values of {@link Origin} that the service accepts. */
|
|
141
|
-
export declare enum KnownOrigin {
|
|
142
|
-
/** User */
|
|
143
|
-
User = "user",
|
|
144
|
-
/** System */
|
|
145
|
-
System = "system",
|
|
146
|
-
/** UserSystem */
|
|
147
|
-
UserSystem = "user,system"
|
|
148
|
-
}
|
|
149
|
-
|
|
150
|
-
/** Known values of {@link RunResult} that the service accepts. */
|
|
151
|
-
export declare enum KnownRunResult {
|
|
152
|
-
/** Succeeded */
|
|
153
|
-
Succeeded = "Succeeded",
|
|
154
|
-
/** Failed */
|
|
155
|
-
Failed = "Failed"
|
|
156
|
-
}
|
|
157
|
-
|
|
158
|
-
/** Known values of {@link RunStatusEnum} that the service accepts. */
|
|
159
|
-
export declare enum KnownRunStatusEnum {
|
|
160
|
-
/** InProgress */
|
|
161
|
-
InProgress = "InProgress",
|
|
162
|
-
/** Finished */
|
|
163
|
-
Finished = "Finished"
|
|
164
|
-
}
|
|
165
|
-
|
|
166
|
-
/** Known values of {@link StorageTaskOperationName} that the service accepts. */
|
|
167
|
-
export declare enum KnownStorageTaskOperationName {
|
|
168
|
-
/** SetBlobTier */
|
|
169
|
-
SetBlobTier = "SetBlobTier",
|
|
170
|
-
/** SetBlobTags */
|
|
171
|
-
SetBlobTags = "SetBlobTags",
|
|
172
|
-
/** SetBlobImmutabilityPolicy */
|
|
173
|
-
SetBlobImmutabilityPolicy = "SetBlobImmutabilityPolicy",
|
|
174
|
-
/** SetBlobLegalHold */
|
|
175
|
-
SetBlobLegalHold = "SetBlobLegalHold",
|
|
176
|
-
/** SetBlobExpiry */
|
|
177
|
-
SetBlobExpiry = "SetBlobExpiry",
|
|
178
|
-
/** DeleteBlob */
|
|
179
|
-
DeleteBlob = "DeleteBlob",
|
|
180
|
-
/** UndeleteBlob */
|
|
181
|
-
UndeleteBlob = "UndeleteBlob"
|
|
182
|
-
}
|
|
183
|
-
|
|
184
|
-
/** Managed service identity (system assigned and/or user assigned identities) */
|
|
185
|
-
export declare interface ManagedServiceIdentity {
|
|
186
|
-
/**
|
|
187
|
-
* The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
|
|
188
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
189
|
-
*/
|
|
190
|
-
readonly principalId?: string;
|
|
191
|
-
/**
|
|
192
|
-
* The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
|
|
193
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
194
|
-
*/
|
|
195
|
-
readonly tenantId?: string;
|
|
196
|
-
/** Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed). */
|
|
197
|
-
type: ManagedServiceIdentityType;
|
|
198
|
-
/** The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests. */
|
|
199
|
-
userAssignedIdentities?: {
|
|
200
|
-
[propertyName: string]: UserAssignedIdentity | null;
|
|
201
|
-
};
|
|
202
|
-
}
|
|
203
|
-
|
|
204
|
-
/**
|
|
205
|
-
* Defines values for ManagedServiceIdentityType. \
|
|
206
|
-
* {@link KnownManagedServiceIdentityType} can be used interchangeably with ManagedServiceIdentityType,
|
|
207
|
-
* this enum contains the known values that the service supports.
|
|
208
|
-
* ### Known values supported by the service
|
|
209
|
-
* **None** \
|
|
210
|
-
* **SystemAssigned** \
|
|
211
|
-
* **UserAssigned** \
|
|
212
|
-
* **SystemAssigned,UserAssigned**
|
|
213
|
-
*/
|
|
214
|
-
export declare type ManagedServiceIdentityType = string;
|
|
215
|
-
|
|
216
|
-
/**
|
|
217
|
-
* Defines values for MatchedBlockName. \
|
|
218
|
-
* {@link KnownMatchedBlockName} can be used interchangeably with MatchedBlockName,
|
|
219
|
-
* this enum contains the known values that the service supports.
|
|
220
|
-
* ### Known values supported by the service
|
|
221
|
-
* **If** \
|
|
222
|
-
* **Else** \
|
|
223
|
-
* **None**
|
|
224
|
-
*/
|
|
225
|
-
export declare type MatchedBlockName = string;
|
|
226
|
-
|
|
227
|
-
/** Details of a REST API operation, returned from the Resource Provider Operations API */
|
|
228
|
-
export declare interface Operation {
|
|
229
|
-
/**
|
|
230
|
-
* The name of the operation, as per Resource-Based Access Control (RBAC). Examples: "Microsoft.Compute/virtualMachines/write", "Microsoft.Compute/virtualMachines/capture/action"
|
|
231
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
232
|
-
*/
|
|
233
|
-
readonly name?: string;
|
|
234
|
-
/**
|
|
235
|
-
* Whether the operation applies to data-plane. This is "true" for data-plane operations and "false" for ARM/control-plane operations.
|
|
236
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
237
|
-
*/
|
|
238
|
-
readonly isDataAction?: boolean;
|
|
239
|
-
/** Localized display information for this particular operation. */
|
|
240
|
-
display?: OperationDisplay;
|
|
241
|
-
/**
|
|
242
|
-
* The intended executor of the operation; as in Resource Based Access Control (RBAC) and audit logs UX. Default value is "user,system"
|
|
243
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
244
|
-
*/
|
|
245
|
-
readonly origin?: Origin;
|
|
246
|
-
/**
|
|
247
|
-
* Enum. Indicates the action type. "Internal" refers to actions that are for internal only APIs.
|
|
248
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
249
|
-
*/
|
|
250
|
-
readonly actionType?: ActionType;
|
|
251
|
-
}
|
|
252
|
-
|
|
253
|
-
/** Localized display information for this particular operation. */
|
|
254
|
-
export declare interface OperationDisplay {
|
|
255
|
-
/**
|
|
256
|
-
* The localized friendly form of the resource provider name, e.g. "Microsoft Monitoring Insights" or "Microsoft Compute".
|
|
257
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
258
|
-
*/
|
|
259
|
-
readonly provider?: string;
|
|
260
|
-
/**
|
|
261
|
-
* The localized friendly name of the resource type related to this operation. E.g. "Virtual Machines" or "Job Schedule Collections".
|
|
262
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
263
|
-
*/
|
|
264
|
-
readonly resource?: string;
|
|
265
|
-
/**
|
|
266
|
-
* The concise, localized friendly name for the operation; suitable for dropdowns. E.g. "Create or Update Virtual Machine", "Restart Virtual Machine".
|
|
267
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
268
|
-
*/
|
|
269
|
-
readonly operation?: string;
|
|
270
|
-
/**
|
|
271
|
-
* The short, localized friendly description of the operation; suitable for tool tips and detailed views.
|
|
272
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
273
|
-
*/
|
|
274
|
-
readonly description?: string;
|
|
275
|
-
}
|
|
276
|
-
|
|
277
|
-
/** A list of REST API operations supported by an Azure Resource Provider. It contains an URL link to get the next set of results. */
|
|
278
|
-
export declare interface OperationListResult {
|
|
279
|
-
/**
|
|
280
|
-
* List of operations supported by the resource provider
|
|
281
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
282
|
-
*/
|
|
283
|
-
readonly value?: Operation[];
|
|
284
|
-
/**
|
|
285
|
-
* URL to get the next set of operation list results (if there are any).
|
|
286
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
287
|
-
*/
|
|
288
|
-
readonly nextLink?: string;
|
|
289
|
-
}
|
|
290
|
-
|
|
291
|
-
/** Interface representing a Operations. */
|
|
292
|
-
export declare interface Operations {
|
|
293
|
-
/**
|
|
294
|
-
* Lists all of the available Storage Actions Rest API operations.
|
|
295
|
-
* @param options The options parameters.
|
|
296
|
-
*/
|
|
297
|
-
list(options?: OperationsListOptionalParams): PagedAsyncIterableIterator<Operation>;
|
|
298
|
-
}
|
|
299
|
-
|
|
300
|
-
/** Optional parameters. */
|
|
301
|
-
export declare interface OperationsListNextOptionalParams extends coreClient.OperationOptions {
|
|
302
|
-
}
|
|
303
|
-
|
|
304
|
-
/** Contains response data for the listNext operation. */
|
|
305
|
-
export declare type OperationsListNextResponse = OperationListResult;
|
|
306
|
-
|
|
307
|
-
/** Optional parameters. */
|
|
308
|
-
export declare interface OperationsListOptionalParams extends coreClient.OperationOptions {
|
|
309
|
-
}
|
|
310
|
-
|
|
311
|
-
/** Contains response data for the list operation. */
|
|
312
|
-
export declare type OperationsListResponse = OperationListResult;
|
|
313
|
-
|
|
314
|
-
/**
|
|
315
|
-
* Defines values for Origin. \
|
|
316
|
-
* {@link KnownOrigin} can be used interchangeably with Origin,
|
|
317
|
-
* this enum contains the known values that the service supports.
|
|
318
|
-
* ### Known values supported by the service
|
|
319
|
-
* **user** \
|
|
320
|
-
* **system** \
|
|
321
|
-
* **user,system**
|
|
322
|
-
*/
|
|
323
|
-
export declare type Origin = string;
|
|
324
|
-
|
|
325
|
-
/** Defines values for ProvisioningState. */
|
|
326
|
-
export declare type ProvisioningState = "ValidateSubscriptionQuotaBegin" | "ValidateSubscriptionQuotaEnd" | "Creating" | "Succeeded" | "Deleting" | "Canceled" | "Failed";
|
|
327
|
-
|
|
328
|
-
/** The resource model definition for a Azure Resource Manager proxy resource. It will not have tags and a location */
|
|
329
|
-
export declare interface ProxyResource extends Resource {
|
|
330
|
-
}
|
|
331
|
-
|
|
332
|
-
/** Common fields that are returned in the response for all Azure Resource Manager resources */
|
|
333
|
-
export declare interface Resource {
|
|
334
|
-
/**
|
|
335
|
-
* Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
|
|
336
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
337
|
-
*/
|
|
338
|
-
readonly id?: string;
|
|
339
|
-
/**
|
|
340
|
-
* The name of the resource
|
|
341
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
342
|
-
*/
|
|
343
|
-
readonly name?: string;
|
|
344
|
-
/**
|
|
345
|
-
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
346
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
347
|
-
*/
|
|
348
|
-
readonly type?: string;
|
|
349
|
-
/**
|
|
350
|
-
* Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
351
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
352
|
-
*/
|
|
353
|
-
readonly systemData?: SystemData;
|
|
354
|
-
}
|
|
355
|
-
|
|
356
|
-
/**
|
|
357
|
-
* Defines values for RunResult. \
|
|
358
|
-
* {@link KnownRunResult} can be used interchangeably with RunResult,
|
|
359
|
-
* this enum contains the known values that the service supports.
|
|
360
|
-
* ### Known values supported by the service
|
|
361
|
-
* **Succeeded** \
|
|
362
|
-
* **Failed**
|
|
363
|
-
*/
|
|
364
|
-
export declare type RunResult = string;
|
|
365
|
-
|
|
366
|
-
/**
|
|
367
|
-
* Defines values for RunStatusEnum. \
|
|
368
|
-
* {@link KnownRunStatusEnum} can be used interchangeably with RunStatusEnum,
|
|
369
|
-
* this enum contains the known values that the service supports.
|
|
370
|
-
* ### Known values supported by the service
|
|
371
|
-
* **InProgress** \
|
|
372
|
-
* **Finished**
|
|
373
|
-
*/
|
|
374
|
-
export declare type RunStatusEnum = string;
|
|
375
|
-
|
|
376
|
-
export declare class StorageActionsManagementClient extends coreClient.ServiceClient {
|
|
377
|
-
$host: string;
|
|
378
|
-
apiVersion: string;
|
|
379
|
-
subscriptionId: string;
|
|
380
|
-
/**
|
|
381
|
-
* Initializes a new instance of the StorageActionsManagementClient class.
|
|
382
|
-
* @param credentials Subscription credentials which uniquely identify client subscription.
|
|
383
|
-
* @param subscriptionId The ID of the target subscription. The value must be an UUID.
|
|
384
|
-
* @param options The parameter options
|
|
385
|
-
*/
|
|
386
|
-
constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: StorageActionsManagementClientOptionalParams);
|
|
387
|
-
/** A function that adds a policy that sets the api-version (or equivalent) to reflect the library version. */
|
|
388
|
-
private addCustomApiVersionPolicy;
|
|
389
|
-
operations: Operations;
|
|
390
|
-
storageTasks: StorageTasks;
|
|
391
|
-
storageTaskAssignmentOperations: StorageTaskAssignmentOperations;
|
|
392
|
-
storageTasksReport: StorageTasksReport;
|
|
393
|
-
}
|
|
394
|
-
|
|
395
|
-
/** Optional parameters. */
|
|
396
|
-
export declare interface StorageActionsManagementClientOptionalParams extends coreClient.ServiceClientOptions {
|
|
397
|
-
/** server parameter */
|
|
398
|
-
$host?: string;
|
|
399
|
-
/** Api Version */
|
|
400
|
-
apiVersion?: string;
|
|
401
|
-
/** Overrides client endpoint. */
|
|
402
|
-
endpoint?: string;
|
|
403
|
-
}
|
|
404
|
-
|
|
405
|
-
/** Represents Storage Task. */
|
|
406
|
-
export declare interface StorageTask extends TrackedResource {
|
|
407
|
-
/** The managed service identity of the resource. */
|
|
408
|
-
identity?: ManagedServiceIdentity;
|
|
409
|
-
/** Properties of the storage task. */
|
|
410
|
-
properties?: StorageTaskProperties;
|
|
411
|
-
}
|
|
412
|
-
|
|
413
|
-
/** The storage task action represents conditional statements and operations to be performed on target objects. */
|
|
414
|
-
export declare interface StorageTaskAction {
|
|
415
|
-
/** The if block of storage task operation */
|
|
416
|
-
if: IfCondition;
|
|
417
|
-
/** The else block of storage task operation */
|
|
418
|
-
else?: ElseCondition;
|
|
419
|
-
}
|
|
420
|
-
|
|
421
|
-
/** Fetch the Storage task assignment ARM ids. */
|
|
422
|
-
export declare interface StorageTaskAssignment {
|
|
423
|
-
/**
|
|
424
|
-
* ARM Id of the storage task assignments, associated with the storage tasks.
|
|
425
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
426
|
-
*/
|
|
427
|
-
readonly id?: string;
|
|
428
|
-
}
|
|
429
|
-
|
|
430
|
-
/** Optional parameters. */
|
|
431
|
-
export declare interface StorageTaskAssignmentListNextOptionalParams extends coreClient.OperationOptions {
|
|
432
|
-
}
|
|
433
|
-
|
|
434
|
-
/** Contains response data for the listNext operation. */
|
|
435
|
-
export declare type StorageTaskAssignmentListNextResponse = StorageTaskAssignmentsListResult;
|
|
436
|
-
|
|
437
|
-
/** Optional parameters. */
|
|
438
|
-
export declare interface StorageTaskAssignmentListOptionalParams extends coreClient.OperationOptions {
|
|
439
|
-
/** Optional, specifies the maximum number of storage task assignment Ids to be included in the list response. */
|
|
440
|
-
maxpagesize?: string;
|
|
441
|
-
}
|
|
442
|
-
|
|
443
|
-
/** Contains response data for the list operation. */
|
|
444
|
-
export declare type StorageTaskAssignmentListResponse = StorageTaskAssignmentsListResult;
|
|
445
|
-
|
|
446
|
-
/** Interface representing a StorageTaskAssignmentOperations. */
|
|
447
|
-
export declare interface StorageTaskAssignmentOperations {
|
|
448
|
-
/**
|
|
449
|
-
* Lists all the storage tasks available under the given resource group.
|
|
450
|
-
* @param resourceGroupName The name of the resource group. The name is case insensitive.
|
|
451
|
-
* @param storageTaskName The name of the storage task within the specified resource group. Storage
|
|
452
|
-
* task names must be between 3 and 18 characters in length and use numbers and lower-case letters
|
|
453
|
-
* only.
|
|
454
|
-
* @param options The options parameters.
|
|
455
|
-
*/
|
|
456
|
-
list(resourceGroupName: string, storageTaskName: string, options?: StorageTaskAssignmentListOptionalParams): PagedAsyncIterableIterator<StorageTaskAssignment>;
|
|
457
|
-
}
|
|
458
|
-
|
|
459
|
-
/** The response from the List Storage Tasks operation. */
|
|
460
|
-
export declare interface StorageTaskAssignmentsListResult {
|
|
461
|
-
/**
|
|
462
|
-
* Gets the list of storage task assignment Ids.
|
|
463
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
464
|
-
*/
|
|
465
|
-
readonly value?: StorageTaskAssignment[];
|
|
466
|
-
/**
|
|
467
|
-
* Request URL that can be used to query next page of storage task assignment Ids. Returned when total number of requested storage task assignment Ids exceed maximum page size.
|
|
468
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
469
|
-
*/
|
|
470
|
-
readonly nextLink?: string;
|
|
471
|
-
}
|
|
472
|
-
|
|
473
|
-
/** Represents an operation to be performed on the object */
|
|
474
|
-
export declare interface StorageTaskOperation {
|
|
475
|
-
/** The operation to be performed on the object. */
|
|
476
|
-
name: StorageTaskOperationName;
|
|
477
|
-
/** Key-value parameters for the operation. */
|
|
478
|
-
parameters?: {
|
|
479
|
-
[propertyName: string]: string;
|
|
480
|
-
};
|
|
481
|
-
/** Action to be taken when the operation is successful for a object. */
|
|
482
|
-
onSuccess?: "continue";
|
|
483
|
-
/** Action to be taken when the operation fails for a object. */
|
|
484
|
-
onFailure?: "break";
|
|
485
|
-
}
|
|
486
|
-
|
|
487
|
-
/**
|
|
488
|
-
* Defines values for StorageTaskOperationName. \
|
|
489
|
-
* {@link KnownStorageTaskOperationName} can be used interchangeably with StorageTaskOperationName,
|
|
490
|
-
* this enum contains the known values that the service supports.
|
|
491
|
-
* ### Known values supported by the service
|
|
492
|
-
* **SetBlobTier** \
|
|
493
|
-
* **SetBlobTags** \
|
|
494
|
-
* **SetBlobImmutabilityPolicy** \
|
|
495
|
-
* **SetBlobLegalHold** \
|
|
496
|
-
* **SetBlobExpiry** \
|
|
497
|
-
* **DeleteBlob** \
|
|
498
|
-
* **UndeleteBlob**
|
|
499
|
-
*/
|
|
500
|
-
export declare type StorageTaskOperationName = string;
|
|
501
|
-
|
|
502
|
-
/** Storage Task Preview Action. */
|
|
503
|
-
export declare interface StorageTaskPreviewAction {
|
|
504
|
-
/** Properties of the storage task preview. */
|
|
505
|
-
properties: StorageTaskPreviewActionProperties;
|
|
506
|
-
}
|
|
507
|
-
|
|
508
|
-
/** Represents the storage task conditions to be tested for a match with container and blob properties. */
|
|
509
|
-
export declare interface StorageTaskPreviewActionCondition {
|
|
510
|
-
/** The condition to be tested for a match with container and blob properties. */
|
|
511
|
-
if: StorageTaskPreviewActionIfCondition;
|
|
512
|
-
/** Specify whether the else block is present in the condition. */
|
|
513
|
-
elseBlockExists: boolean;
|
|
514
|
-
}
|
|
515
|
-
|
|
516
|
-
/** Represents storage task preview action condition. */
|
|
517
|
-
export declare interface StorageTaskPreviewActionIfCondition {
|
|
518
|
-
/** Storage task condition to bes tested for a match. */
|
|
519
|
-
condition?: string;
|
|
520
|
-
}
|
|
521
|
-
|
|
522
|
-
/** Storage task preview action properties. */
|
|
523
|
-
export declare interface StorageTaskPreviewActionProperties {
|
|
524
|
-
/** Preview action container properties to be tested for a match with the provided condition. */
|
|
525
|
-
container: StorageTaskPreviewContainerProperties;
|
|
526
|
-
/** Preview action container properties to be tested for a match with the provided condition. */
|
|
527
|
-
blobs: StorageTaskPreviewBlobProperties[];
|
|
528
|
-
/** Preview action container properties to be tested for a match with the provided condition. */
|
|
529
|
-
action: StorageTaskPreviewActionCondition;
|
|
530
|
-
}
|
|
531
|
-
|
|
532
|
-
/** Storage task preview container properties */
|
|
533
|
-
export declare interface StorageTaskPreviewBlobProperties {
|
|
534
|
-
/** property for the container name. */
|
|
535
|
-
name?: string;
|
|
536
|
-
/** properties key value pairs to be tested for a match against the provided condition. */
|
|
537
|
-
properties?: StorageTaskPreviewKeyValueProperties[];
|
|
538
|
-
/** metadata key value pairs to be tested for a match against the provided condition. */
|
|
539
|
-
metadata?: StorageTaskPreviewKeyValueProperties[];
|
|
540
|
-
/** tags key value pairs to be tested for a match against the provided condition. */
|
|
541
|
-
tags?: StorageTaskPreviewKeyValueProperties[];
|
|
542
|
-
/**
|
|
543
|
-
* Represents the condition block name that matched blob properties.
|
|
544
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
545
|
-
*/
|
|
546
|
-
readonly matchedBlock?: MatchedBlockName;
|
|
547
|
-
}
|
|
548
|
-
|
|
549
|
-
/** Storage task preview container properties */
|
|
550
|
-
export declare interface StorageTaskPreviewContainerProperties {
|
|
551
|
-
/** property for the container name. */
|
|
552
|
-
name?: string;
|
|
553
|
-
/** metadata key value pairs to be tested for a match against the provided condition. */
|
|
554
|
-
metadata?: StorageTaskPreviewKeyValueProperties[];
|
|
555
|
-
}
|
|
556
|
-
|
|
557
|
-
/** Storage task preview object key value pair properties. */
|
|
558
|
-
export declare interface StorageTaskPreviewKeyValueProperties {
|
|
559
|
-
/** Represents the key property of the pair. */
|
|
560
|
-
key?: string;
|
|
561
|
-
/** Represents the value property of the pair. */
|
|
562
|
-
value?: string;
|
|
563
|
-
}
|
|
564
|
-
|
|
565
|
-
/** Properties of the storage task. */
|
|
566
|
-
export declare interface StorageTaskProperties {
|
|
567
|
-
/**
|
|
568
|
-
* Storage task version.
|
|
569
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
570
|
-
*/
|
|
571
|
-
readonly taskVersion?: number;
|
|
572
|
-
/** Storage Task is enabled when set to true and disabled when set to false */
|
|
573
|
-
enabled: boolean;
|
|
574
|
-
/** Text that describes the purpose of the storage task */
|
|
575
|
-
description: string;
|
|
576
|
-
/** The storage task action that is executed */
|
|
577
|
-
action: StorageTaskAction;
|
|
578
|
-
/**
|
|
579
|
-
* Represents the provisioning state of the storage task.
|
|
580
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
581
|
-
*/
|
|
582
|
-
readonly provisioningState?: ProvisioningState;
|
|
583
|
-
/**
|
|
584
|
-
* The creation date and time of the storage task in UTC.
|
|
585
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
586
|
-
*/
|
|
587
|
-
readonly creationTimeInUtc?: Date;
|
|
588
|
-
}
|
|
589
|
-
|
|
590
|
-
/** Storage Tasks run report instance */
|
|
591
|
-
export declare interface StorageTaskReportInstance extends ProxyResource {
|
|
592
|
-
/** Storage task execution report for a run instance. */
|
|
593
|
-
properties?: StorageTaskReportProperties;
|
|
594
|
-
}
|
|
595
|
-
|
|
596
|
-
/** Storage task execution report for a run instance. */
|
|
597
|
-
export declare interface StorageTaskReportProperties {
|
|
598
|
-
/**
|
|
599
|
-
* Represents the Storage Task Assignment Id associated with the storage task that provided an execution context.
|
|
600
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
601
|
-
*/
|
|
602
|
-
readonly taskAssignmentId?: string;
|
|
603
|
-
/**
|
|
604
|
-
* Represents the Storage Account Id where the storage task definition was applied and executed.
|
|
605
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
606
|
-
*/
|
|
607
|
-
readonly storageAccountId?: string;
|
|
608
|
-
/**
|
|
609
|
-
* Start time of the run instance. Filter options such as startTime gt '2023-06-26T20:51:24.4494016Z' and other comparison operators can be used as described for DateTime properties in https://learn.microsoft.com/en-us/rest/api/storageservices/querying-tables-and-entities#supported-comparison-operators
|
|
610
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
611
|
-
*/
|
|
612
|
-
readonly startTime?: string;
|
|
613
|
-
/**
|
|
614
|
-
* End time of the run instance. Filter options such as startTime gt '2023-06-26T20:51:24.4494016Z' and other comparison operators can be used as described for DateTime properties in https://learn.microsoft.com/en-us/rest/api/storageservices/querying-tables-and-entities#supported-comparison-operators
|
|
615
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
616
|
-
*/
|
|
617
|
-
readonly finishTime?: string;
|
|
618
|
-
/**
|
|
619
|
-
* Total number of objects that meet the condition as defined in the storage task assignment execution context. Filter options such as objectsTargetedCount gt 50 and other comparison operators can be used as described for Numerical properties in https://learn.microsoft.com/en-us/rest/api/storageservices/querying-tables-and-entities#supported-comparison-operators
|
|
620
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
621
|
-
*/
|
|
622
|
-
readonly objectsTargetedCount?: string;
|
|
623
|
-
/**
|
|
624
|
-
* Total number of objects that meet the storage tasks condition and were operated upon. Filter options such as objectsOperatedOnCount ge 100 and other comparison operators can be used as described for Numerical properties in https://learn.microsoft.com/en-us/rest/api/storageservices/querying-tables-and-entities#supported-comparison-operators
|
|
625
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
626
|
-
*/
|
|
627
|
-
readonly objectsOperatedOnCount?: string;
|
|
628
|
-
/**
|
|
629
|
-
* Total number of objects where task operation failed when was attempted. Filter options such as objectFailedCount eq 0 and other comparison operators can be used as described for Numerical properties in https://learn.microsoft.com/en-us/rest/api/storageservices/querying-tables-and-entities#supported-comparison-operators
|
|
630
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
631
|
-
*/
|
|
632
|
-
readonly objectFailedCount?: string;
|
|
633
|
-
/**
|
|
634
|
-
* Total number of objects where task operation succeeded when was attempted.Filter options such as objectsSucceededCount gt 150 and other comparison operators can be used as described for Numerical properties in https://learn.microsoft.com/en-us/rest/api/storageservices/querying-tables-and-entities#supported-comparison-operators
|
|
635
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
636
|
-
*/
|
|
637
|
-
readonly objectsSucceededCount?: string;
|
|
638
|
-
/**
|
|
639
|
-
* Well known Azure Storage error code that represents the error encountered during execution of the run instance.
|
|
640
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
641
|
-
*/
|
|
642
|
-
readonly runStatusError?: string;
|
|
643
|
-
/**
|
|
644
|
-
* Represents the status of the execution.
|
|
645
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
646
|
-
*/
|
|
647
|
-
readonly runStatusEnum?: RunStatusEnum;
|
|
648
|
-
/**
|
|
649
|
-
* Full path to the verbose report stored in the reporting container as specified in the assignment execution context for the storage account.
|
|
650
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
651
|
-
*/
|
|
652
|
-
readonly summaryReportPath?: string;
|
|
653
|
-
/**
|
|
654
|
-
* Storage Task Arm Id.
|
|
655
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
656
|
-
*/
|
|
657
|
-
readonly taskId?: string;
|
|
658
|
-
/**
|
|
659
|
-
* Storage Task Version
|
|
660
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
661
|
-
*/
|
|
662
|
-
readonly taskVersion?: string;
|
|
663
|
-
/**
|
|
664
|
-
* Represents the overall result of the execution for the run instance
|
|
665
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
666
|
-
*/
|
|
667
|
-
readonly runResult?: RunResult;
|
|
668
|
-
}
|
|
669
|
-
|
|
670
|
-
/** Fetch Storage Tasks Run Summary. */
|
|
671
|
-
export declare interface StorageTaskReportSummary {
|
|
672
|
-
/**
|
|
673
|
-
* Gets storage tasks run result summary.
|
|
674
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
675
|
-
*/
|
|
676
|
-
readonly value?: StorageTaskReportInstance[];
|
|
677
|
-
/**
|
|
678
|
-
* Request URL that can be used to query next page of storage task run results summary. Returned when the number of run instances and summary reports exceed maximum page size.
|
|
679
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
680
|
-
*/
|
|
681
|
-
readonly nextLink?: string;
|
|
682
|
-
}
|
|
683
|
-
|
|
684
|
-
/** Interface representing a StorageTasks. */
|
|
685
|
-
export declare interface StorageTasks {
|
|
686
|
-
/**
|
|
687
|
-
* Lists all the storage tasks available under the subscription.
|
|
688
|
-
* @param options The options parameters.
|
|
689
|
-
*/
|
|
690
|
-
listBySubscription(options?: StorageTasksListBySubscriptionOptionalParams): PagedAsyncIterableIterator<StorageTask>;
|
|
691
|
-
/**
|
|
692
|
-
* Lists all the storage tasks available under the given resource group.
|
|
693
|
-
* @param resourceGroupName The name of the resource group. The name is case insensitive.
|
|
694
|
-
* @param options The options parameters.
|
|
695
|
-
*/
|
|
696
|
-
listByResourceGroup(resourceGroupName: string, options?: StorageTasksListByResourceGroupOptionalParams): PagedAsyncIterableIterator<StorageTask>;
|
|
697
|
-
/**
|
|
698
|
-
* Asynchronously creates a new storage task resource with the specified parameters. If a storage task
|
|
699
|
-
* is already created and a subsequent create request is issued with different properties, the storage
|
|
700
|
-
* task properties will be updated. If a storage task is already created and a subsequent create or
|
|
701
|
-
* update request is issued with the exact same set of properties, the request will succeed.
|
|
702
|
-
* @param resourceGroupName The name of the resource group. The name is case insensitive.
|
|
703
|
-
* @param storageTaskName The name of the storage task within the specified resource group. Storage
|
|
704
|
-
* task names must be between 3 and 18 characters in length and use numbers and lower-case letters
|
|
705
|
-
* only.
|
|
706
|
-
* @param parameters The parameters to create a Storage Task.
|
|
707
|
-
* @param options The options parameters.
|
|
708
|
-
*/
|
|
709
|
-
beginCreate(resourceGroupName: string, storageTaskName: string, parameters: StorageTask, options?: StorageTasksCreateOptionalParams): Promise<SimplePollerLike<OperationState<StorageTasksCreateResponse>, StorageTasksCreateResponse>>;
|
|
710
|
-
/**
|
|
711
|
-
* Asynchronously creates a new storage task resource with the specified parameters. If a storage task
|
|
712
|
-
* is already created and a subsequent create request is issued with different properties, the storage
|
|
713
|
-
* task properties will be updated. If a storage task is already created and a subsequent create or
|
|
714
|
-
* update request is issued with the exact same set of properties, the request will succeed.
|
|
715
|
-
* @param resourceGroupName The name of the resource group. The name is case insensitive.
|
|
716
|
-
* @param storageTaskName The name of the storage task within the specified resource group. Storage
|
|
717
|
-
* task names must be between 3 and 18 characters in length and use numbers and lower-case letters
|
|
718
|
-
* only.
|
|
719
|
-
* @param parameters The parameters to create a Storage Task.
|
|
720
|
-
* @param options The options parameters.
|
|
721
|
-
*/
|
|
722
|
-
beginCreateAndWait(resourceGroupName: string, storageTaskName: string, parameters: StorageTask, options?: StorageTasksCreateOptionalParams): Promise<StorageTasksCreateResponse>;
|
|
723
|
-
/**
|
|
724
|
-
* Delete the storage task resource.
|
|
725
|
-
* @param resourceGroupName The name of the resource group. The name is case insensitive.
|
|
726
|
-
* @param storageTaskName The name of the storage task within the specified resource group. Storage
|
|
727
|
-
* task names must be between 3 and 18 characters in length and use numbers and lower-case letters
|
|
728
|
-
* only.
|
|
729
|
-
* @param options The options parameters.
|
|
730
|
-
*/
|
|
731
|
-
beginDelete(resourceGroupName: string, storageTaskName: string, options?: StorageTasksDeleteOptionalParams): Promise<SimplePollerLike<OperationState<StorageTasksDeleteResponse>, StorageTasksDeleteResponse>>;
|
|
732
|
-
/**
|
|
733
|
-
* Delete the storage task resource.
|
|
734
|
-
* @param resourceGroupName The name of the resource group. The name is case insensitive.
|
|
735
|
-
* @param storageTaskName The name of the storage task within the specified resource group. Storage
|
|
736
|
-
* task names must be between 3 and 18 characters in length and use numbers and lower-case letters
|
|
737
|
-
* only.
|
|
738
|
-
* @param options The options parameters.
|
|
739
|
-
*/
|
|
740
|
-
beginDeleteAndWait(resourceGroupName: string, storageTaskName: string, options?: StorageTasksDeleteOptionalParams): Promise<StorageTasksDeleteResponse>;
|
|
741
|
-
/**
|
|
742
|
-
* Get the storage task properties
|
|
743
|
-
* @param resourceGroupName The name of the resource group. The name is case insensitive.
|
|
744
|
-
* @param storageTaskName The name of the storage task within the specified resource group. Storage
|
|
745
|
-
* task names must be between 3 and 18 characters in length and use numbers and lower-case letters
|
|
746
|
-
* only.
|
|
747
|
-
* @param options The options parameters.
|
|
748
|
-
*/
|
|
749
|
-
get(resourceGroupName: string, storageTaskName: string, options?: StorageTasksGetOptionalParams): Promise<StorageTasksGetResponse>;
|
|
750
|
-
/**
|
|
751
|
-
* Update storage task properties
|
|
752
|
-
* @param resourceGroupName The name of the resource group. The name is case insensitive.
|
|
753
|
-
* @param storageTaskName The name of the storage task within the specified resource group. Storage
|
|
754
|
-
* task names must be between 3 and 18 characters in length and use numbers and lower-case letters
|
|
755
|
-
* only.
|
|
756
|
-
* @param parameters The parameters to provide to update the storage task resource.
|
|
757
|
-
* @param options The options parameters.
|
|
758
|
-
*/
|
|
759
|
-
beginUpdate(resourceGroupName: string, storageTaskName: string, parameters: StorageTaskUpdateParameters, options?: StorageTasksUpdateOptionalParams): Promise<SimplePollerLike<OperationState<StorageTasksUpdateResponse>, StorageTasksUpdateResponse>>;
|
|
760
|
-
/**
|
|
761
|
-
* Update storage task properties
|
|
762
|
-
* @param resourceGroupName The name of the resource group. The name is case insensitive.
|
|
763
|
-
* @param storageTaskName The name of the storage task within the specified resource group. Storage
|
|
764
|
-
* task names must be between 3 and 18 characters in length and use numbers and lower-case letters
|
|
765
|
-
* only.
|
|
766
|
-
* @param parameters The parameters to provide to update the storage task resource.
|
|
767
|
-
* @param options The options parameters.
|
|
768
|
-
*/
|
|
769
|
-
beginUpdateAndWait(resourceGroupName: string, storageTaskName: string, parameters: StorageTaskUpdateParameters, options?: StorageTasksUpdateOptionalParams): Promise<StorageTasksUpdateResponse>;
|
|
770
|
-
/**
|
|
771
|
-
* Runs the input conditions against input object metadata properties and designates matched objects in
|
|
772
|
-
* response.
|
|
773
|
-
* @param location The location to perform preview of the actions.
|
|
774
|
-
* @param parameters The parameters to preview action condition.
|
|
775
|
-
* @param options The options parameters.
|
|
776
|
-
*/
|
|
777
|
-
previewActions(location: string, parameters: StorageTaskPreviewAction, options?: StorageTasksPreviewActionsOptionalParams): Promise<StorageTasksPreviewActionsResponse>;
|
|
778
|
-
}
|
|
779
|
-
|
|
780
|
-
/** Defines headers for StorageTasks_create operation. */
|
|
781
|
-
export declare interface StorageTasksCreateHeaders {
|
|
782
|
-
location?: string;
|
|
783
|
-
}
|
|
784
|
-
|
|
785
|
-
/** Optional parameters. */
|
|
786
|
-
export declare interface StorageTasksCreateOptionalParams extends coreClient.OperationOptions {
|
|
787
|
-
/** Delay to wait until next poll, in milliseconds. */
|
|
788
|
-
updateIntervalInMs?: number;
|
|
789
|
-
/** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */
|
|
790
|
-
resumeFrom?: string;
|
|
791
|
-
}
|
|
792
|
-
|
|
793
|
-
/** Contains response data for the create operation. */
|
|
794
|
-
export declare type StorageTasksCreateResponse = StorageTask;
|
|
795
|
-
|
|
796
|
-
/** Defines headers for StorageTasks_delete operation. */
|
|
797
|
-
export declare interface StorageTasksDeleteHeaders {
|
|
798
|
-
location?: string;
|
|
799
|
-
}
|
|
800
|
-
|
|
801
|
-
/** Optional parameters. */
|
|
802
|
-
export declare interface StorageTasksDeleteOptionalParams extends coreClient.OperationOptions {
|
|
803
|
-
/** Delay to wait until next poll, in milliseconds. */
|
|
804
|
-
updateIntervalInMs?: number;
|
|
805
|
-
/** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */
|
|
806
|
-
resumeFrom?: string;
|
|
807
|
-
}
|
|
808
|
-
|
|
809
|
-
/** Contains response data for the delete operation. */
|
|
810
|
-
export declare type StorageTasksDeleteResponse = StorageTasksDeleteHeaders;
|
|
811
|
-
|
|
812
|
-
/** Optional parameters. */
|
|
813
|
-
export declare interface StorageTasksGetOptionalParams extends coreClient.OperationOptions {
|
|
814
|
-
}
|
|
815
|
-
|
|
816
|
-
/** Contains response data for the get operation. */
|
|
817
|
-
export declare type StorageTasksGetResponse = StorageTask;
|
|
818
|
-
|
|
819
|
-
/** Optional parameters. */
|
|
820
|
-
export declare interface StorageTasksListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
|
|
821
|
-
}
|
|
822
|
-
|
|
823
|
-
/** Contains response data for the listByResourceGroupNext operation. */
|
|
824
|
-
export declare type StorageTasksListByResourceGroupNextResponse = StorageTasksListResult;
|
|
825
|
-
|
|
826
|
-
/** Optional parameters. */
|
|
827
|
-
export declare interface StorageTasksListByResourceGroupOptionalParams extends coreClient.OperationOptions {
|
|
828
|
-
}
|
|
829
|
-
|
|
830
|
-
/** Contains response data for the listByResourceGroup operation. */
|
|
831
|
-
export declare type StorageTasksListByResourceGroupResponse = StorageTasksListResult;
|
|
832
|
-
|
|
833
|
-
/** Optional parameters. */
|
|
834
|
-
export declare interface StorageTasksListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
|
|
835
|
-
}
|
|
836
|
-
|
|
837
|
-
/** Contains response data for the listBySubscriptionNext operation. */
|
|
838
|
-
export declare type StorageTasksListBySubscriptionNextResponse = StorageTasksListResult;
|
|
839
|
-
|
|
840
|
-
/** Optional parameters. */
|
|
841
|
-
export declare interface StorageTasksListBySubscriptionOptionalParams extends coreClient.OperationOptions {
|
|
842
|
-
}
|
|
843
|
-
|
|
844
|
-
/** Contains response data for the listBySubscription operation. */
|
|
845
|
-
export declare type StorageTasksListBySubscriptionResponse = StorageTasksListResult;
|
|
846
|
-
|
|
847
|
-
/** The response from the List Storage Tasks operation. */
|
|
848
|
-
export declare interface StorageTasksListResult {
|
|
849
|
-
/**
|
|
850
|
-
* Gets the list of storage tasks and their properties.
|
|
851
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
852
|
-
*/
|
|
853
|
-
readonly value?: StorageTask[];
|
|
854
|
-
/**
|
|
855
|
-
* Request URL that can be used to query next page of storage tasks. Returned when total number of requested storage tasks exceed maximum page size.
|
|
856
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
857
|
-
*/
|
|
858
|
-
readonly nextLink?: string;
|
|
859
|
-
}
|
|
860
|
-
|
|
861
|
-
/** Optional parameters. */
|
|
862
|
-
export declare interface StorageTasksPreviewActionsOptionalParams extends coreClient.OperationOptions {
|
|
863
|
-
}
|
|
864
|
-
|
|
865
|
-
/** Contains response data for the previewActions operation. */
|
|
866
|
-
export declare type StorageTasksPreviewActionsResponse = StorageTaskPreviewAction;
|
|
867
|
-
|
|
868
|
-
/** Interface representing a StorageTasksReport. */
|
|
869
|
-
export declare interface StorageTasksReport {
|
|
870
|
-
/**
|
|
871
|
-
* Fetch the storage tasks run report summary for each assignment.
|
|
872
|
-
* @param resourceGroupName The name of the resource group. The name is case insensitive.
|
|
873
|
-
* @param storageTaskName The name of the storage task within the specified resource group. Storage
|
|
874
|
-
* task names must be between 3 and 18 characters in length and use numbers and lower-case letters
|
|
875
|
-
* only.
|
|
876
|
-
* @param options The options parameters.
|
|
877
|
-
*/
|
|
878
|
-
list(resourceGroupName: string, storageTaskName: string, options?: StorageTasksReportListOptionalParams): PagedAsyncIterableIterator<StorageTaskReportInstance>;
|
|
879
|
-
}
|
|
880
|
-
|
|
881
|
-
/** Optional parameters. */
|
|
882
|
-
export declare interface StorageTasksReportListNextOptionalParams extends coreClient.OperationOptions {
|
|
883
|
-
}
|
|
884
|
-
|
|
885
|
-
/** Contains response data for the listNext operation. */
|
|
886
|
-
export declare type StorageTasksReportListNextResponse = StorageTaskReportSummary;
|
|
887
|
-
|
|
888
|
-
/** Optional parameters. */
|
|
889
|
-
export declare interface StorageTasksReportListOptionalParams extends coreClient.OperationOptions {
|
|
890
|
-
/** Optional, specifies the maximum number of storage task assignment Ids to be included in the list response. */
|
|
891
|
-
maxpagesize?: string;
|
|
892
|
-
/** Optional. When specified, it can be used to query using reporting properties. */
|
|
893
|
-
filter?: string;
|
|
894
|
-
}
|
|
895
|
-
|
|
896
|
-
/** Contains response data for the list operation. */
|
|
897
|
-
export declare type StorageTasksReportListResponse = StorageTaskReportSummary;
|
|
898
|
-
|
|
899
|
-
/** Defines headers for StorageTasks_update operation. */
|
|
900
|
-
export declare interface StorageTasksUpdateHeaders {
|
|
901
|
-
location?: string;
|
|
902
|
-
}
|
|
903
|
-
|
|
904
|
-
/** Optional parameters. */
|
|
905
|
-
export declare interface StorageTasksUpdateOptionalParams extends coreClient.OperationOptions {
|
|
906
|
-
/** Delay to wait until next poll, in milliseconds. */
|
|
907
|
-
updateIntervalInMs?: number;
|
|
908
|
-
/** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */
|
|
909
|
-
resumeFrom?: string;
|
|
910
|
-
}
|
|
911
|
-
|
|
912
|
-
/** Contains response data for the update operation. */
|
|
913
|
-
export declare type StorageTasksUpdateResponse = StorageTask;
|
|
914
|
-
|
|
915
|
-
/** Parameters of the storage task update request */
|
|
916
|
-
export declare interface StorageTaskUpdateParameters {
|
|
917
|
-
/** The identity of the resource. */
|
|
918
|
-
identity?: ManagedServiceIdentity;
|
|
919
|
-
/** Gets or sets a list of key value pairs that describe the resource. These tags can be used in viewing and grouping this resource (across resource groups). A maximum of 15 tags can be provided for a resource. Each tag must have a key no greater in length than 128 characters and a value no greater in length than 256 characters. */
|
|
920
|
-
tags?: {
|
|
921
|
-
[propertyName: string]: string;
|
|
922
|
-
};
|
|
923
|
-
/** Properties of the storage task. */
|
|
924
|
-
properties?: StorageTaskProperties;
|
|
925
|
-
}
|
|
926
|
-
|
|
927
|
-
/** Metadata pertaining to creation and last modification of the resource. */
|
|
928
|
-
export declare interface SystemData {
|
|
929
|
-
/** The identity that created the resource. */
|
|
930
|
-
createdBy?: string;
|
|
931
|
-
/** The type of identity that created the resource. */
|
|
932
|
-
createdByType?: CreatedByType;
|
|
933
|
-
/** The timestamp of resource creation (UTC). */
|
|
934
|
-
createdAt?: Date;
|
|
935
|
-
/** The identity that last modified the resource. */
|
|
936
|
-
lastModifiedBy?: string;
|
|
937
|
-
/** The type of identity that last modified the resource. */
|
|
938
|
-
lastModifiedByType?: CreatedByType;
|
|
939
|
-
/** The timestamp of resource last modification (UTC) */
|
|
940
|
-
lastModifiedAt?: Date;
|
|
941
|
-
}
|
|
942
|
-
|
|
943
|
-
/** The resource model definition for an Azure Resource Manager tracked top level resource which has 'tags' and a 'location' */
|
|
944
|
-
export declare interface TrackedResource extends Resource {
|
|
945
|
-
/** Resource tags. */
|
|
946
|
-
tags?: {
|
|
947
|
-
[propertyName: string]: string;
|
|
948
|
-
};
|
|
949
|
-
/** The geo-location where the resource lives */
|
|
950
|
-
location: string;
|
|
951
|
-
}
|
|
952
|
-
|
|
953
|
-
/** User assigned identity properties */
|
|
954
|
-
export declare interface UserAssignedIdentity {
|
|
955
|
-
/**
|
|
956
|
-
* The principal ID of the assigned identity.
|
|
957
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
958
|
-
*/
|
|
959
|
-
readonly principalId?: string;
|
|
960
|
-
/**
|
|
961
|
-
* The client ID of the assigned identity.
|
|
962
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
963
|
-
*/
|
|
964
|
-
readonly clientId?: string;
|
|
965
|
-
}
|
|
966
|
-
|
|
967
|
-
export { }
|