You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: api/src/main/java/org/apache/cloudstack/api/command/user/storage/sharedfs/ChangeSharedFSServiceOfferingCmd.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -70,7 +70,7 @@ public class ChangeSharedFSServiceOfferingCmd extends BaseAsyncCmd implements Us
70
70
type = CommandType.UUID,
71
71
entityType = ServiceOfferingResponse.class,
72
72
required = true,
73
-
description = "the offering to use for the shared filesystem vm")
73
+
description = "the offering to use for the shared filesystem instance")
Copy file name to clipboardExpand all lines: api/src/main/java/org/apache/cloudstack/api/command/user/storage/sharedfs/CreateSharedFSCmd.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -130,7 +130,7 @@ public class CreateSharedFSCmd extends BaseAsyncCreateCmd implements UserCmd {
130
130
type = CommandType.UUID,
131
131
required = true,
132
132
entityType = ServiceOfferingResponse.class,
133
-
description = "the service offering to use for the shared filesystem VM hosting the data. The offering should be HA enabled and the cpu count and memory size should be greater than equal to sharedfsvm.min.cpu.count and sharedfsvm.min.ram.size respectively")
133
+
description = "the service offering to use for the shared filesystem instance hosting the data. The offering should be HA enabled and the cpu count and memory size should be greater than equal to sharedfsvm.min.cpu.count and sharedfsvm.min.ram.size respectively")
ALTERTABLE`cloud`.`network_offerings` RENAME COLUMN `nsx_mode` TO `network_mode`;
197
-
ALTERTABLE`cloud`.`vpc_offerings` RENAME COLUMN `nsx_mode` TO `network_mode`;
196
+
CALL `cloud`.`IDEMPOTENT_CHANGE_COLUMN`('network_offerings', 'nsx_mode', 'network_mode', 'varchar(32) COMMENT "mode in which the network would route traffic"');
197
+
CALL `cloud`.`IDEMPOTENT_CHANGE_COLUMN`('vpc_offerings', 'nsx_mode', 'network_mode', 'varchar(32) COMMENT "mode in which the network would route traffic"');
198
198
ALTERTABLE`cloud`.`event` MODIFY COLUMN `type`varchar(50) NOT NULL;
LEFT JOIN`guest_os`ON ((`vm_instance`.`guest_os_id`=`guest_os`.`id`)))
467
-
LEFT JOIN`host_pod_ref`ON ((`vm_instance`.`pod_id`=`host_pod_ref`.`id`)))
468
-
LEFT JOIN`projects`ON ((`projects`.`project_account_id`=`account`.`id`)))
469
-
LEFT JOIN`instance_group_vm_map`ON ((`vm_instance`.`id`=`instance_group_vm_map`.`instance_id`)))
470
-
LEFT JOIN`instance_group`ON ((`instance_group_vm_map`.`group_id`=`instance_group`.`id`)))
471
-
LEFT JOIN`data_center`ON ((`vm_instance`.`data_center_id`=`data_center`.`id`)))
472
-
LEFT JOIN`host`ON ((`vm_instance`.`host_id`=`host`.`id`)))
473
-
LEFT JOIN`vm_template`ON ((`vm_instance`.`vm_template_id`=`vm_template`.`id`)))
474
-
LEFT JOIN`vm_template``iso`ON ((`iso`.`id`=`user_vm`.`iso_id`)))
475
-
LEFT JOIN`volumes`ON ((`vm_instance`.`id`=`volumes`.`instance_id`)))
476
-
LEFT JOIN`service_offering`ON ((`vm_instance`.`service_offering_id`=`service_offering`.`id`)))
477
-
LEFT JOIN`disk_offering``svc_disk_offering`ON ((`volumes`.`disk_offering_id`=`svc_disk_offering`.`id`)))
478
-
LEFT JOIN`disk_offering`ON ((`volumes`.`disk_offering_id`=`disk_offering`.`id`)))
479
-
LEFT JOIN`backup_offering`ON ((`vm_instance`.`backup_offering_id`=`backup_offering`.`id`)))
480
-
LEFT JOIN`storage_pool`ON ((`volumes`.`pool_id`=`storage_pool`.`id`)))
481
-
LEFT JOIN`security_group_vm_map`ON ((`vm_instance`.`id`=`security_group_vm_map`.`instance_id`)))
482
-
LEFT JOIN`security_group`ON ((`security_group_vm_map`.`security_group_id`=`security_group`.`id`)))
483
-
LEFT JOIN`user_data`ON ((`user_data`.`id`=`user_vm`.`user_data_id`)))
484
-
LEFT JOIN`nics`ON (((`vm_instance`.`id`=`nics`.`instance_id`)
485
-
AND ISNULL(`nics`.`removed`))))
486
-
LEFT JOIN`networks`ON ((`nics`.`network_id`=`networks`.`id`)))
487
-
LEFT JOIN`vpc`ON (((`networks`.`vpc_id`=`vpc`.`id`)
488
-
AND ISNULL(`vpc`.`removed`))))
489
-
LEFT JOIN`user_ip_address` FORCE INDEX(`fk_user_ip_address__vm_id`) ON ((`user_ip_address`.`vm_id`=`vm_instance`.`id`)))
490
-
LEFT JOIN`user_vm_details``ssh_details`ON (((`ssh_details`.`vm_id`=`vm_instance`.`id`)
491
-
AND (`ssh_details`.`name`='SSH.KeyPairNames'))))
492
-
LEFT JOIN`resource_tags`ON (((`resource_tags`.`resource_id`=`vm_instance`.`id`)
493
-
AND (`resource_tags`.`resource_type`='UserVm'))))
494
-
LEFT JOIN`async_job`ON (((`async_job`.`instance_id`=`vm_instance`.`id`)
495
-
AND (`async_job`.`instance_type`='VirtualMachine')
496
-
AND (`async_job`.`job_status`=0))))
497
-
LEFT JOIN`affinity_group_vm_map`ON ((`vm_instance`.`id`=`affinity_group_vm_map`.`instance_id`)))
498
-
LEFT JOIN`affinity_group`ON ((`affinity_group_vm_map`.`affinity_group_id`=`affinity_group`.`id`)))
499
-
LEFT JOIN`autoscale_vmgroup_vm_map`ON ((`autoscale_vmgroup_vm_map`.`instance_id`=`vm_instance`.`id`)))
500
-
LEFT JOIN`autoscale_vmgroups`ON ((`autoscale_vmgroup_vm_map`.`vmgroup_id`=`autoscale_vmgroups`.`id`)))
501
-
LEFT JOIN`user_vm_details``custom_cpu`ON (((`custom_cpu`.`vm_id`=`vm_instance`.`id`)
502
-
AND (`custom_cpu`.`name`='CpuNumber'))))
503
-
LEFT JOIN`user_vm_details``custom_speed`ON (((`custom_speed`.`vm_id`=`vm_instance`.`id`)
504
-
AND (`custom_speed`.`name`='CpuSpeed'))))
505
-
LEFT JOIN`user_vm_details``custom_ram_size`ON (((`custom_ram_size`.`vm_id`=`vm_instance`.`id`)
506
-
AND (`custom_ram_size`.`name`='memory'))));
507
-
508
310
-- Quota inject tariff result into subsequent ones
509
311
CALL `cloud_usage`.`IDEMPOTENT_ADD_COLUMN`('cloud_usage.quota_tariff', 'position', 'bigint(20) NOT NULL DEFAULT 1 COMMENT "Position in the execution sequence for tariffs of the same type"');
0 commit comments