This is an automated email from the ASF dual-hosted git repository. dahn pushed a change to branch main in repository https://gitbox.apache.org/repos/asf/cloudstack-go.git
from 2b21240 Merge pull request #86 from apache/post add 9994d40 add +30 more apis new 4f01bd9 Merge pull request #89 from suecodelabs/feature_add_more_apis The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: 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 + ...aService_test.go => DiagnosticsService_test.go} | 14 +- test/GuestOSService_test.go | 12 + test/HostService_test.go | 123 + test/ImageStoreService_test.go | 42 + ...taService_test.go => ManagementService_test.go} | 14 +- ...QuotaService_test.go => MetricsService_test.go} | 14 +- ...kDeviceService_test.go => OauthService_test.go} | 40 +- ...cService_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 + ...uotaService_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, 16097 insertions(+), 94 deletions(-) create mode 100644 cloudstack/DiagnosticsService.go create mode 100644 cloudstack/DiagnosticsService_mock.go create mode 100644 cloudstack/ManagementService.go create mode 100644 cloudstack/ManagementService_mock.go create mode 100644 cloudstack/MetricsService.go create mode 100644 cloudstack/MetricsService_mock.go create mode 100644 cloudstack/OauthService.go create mode 100644 cloudstack/OauthService_mock.go create mode 100644 cloudstack/ObjectStoreService.go create mode 100644 cloudstack/ObjectStoreService_mock.go create mode 100644 cloudstack/RegistrationService.go create mode 100644 cloudstack/RegistrationService_mock.go create mode 100644 cloudstack/ShutdownService.go create mode 100644 cloudstack/ShutdownService_mock.go copy test/{QuotaService_test.go => DiagnosticsService_test.go} (78%) copy test/{QuotaService_test.go => ManagementService_test.go} (77%) copy test/{QuotaService_test.go => MetricsService_test.go} (79%) copy test/{NetworkDeviceService_test.go => OauthService_test.go} (64%) copy test/{NicService_test.go => ObjectStoreService_test.go} (62%) copy test/{CloudIdentifierService_test.go => RegistrationService_test.go} (74%) copy test/{QuotaService_test.go => ShutdownService_test.go} (79%)