Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove the hard-code for patch LRO #2583

Merged
merged 23 commits into from
Jul 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# AzureLoadTesting REST client library for JavaScript
# Azure LoadTestService REST client library for JavaScript

These APIs allow end users to create, view and run load tests using Azure Load
Test Service.
These APIs allow end users to create, view and run load tests using Azure Load Test Service.

**Please rely heavily on our [REST client docs](https://github.com/Azure/azure-sdk-for-js/blob/main/documentation/rest-clients.md) to use this library**

Expand All @@ -22,13 +21,13 @@ Key links:

### Install the `@azure/load-testing` package

Install the AzureLoadTesting REST client REST client library for JavaScript with `npm`:
Install the Azure LoadTestService REST client REST client library for JavaScript with `npm`:

```bash
npm install @azure/load-testing
```

### Create and authenticate a `AzureLoadTestingClient`
### Create and authenticate a `LoadTestServiceClient`

To use an [Azure Active Directory (AAD) token credential](https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/identity/identity/samples/AzureIdentityExamples.md#authenticating-with-a-pre-fetched-access-token),
provide an instance of the desired credential type obtained from the
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,13 @@
"./administrationOperations/models": "./src/administrationOperations/models/index.ts",
"./testRunOperations": "./src/testRunOperations/index.ts",
"./testRunOperations/api": "./src/testRunOperations/api/index.ts",
"./testRunOperations/models": "./src/testRunOperations/models/index.ts"
"./testRunOperations/models": "./src/testRunOperations/models/index.ts",
"./testProfileAdministrationOperations": "./src/testProfileAdministrationOperations/index.ts",
"./testProfileAdministrationOperations/api": "./src/testProfileAdministrationOperations/api/index.ts",
"./testProfileAdministrationOperations/models": "./src/testProfileAdministrationOperations/models/index.ts",
"./testProfileRunOperations": "./src/testProfileRunOperations/index.ts",
"./testProfileRunOperations/api": "./src/testProfileRunOperations/api/index.ts",
"./testProfileRunOperations/models": "./src/testProfileRunOperations/models/index.ts"
},
"dialects": [
"esm",
Expand Down Expand Up @@ -51,8 +57,6 @@
"@azure/core-rest-pipeline": "^1.5.0",
"@azure/logger": "^1.0.0",
"tslib": "^2.6.2",
"@azure/core-lro": "3.0.0",
MaryGao marked this conversation as resolved.
Show resolved Hide resolved
"@azure/abort-controller": "^2.1.2",
"@azure/core-paging": "^1.5.0"
},
"devDependencies": {
Expand Down Expand Up @@ -220,6 +224,114 @@
"types": "./dist/commonjs/testRunOperations/models/index.d.ts",
"default": "./dist/commonjs/testRunOperations/models/index.js"
}
},
"./testProfileAdministrationOperations": {
"browser": {
"types": "./dist/browser/testProfileAdministrationOperations/index.d.ts",
"default": "./dist/browser/testProfileAdministrationOperations/index.js"
},
"react-native": {
"types": "./dist/react-native/testProfileAdministrationOperations/index.d.ts",
"default": "./dist/react-native/testProfileAdministrationOperations/index.js"
},
"import": {
"types": "./dist/esm/testProfileAdministrationOperations/index.d.ts",
"default": "./dist/esm/testProfileAdministrationOperations/index.js"
},
"require": {
"types": "./dist/commonjs/testProfileAdministrationOperations/index.d.ts",
"default": "./dist/commonjs/testProfileAdministrationOperations/index.js"
}
},
"./testProfileAdministrationOperations/api": {
"browser": {
"types": "./dist/browser/testProfileAdministrationOperations/api/index.d.ts",
"default": "./dist/browser/testProfileAdministrationOperations/api/index.js"
},
"react-native": {
"types": "./dist/react-native/testProfileAdministrationOperations/api/index.d.ts",
"default": "./dist/react-native/testProfileAdministrationOperations/api/index.js"
},
"import": {
"types": "./dist/esm/testProfileAdministrationOperations/api/index.d.ts",
"default": "./dist/esm/testProfileAdministrationOperations/api/index.js"
},
"require": {
"types": "./dist/commonjs/testProfileAdministrationOperations/api/index.d.ts",
"default": "./dist/commonjs/testProfileAdministrationOperations/api/index.js"
}
},
"./testProfileAdministrationOperations/models": {
"browser": {
"types": "./dist/browser/testProfileAdministrationOperations/models/index.d.ts",
"default": "./dist/browser/testProfileAdministrationOperations/models/index.js"
},
"react-native": {
"types": "./dist/react-native/testProfileAdministrationOperations/models/index.d.ts",
"default": "./dist/react-native/testProfileAdministrationOperations/models/index.js"
},
"import": {
"types": "./dist/esm/testProfileAdministrationOperations/models/index.d.ts",
"default": "./dist/esm/testProfileAdministrationOperations/models/index.js"
},
"require": {
"types": "./dist/commonjs/testProfileAdministrationOperations/models/index.d.ts",
"default": "./dist/commonjs/testProfileAdministrationOperations/models/index.js"
}
},
"./testProfileRunOperations": {
"browser": {
"types": "./dist/browser/testProfileRunOperations/index.d.ts",
"default": "./dist/browser/testProfileRunOperations/index.js"
},
"react-native": {
"types": "./dist/react-native/testProfileRunOperations/index.d.ts",
"default": "./dist/react-native/testProfileRunOperations/index.js"
},
"import": {
"types": "./dist/esm/testProfileRunOperations/index.d.ts",
"default": "./dist/esm/testProfileRunOperations/index.js"
},
"require": {
"types": "./dist/commonjs/testProfileRunOperations/index.d.ts",
"default": "./dist/commonjs/testProfileRunOperations/index.js"
}
},
"./testProfileRunOperations/api": {
"browser": {
"types": "./dist/browser/testProfileRunOperations/api/index.d.ts",
"default": "./dist/browser/testProfileRunOperations/api/index.js"
},
"react-native": {
"types": "./dist/react-native/testProfileRunOperations/api/index.d.ts",
"default": "./dist/react-native/testProfileRunOperations/api/index.js"
},
"import": {
"types": "./dist/esm/testProfileRunOperations/api/index.d.ts",
"default": "./dist/esm/testProfileRunOperations/api/index.js"
},
"require": {
"types": "./dist/commonjs/testProfileRunOperations/api/index.d.ts",
"default": "./dist/commonjs/testProfileRunOperations/api/index.js"
}
},
"./testProfileRunOperations/models": {
"browser": {
"types": "./dist/browser/testProfileRunOperations/models/index.d.ts",
"default": "./dist/browser/testProfileRunOperations/models/index.js"
},
"react-native": {
"types": "./dist/react-native/testProfileRunOperations/models/index.d.ts",
"default": "./dist/react-native/testProfileRunOperations/models/index.js"
},
"import": {
"types": "./dist/esm/testProfileRunOperations/models/index.d.ts",
"default": "./dist/esm/testProfileRunOperations/models/index.js"
},
"require": {
"types": "./dist/commonjs/testProfileRunOperations/models/index.d.ts",
"default": "./dist/commonjs/testProfileRunOperations/models/index.js"
}
}
},
"main": "./dist/commonjs/index.js",
Expand Down
Loading
Loading