This is an automated email from the ASF dual-hosted git repository. dahn pushed a change to branch rat in repository https://gitbox.apache.org/repos/asf/cloudstack-go.git
from e285203 rat cli check and exclude list add 740a8c1 Add github actions for verifying different type input params with go sdk add f4febd1 Add github actions for verifying different type input params with go sdk add b2094d4 compatibility: restore updateGuestOs params for <= 4.20.0 add 2298ed5 Merge pull request #109 from shwstppr/updateguestos-420compat add 5d1507e State changing request using POST request add 58c02d1 Reverting changes to newRequest add bfde559 Reverting some commands back to GET requests add 496e0eb Merge branch 'main' of github.com:apache/cloudstack-go into modify_post_request add 1b92154 added signatureversion and expires params to api request add 9164e3c Updated generate.go with get api call check add 2584bd3 Updated required params for create VPC, and generate changes add 5ba605d review change add 0bc11ec Merge pull request #107 from kevin-lii/modify_post_request add 13f5cce Bump golang.org/x/net from 0.26.0 to 0.38.0 add e218751 Merge pull request #108 from apache/dependabot/go_modules/golang.org/x/net-0.38.0 add 8ebe78d Updated SDK with 4.20.1 APIs add 3dba7ac fix memoryallocated type in testdata add 16260d4 Merge pull request #112 from apache/update-sdk-4.20.1 add fa91611 Merge branch 'main' into rat No new revisions were added by this update. Summary of changes: .../setup-go-and-build/action.yml} | 51 +- .github/workflows/build.yml | 13 +- .github/workflows/ci.yml | 98 + Makefile | 4 +- ci/ci_test.go | 531 + cloudstack/ASNumberRangeService.go | 4 +- cloudstack/ASNumberService.go | 2 +- cloudstack/AccountService.go | 83 +- cloudstack/AccountService_mock.go | 8 +- cloudstack/AddressService.go | 14 +- cloudstack/AffinityGroupService.go | 7 +- cloudstack/AlertService.go | 6 +- cloudstack/AnnotationService.go | 6 +- cloudstack/AuthenticationService.go | 4 +- cloudstack/AutoScaleService.go | 32 +- cloudstack/BGPPeerService.go | 12 +- cloudstack/BaremetalService.go | 12 +- cloudstack/BigSwitchBCFService.go | 4 +- cloudstack/BrocadeVCSService.go | 5 +- cloudstack/CertificateService.go | 14 +- cloudstack/ClusterService.go | 70 +- cloudstack/ConfigurationService.go | 7 +- cloudstack/ConsoleEndpointService.go | 2 +- cloudstack/CustomService.go | 2 +- cloudstack/DiagnosticsService.go | 2 +- cloudstack/DiskOfferingService.go | 6 +- cloudstack/DomainService.go | 8 +- cloudstack/EventService.go | 4 +- cloudstack/FirewallService.go | 61 +- cloudstack/GuestOSService.go | 12 +- cloudstack/HostService.go | 234 +- cloudstack/HypervisorService.go | 2 +- cloudstack/IPQuarantineService.go | 4 +- cloudstack/ISOService.go | 18 +- cloudstack/ImageStoreService.go | 18 +- cloudstack/InternalLBService.go | 11 +- cloudstack/KubernetesService.go | 49 +- cloudstack/LDAPService.go | 18 +- cloudstack/LimitService.go | 6 +- cloudstack/LoadBalancerService.go | 53 +- cloudstack/ManagementService.go | 88 +- cloudstack/NATService.go | 8 +- cloudstack/NetscalerService.go | 13 +- cloudstack/NetworkACLService.go | 16 +- cloudstack/NetworkDeviceService.go | 4 +- cloudstack/NetworkOfferingService.go | 6 +- cloudstack/NetworkService.go | 60 +- cloudstack/NicService.go | 7 +- cloudstack/NiciraNVPService.go | 4 +- cloudstack/OauthService.go | 4 +- cloudstack/ObjectStoreService.go | 6 +- cloudstack/OutofbandManagementService.go | 6 +- cloudstack/OvsElementService.go | 2 +- cloudstack/PodService.go | 16 +- cloudstack/PoolService.go | 13 +- cloudstack/PortableIPService.go | 4 +- cloudstack/ProjectService.go | 34 +- cloudstack/QuotaService.go | 8 +- cloudstack/RegionService.go | 6 +- cloudstack/RegistrationService.go | 2 +- cloudstack/ResourceIconService.go | 4 +- cloudstack/ResourceService.go | 2 +- cloudstack/ResourcemetadataService.go | 4 +- cloudstack/ResourcetagsService.go | 4 +- cloudstack/RoleService.go | 18 +- cloudstack/RollingMaintenanceService.go | 2 +- cloudstack/RouterService.go | 44 +- cloudstack/SSHService.go | 9 +- cloudstack/SecurityGroupService.go | 14 +- cloudstack/ServiceOfferingService.go | 6 +- cloudstack/SharedFileSystemService.go | 20 +- cloudstack/SnapshotService.go | 27 +- cloudstack/StoragePoolService.go | 15 +- cloudstack/StratosphereSSPService.go | 4 +- cloudstack/SwiftService.go | 2 +- cloudstack/SystemVMService.go | 48 +- cloudstack/TemplateService.go | 20 +- cloudstack/UCSService.go | 6 +- cloudstack/UsageService.go | 14 +- cloudstack/UserService.go | 87 +- cloudstack/VLANService.go | 10 +- cloudstack/VMGroupService.go | 6 +- cloudstack/VPCService.go | 29 +- cloudstack/VPCService_mock.go | 8 +- cloudstack/VPNService.go | 28 +- cloudstack/VirtualMachineService.go | 193 +- cloudstack/VirtualNetworkFunctionsService.go | 58 +- cloudstack/VolumeService.go | 57 +- cloudstack/WebhookService.go | 10 +- cloudstack/ZoneService.go | 88 +- cloudstack/cloudstack.go | 4 +- generate/generate.go | 25 +- generate/listApis.json | 147884 +++++++++--------- generate/requiredParams.go | 4 + go.mod | 12 +- go.sum | 22 +- test/AccountService_test.go | 2 +- test/VPCService_test.go | 2 +- test/testdata/HostService.json | 2 +- 99 files changed, 77455 insertions(+), 73143 deletions(-) copy .github/{workflows/build.yml => actions/setup-go-and-build/action.yml} (63%) create mode 100644 .github/workflows/ci.yml create mode 100644 ci/ci_test.go