Hi
I created a Storage Account via the UI and wrote a short Java programm to create a new container in that Storage Account.
TokenCredential defaultCredential = new AzureCliCredentialBuilder().build();
BlobServiceClient blobServiceClient = new BlobServiceClientBuilder()
.endpoint("https://" + STORAGE_ACC + ".blob.core.windows.net/")
.credential(defaultCredential)
.buildClient();
String containerName = "newcontainer" + java.util.UUID.randomUUID();
BlobContainerClient blobContainerClient = blobServiceClient.createBlobContainer(containerName);
Now I want to create a Local User, just as in the UI via the SDK but I cannot find an API for that use case.
I searched the following libs, but found nothing about local users or sftp ssh credentials.
- com.azure:azure-storage-blob:12.29.0
- com.azure.resourcemanager:azure-resourcemanager-storage:2.47.0
- com.azure:azure-identity:1.15.0