@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
|
@@ -1,663 +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
|
-
/** An account resource */
|
|
8
|
-
export declare interface Account extends TrackedResource {
|
|
9
|
-
/** The resource-specific properties for this resource. */
|
|
10
|
-
properties?: AccountProperties;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
/** The response of a Account list operation. */
|
|
14
|
-
export declare interface AccountListResult {
|
|
15
|
-
/** The Account items on this page */
|
|
16
|
-
value: Account[];
|
|
17
|
-
/** The link to the next page of items */
|
|
18
|
-
nextLink?: string;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
/** Account properties */
|
|
22
|
-
export declare interface AccountProperties {
|
|
23
|
-
/**
|
|
24
|
-
* The Playwright testing dashboard URI for the account resource.
|
|
25
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
26
|
-
*/
|
|
27
|
-
readonly dashboardUri?: string;
|
|
28
|
-
/** 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. */
|
|
29
|
-
regionalAffinity?: EnablementStatus;
|
|
30
|
-
/** 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. */
|
|
31
|
-
scalableExecution?: EnablementStatus;
|
|
32
|
-
/** 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. */
|
|
33
|
-
reporting?: EnablementStatus;
|
|
34
|
-
/**
|
|
35
|
-
* The status of the last operation.
|
|
36
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
37
|
-
*/
|
|
38
|
-
readonly provisioningState?: ProvisioningState;
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
/** Interface representing a Accounts. */
|
|
42
|
-
export declare interface Accounts {
|
|
43
|
-
/**
|
|
44
|
-
* List Account resources by subscription ID
|
|
45
|
-
* @param options The options parameters.
|
|
46
|
-
*/
|
|
47
|
-
listBySubscription(options?: AccountsListBySubscriptionOptionalParams): PagedAsyncIterableIterator<Account>;
|
|
48
|
-
/**
|
|
49
|
-
* List Account resources by resource group
|
|
50
|
-
* @param resourceGroupName The name of the resource group. The name is case insensitive.
|
|
51
|
-
* @param options The options parameters.
|
|
52
|
-
*/
|
|
53
|
-
listByResourceGroup(resourceGroupName: string, options?: AccountsListByResourceGroupOptionalParams): PagedAsyncIterableIterator<Account>;
|
|
54
|
-
/**
|
|
55
|
-
* Get a Account
|
|
56
|
-
* @param resourceGroupName The name of the resource group. The name is case insensitive.
|
|
57
|
-
* @param name Name of account
|
|
58
|
-
* @param options The options parameters.
|
|
59
|
-
*/
|
|
60
|
-
get(resourceGroupName: string, name: string, options?: AccountsGetOptionalParams): Promise<AccountsGetResponse>;
|
|
61
|
-
/**
|
|
62
|
-
* Create a Account
|
|
63
|
-
* @param resourceGroupName The name of the resource group. The name is case insensitive.
|
|
64
|
-
* @param name Name of account
|
|
65
|
-
* @param resource Resource create parameters.
|
|
66
|
-
* @param options The options parameters.
|
|
67
|
-
*/
|
|
68
|
-
beginCreateOrUpdate(resourceGroupName: string, name: string, resource: Account, options?: AccountsCreateOrUpdateOptionalParams): Promise<SimplePollerLike<OperationState<AccountsCreateOrUpdateResponse>, AccountsCreateOrUpdateResponse>>;
|
|
69
|
-
/**
|
|
70
|
-
* Create a Account
|
|
71
|
-
* @param resourceGroupName The name of the resource group. The name is case insensitive.
|
|
72
|
-
* @param name Name of account
|
|
73
|
-
* @param resource Resource create parameters.
|
|
74
|
-
* @param options The options parameters.
|
|
75
|
-
*/
|
|
76
|
-
beginCreateOrUpdateAndWait(resourceGroupName: string, name: string, resource: Account, options?: AccountsCreateOrUpdateOptionalParams): Promise<AccountsCreateOrUpdateResponse>;
|
|
77
|
-
/**
|
|
78
|
-
* Update a Account
|
|
79
|
-
* @param resourceGroupName The name of the resource group. The name is case insensitive.
|
|
80
|
-
* @param name Name of account
|
|
81
|
-
* @param properties The resource properties to be updated.
|
|
82
|
-
* @param options The options parameters.
|
|
83
|
-
*/
|
|
84
|
-
update(resourceGroupName: string, name: string, properties: AccountUpdate, options?: AccountsUpdateOptionalParams): Promise<AccountsUpdateResponse>;
|
|
85
|
-
/**
|
|
86
|
-
* Delete a Account
|
|
87
|
-
* @param resourceGroupName The name of the resource group. The name is case insensitive.
|
|
88
|
-
* @param name Name of account
|
|
89
|
-
* @param options The options parameters.
|
|
90
|
-
*/
|
|
91
|
-
beginDelete(resourceGroupName: string, name: string, options?: AccountsDeleteOptionalParams): Promise<SimplePollerLike<OperationState<void>, void>>;
|
|
92
|
-
/**
|
|
93
|
-
* Delete a Account
|
|
94
|
-
* @param resourceGroupName The name of the resource group. The name is case insensitive.
|
|
95
|
-
* @param name Name of account
|
|
96
|
-
* @param options The options parameters.
|
|
97
|
-
*/
|
|
98
|
-
beginDeleteAndWait(resourceGroupName: string, name: string, options?: AccountsDeleteOptionalParams): Promise<void>;
|
|
99
|
-
}
|
|
100
|
-
|
|
101
|
-
/** Defines headers for Accounts_createOrUpdate operation. */
|
|
102
|
-
export declare interface AccountsCreateOrUpdateHeaders {
|
|
103
|
-
/** The Retry-After header can indicate how long the client should wait before polling the operation status. */
|
|
104
|
-
retryAfter?: number;
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
/** Optional parameters. */
|
|
108
|
-
export declare interface AccountsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
109
|
-
/** Delay to wait until next poll, in milliseconds. */
|
|
110
|
-
updateIntervalInMs?: number;
|
|
111
|
-
/** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */
|
|
112
|
-
resumeFrom?: string;
|
|
113
|
-
}
|
|
114
|
-
|
|
115
|
-
/** Contains response data for the createOrUpdate operation. */
|
|
116
|
-
export declare type AccountsCreateOrUpdateResponse = Account;
|
|
117
|
-
|
|
118
|
-
/** Defines headers for Accounts_delete operation. */
|
|
119
|
-
export declare interface AccountsDeleteHeaders {
|
|
120
|
-
/** The Retry-After header can indicate how long the client should wait before polling the operation status. */
|
|
121
|
-
retryAfter?: number;
|
|
122
|
-
/** The Location header contains the URL where the status of the long running operation can be checked. */
|
|
123
|
-
location?: string;
|
|
124
|
-
}
|
|
125
|
-
|
|
126
|
-
/** Optional parameters. */
|
|
127
|
-
export declare interface AccountsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
128
|
-
/** Delay to wait until next poll, in milliseconds. */
|
|
129
|
-
updateIntervalInMs?: number;
|
|
130
|
-
/** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */
|
|
131
|
-
resumeFrom?: string;
|
|
132
|
-
}
|
|
133
|
-
|
|
134
|
-
/** Optional parameters. */
|
|
135
|
-
export declare interface AccountsGetOptionalParams extends coreClient.OperationOptions {
|
|
136
|
-
}
|
|
137
|
-
|
|
138
|
-
/** Contains response data for the get operation. */
|
|
139
|
-
export declare type AccountsGetResponse = Account;
|
|
140
|
-
|
|
141
|
-
/** Optional parameters. */
|
|
142
|
-
export declare interface AccountsListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
|
|
143
|
-
}
|
|
144
|
-
|
|
145
|
-
/** Contains response data for the listByResourceGroupNext operation. */
|
|
146
|
-
export declare type AccountsListByResourceGroupNextResponse = AccountListResult;
|
|
147
|
-
|
|
148
|
-
/** Optional parameters. */
|
|
149
|
-
export declare interface AccountsListByResourceGroupOptionalParams extends coreClient.OperationOptions {
|
|
150
|
-
}
|
|
151
|
-
|
|
152
|
-
/** Contains response data for the listByResourceGroup operation. */
|
|
153
|
-
export declare type AccountsListByResourceGroupResponse = AccountListResult;
|
|
154
|
-
|
|
155
|
-
/** Optional parameters. */
|
|
156
|
-
export declare interface AccountsListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
|
|
157
|
-
}
|
|
158
|
-
|
|
159
|
-
/** Contains response data for the listBySubscriptionNext operation. */
|
|
160
|
-
export declare type AccountsListBySubscriptionNextResponse = AccountListResult;
|
|
161
|
-
|
|
162
|
-
/** Optional parameters. */
|
|
163
|
-
export declare interface AccountsListBySubscriptionOptionalParams extends coreClient.OperationOptions {
|
|
164
|
-
}
|
|
165
|
-
|
|
166
|
-
/** Contains response data for the listBySubscription operation. */
|
|
167
|
-
export declare type AccountsListBySubscriptionResponse = AccountListResult;
|
|
168
|
-
|
|
169
|
-
/** Optional parameters. */
|
|
170
|
-
export declare interface AccountsUpdateOptionalParams extends coreClient.OperationOptions {
|
|
171
|
-
}
|
|
172
|
-
|
|
173
|
-
/** Contains response data for the update operation. */
|
|
174
|
-
export declare type AccountsUpdateResponse = Account;
|
|
175
|
-
|
|
176
|
-
/** The type used for update operations of the Account. */
|
|
177
|
-
export declare interface AccountUpdate {
|
|
178
|
-
/** Resource tags. */
|
|
179
|
-
tags?: {
|
|
180
|
-
[propertyName: string]: string;
|
|
181
|
-
};
|
|
182
|
-
/** The updatable properties of the Account. */
|
|
183
|
-
properties?: AccountUpdateProperties;
|
|
184
|
-
}
|
|
185
|
-
|
|
186
|
-
/** The updatable properties of the Account. */
|
|
187
|
-
export declare interface AccountUpdateProperties {
|
|
188
|
-
/** 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. */
|
|
189
|
-
regionalAffinity?: EnablementStatus;
|
|
190
|
-
/** 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. */
|
|
191
|
-
scalableExecution?: EnablementStatus;
|
|
192
|
-
/** 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. */
|
|
193
|
-
reporting?: EnablementStatus;
|
|
194
|
-
}
|
|
195
|
-
|
|
196
|
-
/**
|
|
197
|
-
* Defines values for ActionType. \
|
|
198
|
-
* {@link KnownActionType} can be used interchangeably with ActionType,
|
|
199
|
-
* this enum contains the known values that the service supports.
|
|
200
|
-
* ### Known values supported by the service
|
|
201
|
-
* **Internal**
|
|
202
|
-
*/
|
|
203
|
-
export declare type ActionType = string;
|
|
204
|
-
|
|
205
|
-
/**
|
|
206
|
-
* Defines values for CreatedByType. \
|
|
207
|
-
* {@link KnownCreatedByType} can be used interchangeably with CreatedByType,
|
|
208
|
-
* this enum contains the known values that the service supports.
|
|
209
|
-
* ### Known values supported by the service
|
|
210
|
-
* **User** \
|
|
211
|
-
* **Application** \
|
|
212
|
-
* **ManagedIdentity** \
|
|
213
|
-
* **Key**
|
|
214
|
-
*/
|
|
215
|
-
export declare type CreatedByType = string;
|
|
216
|
-
|
|
217
|
-
/**
|
|
218
|
-
* Defines values for EnablementStatus. \
|
|
219
|
-
* {@link KnownEnablementStatus} can be used interchangeably with EnablementStatus,
|
|
220
|
-
* this enum contains the known values that the service supports.
|
|
221
|
-
* ### Known values supported by the service
|
|
222
|
-
* **Enabled**: The feature is Enabled. \
|
|
223
|
-
* **Disabled**: The feature is Disabled.
|
|
224
|
-
*/
|
|
225
|
-
export declare type EnablementStatus = string;
|
|
226
|
-
|
|
227
|
-
/** The resource management error additional info. */
|
|
228
|
-
export declare interface ErrorAdditionalInfo {
|
|
229
|
-
/**
|
|
230
|
-
* The additional info type.
|
|
231
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
232
|
-
*/
|
|
233
|
-
readonly type?: string;
|
|
234
|
-
/**
|
|
235
|
-
* The additional info.
|
|
236
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
237
|
-
*/
|
|
238
|
-
readonly info?: Record<string, unknown>;
|
|
239
|
-
}
|
|
240
|
-
|
|
241
|
-
/** The error detail. */
|
|
242
|
-
export declare interface ErrorDetail {
|
|
243
|
-
/**
|
|
244
|
-
* The error code.
|
|
245
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
246
|
-
*/
|
|
247
|
-
readonly code?: string;
|
|
248
|
-
/**
|
|
249
|
-
* The error message.
|
|
250
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
251
|
-
*/
|
|
252
|
-
readonly message?: string;
|
|
253
|
-
/**
|
|
254
|
-
* The error target.
|
|
255
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
256
|
-
*/
|
|
257
|
-
readonly target?: string;
|
|
258
|
-
/**
|
|
259
|
-
* The error details.
|
|
260
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
261
|
-
*/
|
|
262
|
-
readonly details?: ErrorDetail[];
|
|
263
|
-
/**
|
|
264
|
-
* The error additional info.
|
|
265
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
266
|
-
*/
|
|
267
|
-
readonly additionalInfo?: ErrorAdditionalInfo[];
|
|
268
|
-
}
|
|
269
|
-
|
|
270
|
-
/** Common error response for all Azure Resource Manager APIs to return error details for failed operations. (This also follows the OData error response format.). */
|
|
271
|
-
export declare interface ErrorResponse {
|
|
272
|
-
/** The error object. */
|
|
273
|
-
error?: ErrorDetail;
|
|
274
|
-
}
|
|
275
|
-
|
|
276
|
-
/** The free-trial properties */
|
|
277
|
-
export declare interface FreeTrialProperties {
|
|
278
|
-
/**
|
|
279
|
-
* The playwright account id.
|
|
280
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
281
|
-
*/
|
|
282
|
-
readonly accountId: string;
|
|
283
|
-
/**
|
|
284
|
-
* The free-trial createdAt utcDateTime.
|
|
285
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
286
|
-
*/
|
|
287
|
-
readonly createdAt: Date;
|
|
288
|
-
/**
|
|
289
|
-
* The free-trial expiryAt utcDateTime.
|
|
290
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
291
|
-
*/
|
|
292
|
-
readonly expiryAt: Date;
|
|
293
|
-
/**
|
|
294
|
-
* The free-trial allocated limit value eg. allocated free minutes.
|
|
295
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
296
|
-
*/
|
|
297
|
-
readonly allocatedValue: number;
|
|
298
|
-
/**
|
|
299
|
-
* The free-trial used value eg. used free minutes.
|
|
300
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
301
|
-
*/
|
|
302
|
-
readonly usedValue: number;
|
|
303
|
-
/**
|
|
304
|
-
* The free-trial percentage used.
|
|
305
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
306
|
-
*/
|
|
307
|
-
readonly percentageUsed: number;
|
|
308
|
-
/**
|
|
309
|
-
* The free-trial state.
|
|
310
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
311
|
-
*/
|
|
312
|
-
readonly state: FreeTrialState;
|
|
313
|
-
}
|
|
314
|
-
|
|
315
|
-
/**
|
|
316
|
-
* Defines values for FreeTrialState. \
|
|
317
|
-
* {@link KnownFreeTrialState} can be used interchangeably with FreeTrialState,
|
|
318
|
-
* this enum contains the known values that the service supports.
|
|
319
|
-
* ### Known values supported by the service
|
|
320
|
-
* **Active**: The free-trial is Active. \
|
|
321
|
-
* **Expired**: The free-trial is Expired.
|
|
322
|
-
*/
|
|
323
|
-
export declare type FreeTrialState = string;
|
|
324
|
-
|
|
325
|
-
/**
|
|
326
|
-
* Given the last `.value` produced by the `byPage` iterator,
|
|
327
|
-
* returns a continuation token that can be used to begin paging from
|
|
328
|
-
* that point later.
|
|
329
|
-
* @param page An object from accessing `value` on the IteratorResult from a `byPage` iterator.
|
|
330
|
-
* @returns The continuation token that can be passed into byPage() during future calls.
|
|
331
|
-
*/
|
|
332
|
-
export declare function getContinuationToken(page: unknown): string | undefined;
|
|
333
|
-
|
|
334
|
-
/** Known values of {@link ActionType} that the service accepts. */
|
|
335
|
-
export declare enum KnownActionType {
|
|
336
|
-
/** Internal */
|
|
337
|
-
Internal = "Internal"
|
|
338
|
-
}
|
|
339
|
-
|
|
340
|
-
/** Known values of {@link CreatedByType} that the service accepts. */
|
|
341
|
-
export declare enum KnownCreatedByType {
|
|
342
|
-
/** User */
|
|
343
|
-
User = "User",
|
|
344
|
-
/** Application */
|
|
345
|
-
Application = "Application",
|
|
346
|
-
/** ManagedIdentity */
|
|
347
|
-
ManagedIdentity = "ManagedIdentity",
|
|
348
|
-
/** Key */
|
|
349
|
-
Key = "Key"
|
|
350
|
-
}
|
|
351
|
-
|
|
352
|
-
/** Known values of {@link EnablementStatus} that the service accepts. */
|
|
353
|
-
export declare enum KnownEnablementStatus {
|
|
354
|
-
/** The feature is Enabled. */
|
|
355
|
-
Enabled = "Enabled",
|
|
356
|
-
/** The feature is Disabled. */
|
|
357
|
-
Disabled = "Disabled"
|
|
358
|
-
}
|
|
359
|
-
|
|
360
|
-
/** Known values of {@link FreeTrialState} that the service accepts. */
|
|
361
|
-
export declare enum KnownFreeTrialState {
|
|
362
|
-
/** The free-trial is Active. */
|
|
363
|
-
Active = "Active",
|
|
364
|
-
/** The free-trial is Expired. */
|
|
365
|
-
Expired = "Expired"
|
|
366
|
-
}
|
|
367
|
-
|
|
368
|
-
/** Known values of {@link Origin} that the service accepts. */
|
|
369
|
-
export declare enum KnownOrigin {
|
|
370
|
-
/** User */
|
|
371
|
-
User = "user",
|
|
372
|
-
/** System */
|
|
373
|
-
System = "system",
|
|
374
|
-
/** UserSystem */
|
|
375
|
-
UserSystem = "user,system"
|
|
376
|
-
}
|
|
377
|
-
|
|
378
|
-
/** Known values of {@link ProvisioningState} that the service accepts. */
|
|
379
|
-
export declare enum KnownProvisioningState {
|
|
380
|
-
/** Resource has been created. */
|
|
381
|
-
Succeeded = "Succeeded",
|
|
382
|
-
/** Resource creation failed. */
|
|
383
|
-
Failed = "Failed",
|
|
384
|
-
/** Resource creation was canceled. */
|
|
385
|
-
Canceled = "Canceled",
|
|
386
|
-
/** Deletion in progress */
|
|
387
|
-
Deleting = "Deleting",
|
|
388
|
-
/** Change accepted for processing */
|
|
389
|
-
Accepted = "Accepted"
|
|
390
|
-
}
|
|
391
|
-
|
|
392
|
-
/** Known values of {@link QuotaNames} that the service accepts. */
|
|
393
|
-
export declare enum KnownQuotaNames {
|
|
394
|
-
/** 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. */
|
|
395
|
-
ScalableExecution = "ScalableExecution"
|
|
396
|
-
}
|
|
397
|
-
|
|
398
|
-
/** Details of a REST API operation, returned from the Resource Provider Operations API */
|
|
399
|
-
export declare interface Operation {
|
|
400
|
-
/**
|
|
401
|
-
* The name of the operation, as per Resource-Based Access Control (RBAC). Examples: "Microsoft.Compute/virtualMachines/write", "Microsoft.Compute/virtualMachines/capture/action"
|
|
402
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
403
|
-
*/
|
|
404
|
-
readonly name?: string;
|
|
405
|
-
/**
|
|
406
|
-
* Whether the operation applies to data-plane. This is "true" for data-plane operations and "false" for ARM/control-plane operations.
|
|
407
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
408
|
-
*/
|
|
409
|
-
readonly isDataAction?: boolean;
|
|
410
|
-
/** Localized display information for this particular operation. */
|
|
411
|
-
display?: OperationDisplay;
|
|
412
|
-
/**
|
|
413
|
-
* The intended executor of the operation; as in Resource Based Access Control (RBAC) and audit logs UX. Default value is "user,system"
|
|
414
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
415
|
-
*/
|
|
416
|
-
readonly origin?: Origin;
|
|
417
|
-
/**
|
|
418
|
-
* Enum. Indicates the action type. "Internal" refers to actions that are for internal only APIs.
|
|
419
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
420
|
-
*/
|
|
421
|
-
readonly actionType?: ActionType;
|
|
422
|
-
}
|
|
423
|
-
|
|
424
|
-
/** Localized display information for this particular operation. */
|
|
425
|
-
export declare interface OperationDisplay {
|
|
426
|
-
/**
|
|
427
|
-
* The localized friendly form of the resource provider name, e.g. "Microsoft Monitoring Insights" or "Microsoft Compute".
|
|
428
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
429
|
-
*/
|
|
430
|
-
readonly provider?: string;
|
|
431
|
-
/**
|
|
432
|
-
* The localized friendly name of the resource type related to this operation. E.g. "Virtual Machines" or "Job Schedule Collections".
|
|
433
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
434
|
-
*/
|
|
435
|
-
readonly resource?: string;
|
|
436
|
-
/**
|
|
437
|
-
* The concise, localized friendly name for the operation; suitable for dropdowns. E.g. "Create or Update Virtual Machine", "Restart Virtual Machine".
|
|
438
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
439
|
-
*/
|
|
440
|
-
readonly operation?: string;
|
|
441
|
-
/**
|
|
442
|
-
* The short, localized friendly description of the operation; suitable for tool tips and detailed views.
|
|
443
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
444
|
-
*/
|
|
445
|
-
readonly description?: string;
|
|
446
|
-
}
|
|
447
|
-
|
|
448
|
-
/** A list of REST API operations supported by an Azure Resource Provider. It contains an URL link to get the next set of results. */
|
|
449
|
-
export declare interface OperationListResult {
|
|
450
|
-
/**
|
|
451
|
-
* List of operations supported by the resource provider
|
|
452
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
453
|
-
*/
|
|
454
|
-
readonly value?: Operation[];
|
|
455
|
-
/**
|
|
456
|
-
* URL to get the next set of operation list results (if there are any).
|
|
457
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
458
|
-
*/
|
|
459
|
-
readonly nextLink?: string;
|
|
460
|
-
}
|
|
461
|
-
|
|
462
|
-
/** Interface representing a Operations. */
|
|
463
|
-
export declare interface Operations {
|
|
464
|
-
/**
|
|
465
|
-
* List the operations for the provider
|
|
466
|
-
* @param options The options parameters.
|
|
467
|
-
*/
|
|
468
|
-
list(options?: OperationsListOptionalParams): PagedAsyncIterableIterator<Operation>;
|
|
469
|
-
}
|
|
470
|
-
|
|
471
|
-
/** Optional parameters. */
|
|
472
|
-
export declare interface OperationsListNextOptionalParams extends coreClient.OperationOptions {
|
|
473
|
-
}
|
|
474
|
-
|
|
475
|
-
/** Contains response data for the listNext operation. */
|
|
476
|
-
export declare type OperationsListNextResponse = OperationListResult;
|
|
477
|
-
|
|
478
|
-
/** Optional parameters. */
|
|
479
|
-
export declare interface OperationsListOptionalParams extends coreClient.OperationOptions {
|
|
480
|
-
}
|
|
481
|
-
|
|
482
|
-
/** Contains response data for the list operation. */
|
|
483
|
-
export declare type OperationsListResponse = OperationListResult;
|
|
484
|
-
|
|
485
|
-
/**
|
|
486
|
-
* Defines values for Origin. \
|
|
487
|
-
* {@link KnownOrigin} can be used interchangeably with Origin,
|
|
488
|
-
* this enum contains the known values that the service supports.
|
|
489
|
-
* ### Known values supported by the service
|
|
490
|
-
* **user** \
|
|
491
|
-
* **system** \
|
|
492
|
-
* **user,system**
|
|
493
|
-
*/
|
|
494
|
-
export declare type Origin = string;
|
|
495
|
-
|
|
496
|
-
export declare class PlaywrightTestingClient extends coreClient.ServiceClient {
|
|
497
|
-
$host: string;
|
|
498
|
-
apiVersion: string;
|
|
499
|
-
subscriptionId: string;
|
|
500
|
-
/**
|
|
501
|
-
* Initializes a new instance of the PlaywrightTestingClient class.
|
|
502
|
-
* @param credentials Subscription credentials which uniquely identify client subscription.
|
|
503
|
-
* @param subscriptionId The ID of the target subscription.
|
|
504
|
-
* @param options The parameter options
|
|
505
|
-
*/
|
|
506
|
-
constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: PlaywrightTestingClientOptionalParams);
|
|
507
|
-
/** A function that adds a policy that sets the api-version (or equivalent) to reflect the library version. */
|
|
508
|
-
private addCustomApiVersionPolicy;
|
|
509
|
-
operations: Operations;
|
|
510
|
-
accounts: Accounts;
|
|
511
|
-
quotas: Quotas;
|
|
512
|
-
}
|
|
513
|
-
|
|
514
|
-
/** Optional parameters. */
|
|
515
|
-
export declare interface PlaywrightTestingClientOptionalParams extends coreClient.ServiceClientOptions {
|
|
516
|
-
/** server parameter */
|
|
517
|
-
$host?: string;
|
|
518
|
-
/** Api Version */
|
|
519
|
-
apiVersion?: string;
|
|
520
|
-
/** Overrides client endpoint. */
|
|
521
|
-
endpoint?: string;
|
|
522
|
-
}
|
|
523
|
-
|
|
524
|
-
/**
|
|
525
|
-
* Defines values for ProvisioningState. \
|
|
526
|
-
* {@link KnownProvisioningState} can be used interchangeably with ProvisioningState,
|
|
527
|
-
* this enum contains the known values that the service supports.
|
|
528
|
-
* ### Known values supported by the service
|
|
529
|
-
* **Succeeded**: Resource has been created. \
|
|
530
|
-
* **Failed**: Resource creation failed. \
|
|
531
|
-
* **Canceled**: Resource creation was canceled. \
|
|
532
|
-
* **Deleting**: Deletion in progress \
|
|
533
|
-
* **Accepted**: Change accepted for processing
|
|
534
|
-
*/
|
|
535
|
-
export declare type ProvisioningState = string;
|
|
536
|
-
|
|
537
|
-
/** The resource model definition for a Azure Resource Manager proxy resource. It will not have tags and a location */
|
|
538
|
-
export declare interface ProxyResource extends Resource {
|
|
539
|
-
}
|
|
540
|
-
|
|
541
|
-
/** A quota resource */
|
|
542
|
-
export declare interface Quota extends ProxyResource {
|
|
543
|
-
/** The resource-specific properties for this resource. */
|
|
544
|
-
properties?: QuotaProperties;
|
|
545
|
-
}
|
|
546
|
-
|
|
547
|
-
/** The response of a Quota list operation. */
|
|
548
|
-
export declare interface QuotaListResult {
|
|
549
|
-
/** The Quota items on this page */
|
|
550
|
-
value: Quota[];
|
|
551
|
-
/** The link to the next page of items */
|
|
552
|
-
nextLink?: string;
|
|
553
|
-
}
|
|
554
|
-
|
|
555
|
-
/**
|
|
556
|
-
* Defines values for QuotaNames. \
|
|
557
|
-
* {@link KnownQuotaNames} can be used interchangeably with QuotaNames,
|
|
558
|
-
* this enum contains the known values that the service supports.
|
|
559
|
-
* ### Known values supported by the service
|
|
560
|
-
* **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.
|
|
561
|
-
*/
|
|
562
|
-
export declare type QuotaNames = string;
|
|
563
|
-
|
|
564
|
-
/** Quota properties */
|
|
565
|
-
export declare interface QuotaProperties {
|
|
566
|
-
/** The free-trial quota. */
|
|
567
|
-
freeTrial?: FreeTrialProperties;
|
|
568
|
-
/**
|
|
569
|
-
* The status of the last operation.
|
|
570
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
571
|
-
*/
|
|
572
|
-
readonly provisioningState?: ProvisioningState;
|
|
573
|
-
}
|
|
574
|
-
|
|
575
|
-
/** Interface representing a Quotas. */
|
|
576
|
-
export declare interface Quotas {
|
|
577
|
-
/**
|
|
578
|
-
* List quotas for a given subscription Id.
|
|
579
|
-
* @param location The location of quota in ARM Normalized format like eastus, southeastasia etc.
|
|
580
|
-
* @param options The options parameters.
|
|
581
|
-
*/
|
|
582
|
-
listBySubscription(location: string, options?: QuotasListBySubscriptionOptionalParams): PagedAsyncIterableIterator<Quota>;
|
|
583
|
-
/**
|
|
584
|
-
* Get quota by name.
|
|
585
|
-
* @param location The location of quota in ARM Normalized format like eastus, southeastasia etc.
|
|
586
|
-
* @param name The quota name.
|
|
587
|
-
* @param options The options parameters.
|
|
588
|
-
*/
|
|
589
|
-
get(location: string, name: QuotaNames, options?: QuotasGetOptionalParams): Promise<QuotasGetResponse>;
|
|
590
|
-
}
|
|
591
|
-
|
|
592
|
-
/** Optional parameters. */
|
|
593
|
-
export declare interface QuotasGetOptionalParams extends coreClient.OperationOptions {
|
|
594
|
-
}
|
|
595
|
-
|
|
596
|
-
/** Contains response data for the get operation. */
|
|
597
|
-
export declare type QuotasGetResponse = Quota;
|
|
598
|
-
|
|
599
|
-
/** Optional parameters. */
|
|
600
|
-
export declare interface QuotasListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
|
|
601
|
-
}
|
|
602
|
-
|
|
603
|
-
/** Contains response data for the listBySubscriptionNext operation. */
|
|
604
|
-
export declare type QuotasListBySubscriptionNextResponse = QuotaListResult;
|
|
605
|
-
|
|
606
|
-
/** Optional parameters. */
|
|
607
|
-
export declare interface QuotasListBySubscriptionOptionalParams extends coreClient.OperationOptions {
|
|
608
|
-
}
|
|
609
|
-
|
|
610
|
-
/** Contains response data for the listBySubscription operation. */
|
|
611
|
-
export declare type QuotasListBySubscriptionResponse = QuotaListResult;
|
|
612
|
-
|
|
613
|
-
/** Common fields that are returned in the response for all Azure Resource Manager resources */
|
|
614
|
-
export declare interface Resource {
|
|
615
|
-
/**
|
|
616
|
-
* Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
|
|
617
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
618
|
-
*/
|
|
619
|
-
readonly id?: string;
|
|
620
|
-
/**
|
|
621
|
-
* The name of the resource
|
|
622
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
623
|
-
*/
|
|
624
|
-
readonly name?: string;
|
|
625
|
-
/**
|
|
626
|
-
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
627
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
628
|
-
*/
|
|
629
|
-
readonly type?: string;
|
|
630
|
-
/**
|
|
631
|
-
* Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
632
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
633
|
-
*/
|
|
634
|
-
readonly systemData?: SystemData;
|
|
635
|
-
}
|
|
636
|
-
|
|
637
|
-
/** Metadata pertaining to creation and last modification of the resource. */
|
|
638
|
-
export declare interface SystemData {
|
|
639
|
-
/** The identity that created the resource. */
|
|
640
|
-
createdBy?: string;
|
|
641
|
-
/** The type of identity that created the resource. */
|
|
642
|
-
createdByType?: CreatedByType;
|
|
643
|
-
/** The timestamp of resource creation (UTC). */
|
|
644
|
-
createdAt?: Date;
|
|
645
|
-
/** The identity that last modified the resource. */
|
|
646
|
-
lastModifiedBy?: string;
|
|
647
|
-
/** The type of identity that last modified the resource. */
|
|
648
|
-
lastModifiedByType?: CreatedByType;
|
|
649
|
-
/** The timestamp of resource last modification (UTC) */
|
|
650
|
-
lastModifiedAt?: Date;
|
|
651
|
-
}
|
|
652
|
-
|
|
653
|
-
/** The resource model definition for an Azure Resource Manager tracked top level resource which has 'tags' and a 'location' */
|
|
654
|
-
export declare interface TrackedResource extends Resource {
|
|
655
|
-
/** Resource tags. */
|
|
656
|
-
tags?: {
|
|
657
|
-
[propertyName: string]: string;
|
|
658
|
-
};
|
|
659
|
-
/** The geo-location where the resource lives */
|
|
660
|
-
location: string;
|
|
661
|
-
}
|
|
662
|
-
|
|
663
|
-
export { }
|