Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
24 changes: 13 additions & 11 deletions doc/GeneratorMigration/Library_Inventory.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,33 +13,33 @@

## Summary

- Total libraries: 400
- Management Plane (MPG): 226
- Total libraries: 402
- Management Plane (MPG): 227
- Autorest/Swagger: 140
- New Emitter (TypeSpec): 86
- New Emitter (TypeSpec): 87
- Old TypeSpec: 0
- Data Plane (DPG): 143
- Data Plane (DPG): 144
- Autorest/Swagger: 55
- New Emitter (TypeSpec): 33
- Old TypeSpec: 7
- New Emitter (TypeSpec): 34
- Old TypeSpec: 6
- Provisioning: 31
- Custom reflection-based generator: 31
- No generator: 48
- No generator: 49


## Data Plane Libraries (DPG) - Migrated to New Emitter

Libraries that provide client APIs for Azure services and have been migrated to the new TypeSpec emitter.

**Migration Status**: 33 / 40 (82.5%)
**Migration Status**: 34 / 40 (85%)

| Service | Library | New Emitter | Using SCM |
| ------- | ------- | ----------- | --------- |
| ai | Azure.AI.Agents.Persistent | | |
| ai | Azure.AI.Projects | ✅ | ✅ |
| ai | Azure.AI.Projects.OpenAI | ✅ | ✅ |
| ai | Azure.AI.VoiceLive | ✅ | |
| anomalydetector | Azure.AI.AnomalyDetector | | |
| anomalydetector | Azure.AI.AnomalyDetector | | |
| appconfiguration | Azure.Data.AppConfiguration | ✅ | |
| batch | Azure.Compute.Batch | ✅ | |
| cognitivelanguage | Azure.AI.Language.Conversations | ✅ | |
Expand Down Expand Up @@ -144,14 +144,15 @@ Libraries that have not yet been migrated to the new TypeSpec emitter. Total: 55

Libraries that provide resource management APIs for Azure services and have been migrated to the new TypeSpec emitter.

**Migration Status**: 86 / 86 (100%)
**Migration Status**: 87 / 87 (100%)

| Service | Library | New Emitter |
| ------- | ------- | ----------- |
| advisor | Azure.ResourceManager.Advisor | ✅ |
| agricultureplatform | Azure.ResourceManager.AgriculturePlatform | ✅ |
| appcomplianceautomation | Azure.ResourceManager.AppComplianceAutomation | ✅ |
| arizeaiobservabilityeval | Azure.ResourceManager.ArizeAIObservabilityEval | ✅ |
| artifactsigning | Azure.ResourceManager.ArtifactSigning | ✅ |
| astronomer | Azure.ResourceManager.Astro | ✅ |
| avs | Azure.ResourceManager.Avs | ✅ |
| azurelargeinstance | Azure.ResourceManager.LargeInstance | ✅ |
Expand Down Expand Up @@ -429,7 +430,7 @@ Total: 31

## Libraries with No Generator

Libraries with no generator have neither autorest.md nor tsp-location.yaml files. Total: 48
Libraries with no generator have neither autorest.md nor tsp-location.yaml files. Total: 49

| Service | Library |
| ------- | ------- |
Expand Down Expand Up @@ -479,5 +480,6 @@ Libraries with no generator have neither autorest.md nor tsp-location.yaml files
| storage | Azure.Storage.DataMovement.Files.Shares |
| storage | Azure.Storage.Internal.Avro |
| synapse | Azure.Analytics.Synapse.Shared |
| tools | Azure.GeneratorAgent |
| tools | Azure.SdkAnalyzers |
| webpubsub | Azure.Messaging.WebPubSub.Client |
2 changes: 1 addition & 1 deletion sdk/anomalydetector/Azure.AI.AnomalyDetector/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ Console.WriteLine("Detecting anomalies in the entire time series.");

try
{
Response response = client.GetUnivariateClient().DetectUnivariateEntireSeries(request.ToRequestContent());
Response response = client.GetUnivariateClient().DetectUnivariateEntireSeries(request);
JsonElement result = JsonDocument.Parse(response.ContentStream).RootElement;

bool hasAnomaly = false;
Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions sdk/anomalydetector/Azure.AI.AnomalyDetector/metadata.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"apiVersion": "v1.1"
}
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ Console.WriteLine("Detecting anomalies in the entire time series.");

try
{
Response response = client.GetUnivariateClient().DetectUnivariateEntireSeries(request.ToRequestContent());
Response response = client.GetUnivariateClient().DetectUnivariateEntireSeries(request);
JsonElement result = JsonDocument.Parse(response.ContentStream).RootElement;

bool hasAnomaly = false;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
<GenerateAPIListing>true</GenerateAPIListing>
<NoWarn>$(NoWarn);CS1591;AZC0012</NoWarn>
<IncludeOperationsSharedSource>true</IncludeOperationsSharedSource>
<IncludeAutorestDependency>true</IncludeAutorestDependency>
</PropertyGroup>

<ItemGroup>
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading