Skip to content

Commit e4f06cb

Browse files
merge bug fix (Azure#46951)
1 parent d4438be commit e4f06cb

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

sdk/cloudmachine/Azure.CloudMachine/src/CloudMachineClient.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,10 @@ namespace Azure.CloudMachine;
99
public partial class CloudMachineClient : CloudMachineWorkspace
1010
{
1111
protected CloudMachineClient()
12-
{ }
12+
{
13+
Messaging = new MessagingServices(this);
14+
Storage = new StorageServices(this);
15+
}
1316
#pragma warning disable AZC0007 // DO provide a minimal constructor that takes only the parameters required to connect to the service.
1417
public CloudMachineClient(TokenCredential credential = default, IConfiguration configuration = default)
1518
#pragma warning restore AZC0007 // DO provide a minimal constructor that takes only the parameters required to connect to the service.

0 commit comments

Comments
 (0)