I'm trying to use the new Azure dotnet SDK for managing the size of our pool.
Using the following code I can return some of the pool details:
ResourceIdentifier id = new ResourceIdentifier(idStr);
ArmClient client = new ArmClient(new DefaultAzureCredential());
ElasticPoolResource ep = client.GetElasticPoolResource(id);
ep = ep.Get();
But I'm then struggling how to read or update any of the values. Is anyone aware of any examples of how to use this new SDK with ElasticPools specifically as I'm not getting very far using the standard documentation.