diff --git a/sdk/cloudmachine/Azure.CloudMachine/src/CloudMachineClient.cs b/sdk/cloudmachine/Azure.CloudMachine/src/CloudMachineClient.cs index 2388de380e6a..9d2dca3087cc 100644 --- a/sdk/cloudmachine/Azure.CloudMachine/src/CloudMachineClient.cs +++ b/sdk/cloudmachine/Azure.CloudMachine/src/CloudMachineClient.cs @@ -9,7 +9,10 @@ namespace Azure.CloudMachine; public partial class CloudMachineClient : CloudMachineWorkspace { protected CloudMachineClient() - { } + { + Messaging = new MessagingServices(this); + Storage = new StorageServices(this); + } #pragma warning disable AZC0007 // DO provide a minimal constructor that takes only the parameters required to connect to the service. public CloudMachineClient(TokenCredential credential = default, IConfiguration configuration = default) #pragma warning restore AZC0007 // DO provide a minimal constructor that takes only the parameters required to connect to the service.