@@ -330,7 +330,7 @@ def _flexible_server_params(command_group):
330330 create_default_db_arg_type = CLIArgumentType (
331331 arg_type = get_enum_type (['Enabled' , 'Disabled' ]),
332332 options_list = ['--create-default-database' , '-c' ],
333- help = 'Enable or disable the creation of default database flexibleserverdb. Default value is Enabled .'
333+ help = 'Enable or disable the creation of default database flexibleserverdb. Default value is Disabled .'
334334 )
335335
336336 cluster_option_arg_type = CLIArgumentType (
@@ -600,7 +600,7 @@ def _flexible_server_params(command_group):
600600 c .argument ('iops' , default = None , arg_type = iops_v2_arg_type )
601601 c .argument ('throughput' , default = None , arg_type = throughput_arg_type )
602602 c .argument ('performance_tier' , default = None , arg_type = performance_tier_arg_type )
603- c .argument ('create_default_db' , default = 'Enabled ' , arg_type = create_default_db_arg_type )
603+ c .argument ('create_default_db' , default = 'Disabled ' , arg_type = create_default_db_arg_type )
604604 c .argument ('create_cluster' , default = 'Server' , arg_type = cluster_option_arg_type )
605605 c .argument ('cluster_size' , default = None , arg_type = create_node_count_arg_type )
606606 elif command_group == 'mysql' :
0 commit comments