Default credentials, prefix path in Azure (#20707)

This commit is contained in:
aji-aju 2025-04-09 10:21:48 +05:30 committed by GitHub
parent ece005bba0
commit f573015a38
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -39,6 +39,12 @@ public class AzureConfiguration {
@JsonProperty("cdnKey")
private String cdnKey;
@JsonProperty("customerName")
private String customerName;
@JsonProperty("blobEndpoint")
private String blobEndpoint;
@AssertTrue(
message =
"Either useManagedIdentity must be true, or a connectionString must be provided, "