@azure/arm-playwrighttesting 1.0.0-beta.2 → 1.0.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.
- package/CHANGELOG.md +8 -25
- package/LICENSE +4 -4
- package/README.md +41 -31
- package/dist/browser/api/accountQuotas/index.d.ts +13 -0
- package/dist/browser/api/accountQuotas/index.d.ts.map +1 -0
- package/dist/browser/api/accountQuotas/index.js +39 -0
- package/dist/browser/api/accountQuotas/index.js.map +1 -0
- package/dist/browser/api/accounts/index.d.ts +34 -0
- package/dist/browser/api/accounts/index.d.ts.map +1 -0
- package/dist/browser/api/accounts/index.js +141 -0
- package/dist/browser/api/accounts/index.js.map +1 -0
- package/dist/browser/api/azurePlaywrightServiceContext.d.ts +14 -0
- package/dist/browser/api/azurePlaywrightServiceContext.d.ts.map +1 -0
- package/dist/browser/api/azurePlaywrightServiceContext.js +38 -0
- package/dist/browser/api/azurePlaywrightServiceContext.js.map +1 -0
- package/dist/browser/api/index.d.ts +7 -0
- package/dist/browser/api/index.d.ts.map +1 -0
- package/dist/browser/api/index.js +8 -0
- package/dist/browser/api/index.js.map +1 -0
- package/dist/browser/api/operations/index.d.ts +9 -0
- package/dist/browser/api/operations/index.d.ts.map +1 -0
- package/dist/browser/api/operations/index.js +22 -0
- package/dist/browser/api/operations/index.js.map +1 -0
- package/dist/browser/api/options.d.ts +42 -0
- package/dist/browser/api/options.d.ts.map +1 -0
- package/dist/browser/api/options.js +4 -0
- package/dist/browser/api/options.js.map +1 -0
- package/dist/browser/api/quotas/index.d.ts +13 -0
- package/dist/browser/api/quotas/index.d.ts.map +1 -0
- package/dist/browser/api/quotas/index.js +39 -0
- package/dist/browser/api/quotas/index.js.map +1 -0
- package/dist/browser/azurePlaywrightServiceClient.d.ts +24 -0
- package/dist/browser/azurePlaywrightServiceClient.d.ts.map +1 -0
- package/dist/browser/azurePlaywrightServiceClient.js +37 -0
- package/dist/browser/azurePlaywrightServiceClient.js.map +1 -0
- package/dist/browser/classic/accountQuotas/index.d.ts +17 -0
- package/dist/browser/classic/accountQuotas/index.d.ts.map +1 -0
- package/dist/browser/classic/accountQuotas/index.js +15 -0
- package/dist/browser/classic/accountQuotas/index.js.map +1 -0
- package/dist/browser/classic/accounts/index.d.ts +33 -0
- package/dist/browser/classic/accounts/index.d.ts.map +1 -0
- package/dist/browser/classic/accounts/index.js +20 -0
- package/dist/browser/classic/accounts/index.js.map +1 -0
- package/dist/browser/classic/index.d.ts +5 -0
- package/dist/browser/classic/index.d.ts.map +1 -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 +14 -0
- package/dist/browser/classic/operations/index.d.ts.map +1 -0
- package/dist/browser/classic/operations/index.js +14 -0
- package/dist/browser/classic/operations/index.js.map +1 -0
- package/dist/browser/classic/quotas/index.d.ts +17 -0
- package/dist/browser/classic/quotas/index.d.ts.map +1 -0
- package/dist/browser/classic/quotas/index.js +15 -0
- package/dist/browser/classic/quotas/index.js.map +1 -0
- package/dist/browser/helpers/serializerHelpers.d.ts +3 -0
- package/dist/browser/helpers/serializerHelpers.d.ts.map +1 -0
- package/dist/browser/helpers/serializerHelpers.js +24 -0
- package/dist/browser/helpers/serializerHelpers.js.map +1 -0
- package/dist/browser/index.d.ts +8 -0
- package/dist/browser/index.d.ts.map +1 -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.d.ts.map +1 -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.d.ts.map +1 -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 +399 -0
- package/dist/browser/models/models.d.ts.map +1 -0
- package/dist/browser/models/models.js +343 -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.d.ts.map +1 -0
- package/dist/browser/restorePollerHelpers.js +95 -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.d.ts.map +1 -0
- package/dist/browser/static-helpers/pagingHelpers.js +118 -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.d.ts.map +1 -0
- package/dist/browser/static-helpers/pollingHelpers.js +79 -0
- package/dist/browser/static-helpers/pollingHelpers.js.map +1 -0
- package/dist/commonjs/api/accountQuotas/index.d.ts +13 -0
- package/dist/commonjs/api/accountQuotas/index.d.ts.map +1 -0
- package/dist/commonjs/api/accountQuotas/index.js +47 -0
- package/dist/commonjs/api/accountQuotas/index.js.map +1 -0
- package/dist/commonjs/api/accounts/index.d.ts +34 -0
- package/dist/commonjs/api/accounts/index.d.ts.map +1 -0
- package/dist/commonjs/api/accounts/index.js +164 -0
- package/dist/commonjs/api/accounts/index.js.map +1 -0
- package/dist/commonjs/api/azurePlaywrightServiceContext.d.ts +14 -0
- package/dist/commonjs/api/azurePlaywrightServiceContext.d.ts.map +1 -0
- package/dist/commonjs/api/azurePlaywrightServiceContext.js +41 -0
- package/dist/commonjs/api/azurePlaywrightServiceContext.js.map +1 -0
- package/dist/commonjs/api/index.d.ts +7 -0
- package/dist/commonjs/api/index.d.ts.map +1 -0
- package/dist/commonjs/api/index.js +24 -0
- package/dist/commonjs/api/index.js.map +1 -0
- package/dist/commonjs/api/operations/index.d.ts +9 -0
- package/dist/commonjs/api/operations/index.d.ts.map +1 -0
- package/dist/commonjs/api/operations/index.js +27 -0
- package/dist/commonjs/api/operations/index.js.map +1 -0
- package/dist/commonjs/api/options.d.ts +42 -0
- package/dist/commonjs/api/options.d.ts.map +1 -0
- package/dist/commonjs/api/options.js +5 -0
- package/dist/commonjs/api/options.js.map +1 -0
- package/dist/commonjs/api/quotas/index.d.ts +13 -0
- package/dist/commonjs/api/quotas/index.d.ts.map +1 -0
- package/dist/commonjs/api/quotas/index.js +47 -0
- package/dist/commonjs/api/quotas/index.js.map +1 -0
- package/dist/commonjs/azurePlaywrightServiceClient.d.ts +24 -0
- package/dist/commonjs/azurePlaywrightServiceClient.d.ts.map +1 -0
- package/dist/commonjs/azurePlaywrightServiceClient.js +41 -0
- package/dist/commonjs/azurePlaywrightServiceClient.js.map +1 -0
- package/dist/commonjs/classic/accountQuotas/index.d.ts +17 -0
- package/dist/commonjs/classic/accountQuotas/index.d.ts.map +1 -0
- package/dist/commonjs/classic/accountQuotas/index.js +19 -0
- package/dist/commonjs/classic/accountQuotas/index.js.map +1 -0
- package/dist/commonjs/classic/accounts/index.d.ts +33 -0
- package/dist/commonjs/classic/accounts/index.d.ts.map +1 -0
- package/dist/commonjs/classic/accounts/index.js +24 -0
- package/dist/commonjs/classic/accounts/index.js.map +1 -0
- package/dist/commonjs/classic/index.d.ts +5 -0
- package/dist/commonjs/classic/index.d.ts.map +1 -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 +14 -0
- package/dist/commonjs/classic/operations/index.d.ts.map +1 -0
- package/dist/commonjs/classic/operations/index.js +18 -0
- package/dist/commonjs/classic/operations/index.js.map +1 -0
- package/dist/commonjs/classic/quotas/index.d.ts +17 -0
- package/dist/commonjs/classic/quotas/index.d.ts.map +1 -0
- package/dist/commonjs/classic/quotas/index.js +19 -0
- package/dist/commonjs/classic/quotas/index.js.map +1 -0
- package/dist/commonjs/helpers/serializerHelpers.d.ts +3 -0
- package/dist/commonjs/helpers/serializerHelpers.d.ts.map +1 -0
- package/dist/commonjs/helpers/serializerHelpers.js +27 -0
- package/dist/commonjs/helpers/serializerHelpers.js.map +1 -0
- package/dist/commonjs/index.d.ts +8 -0
- package/dist/commonjs/index.d.ts.map +1 -0
- package/dist/commonjs/index.js +21 -0
- package/dist/commonjs/index.js.map +1 -0
- package/dist/commonjs/logger.d.ts +2 -0
- package/dist/commonjs/logger.d.ts.map +1 -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.d.ts.map +1 -0
- package/dist/commonjs/models/index.js +17 -0
- package/dist/commonjs/models/index.js.map +1 -0
- package/dist/commonjs/models/models.d.ts +399 -0
- package/dist/commonjs/models/models.d.ts.map +1 -0
- package/dist/commonjs/models/models.js +377 -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.d.ts.map +1 -0
- package/dist/commonjs/restorePollerHelpers.js +98 -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.d.ts.map +1 -0
- package/dist/commonjs/static-helpers/pagingHelpers.js +121 -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.d.ts.map +1 -0
- package/dist/commonjs/static-helpers/pollingHelpers.js +82 -0
- package/dist/commonjs/static-helpers/pollingHelpers.js.map +1 -0
- package/{types → dist/commonjs}/tsdoc-metadata.json +11 -11
- package/dist/esm/api/accountQuotas/index.d.ts +13 -0
- package/dist/esm/api/accountQuotas/index.d.ts.map +1 -0
- package/dist/esm/api/accountQuotas/index.js +39 -0
- package/dist/esm/api/accountQuotas/index.js.map +1 -0
- package/dist/esm/api/accounts/index.d.ts +34 -0
- package/dist/esm/api/accounts/index.d.ts.map +1 -0
- package/dist/esm/api/accounts/index.js +141 -0
- package/dist/esm/api/accounts/index.js.map +1 -0
- package/dist/esm/api/azurePlaywrightServiceContext.d.ts +14 -0
- package/dist/esm/api/azurePlaywrightServiceContext.d.ts.map +1 -0
- package/dist/esm/api/azurePlaywrightServiceContext.js +38 -0
- package/dist/esm/api/azurePlaywrightServiceContext.js.map +1 -0
- package/dist/esm/api/index.d.ts +7 -0
- package/dist/esm/api/index.d.ts.map +1 -0
- package/dist/esm/api/index.js +8 -0
- package/dist/esm/api/index.js.map +1 -0
- package/dist/esm/api/operations/index.d.ts +9 -0
- package/dist/esm/api/operations/index.d.ts.map +1 -0
- package/dist/esm/api/operations/index.js +22 -0
- package/dist/esm/api/operations/index.js.map +1 -0
- package/dist/esm/api/options.d.ts +42 -0
- package/dist/esm/api/options.d.ts.map +1 -0
- package/dist/esm/api/options.js +4 -0
- package/dist/esm/api/options.js.map +1 -0
- package/dist/esm/api/quotas/index.d.ts +13 -0
- package/dist/esm/api/quotas/index.d.ts.map +1 -0
- package/dist/esm/api/quotas/index.js +39 -0
- package/dist/esm/api/quotas/index.js.map +1 -0
- package/dist/esm/azurePlaywrightServiceClient.d.ts +24 -0
- package/dist/esm/azurePlaywrightServiceClient.d.ts.map +1 -0
- package/dist/esm/azurePlaywrightServiceClient.js +37 -0
- package/dist/esm/azurePlaywrightServiceClient.js.map +1 -0
- package/dist/esm/classic/accountQuotas/index.d.ts +17 -0
- package/dist/esm/classic/accountQuotas/index.d.ts.map +1 -0
- package/dist/esm/classic/accountQuotas/index.js +15 -0
- package/dist/esm/classic/accountQuotas/index.js.map +1 -0
- package/dist/esm/classic/accounts/index.d.ts +33 -0
- package/dist/esm/classic/accounts/index.d.ts.map +1 -0
- package/dist/esm/classic/accounts/index.js +20 -0
- package/dist/esm/classic/accounts/index.js.map +1 -0
- package/dist/esm/classic/index.d.ts +5 -0
- package/dist/esm/classic/index.d.ts.map +1 -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 +14 -0
- package/dist/esm/classic/operations/index.d.ts.map +1 -0
- package/dist/esm/classic/operations/index.js +14 -0
- package/dist/esm/classic/operations/index.js.map +1 -0
- package/dist/esm/classic/quotas/index.d.ts +17 -0
- package/dist/esm/classic/quotas/index.d.ts.map +1 -0
- package/dist/esm/classic/quotas/index.js +15 -0
- package/dist/esm/classic/quotas/index.js.map +1 -0
- package/dist/esm/helpers/serializerHelpers.d.ts +3 -0
- package/dist/esm/helpers/serializerHelpers.d.ts.map +1 -0
- package/dist/esm/helpers/serializerHelpers.js +24 -0
- package/dist/esm/helpers/serializerHelpers.js.map +1 -0
- package/dist/esm/index.d.ts +8 -0
- package/dist/esm/index.d.ts.map +1 -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.d.ts.map +1 -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.d.ts.map +1 -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 +399 -0
- package/dist/esm/models/models.d.ts.map +1 -0
- package/dist/esm/models/models.js +343 -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.d.ts.map +1 -0
- package/dist/esm/restorePollerHelpers.js +95 -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.d.ts.map +1 -0
- package/dist/esm/static-helpers/pagingHelpers.js +118 -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.d.ts.map +1 -0
- package/dist/esm/static-helpers/pollingHelpers.js +79 -0
- package/dist/esm/static-helpers/pollingHelpers.js.map +1 -0
- package/dist/react-native/api/accountQuotas/index.d.ts +13 -0
- package/dist/react-native/api/accountQuotas/index.d.ts.map +1 -0
- package/dist/react-native/api/accountQuotas/index.js +39 -0
- package/dist/react-native/api/accountQuotas/index.js.map +1 -0
- package/dist/react-native/api/accounts/index.d.ts +34 -0
- package/dist/react-native/api/accounts/index.d.ts.map +1 -0
- package/dist/react-native/api/accounts/index.js +141 -0
- package/dist/react-native/api/accounts/index.js.map +1 -0
- package/dist/react-native/api/azurePlaywrightServiceContext.d.ts +14 -0
- package/dist/react-native/api/azurePlaywrightServiceContext.d.ts.map +1 -0
- package/dist/react-native/api/azurePlaywrightServiceContext.js +38 -0
- package/dist/react-native/api/azurePlaywrightServiceContext.js.map +1 -0
- package/dist/react-native/api/index.d.ts +7 -0
- package/dist/react-native/api/index.d.ts.map +1 -0
- package/dist/react-native/api/index.js +8 -0
- package/dist/react-native/api/index.js.map +1 -0
- package/dist/react-native/api/operations/index.d.ts +9 -0
- package/dist/react-native/api/operations/index.d.ts.map +1 -0
- package/dist/react-native/api/operations/index.js +22 -0
- package/dist/react-native/api/operations/index.js.map +1 -0
- package/dist/react-native/api/options.d.ts +42 -0
- package/dist/react-native/api/options.d.ts.map +1 -0
- package/dist/react-native/api/options.js +4 -0
- package/dist/react-native/api/options.js.map +1 -0
- package/dist/react-native/api/quotas/index.d.ts +13 -0
- package/dist/react-native/api/quotas/index.d.ts.map +1 -0
- package/dist/react-native/api/quotas/index.js +39 -0
- package/dist/react-native/api/quotas/index.js.map +1 -0
- package/dist/react-native/azurePlaywrightServiceClient.d.ts +24 -0
- package/dist/react-native/azurePlaywrightServiceClient.d.ts.map +1 -0
- package/dist/react-native/azurePlaywrightServiceClient.js +37 -0
- package/dist/react-native/azurePlaywrightServiceClient.js.map +1 -0
- package/dist/react-native/classic/accountQuotas/index.d.ts +17 -0
- package/dist/react-native/classic/accountQuotas/index.d.ts.map +1 -0
- package/dist/react-native/classic/accountQuotas/index.js +15 -0
- package/dist/react-native/classic/accountQuotas/index.js.map +1 -0
- package/dist/react-native/classic/accounts/index.d.ts +33 -0
- package/dist/react-native/classic/accounts/index.d.ts.map +1 -0
- package/dist/react-native/classic/accounts/index.js +20 -0
- package/dist/react-native/classic/accounts/index.js.map +1 -0
- package/dist/react-native/classic/index.d.ts +5 -0
- package/dist/react-native/classic/index.d.ts.map +1 -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 +14 -0
- package/dist/react-native/classic/operations/index.d.ts.map +1 -0
- package/dist/react-native/classic/operations/index.js +14 -0
- package/dist/react-native/classic/operations/index.js.map +1 -0
- package/dist/react-native/classic/quotas/index.d.ts +17 -0
- package/dist/react-native/classic/quotas/index.d.ts.map +1 -0
- package/dist/react-native/classic/quotas/index.js +15 -0
- package/dist/react-native/classic/quotas/index.js.map +1 -0
- package/dist/react-native/helpers/serializerHelpers.d.ts +3 -0
- package/dist/react-native/helpers/serializerHelpers.d.ts.map +1 -0
- package/dist/react-native/helpers/serializerHelpers.js +24 -0
- package/dist/react-native/helpers/serializerHelpers.js.map +1 -0
- package/dist/react-native/index.d.ts +8 -0
- package/dist/react-native/index.d.ts.map +1 -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.d.ts.map +1 -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.d.ts.map +1 -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 +399 -0
- package/dist/react-native/models/models.d.ts.map +1 -0
- package/dist/react-native/models/models.js +343 -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.d.ts.map +1 -0
- package/dist/react-native/restorePollerHelpers.js +95 -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.d.ts.map +1 -0
- package/dist/react-native/static-helpers/pagingHelpers.js +118 -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.d.ts.map +1 -0
- package/dist/react-native/static-helpers/pollingHelpers.js +79 -0
- package/dist/react-native/static-helpers/pollingHelpers.js.map +1 -0
- package/package.json +125 -89
- package/review/arm-playwrighttesting-models-node.api.md +230 -0
- package/review/arm-playwrighttesting-node.api.md +359 -0
- package/dist/index.js +0 -1798
- 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/accountsCreateOrUpdateSample.d.ts +0 -2
- package/dist-esm/samples-dev/accountsCreateOrUpdateSample.d.ts.map +0 -1
- package/dist-esm/samples-dev/accountsCreateOrUpdateSample.js +0 -44
- package/dist-esm/samples-dev/accountsCreateOrUpdateSample.js.map +0 -1
- package/dist-esm/samples-dev/accountsDeleteSample.d.ts +0 -2
- package/dist-esm/samples-dev/accountsDeleteSample.d.ts.map +0 -1
- package/dist-esm/samples-dev/accountsDeleteSample.js +0 -39
- package/dist-esm/samples-dev/accountsDeleteSample.js.map +0 -1
- package/dist-esm/samples-dev/accountsGetSample.d.ts +0 -2
- package/dist-esm/samples-dev/accountsGetSample.d.ts.map +0 -1
- package/dist-esm/samples-dev/accountsGetSample.js +0 -39
- package/dist-esm/samples-dev/accountsGetSample.js.map +0 -1
- package/dist-esm/samples-dev/accountsListByResourceGroupSample.d.ts +0 -2
- package/dist-esm/samples-dev/accountsListByResourceGroupSample.d.ts.map +0 -1
- package/dist-esm/samples-dev/accountsListByResourceGroupSample.js +0 -54
- package/dist-esm/samples-dev/accountsListByResourceGroupSample.js.map +0 -1
- package/dist-esm/samples-dev/accountsListBySubscriptionSample.d.ts +0 -2
- package/dist-esm/samples-dev/accountsListBySubscriptionSample.d.ts.map +0 -1
- package/dist-esm/samples-dev/accountsListBySubscriptionSample.js +0 -53
- package/dist-esm/samples-dev/accountsListBySubscriptionSample.js.map +0 -1
- package/dist-esm/samples-dev/accountsUpdateSample.d.ts +0 -2
- package/dist-esm/samples-dev/accountsUpdateSample.d.ts.map +0 -1
- package/dist-esm/samples-dev/accountsUpdateSample.js +0 -43
- package/dist-esm/samples-dev/accountsUpdateSample.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/quotasGetSample.d.ts +0 -2
- package/dist-esm/samples-dev/quotasGetSample.d.ts.map +0 -1
- package/dist-esm/samples-dev/quotasGetSample.js +0 -39
- package/dist-esm/samples-dev/quotasGetSample.js.map +0 -1
- package/dist-esm/samples-dev/quotasListBySubscriptionSample.d.ts +0 -2
- package/dist-esm/samples-dev/quotasListBySubscriptionSample.d.ts.map +0 -1
- package/dist-esm/samples-dev/quotasListBySubscriptionSample.js +0 -54
- package/dist-esm/samples-dev/quotasListBySubscriptionSample.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 -484
- package/dist-esm/src/models/index.d.ts.map +0 -1
- package/dist-esm/src/models/index.js +0 -72
- package/dist-esm/src/models/index.js.map +0 -1
- package/dist-esm/src/models/mappers.d.ts +0 -23
- package/dist-esm/src/models/mappers.d.ts.map +0 -1
- package/dist-esm/src/models/mappers.js +0 -606
- package/dist-esm/src/models/mappers.js.map +0 -1
- package/dist-esm/src/models/parameters.d.ts +0 -14
- package/dist-esm/src/models/parameters.d.ts.map +0 -1
- package/dist-esm/src/models/parameters.js +0 -134
- package/dist-esm/src/models/parameters.js.map +0 -1
- package/dist-esm/src/operations/accounts.d.ts +0 -99
- package/dist-esm/src/operations/accounts.d.ts.map +0 -1
- package/dist-esm/src/operations/accounts.js +0 -489
- package/dist-esm/src/operations/accounts.js.map +0 -1
- package/dist-esm/src/operations/index.d.ts +0 -4
- package/dist-esm/src/operations/index.d.ts.map +0 -1
- package/dist-esm/src/operations/index.js +0 -11
- 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/quotas.d.ts +0 -42
- package/dist-esm/src/operations/quotas.d.ts.map +0 -1
- package/dist-esm/src/operations/quotas.js +0 -175
- package/dist-esm/src/operations/quotas.js.map +0 -1
- package/dist-esm/src/operationsInterfaces/accounts.d.ts +0 -63
- package/dist-esm/src/operationsInterfaces/accounts.d.ts.map +0 -1
- package/dist-esm/src/operationsInterfaces/accounts.js +0 -9
- package/dist-esm/src/operationsInterfaces/accounts.js.map +0 -1
- package/dist-esm/src/operationsInterfaces/index.d.ts +0 -4
- package/dist-esm/src/operationsInterfaces/index.d.ts.map +0 -1
- package/dist-esm/src/operationsInterfaces/index.js +0 -11
- 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/quotas.d.ts +0 -19
- package/dist-esm/src/operationsInterfaces/quotas.d.ts.map +0 -1
- package/dist-esm/src/operationsInterfaces/quotas.js +0 -9
- package/dist-esm/src/operationsInterfaces/quotas.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/playwrightTestingClient.d.ts +0 -22
- package/dist-esm/src/playwrightTestingClient.d.ts.map +0 -1
- package/dist-esm/src/playwrightTestingClient.js +0 -102
- package/dist-esm/src/playwrightTestingClient.js.map +0 -1
- package/dist-esm/test/playwrighttesting_operations_test.spec.d.ts +0 -4
- package/dist-esm/test/playwrighttesting_operations_test.spec.d.ts.map +0 -1
- package/dist-esm/test/playwrighttesting_operations_test.spec.js +0 -71
- package/dist-esm/test/playwrighttesting_operations_test.spec.js.map +0 -1
- package/review/arm-playwrighttesting.api.md +0 -371
- package/src/index.ts +0 -13
- package/src/lroImpl.ts +0 -42
- package/src/models/index.ts +0 -549
- package/src/models/mappers.ts +0 -640
- package/src/models/parameters.ts +0 -154
- package/src/operations/accounts.ts +0 -630
- package/src/operations/index.ts +0 -11
- package/src/operations/operations.ts +0 -149
- package/src/operations/quotas.ts +0 -219
- package/src/operationsInterfaces/accounts.ts +0 -121
- package/src/operationsInterfaces/index.ts +0 -11
- package/src/operationsInterfaces/operations.ts +0 -22
- package/src/operationsInterfaces/quotas.ts +0 -41
- package/src/pagingHelper.ts +0 -39
- package/src/playwrightTestingClient.ts +0 -144
- package/tsconfig.json +0 -33
- package/types/arm-playwrighttesting.d.ts +0 -663
|
@@ -0,0 +1,399 @@
|
|
|
1
|
+
/** A quota resource for a Playwright service account. */
|
|
2
|
+
export interface AccountQuota extends ProxyResource {
|
|
3
|
+
/** The resource-specific properties for this resource. */
|
|
4
|
+
properties?: AccountQuotaProperties;
|
|
5
|
+
}
|
|
6
|
+
export declare function accountQuotaDeserializer(item: any): AccountQuota;
|
|
7
|
+
/** The Playwright service account quota resource properties. */
|
|
8
|
+
export interface AccountQuotaProperties {
|
|
9
|
+
/** The Playwright service account quota resource free-trial properties. */
|
|
10
|
+
freeTrial?: AccountFreeTrialProperties;
|
|
11
|
+
/** The status of the last operation. */
|
|
12
|
+
readonly provisioningState?: ProvisioningState;
|
|
13
|
+
}
|
|
14
|
+
export declare function accountQuotaPropertiesDeserializer(item: any): AccountQuotaProperties;
|
|
15
|
+
/** The Playwright service account quota resource free-trial properties. */
|
|
16
|
+
export interface AccountFreeTrialProperties {
|
|
17
|
+
/** The free-trial createdAt utcDateTime. */
|
|
18
|
+
readonly createdAt: Date;
|
|
19
|
+
/** The free-trial expiryAt utcDateTime. */
|
|
20
|
+
readonly expiryAt: Date;
|
|
21
|
+
/** The free-trial allocated limit value eg. allocated free minutes. */
|
|
22
|
+
readonly allocatedValue: number;
|
|
23
|
+
/** The free-trial used value eg. used free minutes. */
|
|
24
|
+
readonly usedValue: number;
|
|
25
|
+
/** The free-trial percentage used. */
|
|
26
|
+
readonly percentageUsed: number;
|
|
27
|
+
}
|
|
28
|
+
export declare function accountFreeTrialPropertiesDeserializer(item: any): AccountFreeTrialProperties;
|
|
29
|
+
/** The status of the current operation. */
|
|
30
|
+
export declare enum KnownProvisioningState {
|
|
31
|
+
/** Resource has been created. */
|
|
32
|
+
Succeeded = "Succeeded",
|
|
33
|
+
/** Resource creation failed. */
|
|
34
|
+
Failed = "Failed",
|
|
35
|
+
/** Resource creation was canceled. */
|
|
36
|
+
Canceled = "Canceled",
|
|
37
|
+
/** Creation in progress.. */
|
|
38
|
+
Creating = "Creating",
|
|
39
|
+
/** Deletion in progress.. */
|
|
40
|
+
Deleting = "Deleting",
|
|
41
|
+
/** Change accepted for processing.. */
|
|
42
|
+
Accepted = "Accepted"
|
|
43
|
+
}
|
|
44
|
+
/**
|
|
45
|
+
* The status of the current operation. \
|
|
46
|
+
* {@link KnownProvisioningState} can be used interchangeably with ProvisioningState,
|
|
47
|
+
* this enum contains the known values that the service supports.
|
|
48
|
+
* ### Known values supported by the service
|
|
49
|
+
* **Succeeded**: Resource has been created. \
|
|
50
|
+
* **Failed**: Resource creation failed. \
|
|
51
|
+
* **Canceled**: Resource creation was canceled. \
|
|
52
|
+
* **Creating**: Creation in progress.. \
|
|
53
|
+
* **Deleting**: Deletion in progress.. \
|
|
54
|
+
* **Accepted**: Change accepted for processing..
|
|
55
|
+
*/
|
|
56
|
+
export type ProvisioningState = string;
|
|
57
|
+
/** The enum for quota name. */
|
|
58
|
+
export declare enum KnownQuotaNames {
|
|
59
|
+
/** The quota details for scalable execution feature. When enabled, Playwright client workers can connect to cloud-hosted browsers. This can increase the number of parallel workers for a test run, significantly minimizing test completion durations. */
|
|
60
|
+
ScalableExecution = "ScalableExecution",
|
|
61
|
+
/** The quota details for reporting feature. When enabled, Playwright client will be able to upload and display test results, including artifacts like traces and screenshots, in the Playwright portal. This enables faster and more efficient troubleshooting. */
|
|
62
|
+
Reporting = "Reporting"
|
|
63
|
+
}
|
|
64
|
+
/**
|
|
65
|
+
* The enum for quota name. \
|
|
66
|
+
* {@link KnownQuotaNames} can be used interchangeably with QuotaNames,
|
|
67
|
+
* this enum contains the known values that the service supports.
|
|
68
|
+
* ### Known values supported by the service
|
|
69
|
+
* **ScalableExecution**: The quota details for scalable execution feature. When enabled, Playwright client workers can connect to cloud-hosted browsers. This can increase the number of parallel workers for a test run, significantly minimizing test completion durations. \
|
|
70
|
+
* **Reporting**: The quota details for reporting feature. When enabled, Playwright client will be able to upload and display test results, including artifacts like traces and screenshots, in the Playwright portal. This enables faster and more efficient troubleshooting.
|
|
71
|
+
*/
|
|
72
|
+
export type QuotaNames = string;
|
|
73
|
+
/** The resource model definition for a Azure Resource Manager proxy resource. It will not have tags and a location */
|
|
74
|
+
export interface ProxyResource extends Resource {
|
|
75
|
+
}
|
|
76
|
+
export declare function proxyResourceDeserializer(item: any): ProxyResource;
|
|
77
|
+
/** Common fields that are returned in the response for all Azure Resource Manager resources */
|
|
78
|
+
export interface Resource {
|
|
79
|
+
/** Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} */
|
|
80
|
+
readonly id?: string;
|
|
81
|
+
/** The name of the resource */
|
|
82
|
+
readonly name?: string;
|
|
83
|
+
/** The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" */
|
|
84
|
+
readonly type?: string;
|
|
85
|
+
/** Azure Resource Manager metadata containing createdBy and modifiedBy information. */
|
|
86
|
+
readonly systemData?: SystemData;
|
|
87
|
+
}
|
|
88
|
+
export declare function resourceSerializer(item: Resource): any;
|
|
89
|
+
export declare function resourceDeserializer(item: any): Resource;
|
|
90
|
+
/** Metadata pertaining to creation and last modification of the resource. */
|
|
91
|
+
export interface SystemData {
|
|
92
|
+
/** The identity that created the resource. */
|
|
93
|
+
createdBy?: string;
|
|
94
|
+
/** The type of identity that created the resource. */
|
|
95
|
+
createdByType?: CreatedByType;
|
|
96
|
+
/** The timestamp of resource creation (UTC). */
|
|
97
|
+
createdAt?: Date;
|
|
98
|
+
/** The identity that last modified the resource. */
|
|
99
|
+
lastModifiedBy?: string;
|
|
100
|
+
/** The type of identity that last modified the resource. */
|
|
101
|
+
lastModifiedByType?: CreatedByType;
|
|
102
|
+
/** The timestamp of resource last modification (UTC) */
|
|
103
|
+
lastModifiedAt?: Date;
|
|
104
|
+
}
|
|
105
|
+
export declare function systemDataDeserializer(item: any): SystemData;
|
|
106
|
+
/** The kind of entity that created the resource. */
|
|
107
|
+
export declare enum KnownCreatedByType {
|
|
108
|
+
/** The entity was created by a user. */
|
|
109
|
+
User = "User",
|
|
110
|
+
/** The entity was created by an application. */
|
|
111
|
+
Application = "Application",
|
|
112
|
+
/** The entity was created by a managed identity. */
|
|
113
|
+
ManagedIdentity = "ManagedIdentity",
|
|
114
|
+
/** The entity was created by a key. */
|
|
115
|
+
Key = "Key"
|
|
116
|
+
}
|
|
117
|
+
/**
|
|
118
|
+
* The kind of entity that created the resource. \
|
|
119
|
+
* {@link KnowncreatedByType} can be used interchangeably with createdByType,
|
|
120
|
+
* this enum contains the known values that the service supports.
|
|
121
|
+
* ### Known values supported by the service
|
|
122
|
+
* **User**: The entity was created by a user. \
|
|
123
|
+
* **Application**: The entity was created by an application. \
|
|
124
|
+
* **ManagedIdentity**: The entity was created by a managed identity. \
|
|
125
|
+
* **Key**: The entity was created by a key.
|
|
126
|
+
*/
|
|
127
|
+
export type CreatedByType = string;
|
|
128
|
+
/** The response of a AccountQuota list operation. */
|
|
129
|
+
export interface _AccountQuotaListResult {
|
|
130
|
+
/** The AccountQuota items on this page */
|
|
131
|
+
value: AccountQuota[];
|
|
132
|
+
/** The link to the next page of items */
|
|
133
|
+
nextLink?: string;
|
|
134
|
+
}
|
|
135
|
+
export declare function _accountQuotaListResultDeserializer(item: any): _AccountQuotaListResult;
|
|
136
|
+
export declare function accountQuotaArrayDeserializer(result: Array<AccountQuota>): any[];
|
|
137
|
+
/** A subscription quota resource. */
|
|
138
|
+
export interface Quota extends ProxyResource {
|
|
139
|
+
/** The resource-specific properties for this resource. */
|
|
140
|
+
properties?: QuotaProperties;
|
|
141
|
+
}
|
|
142
|
+
export declare function quotaDeserializer(item: any): Quota;
|
|
143
|
+
/** The subscription quota resource properties. */
|
|
144
|
+
export interface QuotaProperties {
|
|
145
|
+
/** The subscription quota resource free-trial properties. */
|
|
146
|
+
freeTrial?: FreeTrialProperties;
|
|
147
|
+
/** Indicates the offering type for the subscription. */
|
|
148
|
+
readonly offeringType?: OfferingType;
|
|
149
|
+
/** The status of the last operation. */
|
|
150
|
+
readonly provisioningState?: ProvisioningState;
|
|
151
|
+
}
|
|
152
|
+
export declare function quotaPropertiesDeserializer(item: any): QuotaProperties;
|
|
153
|
+
/** The subscription quota resource free-trial properties. */
|
|
154
|
+
export interface FreeTrialProperties {
|
|
155
|
+
/** The Playwright service account id. */
|
|
156
|
+
readonly accountId: string;
|
|
157
|
+
/** The free-trial state. */
|
|
158
|
+
readonly state: FreeTrialState;
|
|
159
|
+
}
|
|
160
|
+
export declare function freeTrialPropertiesDeserializer(item: any): FreeTrialProperties;
|
|
161
|
+
/** The free-trial state. */
|
|
162
|
+
export declare enum KnownFreeTrialState {
|
|
163
|
+
/** The free-trial is Active. */
|
|
164
|
+
Active = "Active",
|
|
165
|
+
/** The free-trial is Expired. */
|
|
166
|
+
Expired = "Expired",
|
|
167
|
+
/** The free-trial is Not Eligible. */
|
|
168
|
+
NotEligible = "NotEligible",
|
|
169
|
+
/** The free-trial is Not Registered. */
|
|
170
|
+
NotRegistered = "NotRegistered"
|
|
171
|
+
}
|
|
172
|
+
/**
|
|
173
|
+
* The free-trial state. \
|
|
174
|
+
* {@link KnownFreeTrialState} can be used interchangeably with FreeTrialState,
|
|
175
|
+
* this enum contains the known values that the service supports.
|
|
176
|
+
* ### Known values supported by the service
|
|
177
|
+
* **Active**: The free-trial is Active. \
|
|
178
|
+
* **Expired**: The free-trial is Expired. \
|
|
179
|
+
* **NotEligible**: The free-trial is Not Eligible. \
|
|
180
|
+
* **NotRegistered**: The free-trial is Not Registered.
|
|
181
|
+
*/
|
|
182
|
+
export type FreeTrialState = string;
|
|
183
|
+
/** Offering type state. */
|
|
184
|
+
export declare enum KnownOfferingType {
|
|
185
|
+
/** The offeringType is NotApplicable. */
|
|
186
|
+
NotApplicable = "NotApplicable",
|
|
187
|
+
/** The offeringType is PrivatePreview. */
|
|
188
|
+
PrivatePreview = "PrivatePreview",
|
|
189
|
+
/** The offeringType is PublicPreview. */
|
|
190
|
+
PublicPreview = "PublicPreview",
|
|
191
|
+
/** The offeringType is GeneralAvailability. */
|
|
192
|
+
GeneralAvailability = "GeneralAvailability"
|
|
193
|
+
}
|
|
194
|
+
/**
|
|
195
|
+
* Offering type state. \
|
|
196
|
+
* {@link KnownOfferingType} can be used interchangeably with OfferingType,
|
|
197
|
+
* this enum contains the known values that the service supports.
|
|
198
|
+
* ### Known values supported by the service
|
|
199
|
+
* **NotApplicable**: The offeringType is NotApplicable. \
|
|
200
|
+
* **PrivatePreview**: The offeringType is PrivatePreview. \
|
|
201
|
+
* **PublicPreview**: The offeringType is PublicPreview. \
|
|
202
|
+
* **GeneralAvailability**: The offeringType is GeneralAvailability.
|
|
203
|
+
*/
|
|
204
|
+
export type OfferingType = string;
|
|
205
|
+
/** The response of a Quota list operation. */
|
|
206
|
+
export interface _QuotaListResult {
|
|
207
|
+
/** The Quota items on this page */
|
|
208
|
+
value: Quota[];
|
|
209
|
+
/** The link to the next page of items */
|
|
210
|
+
nextLink?: string;
|
|
211
|
+
}
|
|
212
|
+
export declare function _quotaListResultDeserializer(item: any): _QuotaListResult;
|
|
213
|
+
export declare function quotaArrayDeserializer(result: Array<Quota>): any[];
|
|
214
|
+
/** A Playwright service account resource. */
|
|
215
|
+
export interface Account extends TrackedResource {
|
|
216
|
+
/** The resource-specific properties for this resource. */
|
|
217
|
+
properties?: AccountProperties;
|
|
218
|
+
}
|
|
219
|
+
export declare function accountSerializer(item: Account): any;
|
|
220
|
+
export declare function accountDeserializer(item: any): Account;
|
|
221
|
+
/** Account resource properties. */
|
|
222
|
+
export interface AccountProperties {
|
|
223
|
+
/** The Playwright testing dashboard URI for the account resource. */
|
|
224
|
+
readonly dashboardUri?: string;
|
|
225
|
+
/** This property sets the connection region for Playwright client workers to cloud-hosted browsers. If enabled, workers connect to browsers in the closest Azure region, ensuring lower latency. If disabled, workers connect to browsers in the Azure region in which the workspace was initially created. */
|
|
226
|
+
regionalAffinity?: EnablementStatus;
|
|
227
|
+
/** When enabled, Playwright client workers can connect to cloud-hosted browsers. This can increase the number of parallel workers for a test run, significantly minimizing test completion durations. */
|
|
228
|
+
scalableExecution?: EnablementStatus;
|
|
229
|
+
/** When enabled, this feature allows the workspace to upload and display test results, including artifacts like traces and screenshots, in the Playwright portal. This enables faster and more efficient troubleshooting. */
|
|
230
|
+
reporting?: EnablementStatus;
|
|
231
|
+
/** When enabled, this feature allows the workspace to use local auth(through access key) for authentication of test runs. */
|
|
232
|
+
localAuth?: EnablementStatus;
|
|
233
|
+
/** The status of the last operation. */
|
|
234
|
+
readonly provisioningState?: ProvisioningState;
|
|
235
|
+
}
|
|
236
|
+
export declare function accountPropertiesSerializer(item: AccountProperties): any;
|
|
237
|
+
export declare function accountPropertiesDeserializer(item: any): AccountProperties;
|
|
238
|
+
/** The enablement status of a feature. */
|
|
239
|
+
export declare enum KnownEnablementStatus {
|
|
240
|
+
/** The feature is Enabled. */
|
|
241
|
+
Enabled = "Enabled",
|
|
242
|
+
/** The feature is Disabled. */
|
|
243
|
+
Disabled = "Disabled"
|
|
244
|
+
}
|
|
245
|
+
/**
|
|
246
|
+
* The enablement status of a feature. \
|
|
247
|
+
* {@link KnownEnablementStatus} can be used interchangeably with EnablementStatus,
|
|
248
|
+
* this enum contains the known values that the service supports.
|
|
249
|
+
* ### Known values supported by the service
|
|
250
|
+
* **Enabled**: The feature is Enabled. \
|
|
251
|
+
* **Disabled**: The feature is Disabled.
|
|
252
|
+
*/
|
|
253
|
+
export type EnablementStatus = string;
|
|
254
|
+
/** The resource model definition for an Azure Resource Manager tracked top level resource which has 'tags' and a 'location' */
|
|
255
|
+
export interface TrackedResource extends Resource {
|
|
256
|
+
/** Resource tags. */
|
|
257
|
+
tags?: Record<string, string>;
|
|
258
|
+
/** The geo-location where the resource lives */
|
|
259
|
+
location: string;
|
|
260
|
+
}
|
|
261
|
+
export declare function trackedResourceSerializer(item: TrackedResource): any;
|
|
262
|
+
export declare function trackedResourceDeserializer(item: any): TrackedResource;
|
|
263
|
+
/** The type used for update operations of the Account. */
|
|
264
|
+
export interface AccountUpdate {
|
|
265
|
+
/** Resource tags. */
|
|
266
|
+
tags?: Record<string, string>;
|
|
267
|
+
/** The resource-specific properties for this resource. */
|
|
268
|
+
properties?: AccountUpdateProperties;
|
|
269
|
+
}
|
|
270
|
+
export declare function accountUpdateSerializer(item: AccountUpdate): any;
|
|
271
|
+
/** The updatable properties of the Account. */
|
|
272
|
+
export interface AccountUpdateProperties {
|
|
273
|
+
/** This property sets the connection region for Playwright client workers to cloud-hosted browsers. If enabled, workers connect to browsers in the closest Azure region, ensuring lower latency. If disabled, workers connect to browsers in the Azure region in which the workspace was initially created. */
|
|
274
|
+
regionalAffinity?: EnablementStatus;
|
|
275
|
+
/** When enabled, Playwright client workers can connect to cloud-hosted browsers. This can increase the number of parallel workers for a test run, significantly minimizing test completion durations. */
|
|
276
|
+
scalableExecution?: EnablementStatus;
|
|
277
|
+
/** When enabled, this feature allows the workspace to upload and display test results, including artifacts like traces and screenshots, in the Playwright portal. This enables faster and more efficient troubleshooting. */
|
|
278
|
+
reporting?: EnablementStatus;
|
|
279
|
+
/** When enabled, this feature allows the workspace to use local auth(through access key) for authentication of test runs. */
|
|
280
|
+
localAuth?: EnablementStatus;
|
|
281
|
+
}
|
|
282
|
+
export declare function accountUpdatePropertiesSerializer(item: AccountUpdateProperties): any;
|
|
283
|
+
/** The response of a Account list operation. */
|
|
284
|
+
export interface _AccountListResult {
|
|
285
|
+
/** The Account items on this page */
|
|
286
|
+
value: Account[];
|
|
287
|
+
/** The link to the next page of items */
|
|
288
|
+
nextLink?: string;
|
|
289
|
+
}
|
|
290
|
+
export declare function _accountListResultDeserializer(item: any): _AccountListResult;
|
|
291
|
+
export declare function accountArraySerializer(result: Array<Account>): any[];
|
|
292
|
+
export declare function accountArrayDeserializer(result: Array<Account>): any[];
|
|
293
|
+
/** The check availability request body. */
|
|
294
|
+
export interface CheckNameAvailabilityRequest {
|
|
295
|
+
/** The name of the resource for which availability needs to be checked. */
|
|
296
|
+
name?: string;
|
|
297
|
+
/** The resource type. */
|
|
298
|
+
type?: string;
|
|
299
|
+
}
|
|
300
|
+
export declare function checkNameAvailabilityRequestSerializer(item: CheckNameAvailabilityRequest): any;
|
|
301
|
+
/** The check availability result. */
|
|
302
|
+
export interface CheckNameAvailabilityResponse {
|
|
303
|
+
/** Indicates if the resource name is available. */
|
|
304
|
+
nameAvailable?: boolean;
|
|
305
|
+
/** The reason why the given name is not available. */
|
|
306
|
+
reason?: CheckNameAvailabilityReason;
|
|
307
|
+
/** Detailed reason why the given name is not available. */
|
|
308
|
+
message?: string;
|
|
309
|
+
}
|
|
310
|
+
export declare function checkNameAvailabilityResponseDeserializer(item: any): CheckNameAvailabilityResponse;
|
|
311
|
+
/** Possible reasons for a name not being available. */
|
|
312
|
+
export declare enum KnownCheckNameAvailabilityReason {
|
|
313
|
+
/** Name is invalid. */
|
|
314
|
+
Invalid = "Invalid",
|
|
315
|
+
/** Name already exists. */
|
|
316
|
+
AlreadyExists = "AlreadyExists"
|
|
317
|
+
}
|
|
318
|
+
/**
|
|
319
|
+
* Possible reasons for a name not being available. \
|
|
320
|
+
* {@link KnownCheckNameAvailabilityReason} can be used interchangeably with CheckNameAvailabilityReason,
|
|
321
|
+
* this enum contains the known values that the service supports.
|
|
322
|
+
* ### Known values supported by the service
|
|
323
|
+
* **Invalid**: Name is invalid. \
|
|
324
|
+
* **AlreadyExists**: Name already exists.
|
|
325
|
+
*/
|
|
326
|
+
export type CheckNameAvailabilityReason = string;
|
|
327
|
+
/** A list of REST API operations supported by an Azure Resource Provider. It contains an URL link to get the next set of results. */
|
|
328
|
+
export interface _OperationListResult {
|
|
329
|
+
/** The Operation items on this page */
|
|
330
|
+
value: Operation[];
|
|
331
|
+
/** The link to the next page of items */
|
|
332
|
+
nextLink?: string;
|
|
333
|
+
}
|
|
334
|
+
export declare function _operationListResultDeserializer(item: any): _OperationListResult;
|
|
335
|
+
export declare function operationArrayDeserializer(result: Array<Operation>): any[];
|
|
336
|
+
/** Details of a REST API operation, returned from the Resource Provider Operations API */
|
|
337
|
+
export interface Operation {
|
|
338
|
+
/** The name of the operation, as per Resource-Based Access Control (RBAC). Examples: "Microsoft.Compute/virtualMachines/write", "Microsoft.Compute/virtualMachines/capture/action" */
|
|
339
|
+
readonly name?: string;
|
|
340
|
+
/** Whether the operation applies to data-plane. This is "true" for data-plane operations and "false" for Azure Resource Manager/control-plane operations. */
|
|
341
|
+
readonly isDataAction?: boolean;
|
|
342
|
+
/** Localized display information for this particular operation. */
|
|
343
|
+
readonly display?: OperationDisplay;
|
|
344
|
+
/** The intended executor of the operation; as in Resource Based Access Control (RBAC) and audit logs UX. Default value is "user,system" */
|
|
345
|
+
readonly origin?: Origin;
|
|
346
|
+
/** Extensible enum. Indicates the action type. "Internal" refers to actions that are for internal only APIs. */
|
|
347
|
+
actionType?: ActionType;
|
|
348
|
+
}
|
|
349
|
+
export declare function operationDeserializer(item: any): Operation;
|
|
350
|
+
/** Localized display information for and operation. */
|
|
351
|
+
export interface OperationDisplay {
|
|
352
|
+
/** The localized friendly form of the resource provider name, e.g. "Microsoft Monitoring Insights" or "Microsoft Compute". */
|
|
353
|
+
readonly provider?: string;
|
|
354
|
+
/** The localized friendly name of the resource type related to this operation. E.g. "Virtual Machines" or "Job Schedule Collections". */
|
|
355
|
+
readonly resource?: string;
|
|
356
|
+
/** The concise, localized friendly name for the operation; suitable for dropdowns. E.g. "Create or Update Virtual Machine", "Restart Virtual Machine". */
|
|
357
|
+
readonly operation?: string;
|
|
358
|
+
/** The short, localized friendly description of the operation; suitable for tool tips and detailed views. */
|
|
359
|
+
readonly description?: string;
|
|
360
|
+
}
|
|
361
|
+
export declare function operationDisplayDeserializer(item: any): OperationDisplay;
|
|
362
|
+
/** The intended executor of the operation; as in Resource Based Access Control (RBAC) and audit logs UX. Default value is "user,system" */
|
|
363
|
+
export declare enum KnownOrigin {
|
|
364
|
+
/** Indicates the operation is initiated by a user. */
|
|
365
|
+
User = "user",
|
|
366
|
+
/** Indicates the operation is initiated by a system. */
|
|
367
|
+
System = "system",
|
|
368
|
+
/** Indicates the operation is initiated by a user or system. */
|
|
369
|
+
UserSystem = "user,system"
|
|
370
|
+
}
|
|
371
|
+
/**
|
|
372
|
+
* The intended executor of the operation; as in Resource Based Access Control (RBAC) and audit logs UX. Default value is "user,system" \
|
|
373
|
+
* {@link KnownOrigin} can be used interchangeably with Origin,
|
|
374
|
+
* this enum contains the known values that the service supports.
|
|
375
|
+
* ### Known values supported by the service
|
|
376
|
+
* **user**: Indicates the operation is initiated by a user. \
|
|
377
|
+
* **system**: Indicates the operation is initiated by a system. \
|
|
378
|
+
* **user,system**: Indicates the operation is initiated by a user or system.
|
|
379
|
+
*/
|
|
380
|
+
export type Origin = string;
|
|
381
|
+
/** Extensible enum. Indicates the action type. "Internal" refers to actions that are for internal only APIs. */
|
|
382
|
+
export declare enum KnownActionType {
|
|
383
|
+
/** Actions are for internal-only APIs. */
|
|
384
|
+
Internal = "Internal"
|
|
385
|
+
}
|
|
386
|
+
/**
|
|
387
|
+
* Extensible enum. Indicates the action type. "Internal" refers to actions that are for internal only APIs. \
|
|
388
|
+
* {@link KnownActionType} can be used interchangeably with ActionType,
|
|
389
|
+
* this enum contains the known values that the service supports.
|
|
390
|
+
* ### Known values supported by the service
|
|
391
|
+
* **Internal**: Actions are for internal-only APIs.
|
|
392
|
+
*/
|
|
393
|
+
export type ActionType = string;
|
|
394
|
+
/** Microsoft.AzurePlaywrightService Management API Versions. */
|
|
395
|
+
export declare enum KnownVersions {
|
|
396
|
+
/** 2024-12-01 version */
|
|
397
|
+
"V2024-12-01" = "2024-12-01"
|
|
398
|
+
}
|
|
399
|
+
//# sourceMappingURL=models.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"models.d.ts","sourceRoot":"","sources":["../../../src/models/models.ts"],"names":[],"mappings":"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"}
|