-
Notifications
You must be signed in to change notification settings - Fork 3.9k
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
New-AzApiManagementApiSchema doesn't support OpenAPI #13247
Comments
Thanks for the feedback! We are routing this to the appropriate team for follow-up. cc @wmengmsft, @MehaKaushik, @shurd, @anfeldma-ms |
Thanks for the feedback! We are routing this to the appropriate team for follow-up. cc @miaojiang. |
Service team, please help to look into this question. |
Could I get an update on the issue? |
@solankisamir could you please take a look? |
Any updates on this issue? |
@solankisamir @miaojiang Any updates on this issue? I'm also trying to achieve the same using REST API as of now, as equivalent powershell for something like New-AzApiManagementApiSchemaDefinition does not exist today and hence REST API / portal seems to be the only way to go. |
Thanks for the feedback! We are routing this to the appropriate team for follow-up. cc @miaojiang. Issue DetailsDescriptionWorking against a developer APIM instance, and trying to add a definition / schema for an API. The command doesn't fail, but the definition / schema isn't created at all. That is regardless of having the schema in a variable or using a schema file with the New-AzApiManagementApiSchema cmdlet. I can create the definition / schema via portal.azure.com and it works like intended. Using the Get-AzApiManagementApiSchema does output some details, but the schema itself is missing (separate issue). But using the API Management REST API, I can get and put the exact same schema for the API. Using fiddler I can see there is a difference between the raw http put action done via invoke-restmethod and the http put comming from the New-AzApiManagementApiSchema. Steps to reproduceUsing the New-AzApiManagementApiSchema with a variable: Import-Module -Name Az.ApiManagement -Force
Connect-AzAccount -Subscription $subscriptionId -ErrorAction Stop
Set-AzContext -Subscription $subscriptionId -ErrorAction Stop
$context = New-AzApiManagementContext -ResourceGroupName $resourceGroup -ServiceName $apimServiceName
$schema = '{
"components": {
"schemas": {
"Test": {
"type": "object",
"properties": {
"TestString": {
"type": "string"
},
"TestEmpty": {},
"TestArray": {
"type": "array",
"items": {
"required": [
"CreatedDate",
"CreatedBy_Name",
"CommentBody"
],
"type": "object",
"properties": {
"CommentBody": {
"type": "string"
},
"CreatedBy_Name": {},
"CreatedDate": {
"type": "string"
}
}
}
},
"TestInteger": {
"type": "integer"
}
}
}
}
}
}'
$parms = @{
ApiId = "foo-bar"
SchemaDocument = $schema
SchemaId = $([System.Guid]::NewGuid().tostring())
SchemaDocumentContentType = "OpenApiComponents"
}
New-AzApiManagementApiSchema -Context $context @parms The fiddler trace for this call is below - sensitive and unrelated data removed:
The interesting part of above trace is the structure of the json. The document property has an object, with a value property. The content of that property is a stringified json object. Remember this when we compare the Api Management REST API call. Using the Api Management REST API with a variable: $token = "eyJ*****aNl2PqQ"
$schema = '{
"properties": {
"contentType": "application/vnd.oai.openapi.components+json",
"document": {
"components": {
"schemas": {
"Test": {
"type": "object",
"properties": {
"TestString": {
"type": "string"
},
"TestEmpty": {},
"TestArray": {
"type": "array",
"items": {
"required": [
"CreatedDate",
"CreatedBy_Name",
"CommentBody"
],
"type": "object",
"properties": {
"CommentBody": {
"type": "string"
},
"CreatedBy_Name": {},
"CreatedDate": {
"type": "string"
}
}
}
},
"TestInteger": {
"type": "integer"
}
}
}
}
}
}
}
}'
$uri = "https://management.azure.com/subscriptions/$subscriptionId/resourceGroups/$resourceGroup/providers/Microsoft.ApiManagement/service/$apimServiceName/apis/foo-bar/schemas/10217443-d8f5-44e5-b207-8ffe1ff2f2b7?api-version=2019-12-01"
# $response = Invoke-WebRequest -Uri
Invoke-RestMethod -Method Put -Uri $uri -Headers @{Authorization = "Bearer $token"} -Body $schema The fiddler trace for this call is below - sensitive and unrelated data removed:
The interesting part of above trace is the structure of the json. The document property has an object, with a components property. The content of this object is just plain json. We have tried several different formats of the schema, to see if we had to many or to few properties. But when looking at the fiddler trace for when configuring the schema via portal.azure.com and the fact that we have a working schema when using the API Management REST API, we feel confident that there is an issue. We have been digging into the code behind the command and believe the code that is creating this issue is: azure-powershell/src/ApiManagement/ApiManagement.ServiceManagement/ApiManagementClient.cs Lines 1370 to 1374 in aa0671e
We can see that there are several other issues around the API Management and OpenAPI/Swagger: Environment data
Module versionsPS C:\WINDOWS\system32> Get-Module -ListAvailable
Directory: C:\Users\m******\Documents\WindowsPowerShell\Modules
ModuleType Version Name ExportedCommands
---------- ------- ---- ----------------
Script 4.6.1 Azure.Storage {Get-AzureStorageTable, New-AzureStorageTableSASToken, New...
Script 5.8.3 AzureRM.profile {Disable-AzureRmDataCollection, Disable-AzureRmContextAuto...
Manifest 2.4.0.0 cChoco
Script 1.7.4.4 PoshRSJob {Get-RSJob, Receive-RSJob, Remove-RSJob, Start-RSJob...}
Script 1.0.19 PSFramework {Invoke-PSFProtectedCommand, Remove-PSFNull, Select-PSFObj...
Script 0.10.27... PSFramework {Remove-PSFNull, Select-PSFObject, Set-PSFConfig, Test-PSF...
Script 0.5.3 psnotification {Get-PSNUrl, Invoke-PSNHttpEndpoint, Invoke-PSNMessage, Se...
Directory: C:\Program Files\WindowsPowerShell\Modules
ModuleType Version Name ExportedCommands
---------- ------- ---- ----------------
Binary 1.4.118 APIManagementTemplate {Get-ParameterTemplate, Write-APIManagementTemplates, Get-...
Binary 1.4.88 APIManagementTemplate {Get-ParameterTemplate, Write-APIManagementTemplates, Get-...
Script 1.9.5 Az.Accounts {Disable-AzDataCollection, Disable-AzContextAutosave, Enab...
Script 1.9.4 Az.Accounts {Disable-AzDataCollection, Disable-AzContextAutosave, Enab...
Script 1.9.3 Az.Accounts {Disable-AzDataCollection, Disable-AzContextAutosave, Enab...
Script 1.7.2 Az.Accounts {Disable-AzDataCollection, Disable-AzContextAutosave, Enab...
Script 1.7.1 Az.Accounts {Disable-AzDataCollection, Disable-AzContextAutosave, Enab...
Script 1.7.0 Az.Accounts {Disable-AzDataCollection, Disable-AzContextAutosave, Enab...
Script 1.6.6 Az.Accounts {Disable-AzDataCollection, Disable-AzContextAutosave, Enab...
Script 1.6.5 Az.Accounts {Disable-AzDataCollection, Disable-AzContextAutosave, Enab...
Script 1.6.4 Az.Accounts {Disable-AzDataCollection, Disable-AzContextAutosave, Enab...
Script 2.1.0 Az.ApiManagement {Add-AzApiManagementApiToGateway, Add-AzApiManagementApiTo...
Script 2.2.0 Az.KeyVault {Add-AzKeyVaultCertificate, Update-AzKeyVaultCertificate, ...
Script 1.3.2 Az.LogicApp {Get-AzIntegrationAccountAgreement, Get-AzIntegrationAccou...
Script 0.7.0 Az.Profile {Disable-AzDataCollection, Disable-AzContextAutosave, Enab...
Script 0.7.7 Az.ResourceGraph Search-AzGraph
Script 0.7.6 Az.ResourceGraph Search-AzGraph
Script 1.9.1 Az.Resources {Get-AzProviderOperation, Remove-AzRoleAssignment, Get-AzR...
Script 1.9.0 Az.Resources {Get-AzProviderOperation, Remove-AzRoleAssignment, Get-AzR...
Script 1.8.0 Az.Resources {Get-AzProviderOperation, Remove-AzRoleAssignment, Get-AzR...
Script 1.7.1 Az.Resources {Get-AzProviderOperation, Remove-AzRoleAssignment, Get-AzR...
Script 1.4.1 Az.ServiceBus {New-AzServiceBusNamespace, Get-AzServiceBusNamespace, Set...
Script 1.11.0 Az.Storage {Get-AzStorageAccount, Get-AzStorageAccountKey, New-AzStor...
Script 1.10.0 Az.Storage {Get-AzStorageAccount, Get-AzStorageAccountKey, New-AzStor...
Manifest 2.0.2 AzTable {Add-AzTableRow, Get-AzTableRow, Get-AzTableRowAll, Get-Az...
Script 0.5.4 Azure.AnalysisServices {Add-AzureAnalysisServicesAccount, Restart-AzureAnalysisSe...
Script 4.6.1 Azure.Storage {Get-AzureStorageTable, New-AzureStorageTableSASToken, New...
Binary 2.0.2.76 AzureAD {Add-AzureADApplicationOwner, Get-AzureADApplication, Get-...
Binary 2.0.2.61 AzureAD {Add-AzureADApplicationOwner, Get-AzureADApplication, Get-...
Script 6.13.1 AzureRM
Script 0.6.14 AzureRM.AnalysisServices {Resume-AzureRmAnalysisServicesServer, Suspend-AzureRmAnal...
Script 6.1.7 AzureRM.ApiManagement {Add-AzureRmApiManagementRegion, Get-AzureRmApiManagementS...
Script 0.1.8 AzureRM.ApplicationInsights {Get-AzureRmApplicationInsights, New-AzureRmApplicationIns...
Script 6.1.1 AzureRM.Automation {Get-AzureRMAutomationHybridWorkerGroup, Remove-AzureRmAut...
Script 4.0.11 AzureRM.Backup {Backup-AzureRmBackupItem, Enable-AzureRmBackupContainerRe...
Script 4.1.5 AzureRM.Batch {Remove-AzureRmBatchAccount, Get-AzureRmBatchAccount, Get-...
Script 0.14.6 AzureRM.Billing {Get-AzureRmBillingInvoice, Get-AzureRmBillingPeriod, Get-...
Script 5.0.6 AzureRM.Cdn {Get-AzureRmCdnProfile, Get-AzureRmCdnProfileSsoUrl, New-A...
Script 0.9.12 AzureRM.CognitiveServices {Get-AzureRmCognitiveServicesAccount, Get-AzureRmCognitive...
Script 5.9.1 AzureRM.Compute {Remove-AzureRmAvailabilitySet, Get-AzureRmAvailabilitySet...
Script 0.3.7 AzureRM.Consumption {Get-AzureRmConsumptionBudget, Get-AzureRmConsumptionMarke...
Script 0.2.12 AzureRM.ContainerInstance {New-AzureRmContainerGroup, Get-AzureRmContainerGroup, Rem...
Script 1.0.10 AzureRM.ContainerRegistry {New-AzureRmContainerRegistry, Get-AzureRmContainerRegistr...
Script 5.0.3 AzureRM.DataFactories {Remove-AzureRmDataFactory, Get-AzureRmDataFactoryRun, Get...
Script 0.5.11 AzureRM.DataFactoryV2 {Set-AzureRmDataFactoryV2, Update-AzureRmDataFactoryV2, Ge...
Script 5.1.4 AzureRM.DataLakeAnalytics {Get-AzureRmDataLakeAnalyticsDataSource, New-AzureRmDataLa...
Script 6.2.1 AzureRM.DataLakeStore {Get-AzureRmDataLakeStoreTrustedIdProvider, Remove-AzureRm...
Script 4.0.9 AzureRM.DevTestLabs {Get-AzureRmDtlAllowedVMSizesPolicy, Get-AzureRmDtlAutoShu...
Script 5.1.0 AzureRM.Dns {Get-AzureRmDnsRecordSet, New-AzureRmDnsRecordConfig, Remo...
Script 0.3.7 AzureRM.EventGrid {New-AzureRmEventGridTopic, Get-AzureRmEventGridTopic, Set...
Script 0.7.0 AzureRM.EventHub {New-AzureRmEventHubNamespace, Get-AzureRmEventHubNamespac...
Script 4.1.8 AzureRM.HDInsight {Get-AzureRmHDInsightJob, New-AzureRmHDInsightSqoopJobDefi...
Script 5.1.5 AzureRM.Insights {Get-AzureRmMetricDefinition, Get-AzureRmMetric, Remove-Az...
Script 3.1.8 AzureRM.IotHub {Add-AzureRmIotHubKey, Get-AzureRmIotHubEventHubConsumerGr...
Script 5.2.1 AzureRM.KeyVault {Add-AzureKeyVaultCertificate, Update-AzureKeyVaultCertifi...
Script 4.1.4 AzureRM.LogicApp {Get-AzureRmIntegrationAccountAgreement, Get-AzureRmIntegr...
Script 0.18.5 AzureRM.MachineLearning {Move-AzureRmMlCommitmentAssociation, Get-AzureRmMlCommitm...
Script 0.4.8 AzureRM.MachineLearningCompute {Get-AzureRmMlOpCluster, Get-AzureRmMlOpClusterKey, Test-A...
Script 0.2.7 AzureRM.MarketplaceOrdering {Get-AzureRmMarketplaceTerms, Set-AzureRmMarketplaceTerms}
Script 0.10.4 AzureRM.Media {Sync-AzureRmMediaServiceStorageKeys, Set-AzureRmMediaServ...
Script 6.11.1 AzureRM.Network {Add-AzureRmApplicationGatewayAuthenticationCertificate, G...
Script 5.0.3 AzureRM.NotificationHubs {Get-AzureRmNotificationHub, Get-AzureRmNotificationHubAut...
Script 5.0.6 AzureRM.OperationalInsights {New-AzureRmOperationalInsightsAzureActivityLogDataSource,...
Script 1.1.0 AzureRM.PolicyInsights {Get-AzureRmPolicyEvent, Get-AzureRmPolicyState, Get-Azure...
Script 4.1.10 AzureRM.PowerBIEmbedded {Remove-AzureRmPowerBIWorkspaceCollection, Get-AzureRmPowe...
Script 5.8.3 AzureRM.profile {Disable-AzureRmDataCollection, Disable-AzureRmContextAuto...
Script 5.8.2 AzureRM.profile {Disable-AzureRmDataCollection, Disable-AzureRmContextAuto...
Script 4.1.9 AzureRM.RecoveryServices {Get-AzureRmRecoveryServicesBackupProperty, Get-AzureRmRec...
Script 4.5.2 AzureRM.RecoveryServices.Backup {Backup-AzureRmRecoveryServicesBackupItem, Get-AzureRmReco...
Script 0.2.12 AzureRM.RecoveryServices.SiteRec... {Edit-AzureRmRecoveryServicesAsrRecoveryPlan, Get-AzureRmR...
Script 5.1.0 AzureRM.RedisCache {Remove-AzureRmRedisCachePatchSchedule, New-AzureRmRedisCa...
Script 0.3.12 AzureRM.Relay {New-AzureRmRelayNamespace, Get-AzureRmRelayNamespace, Set...
Script 6.7.3 AzureRM.Resources {Get-AzureRmProviderOperation, Remove-AzureRmRoleAssignmen...
Script 0.16.10 AzureRM.Scheduler {Disable-AzureRmSchedulerJobCollection, Enable-AzureRmSche...
Script 0.6.13 AzureRM.ServiceBus {New-AzureRmServiceBusNamespace, Get-AzureRmServiceBusName...
Script 0.3.15 AzureRM.ServiceFabric {Add-AzureRmServiceFabricApplicationCertificate, Add-Azure...
Script 1.0.0 AzureRM.SignalR {New-AzureRmSignalR, Get-AzureRmSignalR, Get-AzureRmSignal...
Script 4.12.1 AzureRM.Sql {Get-AzureRmSqlDatabaseTransparentDataEncryption, Get-Azur...
Script 5.2.0 AzureRM.Storage {Get-AzureRmStorageAccount, Get-AzureRmStorageAccountKey, ...
Script 4.0.10 AzureRM.StreamAnalytics {Get-AzureRmStreamAnalyticsFunction, Get-AzureRmStreamAnal...
Script 4.0.5 AzureRM.Tags {Remove-AzureRmTag, Get-AzureRmTag, New-AzureRmTag}
Script 4.1.3 AzureRM.TrafficManager {Add-AzureRmTrafficManagerCustomHeaderToEndpoint, Remove-A...
Script 4.0.5 AzureRM.UsageAggregates Get-UsageAggregates
Script 5.2.0 AzureRM.Websites {Get-AzureRmAppServicePlan, Set-AzureRmAppServicePlan, New...
Script 3.5.1.458 CosmosDB {Get-CosmosDbAccount, Get-CosmosDbAccountConnectionString,...
Script 0.2.2 d365ce.integrations {Add-D365CeODataConfig, Enable-D365CeException, Get-D365Ce...
Script 0.4.14 d365fo.integrations {Add-D365ODataConfig, Enable-D365ExceptionIntegrations, Ex...
Script 0.4.13 d365fo.integrations {Add-D365ODataConfig, Enable-D365ExceptionIntegrations, Ex...
Script 0.4.11 d365fo.integrations {Add-D365ODataConfig, Enable-D365ExceptionIntegrations, Ex...
Script 0.4.10 d365fo.integrations {Add-D365ODataConfig, Enable-D365ExceptionIntegrations, Ex...
Script 0.3.3 d365fo.integrations {Add-D365ODataConfig, Enable-d365Exception, Export-D365Dmf...
Script 0.6.31 d365fo.tools {Add-D365AzureStorageConfig, Add-D365BroadcastMessageConfi...
Script 0.6.25 d365fo.tools {Add-D365AzureStorageConfig, Add-D365BroadcastMessageConfi...
Script 0.6.20 d365fo.tools {Add-D365AzureStorageConfig, Add-D365BroadcastMessageConfi...
Script 0.6.19 d365fo.tools {Add-D365AzureStorageConfig, Add-D365BroadcastMessageConfi...
Script 0.6.11 d365fo.tools {Add-D365AzureStorageConfig, Add-D365BroadcastMessageConfi...
Script 0.5.81 d365fo.tools {Add-D365AzureStorageConfig, Add-D365BroadcastMessageConfi...
Script 0.5.79 d365fo.tools {Add-D365AzureStorageConfig, Add-D365BroadcastMessageConfi...
Script 0.5.74 d365fo.tools {Add-D365AzureStorageConfig, Add-D365BroadcastMessageConfi...
Script 0.5.64 d365fo.tools {Add-D365AzureStorageConfig, Add-D365BroadcastMessageConfi...
Script 0.5.55 d365fo.tools {Add-D365AzureStorageConfig, Add-D365BroadcastMessageConfi...
Script 1.0.72 dbatools {Select-DbaObject, Set-DbatoolsConfig, Start-DbaMigration,...
Script 1.0.1 ExchangeOnlineManagement {Get-EXOCasMailbox, Get-EXOMailbox, Get-EXOMailboxFolderPe...
Script 7.1.1 ImportExcel {Add-ConditionalFormatting, Add-ExcelChart, Add-ExcelDataV...
Script 7.1.0 ImportExcel {Add-ConditionalFormatting, Add-ExcelChart, Add-ExcelDataV...
Script 7.0.1 ImportExcel {Add-ConditionalFormatting, Add-ExcelChart, Add-ExcelDataV...
Script 6.5.2 ImportExcel {Add-ConditionalFormatting, Add-ExcelChart, Add-ExcelDataV...
Script 5.5.6 InvokeBuild {Invoke-Build, Build-Checkpoint, Build-Parallel}
Binary 1.0.23 LogicAppTemplate {Get-EmptyParameterTemplate, Get-CustomConnectorTemplate, ...
Binary 1.0.20 LogicAppTemplate {Get-EmptyParameterTemplate, Get-CustomConnectorTemplate, ...
Binary 1.0.14 LogicAppTemplate {Get-EmptyParameterTemplate, Get-CustomConnectorTemplate, ...
Binary 1.0.12 LogicAppTemplate {Get-EmptyParameterTemplate, Get-CustomConnectorTemplate, ...
Script 1.0.1 Microsoft.PowerShell.Operation.V... {Get-OperationValidation, Invoke-OperationValidation}
Script 2.8.8 Microsoft.Xrm.Data.Powershell {Get-CrmConnection, Get-CrmOrganizations, Invoke-CrmAction...
Manifest 1.1.183.57 MSOnline {Get-MsolDevice, Remove-MsolDevice, Enable-MsolDevice, Dis...
Script 1.0.2.201 newtonsoft.json {ConvertFrom-JsonNewtonsoft, ConvertTo-JsonNewtonsoft}
Binary 1.0.0.1 PackageManagement {Find-Package, Get-Package, Get-PackageProvider, Get-Packa...
Script 4.10.0 Pester {Describe, Context, It, Should...}
Script 4.9.0 Pester {Describe, Context, It, Should...}
Script 3.4.0 Pester {Describe, Context, It, Should...}
Script 0.14.0 platyPS {New-MarkdownHelp, Get-MarkdownMetadata, New-ExternalHelp,...
Script 1.7.4.4 PoshRSJob {Get-RSJob, Receive-RSJob, Remove-RSJob, Start-RSJob...}
Script 1.0.0.1 PowerShellGet {Install-Module, Find-Module, Save-Module, Update-Module...}
Script 0.2.8 PSDevOps {Remove-ADOProject, Set-ADOWorkItem, Get-ADOBuild, Remove-...
Script 1.4.150 PSFramework {ConvertTo-PSFHashtable, Invoke-PSFCallback, Invoke-PSFPro...
Script 1.4.149 PSFramework {ConvertTo-PSFHashtable, Invoke-PSFCallback, Invoke-PSFPro...
Script 1.1.59 PSFramework {ConvertTo-PSFHashtable, Invoke-PSFCallback, Invoke-PSFPro...
Script 2.2.7.98 PSModuleDevelopment {Expand-PSMDTypeName, Export-PSMDString, Find-PSMDFileCont...
Script 2.2.7.90 PSModuleDevelopment {Expand-PSMDTypeName, Export-PSMDString, Find-PSMDFileCont...
Script 0.5.3 psnotification {Get-PSNUrl, Invoke-PSNHttpEndpoint, Invoke-PSNMessage, Se...
Script 0.3.0 PSOAuthHelper {Get-BearerToken, Get-RemainingMinutes, Invoke-AzureResour...
Script 0.2.6 PSOAuthHelper {Get-BearerToken, Get-RemainingMinutes, Invoke-AzureResour...
Script 2.0.0 PSReadline {Get-PSReadLineKeyHandler, Set-PSReadLineKeyHandler, Remov...
Script 1.18.3 PSScriptAnalyzer {Get-ScriptAnalyzerRule, Invoke-ScriptAnalyzer, Invoke-For...
Script 1.2.0 PSServiceBus {Clear-SbQueue, Get-SbQueue, Get-SbTopic, Get-SbSubscripti...
Script 1.0.1 PSServiceBus {Get-SbQueue, Get-SbTopic, Get-SbSubscription, Send-SbMess...
Script 1.0 RemoteDesktopManager.PowerShellM...
Directory: C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules
ModuleType Version Name ExportedCommands
---------- ------- ---- ----------------
Manifest 1.0.0.0 AppBackgroundTask {Disable-AppBackgroundTaskDiagnosticLog, Enable-AppBackgro...
Manifest 2.0.0.0 AppLocker {Get-AppLockerFileInformation, Get-AppLockerPolicy, New-Ap...
Manifest 1.0.0.0 AppvClient {Add-AppvClientConnectionGroup, Add-AppvClientPackage, Add...
Manifest 2.0.1.0 Appx {Add-AppxPackage, Get-AppxPackage, Get-AppxPackageManifest...
Script 1.0.0.0 AssignedAccess {Clear-AssignedAccess, Get-AssignedAccess, Set-AssignedAcc...
Manifest 1.0.0.0 BitLocker {Unlock-BitLocker, Suspend-BitLocker, Resume-BitLocker, Re...
Manifest 2.0.0.0 BitsTransfer {Add-BitsFile, Complete-BitsTransfer, Get-BitsTransfer, Re...
Manifest 1.0.0.0 BranchCache {Add-BCDataCacheExtension, Clear-BCCache, Disable-BC, Disa...
Manifest 1.0.0.0 CimCmdlets {Get-CimAssociatedInstance, Get-CimClass, Get-CimInstance,...
Manifest 1.0 ConfigCI {Get-SystemDriver, New-CIPolicyRule, New-CIPolicy, Get-CIP...
Manifest 1.0 Defender {Get-MpPreference, Set-MpPreference, Add-MpPreference, Rem...
Manifest 1.0.2.0 DeliveryOptimization {Delete-DeliveryOptimizationCache, Get-DeliveryOptimizatio...
Manifest 1.0.0.0 DirectAccessClientComponents {Disable-DAManualEntryPointSelection, Enable-DAManualEntry...
Script 3.0 Dism {Add-AppxProvisionedPackage, Add-WindowsDriver, Add-Window...
Manifest 1.0.0.0 DnsClient {Resolve-DnsName, Clear-DnsClientCache, Get-DnsClient, Get...
Manifest 1.0.0.0 EventTracingManagement {Start-EtwTraceSession, New-EtwTraceSession, Get-EtwTraceS...
Manifest 2.0.0.0 International {Get-WinDefaultInputMethodOverride, Set-WinDefaultInputMet...
Manifest 1.0.0.0 iSCSI {Get-IscsiTargetPortal, New-IscsiTargetPortal, Remove-Iscs...
Script 1.0.0.0 ISE {New-IseSnippet, Import-IseSnippet, Get-IseSnippet}
Manifest 1.0.0.0 Kds {Add-KdsRootKey, Get-KdsRootKey, Test-KdsRootKey, Set-KdsC...
Manifest 1.0.1.0 Microsoft.PowerShell.Archive {Compress-Archive, Expand-Archive}
Manifest 3.0.0.0 Microsoft.PowerShell.Diagnostics {Get-WinEvent, Get-Counter, Import-Counter, Export-Counter...
Manifest 3.0.0.0 Microsoft.PowerShell.Host {Start-Transcript, Stop-Transcript}
Manifest 1.0.0.0 Microsoft.PowerShell.LocalAccounts {Add-LocalGroupMember, Disable-LocalUser, Enable-LocalUser...
Manifest 3.1.0.0 Microsoft.PowerShell.Management {Add-Content, Clear-Content, Clear-ItemProperty, Join-Path...
Script 1.0 Microsoft.PowerShell.ODataUtils Export-ODataEndpointProxy
Manifest 3.0.0.0 Microsoft.PowerShell.Security {Get-Acl, Set-Acl, Get-PfxCertificate, Get-Credential...}
Manifest 3.1.0.0 Microsoft.PowerShell.Utility {Format-List, Format-Custom, Format-Table, Format-Wide...}
Manifest 3.0.0.0 Microsoft.WSMan.Management {Disable-WSManCredSSP, Enable-WSManCredSSP, Get-WSManCredS...
Manifest 1.0 MMAgent {Disable-MMAgent, Enable-MMAgent, Set-MMAgent, Get-MMAgent...
Manifest 1.0.0.0 MsDtc {New-DtcDiagnosticTransaction, Complete-DtcDiagnosticTrans...
Manifest 2.0.0.0 NetAdapter {Disable-NetAdapter, Disable-NetAdapterBinding, Disable-Ne...
Manifest 1.0.0.0 NetConnection {Get-NetConnectionProfile, Set-NetConnectionProfile}
Manifest 1.0.0.0 NetDiagnostics Get-NetView
Manifest 1.0.0.0 NetEventPacketCapture {New-NetEventSession, Remove-NetEventSession, Get-NetEvent...
Manifest 2.0.0.0 NetLbfo {Add-NetLbfoTeamMember, Add-NetLbfoTeamNic, Get-NetLbfoTea...
Manifest 1.0.0.0 NetNat {Get-NetNat, Get-NetNatExternalAddress, Get-NetNatStaticMa...
Manifest 2.0.0.0 NetQos {Get-NetQosPolicy, Set-NetQosPolicy, Remove-NetQosPolicy, ...
Manifest 2.0.0.0 NetSecurity {Get-DAPolicyChange, New-NetIPsecAuthProposal, New-NetIPse...
Manifest 1.0.0.0 NetSwitchTeam {New-NetSwitchTeam, Remove-NetSwitchTeam, Get-NetSwitchTea...
Manifest 1.0.0.0 NetTCPIP {Get-NetIPAddress, Get-NetIPInterface, Get-NetIPv4Protocol...
Manifest 1.0.0.0 NetworkConnectivityStatus {Get-DAConnectionStatus, Get-NCSIPolicyConfiguration, Rese...
Manifest 1.0.0.0 NetworkSwitchManager {Disable-NetworkSwitchEthernetPort, Enable-NetworkSwitchEt...
Manifest 1.0.0.0 NetworkTransition {Add-NetIPHttpsCertBinding, Disable-NetDnsTransitionConfig...
Manifest 1.0.0.0 PcsvDevice {Get-PcsvDevice, Start-PcsvDevice, Stop-PcsvDevice, Restar...
Binary 1.0.0.0 PersistentMemory {Get-PmemDisk, Get-PmemPhysicalDevice, Get-PmemUnusedRegio...
Manifest 1.0.0.0 PKI {Add-CertificateEnrollmentPolicyServer, Export-Certificate...
Manifest 1.0.0.0 PnpDevice {Get-PnpDevice, Get-PnpDeviceProperty, Enable-PnpDevice, D...
Manifest 1.1 PrintManagement {Add-Printer, Add-PrinterDriver, Add-PrinterPort, Get-Prin...
Binary 1.0.11 ProcessMitigations {Get-ProcessMitigation, Set-ProcessMitigation, ConvertTo-P...
Script 3.0 Provisioning {Install-ProvisioningPackage, Export-ProvisioningPackage, ...
Manifest 1.1 PSDesiredStateConfiguration {Set-DscLocalConfigurationManager, Start-DscConfiguration,...
Script 1.0.0.0 PSDiagnostics {Disable-PSTrace, Disable-PSWSManCombinedTrace, Disable-WS...
Binary 1.1.0.0 PSScheduledJob {New-JobTrigger, Add-JobTrigger, Remove-JobTrigger, Get-Jo...
Manifest 2.0.0.0 PSWorkflow {New-PSWorkflowExecutionOption, New-PSWorkflowSession, nwsn}
Manifest 1.0.0.0 PSWorkflowUtility Invoke-AsWorkflow
Manifest 1.0.0.0 ScheduledTasks {Get-ScheduledTask, Set-ScheduledTask, Register-ScheduledT...
Manifest 2.0.0.0 SecureBoot {Confirm-SecureBootUEFI, Set-SecureBootUEFI, Get-SecureBoo...
Manifest 2.0.0.0 SmbShare {Get-SmbShare, Remove-SmbShare, Set-SmbShare, Block-SmbSha...
Manifest 2.0.0.0 SmbWitness {Get-SmbWitnessClient, Move-SmbWitnessClient, gsmbw, msmbw...
Manifest 1.0.0.0 StartLayout {Export-StartLayout, Import-StartLayout, Export-StartLayou...
Manifest 2.0.0.0 Storage {Add-InitiatorIdToMaskingSet, Add-PartitionAccessPath, Add...
Manifest 1.0.0.0 StorageBusCache {Clear-StorageBusDisk, Disable-StorageBusCache, Disable-St...
Manifest 2.0.0.0 TLS {New-TlsSessionTicketKey, Enable-TlsSessionTicketKey, Disa...
Manifest 1.0.0.0 TroubleshootingPack {Get-TroubleshootingPack, Invoke-TroubleshootingPack}
Manifest 2.0.0.0 TrustedPlatformModule {Get-Tpm, Initialize-Tpm, Clear-Tpm, Unblock-Tpm...}
Binary 2.1.639.0 UEV {Clear-UevConfiguration, Clear-UevAppxPackage, Restore-Uev...
Manifest 2.0.0.0 VpnClient {Add-VpnConnection, Set-VpnConnection, Remove-VpnConnectio...
Manifest 1.0.0.0 Wdac {Get-OdbcDriver, Set-OdbcDriver, Get-OdbcDsn, Add-OdbcDsn...}
Manifest 2.0.0.0 Whea {Get-WheaMemoryPolicy, Set-WheaMemoryPolicy}
Manifest 1.0.0.0 WindowsDeveloperLicense {Get-WindowsDeveloperLicense, Unregister-WindowsDeveloperL...
Script 1.0 WindowsErrorReporting {Enable-WindowsErrorReporting, Disable-WindowsErrorReporti...
Manifest 1.0.0.0 WindowsSearch {Get-WindowsSearchSetting, Set-WindowsSearchSetting}
Manifest 1.0.0.0 WindowsUpdate Get-WindowsUpdateLog
Manifest 1.0.0.2 WindowsUpdateProvider {Get-WUAVersion, Get-WULastInstallationDate, Get-WULastSca... Debug outputPrivate and sensitive data has been masked
Error output
|
Hello @solankisamir could you please help us in this matter? |
Hi, we're sending this friendly reminder because we haven't heard back from you in a while. We need more information about this issue to help address it. Please be sure to give us your input within the next 7 days. If we don't hear back from you within 14 days of this comment the issue will be automatically closed. Thank you! |
Description
Working against a developer APIM instance, and trying to add a definition / schema for an API. The command doesn't fail, but the definition / schema isn't created at all. That is regardless of having the schema in a variable or using a schema file with the New-AzApiManagementApiSchema cmdlet.
I can create the definition / schema via portal.azure.com and it works like intended. Using the Get-AzApiManagementApiSchema does output some details, but the schema itself is missing (separate issue).
But using the API Management REST API, I can get and put the exact same schema for the API.
Using fiddler I can see there is a difference between the raw http put action done via invoke-restmethod and the http put comming from the New-AzApiManagementApiSchema.
Steps to reproduce
Using the New-AzApiManagementApiSchema with a variable:
The fiddler trace for this call is below - sensitive and unrelated data removed:
The interesting part of above trace is the structure of the json. The document property has an object, with a value property. The content of that property is a stringified json object. Remember this when we compare the Api Management REST API call.
Using the Api Management REST API with a variable:
The fiddler trace for this call is below - sensitive and unrelated data removed:
The interesting part of above trace is the structure of the json. The document property has an object, with a components property. The content of this object is just plain json.
We have tried several different formats of the schema, to see if we had to many or to few properties. But when looking at the fiddler trace for when configuring the schema via portal.azure.com and the fact that we have a working schema when using the API Management REST API, we feel confident that there is an issue.
We have been digging into the code behind the command and believe the code that is creating this issue is:
azure-powershell/src/ApiManagement/ApiManagement.ServiceManagement/ApiManagementClient.cs
Lines 1370 to 1374 in aa0671e
We can see that there are several other issues around the API Management and OpenAPI/Swagger:
https://github.com/Azure/azure-api-management-devops-resource-kit/issues/264
https://github.com/Azure/azure-api-management-devops-resource-kit/issues/190
#10626
Environment data
Module versions
Debug output
Private and sensitive data has been masked
Error output
The text was updated successfully, but these errors were encountered: