We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4438be commit e4f06cbCopy full SHA for e4f06cb
sdk/cloudmachine/Azure.CloudMachine/src/CloudMachineClient.cs
@@ -9,7 +9,10 @@ namespace Azure.CloudMachine;
9
public partial class CloudMachineClient : CloudMachineWorkspace
10
{
11
protected CloudMachineClient()
12
- { }
+ {
13
+ Messaging = new MessagingServices(this);
14
+ Storage = new StorageServices(this);
15
+ }
16
#pragma warning disable AZC0007 // DO provide a minimal constructor that takes only the parameters required to connect to the service.
17
public CloudMachineClient(TokenCredential credential = default, IConfiguration configuration = default)
18
#pragma warning restore AZC0007 // DO provide a minimal constructor that takes only the parameters required to connect to the service.
0 commit comments