Alex
Alex
``` @JsonObject({ knownTypes: [EinheitentabellenEintrag, NachschlagetabellenEintrag]}) export class Nachschlagetabelle { public static get NACHSCHLAGETABELLE_TYPE(): string { return "Nachschlagetabelle"; } @JsonMember tabellenname: string = ""; @JsonMember({ elements: EinheitentabellenEintrag}) test: EinheitentabellenEintrag[]; @JsonMember({ elementType:...
Right now, we have the following options to authenticate against Azure Blob Storage, when using it as a custom pulumi backend: - `AZURE_STORAGE_KEY ` - `AZURE_STORAGE_SAS_TOKEN` Both are credentials that...
Can I also use Managed Identity (System or user-assigned) for `IDownstreamWebApi`? Shouldn't Managed Identity the first option that should be mentioned in the documentation for the users? My proposed order...
**Describe the bug** I am trying to create an app registration and a corresponding service principal. I noticed that `PreAuthorizedApplications` and `Oauth2PermissionScopes` are ignored when calling `PatchAsync`. **To Reproduce** ```csharp...
### Library name and version Azure.Identity 1.6.0, Microsoft.Data.SqlClient 4.1.0 ### Describe the bug We receive almost everyday SqlExceptions with a inner OperationCanceledException. ```json {"level":0,"method":"Azure.Core.CancellationHelper.ThrowOperationCanceledException","line":0,"assembly":"Azure.Core, Version=1.25.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8"} {"level":1,"method":"Azure.Core.CancellationHelper.ThrowIfCancellationRequested","line":0,"assembly":"Azure.Core, Version=1.25.0.0, Culture=neutral,...
```csharp var dbContext = GetDbContext(); await dbContext.Database.EnsureDeletedAsync(); await dbContext.Database.EnsureCreatedAsync(); var tagsToSave = new List() { new() { Name = "Tag1", AuditingInfo = new AuditingInfo("A", DateTimeOffset.Now, "B", DateTimeOffset.Now) } }; var...