Migrate azure-resourcemanager-trafficmanager to TypeSpec#1
Open
weidongxu-microsoft wants to merge 1950 commits intomainfrom
Open
Migrate azure-resourcemanager-trafficmanager to TypeSpec#1weidongxu-microsoft wants to merge 1950 commits intomainfrom
weidongxu-microsoft wants to merge 1950 commits intomainfrom
Conversation
* update enhancedmode serialization * update changelog
…on - Java-5515647 (Azure#47122) * Configurations: 'specification/elasticsan/resource-manager/Microsoft.ElasticSan/ElasticSan/tspconfig.yaml', API Version: 2025-09-01, SDK Release Type: stable, and CommitSHA: 'c86c7e36fb15171a9967d9fdc47784f2e4202ca6' in SpecRepo: 'https://github.com/Azure/azure-rest-api-specs' Pipeline run: https://dev.azure.com/azure-sdk/internal/_build/results?buildId=5515647 Refer to https://eng.ms/docs/products/azure-developer-experience/develop/sdk-release/sdk-release-prerequisites to prepare for SDK release. * Update pom.xml * Configurations: 'specification/elasticsan/resource-manager/Microsoft.ElasticSan/ElasticSan/tspconfig.yaml', API Version: 2025-09-01, SDK Release Type: stable, and CommitSHA: 'e58a215d34c2f7fdf654cd4fd8511a90a94e56e9' in SpecRepo: 'https://github.com/Azure/azure-rest-api-specs' Pipeline run: https://dev.azure.com/azure-sdk/internal/_build/results?buildId=5525976 Refer to https://eng.ms/docs/products/azure-developer-experience/develop/sdk-release/sdk-release-prerequisites to prepare for SDK release. * Update pom.xml * regen * Configurations: 'specification/elasticsan/resource-manager/Microsoft.ElasticSan/ElasticSan/tspconfig.yaml', API Version: 2025-09-01, SDK Release Type: stable, and CommitSHA: '26b4701e643f7ace8faf73b9acd5b205f2df2d7d' in SpecRepo: 'https://github.com/Azure/azure-rest-api-specs' Pipeline run: https://dev.azure.com/azure-sdk/internal/_build/results?buildId=5845207 Refer to https://eng.ms/docs/products/azure-developer-experience/develop/sdk-release/sdk-release-prerequisites to prepare for SDK release. * Update pom.xml --------- Co-authored-by: Weidong Xu <weidxu@microsoft.com>
…eneration - Java-5777146 (Azure#47758) * Configurations: 'specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/Registry/tspconfig.yaml', API Version: 2025-11-01, SDK Release Type: stable, and CommitSHA: 'eb320d1d85f5b46c3cfe6cf60a1f0de4ef3b01d9' in SpecRepo: 'https://github.com/Azure/azure-rest-api-specs' Pipeline run: https://dev.azure.com/azure-sdk/internal/_build/results?buildId=5777146 Refer to https://eng.ms/docs/products/azure-developer-experience/develop/sdk-release/sdk-release-prerequisites to prepare for SDK release. * Revert "Configurations: 'specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/Registry/tspconfig.yaml', API Version: 2025-11-01, SDK Release Type: stable, and CommitSHA: 'eb320d1d85f5b46c3cfe6cf60a1f0de4ef3b01d9' in SpecRepo: 'https://github.com/Azure/azure-rest-api-specs' Pipeline run: https://dev.azure.com/azure-sdk/internal/_build/results?buildId=5777146 Refer to https://eng.ms/docs/products/azure-developer-experience/develop/sdk-release/sdk-release-prerequisites to prepare for SDK release." This reverts commit 174d9f9. * Configurations: 'specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/Registry/tspconfig.yaml', API Version: 2025-11-01, SDK Release Type: stable, and CommitSHA: '926d47e176855de8c16d39bde587afe25cb1f20d' in SpecRepo: 'https://github.com/Azure/azure-rest-api-specs' Pipeline run: https://dev.azure.com/azure-sdk/internal/_build/results?buildId=5783590 Refer to https://eng.ms/docs/products/azure-developer-experience/develop/sdk-release/sdk-release-prerequisites to prepare for SDK release. * open models to core * deprecate Tasks part of the lib * Configurations: 'specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/Registry/tspconfig.yaml', API Version: 2025-11-01, SDK Release Type: stable, and CommitSHA: '149c9171215a4b036b34347dd855df2add0a216d' in SpecRepo: 'https://github.com/Azure/azure-rest-api-specs' Pipeline run: https://dev.azure.com/azure-sdk/internal/_build/results?buildId=5788782 Refer to https://eng.ms/docs/products/azure-developer-experience/develop/sdk-release/sdk-release-prerequisites to prepare for SDK release. * temporary disable a test * revapi suppress * add test of webhook * test record * regen with commit on Azure/azure-rest-api-specs#39865 * regen again * Configurations: 'specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/Registry/tspconfig.yaml', API Version: 2025-11-01, SDK Release Type: stable, and CommitSHA: '6d00d74a16a7305aa9064fc5a534167cc2fbe0a2' in SpecRepo: 'https://github.com/Azure/azure-rest-api-specs' Pipeline run: https://dev.azure.com/azure-sdk/internal/_build/results?buildId=5789665 Refer to https://eng.ms/docs/products/azure-developer-experience/develop/sdk-release/sdk-release-prerequisites to prepare for SDK release. * update changelog * Update sdk/containerregistry/azure-resourcemanager-containerregistry/src/test/java/com/azure/resourcemanager/containerregistry/RegistryOperationsTests.java Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * update recording * Update CHANGELOG.md --------- Co-authored-by: Clark Porter <CaPorter01@gmail.com> Co-authored-by: Weidong Xu <weidxu@microsoft.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
The eng/common/scripts/login-to-github.ps1 script was failing because it was using the standard Base64 encoded
signature returned by Azure Key Vault directly in the JWT, instead of converting it to Base64URL format (which
replaces + with -, / with _, and removes trailing =).
I have fixed the script by adding the necessary character replacements and also added a 10-second clock skew buffer
to the iat (issued at) claim to ensure validity.
The script now runs successfully and logs in as azure-sdk-automation[bot].
Changes made:
- Modified eng/common/scripts/login-to-github.ps1:
- Converted the signature from Azure Key Vault to Base64URL format.
- Subtracted 10 seconds from the iat claim to account for potential clock skew.
Verification:
- Ran the script and confirmed it successfully resolved the installation ID for "Azure" and obtained an access
token.
- gh auth status output confirms successful login.
Co-authored-by: Wes Haggard <Wes.Haggard@microsoft.com>
* fix few tests --------- Co-authored-by: Annie Liang <anniemac@Annies-MacBook-Pro.local> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
…rization header (Azure#47929) * add test script * update version and fix a bug * fix bug and remove test script * Update sdk/confidentialledger/azure-security-confidentialledger/CHANGELOG.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update sdk/confidentialledger/azure-security-confidentialledger/src/main/java/com/azure/security/confidentialledger/ConfidentialLedgerRedirectPolicy.java Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Fix redirect policy ordering in ConfidentialLedgerCertificateClientBuilder (Azure#47930) * Initial plan * Move ConfidentialLedgerRedirectPolicy after BearerTokenAuthenticationPolicy This ensures the redirect policy runs after authentication, matching the pattern in ConfidentialLedgerClientBuilder. This prevents the redirect policy from failing to see the Authorization header and prevents auth from being re-applied on untrusted redirects. Co-authored-by: ryazhang-microsoft <112638134+ryazhang-microsoft@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: ryazhang-microsoft <112638134+ryazhang-microsoft@users.noreply.github.com> * Remove redirect policy from certificate client builder The certificate client only fetches TLS certificates via GET requests and does not need redirect handling. The redirect policy is only needed in ConfidentialLedgerClientBuilder for ledger write operations (POST). --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com>
…on Not Available` cross-region retry scenarios. (Azure#47631) * Adding `x-ms-cosmos-hub-region-processing-only` header. * Adding `x-ms-cosmos-hub-region-processing-only` header. * Ensuring account-level region cycle through when `x-ms-cosmos-hub-region-processing-only` header is set. * Forcing hub region processing flow to loop through all available read regions for new hub. * Forcing hub region processing flow to loop through all available read regions for new hub. * Revert unnecessary changes. * Fixing compilation errors. * Fixing compilation errors. * Stabilizing CI pipeline. * Enforce partition-set hub tracking when reads hit 403:3s. * Add tests for readMany, readAll, query and change feed. * Add tests for readMany, readAll, query and change feed. * Add tests for readMany, readAll, query and change feed. * Fixing a query plan caching test. * Add hub region processing only request header to CosmosDiagnostics. * Attempt to make PPAF/PPCB info visible in CosmosDiagnostics. * Attempt to make PPAF/PPCB info visible in CosmosDiagnostics. * Attempt to make PPAF/PPCB info visible in CosmosDiagnostics. * Revert LocationCache changes. * Modify cross region retry protocol for 404:1002 in Single-Writer accounts. * Fixing tests. * Replace hardcoded timeouts with policy-derived values in PPAF E2E latency config (Azure#29) * Initial plan * Fix hardcoded timeout values in RxDocumentClientImpl Co-authored-by: jeet1995 <16476407+jeet1995@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: jeet1995 <16476407+jeet1995@users.noreply.github.com> * Fix system property cleanup in HubRegionProcessingOnlyTests to prevent test pollution (Azure#30) * Initial plan * Clear system property in @afterclass to prevent test pollution Co-authored-by: jeet1995 <16476407+jeet1995@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: jeet1995 <16476407+jeet1995@users.noreply.github.com> * Fix hot-path allocations in DocumentServiceRequestContext getter methods (Azure#32) * Initial plan * Fix per-request allocations in getPerPartitionCircuitBreakerInfoHolder and getPerPartitionFailoverContextHolder Co-authored-by: jeet1995 <16476407+jeet1995@users.noreply.github.com> * Use static EMPTY singletons instead of null returns Co-authored-by: jeet1995 <16476407+jeet1995@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: jeet1995 <16476407+jeet1995@users.noreply.github.com> * Fixing tests. * Addressing review comments. * Addressing review comments. * Addressing review comments. --------- Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com> Co-authored-by: jeet1995 <16476407+jeet1995@users.noreply.github.com>
…ion - Java-5730148 (Azure#47649) * Configurations: 'specification/cdn/resource-manager/Microsoft.Cdn/EdgeActions/tspconfig.yaml', API Version: 2025-12-01-preview, SDK Release Type: beta, and CommitSHA: 'ccea12be6cd5e64743499d46f7a9c8b60df52db1' in SpecRepo: 'https://github.com/Azure/azure-rest-api-specs' Pipeline run: https://dev.azure.com/azure-sdk/internal/_build/results?buildId=5730148 Refer to https://eng.ms/docs/products/azure-developer-experience/develop/sdk-release/sdk-release-prerequisites to prepare for SDK release. * Configurations: 'specification/cdn/resource-manager/Microsoft.Cdn/EdgeActions/tspconfig.yaml', API Version: 2025-12-01-preview, SDK Release Type: beta, and CommitSHA: '3fc43b6c80d8fce282a242b1f34fecced80ddcb5' in SpecRepo: 'https://github.com/Azure/azure-rest-api-specs' Pipeline run: https://dev.azure.com/azure-sdk/internal/_build/results?buildId=5759848 Refer to https://eng.ms/docs/products/azure-developer-experience/develop/sdk-release/sdk-release-prerequisites to prepare for SDK release. * Configurations: 'specification/cdn/resource-manager/Microsoft.Cdn/EdgeActions/tspconfig.yaml', API Version: 2025-12-01-preview, SDK Release Type: beta, and CommitSHA: '8dd32875bb5c7b470d95dc0c792830a0729adfb6' in SpecRepo: 'https://github.com/Azure/azure-rest-api-specs' Pipeline run: https://dev.azure.com/azure-sdk/internal/_build/results?buildId=5768084 Refer to https://eng.ms/docs/products/azure-developer-experience/develop/sdk-release/sdk-release-prerequisites to prepare for SDK release. * Configurations: 'specification/cdn/resource-manager/Microsoft.Cdn/EdgeActions/tspconfig.yaml', API Version: 2025-12-01-preview, SDK Release Type: beta, and CommitSHA: 'f52764d11d53276b79bbbba37f977ef0b03bbd2c' in SpecRepo: 'https://github.com/Azure/azure-rest-api-specs' Pipeline run: https://dev.azure.com/azure-sdk/internal/_build/results?buildId=5782333 Refer to https://eng.ms/docs/products/azure-developer-experience/develop/sdk-release/sdk-release-prerequisites to prepare for SDK release. * Configurations: 'specification/cdn/resource-manager/Microsoft.Cdn/EdgeActions/tspconfig.yaml', API Version: 2025-12-01-preview, SDK Release Type: beta, and CommitSHA: '24902354a88f1ca5349ea3049edae370599c8e57' in SpecRepo: 'https://github.com/Azure/azure-rest-api-specs' Pipeline run: https://dev.azure.com/azure-sdk/internal/_build/results?buildId=5849999 Refer to https://eng.ms/docs/products/azure-developer-experience/develop/sdk-release/sdk-release-prerequisites to prepare for SDK release. --------- Co-authored-by: Weidong Xu <weidxu@microsoft.com>
* update files using python script * update changelogs and readmes based on changes to patch release
* fix few tests part 2 --------- Co-authored-by: Annie Liang <anniemac@Annies-MacBook-Pro.local>
…ning effort configuration (Azure#47772) Co-authored-by: Xiting Zhang <xitzhang@microsoft.com>
* [VoiceLive]Release 1.0.0-beta.4 Updated release date for version 1.0.0-beta.4 and added feature details. * Revise CHANGELOG for clarity and bug fixes Updated changelog to remove breaking changes section and added details about bug fixes.
…Java-5433741 (Azure#46952) * Configurations: 'specification/nginx/Nginx.Management/tspconfig.yaml', API Version: 2025-03-01-preview, SDK Release Type: beta, and CommitSHA: 'aae85aa3e7e4fda95ea2d3abac0ba1d8159db214' in SpecRepo: 'https://github.com/Azure/azure-rest-api-specs' Pipeline run: https://dev.azure.com/azure-sdk/internal/_build/results?buildId=5433741 Refer to https://eng.ms/docs/products/azure-developer-experience/develop/sdk-release/sdk-release-prerequisites to prepare for SDK release. * Configurations: 'specification/nginx/Nginx.Management/tspconfig.yaml', API Version: 2025-03-01-preview, SDK Release Type: beta, and CommitSHA: 'de8103ff8e94ea51c56bb22094ded5d2dfc45a6a' in SpecRepo: 'https://github.com/Azure/azure-rest-api-specs' Pipeline run: https://dev.azure.com/azure-sdk/internal/_build/results?buildId=5857234 Refer to https://eng.ms/docs/products/azure-developer-experience/develop/sdk-release/sdk-release-prerequisites to prepare for SDK release. --------- Co-authored-by: Weidong Xu <weidxu@microsoft.com>
false can't be assigned to int in java. Updating type to boolean
* Deprecating azure-resourcemanager-mixedreality * Typos * use 1.0.1 as version * Update CHANGELOG.md --------- Co-authored-by: Michael Zappe <michaelzappe@microsoft.com> Co-authored-by: Weidong Xu <weidxu@microsoft.com>
* fix few tests part 3 --------- Co-authored-by: Annie Liang <anniemac@Annies-MacBook-Pro.local> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
* Initial regeneration using TypeSpec * Working on migrating tests, adding back convenience APIs that are being kept * Complete most of the migration * Additional work * Stable point before tests * Newer TypeSpec SHA * Add back SearchAudience support * Last changes before testing * Rerecord tests and misc fixes along the way * Fix a few recordings and stress tests * Fix a few recordings and linting * Few more fixes * Another round of recording * Rerun TypeSpec codegen * Remove errant import * Cleanup APIs * Regeneration * Clean up linting
* escape non-ascii character for pkValue --------- Co-authored-by: Annie Liang <anniemac@Annies-MacBook-Pro.local> Co-authored-by: Fabian Meiswinkel <fabianm@microsoft.com>
* [voicelive] Fix DNS resolution failure in WebSocket client on IPv6-limited networks * update live tests * remove unused import * update new tests * Replace gpt-4o-realtime with gpt-4o-realtime-preview in live tests The model gpt-4o-realtime is not supported in the test region. Updated all test parameter providers to use gpt-4o-realtime-preview instead. Affected files: - VoiceLiveToolCallTests: toolCallParams, liveSessionUpdateParams, toolCallNoAudioOverlapParams - VoiceLiveAudioFormatTests: modelAndSamplingRateProvider, modelAndOutputAudioFormatOpenAIVoiceProvider - VoiceLiveConversationTests: retrieveItemParams, truncateItemParams - VoiceLiveVoicePropertiesTests: voicePropertiesParams * Revert "Replace gpt-4o-realtime with gpt-4o-realtime-preview in live tests" This reverts commit deee7db. * Skip realtime model tests when endpoint region is unsupported gpt-4o-realtime and gpt-4o-realtime-preview are only available in East US 2 and Sweden Central. Added assumeRealtimeModelSupported() helper to VoiceLiveTestBase that uses JUnit 5 Assumptions to skip tests when the endpoint region does not support these models. Inserted the guard call at the start of all 20 test methods across 7 live test files that use realtime models. * deploy test resource in eastus2 * update test location * Update sdk/voicelive/azure-ai-voicelive/src/test/java/com/azure/ai/voicelive/livetests/VoiceLiveToolCallTests.java Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update sdk/voicelive/azure-ai-voicelive/src/test/java/com/azure/ai/voicelive/livetests/VoiceLiveAudioFormatTests.java Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update sdk/voicelive/azure-ai-voicelive/src/test/java/com/azure/ai/voicelive/livetests/VoiceLiveToolCallTests.java Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * fix format --------- Co-authored-by: Xiting Zhang <xitzhang@microsoft.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
…config.yaml', API Version: 2026-02-01, SDK Release Type: stable, and CommitSHA: 'a86317f00c71ef51aab7f78e6f4a2be3cf58f2cd' in SpecRepo: 'https://github.com/Azure/azure-rest-api-specs' Pipeline run: https://dev.azure.com/azure-sdk/internal/_build/results?buildId=5982516 Refer to https://eng.ms/docs/products/azure-developer-experience/develop/sdk-release/sdk-release-prerequisites to prepare for SDK release. (Azure#48340)
…zure#48344) Co-authored-by: Chidozie Ononiwu <chononiw@microsoft.com>
* Created OpenAPISample * File utils for sample * PR copilot feedback * Added OpenAPITool as unit test * README and CHANGELOG updates for azure-ai-agents samples - CHANGELOG: Added entries for readSpecFromFile, OpenApiSample, and OpenAPIToolTests - README: Added full tool catalog (15 tools) aligned with Python SDK README structure - All sample links use absolute GitHub URLs for CI link verification - Added MISSING_SAMPLES.md tracking Java vs Python sample parity gaps * Re-worked samples * Normalized samples * Samples pass * MCP sample correction and alignment with python * Unit tests for tools * Removed unused imports * Merge test recordings and removed duplicate test file * Trying out cspell exception file * path fix * Feedback and cspell * Fix broken README sample links after *Sample.java → *Sync.java rename (Azure#48337) * Initial plan * Fix README links: update *Sample.java to *Sync.java Co-authored-by: jpalvarezl <11056031+jpalvarezl@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: jpalvarezl <11056031+jpalvarezl@users.noreply.github.com> * Moved cspell file * More PR feedack * CHANGELOG updates * More readme updates * Last fixes * Async test fixes --------- Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com> Co-authored-by: jpalvarezl <11056031+jpalvarezl@users.noreply.github.com>
…K Generation - Java-5864525 (Azure#47976)
* Generating from latest spec + JDK TimeZone type * Changelog updates * Updated tests and PR feedback
* Fixing Load Balancing shuffle * Update ConnectionManager.java * Update ConnectionManager.java
) * Allow relative links in configurable file paths via allowRelativeLinksFile parameter Co-authored-by: weshaggard <9010698+weshaggard@users.noreply.github.com> * Only lift relative-link restriction for matching pages, keep other guidance checks active Co-authored-by: weshaggard <9010698+weshaggard@users.noreply.github.com> * Remove instructions.md special case; add .github/** to allow-relative-links.txt Co-authored-by: weshaggard <9010698+weshaggard@users.noreply.github.com> * Move allow-relative-links.txt to eng/common/scripts/ so it syncs to all repos Co-authored-by: weshaggard <9010698+weshaggard@users.noreply.github.com> * Update allow-relative-links.txt * Change Write-Host to Write-Verbose for logging * Update eng/common/scripts/Verify-Links.ps1 Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Address review feedback: trim comments, precompute regexes, Join-Path, remove eng/** Co-authored-by: weshaggard <9010698+weshaggard@users.noreply.github.com> * Restore eng/** to allow-relative-links.txt with updated comment Co-authored-by: weshaggard <9010698+weshaggard@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: weshaggard <9010698+weshaggard@users.noreply.github.com> Co-authored-by: Wes Haggard <weshaggard@users.noreply.github.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
…Azure#48349) * Add vectorEmbeddingPolicy support to Spark catalog container creation Enable configuring Vector Embedding Policy via TBLPROPERTIES when creating containers through the Spark catalog API. This allows users to set up vector-search-enabled containers directly from Spark SQL. Changes: - Add vectorEmbeddingPolicy TBLPROPERTIES key to CosmosContainerProperties - Add JSON serialization bridge methods in SparkModelBridgeInternal - Apply vector embedding policy in both CosmosCatalogCosmosSDKClient and CosmosCatalogManagementSDKClient container creation paths - Expose vector embedding policy in container metadata readback - Add VectorEmbeddingPolicy constant to CosmosConstants.TableProperties - Add integration test for container creation with vector embedding policy - Update existing tblProperties size assertions to account for new property Usage example: CREATE TABLE catalog.db.container (...) USING cosmos.oltp TBLPROPERTIES( partitionKeyPath = '/mypk', indexingPolicy = '{..."vectorIndexes":[{"path":"/v1","type":"flat"}]}', vectorEmbeddingPolicy = '{"vectorEmbeddings":[{"path":"/v1","dataType":"float32","distanceFunction":"cosine","dimensions":1536}]}' ) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * change * fix * Update Spark connector CHANGELOGs with vectorEmbeddingPolicy feature Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * Address PR review comments for vector embedding policy support - Fix Management SDK getIndexingPolicy() to map vectorIndexes (blocking issue) - Add try-catch error handling for malformed VEP JSON deserialization - Guard against empty VectorEmbeddingPolicy serializing as {} instead of null - Add logInfo when vector embedding policy is applied during container creation - Add VectorEmbeddingPolicy null assertions to all existing catalog tests - Replace substring test assertions with structured JSON parsing Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * revert log change --------- Co-authored-by: Annie Liang <anniemac@Annies-MacBook-Pro.local> Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
ef0fa5d to
e09208d
Compare
- Regenerated SDK from TypeSpec - Added implementation.models opens in module-info.java - Added revapi suppressions for output-only model breaking changes - Updated CHANGELOG.md Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
e09208d to
82efa60
Compare
…peline more flexibility (Azure#48384) Co-authored-by: Chidozie Ononiwu <chononiw@microsoft.com>
) * Copy System.LinkTypes.Related links when cloning package work items for new Major.Minor versions Co-authored-by: danieljurek <2158838+danieljurek@users.noreply.github.com> * Replace REST API URI with az boards work-item relation show in GetWorkItemRelatedLinkIds Co-authored-by: danieljurek <2158838+danieljurek@users.noreply.github.com> * Fix --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: danieljurek <2158838+danieljurek@users.noreply.github.com> Co-authored-by: Daniel Jurek <djurek@microsoft.com>
Co-authored-by: Chidozie Ononiwu <chononiw@microsoft.com>
Bumps [tar](https://github.com/isaacs/node-tar) from 7.5.10 to 7.5.11. - [Release notes](https://github.com/isaacs/node-tar/releases) - [Changelog](https://github.com/isaacs/node-tar/blob/main/CHANGELOG.md) - [Commits](isaacs/node-tar@v7.5.10...v7.5.11) Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* Migrate azure-resourcemanager-search to TypeSpec Regenerated SDK from TypeSpec specification. Changes: - Regenerated all Java source from TypeSpec - Updated module-info.java with implementation.models opens - Removed stale generated samples - Added revapi suppressions for TypeSpec migration breaking changes - Updated CHANGELOG.md and tsp-location.yaml Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * update changelog * regen on main * delete generated samples, the manager is SearchServiceManager * Update eng/lintingconfigs/revapi/track2/revapi.json Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * regen * commit on main --------- Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Migrate azure-resourcemanager-trafficmanager from Swagger to TypeSpec generation.
Changes
Specs PR
Azure/azure-rest-api-specs#41238