RakeshMohanMSFT

Results 93 comments of RakeshMohanMSFT
trafficstars

@tphilley Thank you for reaching out, we are looking into it.

This is Fixed. ``` "subscriptionKeyParameterNames": { "header": "Ocp-Apim-Subscription-Key", "query": "subscription-key" }, ``` ![image](https://user-images.githubusercontent.com/49954584/197448365-512625e5-7cd3-43e5-a64a-289aec4ffb7f.png)

@frizzleqq Thank you for reaching out, we are looking into it.

@frizzleqq Yes, it is expected. its documented [here ](https://learn.microsoft.com/en-us/powershell/module/az.synapse/update-azsynapsesparkpool?view=azps-9.0.1) **This command enables dynamic executor allocation and specify min executor count and max executor count for an Apache Spark pool in...

@johnsrsly We are unable to reproduce this issue at our end. Please see image below. 1) We created an API with a auth server. 2) We imported an API without...

@Sandeep7OnShell Thank you for reaching out we are looking into it.

@Sandeep7OnShell Please pardon me if I am misunderstanding your ask. But what you are raising is actually by design for client errors, you check here the [ContainerAlreadyExists](https://docs.microsoft.com/en-us/rest/api/storageservices/blob-service-error-codes). [BlobContainerClient.CreateIfNotExists](https://docs.microsoft.com/en-us/dotnet/api/azure.storage.blobs.blobcontainerclient.createifnotexistsasync?view=azure-dotnet#azure-storage-blobs-blobcontainerclient-createifnotexistsasync(azure-storage-blobs-models-publicaccesstype-system-collections-generic-idictionary((system-string-system-string))-azure-storage-blobs-models-blobcontainerencryptionscopeoptions-system-threading-cancellationtoken)) operation creates...

@Sandeep7OnShell BlobContainerClient.CreateIfNotExists internally will internally query the available containers to decide to create a container or not other than that it does not impact any existing container. As far as...

@Sandeep7OnShell CreateIfNotExists will not delete a container if it already exists. It will just check for a containers existence and create one if with the same name no container exists,...

@Sandeep7OnShell It is as designed, as the method name suggests "Create" "If" "Not" "Exists". Therefore when it when that the container with the name already exists "We have the contained(r)"....