Граф коммитов

64 Коммитов

Автор SHA1 Сообщение Дата
Jeremy Meng 0b53f971f6 Set `"eslint.useFlatConfig": true` for vscode-eslint extension
and remove now invalid "resolvePluginsRelativeTo" option.
2024-08-22 11:43:26 -07:00
Jeremy Meng 8ed35e7a14
[engsys] remove `node-fetch` perf tests (#28152)
As we removed core-http and Fetch api is being added into NodeJS,
node-fetch is no longer relevant. Now it is only used in perf tests.
This PR removes node-fetch dependency and its perf tests.

while at it I also removed stale references to core-http.
2024-01-05 14:21:01 -08:00
Daniel Getu 5b4eadfac6
[Customization] Fix creation of subdirectories (#27805) 2023-11-15 00:26:13 +00:00
Jeremy Meng 1f4a744c98
Fix outdated workspace (#26758)
- communication-administration has been deleted
- ai-anomaly-detector was removed and replaced by -rest version
2023-08-12 00:09:09 +00:00
Jeremy Meng cbfbf7ce8c
[engsys] workaround for `vscode-eslint` extension in workspace (#26783)
ESlint plugins are resolved relative to the config file. In our repo
that means ESLint would try resolving plugins from `sdk` folder or
individual package folder if it contains a config file. The plugins
needed are actually installed under
`common/tools/eslint-plugin-azure-sdk`. Linting works when running cli
because `NODE_PATH` is set to contain a bunch of directories, including
`common/temp/node_modules/.pnpm/node_modules`, and ESLint is able to
find plugins.

When the `dataplane.code-workspace` is opened in VS Code, ESLint in
`vscode-eslint` extension attempts to load plugins but couldn't because
there's no `NODE_PATH` or equivalent. As a result, the extension
crashes.

This PR provides a workaround utilizing the
`eslint.options.resolvePluginsRelativeTo` setting and a empty rush
project whose sole purpose is to provide symlinks to eslint dependencies
so that ESLint from the VS Code extension can loads them.

Bonus change includes some fixes done by the `vscode-eslint` extension
UI.

After `rush update`, build `eslint-plugin-azure-sdk` project first then
open/re-open `dataplane.code-workspace`
2023-08-11 11:43:36 -07:00
Andrew Kao 435b17698d
Deprecate @azure/map-search in favor of the @azure-rest/maps-search (#24513)
### Packages impacted by this PR
Deprecating `@azure/maps-search` in favor of `@azure-rest/maps-search`

### Issues associated with this PR


### Describe the problem that is addressed by this PR


### What are the possible designs available to address the problem? If
there are more than one possible design, why was the one in this PR
chosen?


### Are there test cases added in this PR? _(If not, why?)_


### Provide a list of related PRs _(if any)_


### Command used to generate this PR:**_(Applicable only to SDK release
request PRs)_

### Checklists
- [ ] Added impacted package name to the issue description
- [ ] Does this PR needs any fixes in the SDK Generator?** _(If so,
create an Issue in the
[Autorest/typescript](https://github.com/Azure/autorest.typescript)
repository and link it here)_
- [ ] Added a changelog (if necessary)
2023-02-15 03:22:13 +00:00
Jeff Fisher 731ac27db8
Remove unnecessary @azure/core-http deps (#23671) 2022-11-02 19:18:47 +00:00
Andrew Kao ad48f522a6
[Maps] Onboarding `@azure-rest/maps-route` (#23588)
* Update maps dependency in pnpm-lock.yaml

* Fix sample metadata errors

* Fix linting errors

* Fix linting errors

* Fix run time error

* Update package.json in samples folder

* Fix linting errors

* Fix linting errors

* Add changelog for maps-common

* Update recording files for maps-search

* Add test.yml for maps-search

* Add tests.yml for render and route

* Update tests.yml

* Update test-resources.json for maps

* Fix tests.yml format error

* Update env vars and remove unused export var

* Remove unused code

* Fix lock file

* Remove route & render

* Replace `beginGet*Batch` with `resume*Batch`

We provide a `beginGet*Batch` method to resume the previous
request previously. This is not ideal because it need to get a
`batchId` which is store in the internal state of the LRO. Once
the LRO brings changes, our code will be broken.

We can achieve the same thing by using serialized state.
This change aims to leverage this approach and create convenience
methods `resume*Batch` for users

* Update recording

* Make the endpoint of `MapsSearchClient` configurable

* Change LatLon from an interface to a tuple

Also remove the `toLatLon` function since creating a tuple
is quite easy.

* Make the props `coordinates` and `countryCodeFilter` optional

Specifying `coordinates` and `countryCodeFilter` can narrow the results
of the fuzzy search. But considring the case like searching "Australia",
theese fields may have no use. We decided to make them optional so user
can decides if they want to narrow down the results or not.

* fixup! Remove route & render

* Adjust CHANGELOGs of maps-search & common

Following the keyvault-common, removing CHANGELOGs
from maps-common since it's not published.

* Update samples

* Add batchRequest sample

* Add a new sample searchAddressResult

* Update search.ts and its examples

* enhance code example in README.md

* comment unused import

* Update recording for maps-search

* remove redundant recording files

* Add maps-search

* Rename LatLong to LatLon

* Fix constructor Readme doc

* Update readme to new signature

* Add tests partially

* Change LatLon/BoundingBox to interfaces

* Reduce the number of constructor overloading

* Rename SearchClient as MapsSearchClient

* Add options mapper tests

* Add result type mapper tests (in progress)

* rename clientId to mapsAccountClientId

* listPolygons -> getPolygons

* getPointOfInterestCategoryTree -> getPointOfInterestCategories

* Expose missing model

* Add alternative input file for quick experiment

* Regenerate code and make changes accordingly

* Reduce number of overloads of fuzzy searches

* Add geojson types

* Adopting new geojson definitions

* Change test specs to align with new method names

* clean up models and tsconfig

* Expose Known* models

* Remove batch sync methods

* Add public tests (non-batch)

* move model

* Add docstrings

* Start polling in begin* method

* Refactor BatchPoller for retrieving batchId

* Finalize batch pollers

* Readd batch methods

* Update generated code

* Finalize batch signature

* Rebuild samples & clean up

* Add AAD tests

* Clean up Swagger readme

* Fix spelling

* Add initial files for @azure/maps-route module

* maps-search: change comments and perform formatting

* Methods options and testing skeleton for maps-route

* maps-search: refactor options

* Improve convenience layer for non-LRO methods

* Change variable names

* Complete batch methods

* update maps-search Readme

* Update maps-route Readme

* Add generated samples for maps-route

* Update samples for maps-search

* Delete backup file

* Add maps-common module

* Update maps-route/maps-search to use maps-common

* maps-render: first draft

* Use LatLon/BoundingBox from maps-common

* Complete maps-render with tests

* Expose required types from maps-route

* Expose required types from maps-search

* Complete unit tests for maps-render

* Update maps-render README

* Update samples

* Fix comment/strings

* Fix comment/strings

* Update Route comment/interface

* Regenerate code

* Update files

* Define required fields and fix code

* Remove non-poller batch methods

* Fix playback test failure

* Rename parts of model names

* Rename remaining parts of models according to review feedback

* Remove TODO comments

* Update Reamdme transform to reflect latest swagger

* Change key policy name

* Simplify batch item error model

* Add brower tests

* Turn maps-common into internal module

* Rearrange Readme

* Rewrite Readme for common

* Remove batch-sync methods

* Route required fields: part 1

* Route required fields: part 2

* Add AAD back

* Route model fixes #1

* Route model fixes #2 + geojson named tuples

* Refine geojson types

* Aliased a few method options

* maps-render required fields part 1

* Do not validate budget parameters

* Revert "Do not validate budget parameters"

This reverts commit 4ec3f5fd18a21466745ad23fe3e79c043ace9546.

* Rename MapTileset to TileJson

* Render: model rename & type improvement

* Explicitly transform image range

* Fix route record tests

* Update map account creation commands in Readme

* Update Readme/docstrings/samples for Search/Route/Render

* Remove rollup and use dev-tool instead

* Remove some empty tests

* Add AAD test case and make file name shorter

* Update test cases

* Update cspell rules

* Update recording files

* Simplify test cases

* Sync cspell.json from upstream

* Use test-recorder 2.0 and update unit test cases

* Push wrong browsers recording files

* Update settings to support recording

* Fix dependency errors

* Upgrade api-recorder and fix errors

* Code refinement

* Update maps search recording files

* Update karma.conf.js format

* Update recording files and settings

* Fix broken links

* Update maps dependency in pnpm-lock.yaml

* Fix sample metadata errors

* Fix linting errors

* Fix linting errors

* Fix run time error

* Update package.json in samples folder

* Fix linting errors

* Fix linting errors

* Add changelog for maps-common

* Update recording files for maps-search

* Add test.yml for maps-search

* Add tests.yml for render and route

* Update tests.yml

* Update test-resources.json for maps

* Fix tests.yml format error

* Update env vars and remove unused export var

* Remove unused code

* Fix lock file

* Remove maps-render

* fixup! Change LatLon from an interface to a tuple

* Comment the future doc link

* Update doc & fix type issue

* fix lint issues

* Regenerate API View

* Comment the whole [apiref] since the original syntax cannot pass the Analyze/Link verification

* Fix issue related to the change of maps-common

- Replace beginGet*Result with resume* methods
- Turn LatLon to a tuple
- Add mapper to transform the string to Date because resume* method will
return a serialized Date

* Update test recording

* Remove maps-common from the Artifacts

* remove unused dependencies

* Add impression in README so we can track the page views

* Remove `AZURE_LOG_LEVEL` in test.yml

* Update samples

- Move the option parameter to the right place
- Add comments & "break" for handling the type of the search result to make it clear for the user

* Patch {} to properties for GeoJsonPolygon

* rename maxDetourTime to maxDetourTimeInSeconds

* Update recordings

* Remove any

* Rename to detourTimeInSeconds to align the convention

* Change the test.yml EnvVar

See more explanation here:
- https://github.com/Azure/azure-sdk-for-js/pull/23039#discussion_r973292952
- https://github.com/Azure/azure-sdk-for-js/pull/23039#discussion_r972413976

* Rename numResults to numberResults

* Add document comment

* Add endpoint options to MapsRouteClient

* Remove unused dependencies in maps-route

* fixup! Change the test.yml EnvVar

* Update interfaces & documents

* Update changelog

* Merge getRouteDirection with the additional parameter one

* Update samples

* Make the `maps-common to a published package

* Update the import of `maps-common` in `maps-search`

* Fix CI Issue

* Add documents for geojson

* Update the samples & readme

* Leverage maps-common package in mpas-route

* chore update

- Remove the unnecessary rule setting of eslint
- Update the legacy type path

* Remove unnecessary eslint config

* WIP: Remove LRO generation

* WIP: refactor mapsRouteClient

* WIP: first generation

* Format the generated code

* Support AAD

* Transform the model name

* Add helper functions

* Add a sample - route.ts

* Add samples for lro

* Add test

* Generate samples

* Add api view

* Update the generation

* WIP: ReadMe

* Rename "computeBestOrder" to "computeBestWaypointOrder"

* Refine README

* Rename model

* Add test createRouteDirectionsBatchRequest

* Fix lint issue

* Add missing metadata

* Remove maps-route/

* Update CI issue

* Fix merged issue

* Update version rule for maps-common

* Update CI name

* Remove extra lint config

* Use `require` in the README for consistency

* Regenerate the samples

* Remove redundant recording files

* Remove unused parameters in test-resources.json

* Refine readme snippet

* Log something specific for the result

* Update samples

* Split the route.ts into 3

* Remove model rename

* Use default export for RLC factory function

Co-authored-by: Charlie Chen <charlie.chen@microsoft.com>
Co-authored-by: Charlie Chen <yuchungchen@microsoft.com>
Co-authored-by: --global <alankashiwa@gmail.com>
2022-10-26 06:31:05 +00:00
Andrew Kao 6038d9f885
[Maps] Onboarding `maps-common` & `maps-search` package (#23039) 2022-09-30 13:15:53 -04:00
Jeff Fisher 1c15132806
[core-http-compat] Policy factory compat (#22798)
* Create a policy wrapper for pipeline interop
2022-08-16 12:28:06 -07:00
Jeremy Meng 5058926c3d
[core] remove core-crypto package (#21788)
now that we moved its code into @azure/core-util and GA that.
2022-05-09 13:00:45 -07:00
Jeff Fisher 9372a73be4
Remove event-processor-host (#21591)
This package has been deprecated for over two years and is no longer actively maintained.
2022-04-26 13:42:09 -07:00
Jeff Fisher 35f7320720
[core-rest-pipeline] Update to core-tracing 1.0.0 GA (#21264)
Migrate core-rest-pipeline to core-tracing 1.0 GA and expose new type guard for RestError.
2022-04-11 21:57:13 +00:00
Matthew Podwysocki 2230ad9cc7
[core] Remove @azure/core-asynciterator-polyfill usage (#21290)
* Remove @azure/core-asynciterator-polyfill usage

* Remove @azure/core-asynciterator-polyfill usage

* Remove from workspace too

* Remove from core artifacts list

* Make eslint happy

* Fix more eslint errors

Co-authored-by: Jeremy Meng <yumeng@microsoft.com>
2022-04-11 14:17:23 -07:00
Jose Manuel Heredia Hidalgo ecf036b583
Re-do changes (#20777) 2022-03-15 10:56:19 -07:00
Jeff Fisher 9afbe3fc46
[core-rest-pipeline] Switch browser transport to fetch (#20201)
Thanks to #19530 we have a new HttpClient that uses Fetch. Currently, we can't make it the default because of recorded tests. However, we'd like folks to be able to try it out, which this PR makes possible.

The solution here is for tests that are dependent on XHR to pass in a custom HttpClient to allow the previous recordings to be used until we can migrate those packages to the new recorder.
2022-02-10 15:08:00 -08:00
Jose Manuel Heredia Hidalgo d5e4c233fb
Deprecate unused packages (#20295) 2022-02-09 14:42:55 -08:00
Daniel Jurek f849e24808
Add code spell checker to recommended extensions (#18981) 2021-12-07 14:04:40 -08:00
Timo van Veenendaal 7a7d99d271
[Perf Framework] rename perfstress to perf and runAsync to run (#18290)
Reported in #18033.

Basically did a bulk find+replace everywhere. Things _seem_ to be working OK, but wouldn't be surprised if there's something somewhere I've missed, or somewhere where I've replaced something I shouldn't.

I've split the rename of PerfStress -> Perf and runAsync -> run into two commits for ease of review :)
2021-10-23 06:05:56 +00:00
Jose Manuel Heredia Hidalgo 46a0f5f712
[REST Clients] Add lro poller helper (#15898)
* initial commit

* bring LRO in

* Integrate core-client-lro into farmbeats

* use core-lro for LroEngine

* format and lint

* update tests

* edit

* Update sdk/core/core-client-lro-rest/LICENSE

* fix build

* remove getPoller

* revert change in core-client-rest's package.json

* Address feedback

* Only expose to end users interval and resumeFrom poller options

* Update type locations and lock

* updateIntervalInMs

* Update surface

Co-authored-by: deyaaeldeen <dealmaha@microsoft.com>
2021-08-05 13:23:42 -07:00
Malcolm Tyrrell dd6e1c12bf
Add Data plane SDK for Azure Remote Rendering (#13829)
This PR adds a JavaScript/TypeScript SDK for Azure Remote Rendering.
2021-07-08 10:53:02 +00:00
Jeff Fisher 21f28dcfdb
[web-pubsub] Migrate `@azure/web-pubsub` to new core pipeline (#16010)
Update to latest core packages and improve pipeline robustness.
2021-06-28 13:02:34 -07:00
Jeff Fisher aa8db15f92
Tweak workspace settings for VS Code startup perf (#15956)
This greatly improved my first open experience on my laptop. The only tradeoff is `node_modules` folders won't appear in the file tree of VS Code, but I think this is a pretty uncommon place to browse into manually.
2021-06-24 21:23:25 +00:00
Jose Manuel Heredia Hidalgo bd620944d5
Move sdk/core-rest/core-client to sdk/core/core-client-rest (#15495)
* Move sdk/core-rest/core-client to sdk/core/core-client-rest

* Fix type file name
2021-06-01 16:58:40 -07:00
Jose Manuel Heredia Hidalgo 72e3fc2cfe
FarmBeats REST Client (#15209)
* Initial commit for Azure FarmBeats REST client

* Project metadata

* Fix links

* update recordings

* Address PR Comments

* Update recordings

* Re-generate

* Add additional smoke tests

* rush update

* recordings and changelog

* farmbeats recordings

* fix links

* Set UTC Date

* Set test date explicitly
2021-05-26 16:13:59 -07:00
Jose Manuel Heredia Hidalgo 502354f918
Rest Client for Confidential ledger (#15172)
New rest client for Confidential Ledger @azure-rest/confidential-ledger.

Changes in @azure/core-auth:
* Added new CertificateCredential for client cert authentication

Changes in @azure/core-rest-pipeline:
* Expose Agent Secure Context options to set CA, Cert, and Key in an Agent

Changes in @azure-res/core-client:
* Expose the pipeline as part of the client to allow pipeline customization
2021-05-12 00:51:57 +00:00
Jose Manuel Heredia Hidalgo ddd7fa8eea
Purview Scanning Rest Client (#14918)
* Initial commit for PurviewScanning

* Add samples

* Add sanity test

* Fix broken links

* Fix links

* remove broken link

* Fix endpoint replacement

* fix url

* delete unused recording

* Re-generate latest swagger

* Add purview ci

* Re-generate purview scanning

* update readme

* Fix broken links

* Update samples

* update test and broken link

* Update Karma timeout

* Address feedback

* update pnpm and rebase

* update package json
2021-05-10 15:27:46 -07:00
Jose Manuel Heredia Hidalgo e5f398d381
Purview Catalog Rest Client (#14917)
* Initial commit for purview catalog

* Add test and samples

* Remove non-useful comments

* Re-generate

* Update api-extractor

* Rebase and update dependencies

* Update readme

* re-generate

* Temp npm link

* Fix catalog link

* Update karma timeout

* Reference rest client docs

* update pnpmlock

* capitalize REST
2021-05-10 13:36:37 -07:00
Jose Manuel Heredia Hidalgo 63140222c8
[Rest Level Client] Ai document translation (#14749)
This PR introduces 2 new packages

- `@azure-rest/core-client` - which contains shared types and functions that will be reused across generated Rest Level Clients
- `@azure-rest/ai-document-translator` - which is an auto generated rest level client that consumes `@azure-rest/core-client`. for the most part this package is composed of types.

A couple of changes included in this PR
- Updated dev-tool so that samples work with the new `@azure-rest` namespace
- Allow alternate versions for `prettier` and `api-extractor` to support newer TS features used in the Rest Level Clients such as Template Literal Types 
   - Talked to @deyaaeldeen and there doesn't seem to be any constraint for upgrading Prettier for the whole repo. To keep this PR scoped down to the Rest Level Client work I'll address the upgrade in a separate PR

TODO:

- [x] @azure-rest/core-client
   - [x] Functionality
   - [x] Readme
   - [x] Tests 
- [x] @azure-rest/ai-document-translator
   - [x] Functionality
   - [x] Samples
   - [x] Readme
   - [x] Tests
2021-04-15 06:25:34 +00:00
KarishmaGhiya b45fa72681
update clean commands (#14693) 2021-04-07 18:31:38 +00:00
chradek aad8e1c1bc
Remove testhub utility package (#14678)
* Remove testhub CLI utility from repo

* update pnpm-lock.yaml

* remove vestigal traces of testhub
2021-04-02 11:44:19 -07:00
Jeremy Meng c7b9f6fe36
[ContianerRegistry] Add local swagger file temporarily (#14173)
* Add files missing from the initial project

A couple of files are missing from the previous PR #14016 of adding the initial
project structure.

* Add ACR swagger version 2019-08-15-preview

* Update swagger to Anne's version (re-formatted)

* Re-generate with the updated swagger

* Add RepositoryClient and some of its method stubs

- Add a .vscode launch.json
- Add a credential and a policy for basic auth

* Updated to Anne's latest version (re-formatted)

* Rename properties with x-ms-client-name then re-generate

* Flatten two attributes properties

* Adjust api surface

* Address CR feedback

* Return DeletedRepositoryResult from deleteRepository()

* acr/v1 manifest endpoints only take digests

* Remove TagAttributes.signed as service is deprecating it

* Fix v1 manifests path issue

It takes a digest.
2021-03-16 13:19:37 -07:00
Jose Manuel Heredia Hidalgo 0941b23115
[Device Update] Release of Device Update for IoT Hub SDK for JavaScript (#14066)
* Initial commit

* update package.json

* Add first sample

* Format

* Add simple sample

* Update samples metadata

* Formatting

* Enalbe build and execute samples scripts

* UPDATE LOCK

* update ci

* update scripts

* update test

* don't throw

* Update readme

* Fix readmes

* Update types destination

* Update package

* Update credential scope

* Add changelog

* Update package.json

* Skip lint

* Update dependencies

* Fix readme

* fix tables broken references

* Update release date
2021-03-03 19:11:57 -08:00
Jeff Fisher e4838de481
[core-https] Rename core-https to core-rest-pipeline (#14042) 2021-03-03 12:11:11 -08:00
Jeff Fisher 204ecf1e30
[core-util] Create `@azure/core-util` (#14062)
To avoid having to export random helpers from `@azure/core-rest-pipeline`, this new package is being created to house them instead. This will also allow us to share utilities between HTTP and AMQP stacks.

See #14049 for some of the motivation.
2021-03-03 00:49:51 +00:00
Craig Treasure fa60b3bda0
Added the Azure.MixedReality.Authentication library (#13609)
This change adds an authentication library for Mixed Reality services, which all currently utilize a custom STS for authentication. Upcoming Mixed Reality client libraries will depend on this library to perform authentication using identities from Azure.Identity. See the added `README.md` for more information about the library.

[ApiView link](https://apiview.dev/Assemblies/Review/4917626415bc448c8e2534e00c6f3a17)
2021-02-16 22:18:05 +00:00
Hector Hernandez 63be94437f
Renaming OpenTelemetry Exporter package (#13634)
* Renaming OpenTelemetry Exporter package

* Renaming folder

* Lint changes

* rush update

* Rush build
2021-02-08 14:53:00 -08:00
Jeff Fisher f68f3fe74f
[communication-identity] Update karma to not use karma-remap-istanbul (#13466)
karma-remap-istanbul is an undesirable dependency we've been trying to remove from the tree. This PR does the same dance we've performed in other libraries to make it unnecessary.
2021-01-28 22:30:11 +00:00
Jeff Fisher 1d2d65f8f6
[core-crypto] Remove karma-remap-istanbul dependency (#13378)
#13309 didn't catch this because core-crypto went in around the same time.
2021-01-25 20:34:35 +00:00
Jeff Fisher 40b027df46
Update karma test configuration for track2 packages (#13309)
This PR removes our dependency on the unmaintained package "karma-remap-istanbul" and replaces it with a smaller karma plugin ("karma-sourcemap-loader") that allows karma-coverage to load source maps from the disk correctly.

I tested and confirmed that the generated coverage data has the correct source TS files.
2021-01-22 19:42:51 +00:00
Jeremy Meng d6d5163251
Add support to test multi service API version (#12719)
* [WIP] prototype: multi-service-version test support

* Move multi-version test support into its own package

* Add some unit tests

* Add README

* Fix missing rollup error in CI build

* Disable browser test bundling

* Remove option to specify custom string comparison function

Now it's required to have a sorted list of API version strings
supported by the service from the oldest to the latest. This list is
used to compare version strings.

Add missing `skip` method to the chain object.

Add unit tests

* Fix README analysis issue

* Move `forEach()` and `onVersions()` into `versionsToTest()`

* Ignore README verification errors

* Fix rollup error

* Undo file moves

* Minor README tweak

* Fix build error in pipeline

* Add `DISABLE_MULTI_VERSION_TESTING` env var
2021-01-05 11:33:43 -08:00
Deyaaeldeen Almahallawi ab7eb9e0eb
Add dataplane pckgs (#12942)
* add a bunch of packages to dataplane workspace

* add storage-internal-avro
2020-12-17 14:36:46 -05:00
Jonathan Turner 790774460d
[Synapse] Land the initial generated code (#12713)
* WIP

* WIP

* WIP

* WIP

* Add last two to workspace

* Add basic READMEs and test builds

* Add basic READMEs and test builds

* Fix package versions

* Skip tests

* Address feedback

* Address feedback

* Rerun swagger codegen

* Rerun swagger codegen

* Add rolled up type files

* WIP

* WIP

* New regeneration with tracing

* New regeneration with tracing

* Remove prepack

* Add sdk-type

* Add lint

* Skip lint for now

* Add copyright and improve generation

* Add copyright and improve generation

* Fix keyvault lint

* Export fixes

* Export fixes

* Fix release dates
2020-12-10 10:52:26 +13:00
Deyaaeldeen Almahallawi c88d1faf32
[core-arm] delete it! (#12682)
* delete core-arm

* remove core-arm from a bunch of places

* rush update
2020-12-02 14:09:19 -05:00
Jeff Fisher 2c12554f51
[opentelemetry-exporter-azure-monitor] Rename monitor package (#12417)
Rename package + update version
2020-11-17 17:59:45 -08:00
Zoltan Varga 9cf8af88ab
[Digital-Twins] Update for GA, rename namespace, add span (#11872) 2020-10-22 10:29:50 -07:00
Jeremy Meng f962338df8
[Metrics Advisor] Initial merge commit (#11593) 2020-10-01 16:58:28 -07:00
Matt Ellis 1dc72f5ecd
[Event Grid] Initial Track 2 Client (#10059)
This change updates the Event Grid client to follow the new Azure SDK Design guidelines.  In addition, it exposes support for sending and processing events in the Cloud Events format, which the previous SDK did not support.
2020-09-04 17:07:34 -07:00
Zoltan Varga 50eb8a8459
Rename package to "digital-twins" (#11045)
* chore(digitaltwins): rename package
2020-09-04 11:49:17 -07:00
Mark Wolff c47352b878
[Monitor] add monitor to dataplane workspace (#10914) 2020-09-03 16:58:55 -07:00