This is an automated email from the ASF dual-hosted git repository. dahn pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/cloudstack-go.git
commit 4f01bd9209556a1f2742f3c359faae80cd8bbd21 Merge: 2b21240 9994d40 Author: dahn <[email protected]> AuthorDate: Fri Dec 13 11:28:42 2024 +0100 Merge pull request #89 from suecodelabs/feature_add_more_apis add +30 more apis cloudstack/CertificateService.go | 206 ++ cloudstack/CertificateService_mock.go | 58 + cloudstack/ConfigurationService.go | 94 + cloudstack/ConfigurationService_mock.go | 29 + cloudstack/DiagnosticsService.go | 142 + cloudstack/DiagnosticsService_mock.go | 82 + cloudstack/GuestOSService.go | 145 + cloudstack/GuestOSService_mock.go | 29 + cloudstack/HostService.go | 1218 +++++++++ cloudstack/HostService_mock.go | 282 ++ cloudstack/ImageStoreService.go | 445 +++ cloudstack/ImageStoreService_mock.go | 108 + cloudstack/ManagementService.go | 298 ++ cloudstack/ManagementService_mock.go | 145 + cloudstack/MetricsService.go | 88 + cloudstack/MetricsService_mock.go | 82 + cloudstack/NetworkService.go | 6 +- cloudstack/OauthService.go | 589 ++++ cloudstack/OauthService_mock.go | 203 ++ cloudstack/ObjectStoreService.go | 1130 ++++++++ cloudstack/ObjectStoreService_mock.go | 232 ++ cloudstack/PodService.go | 182 ++ cloudstack/PodService_mock.go | 29 + cloudstack/ProjectService.go | 393 +++ cloudstack/ProjectService_mock.go | 87 + cloudstack/RegistrationService.go | 269 ++ cloudstack/RegistrationService_mock.go | 82 + cloudstack/RoleService.go | 237 ++ cloudstack/RoleService_mock.go | 50 + cloudstack/ShutdownService.go | 101 + cloudstack/ShutdownService_mock.go | 82 + cloudstack/StoragePoolService.go | 1382 ++++++++++ cloudstack/StoragePoolService_mock.go | 321 +++ cloudstack/TemplateService.go | 220 ++ cloudstack/TemplateService_mock.go | 29 + cloudstack/UserService.go | 1054 ++++++++ cloudstack/UserService_mock.go | 208 ++ cloudstack/VirtualMachineService.go | 2836 +++++++++++++++++++- cloudstack/VirtualMachineService_mock.go | 253 ++ cloudstack/VolumeService.go | 515 ++++ cloudstack/VolumeService_mock.go | 121 + cloudstack/ZoneService.go | 920 +++++++ cloudstack/ZoneService_mock.go | 166 ++ cloudstack/cloudstack.go | 77 + generate/generate.go | 96 +- generate/layout.go | 74 + test/CertificateService_test.go | 24 + test/ConfigurationService_test.go | 15 + ...eService_test.go => DiagnosticsService_test.go} | 14 +- test/GuestOSService_test.go | 12 + test/HostService_test.go | 123 + test/ImageStoreService_test.go | 42 + ...teService_test.go => ManagementService_test.go} | 14 +- ...icateService_test.go => MetricsService_test.go} | 14 +- ...agePoolService_test.go => OauthService_test.go} | 37 +- ...lService_test.go => ObjectStoreService_test.go} | 47 +- test/PodService_test.go | 12 + test/ProjectService_test.go | 42 + ...Service_test.go => RegistrationService_test.go} | 14 +- test/RoleService_test.go | 12 + ...cateService_test.go => ShutdownService_test.go} | 14 +- test/StoragePoolService_test.go | 78 + test/TemplateService_test.go | 15 + test/UserService_test.go | 63 + test/VirtualMachineService_test.go | 108 + test/VolumeService_test.go | 27 + test/ZoneService_test.go | 66 + 67 files changed, 16100 insertions(+), 88 deletions(-)
