Re: [PR] Modify State Changing Requests to Utilize POST Request [cloudstack-go]

2025-06-19 Thread via GitHub
sureshanaparti merged PR #107: URL: https://github.com/apache/cloudstack-go/pull/107 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@clo

Re: [PR] Modify State Changing Requests to Utilize POST Request [cloudstack-go]

2025-06-16 Thread via GitHub
sureshanaparti commented on code in PR #107: URL: https://github.com/apache/cloudstack-go/pull/107#discussion_r2149679383 ## generate/generate.go: ## @@ -1752,17 +1755,22 @@ func (s *service) generateNewAPICallFunc(a *API) { pn("") pn("// We s

Re: [PR] Modify State Changing Requests to Utilize POST Request [cloudstack-go]

2025-06-16 Thread via GitHub
sureshanaparti commented on code in PR #107: URL: https://github.com/apache/cloudstack-go/pull/107#discussion_r2149668170 ## cloudstack/UserService.go: ## @@ -3133,7 +3133,7 @@ func (s *UserService) NewVerifyOAuthCodeAndGetUserParams(provider string) *Verif // Verify the OAu

Re: [PR] Modify State Changing Requests to Utilize POST Request [cloudstack-go]

2025-06-16 Thread via GitHub
weizhouapache commented on code in PR #107: URL: https://github.com/apache/cloudstack-go/pull/107#discussion_r2149635362 ## cloudstack/UserService.go: ## @@ -3133,7 +3133,7 @@ func (s *UserService) NewVerifyOAuthCodeAndGetUserParams(provider string) *Verif // Verify the OAut

Re: [PR] Modify State Changing Requests to Utilize POST Request [cloudstack-go]

2025-05-27 Thread via GitHub
vishesh92 commented on PR #107: URL: https://github.com/apache/cloudstack-go/pull/107#issuecomment-2912049804 @kevin-lii Can you reabase your PR against the latest main branch. I added a github action (https://github.com/apache/cloudstack-go/pull/111) which will help in testing this PR.

Re: [PR] Modify State Changing Requests to Utilize POST Request [cloudstack-go]

2025-05-27 Thread via GitHub
DaanHoogland commented on PR #107: URL: https://github.com/apache/cloudstack-go/pull/107#issuecomment-2912048663 @kevin-lii , can you rebase on latest to have the post requests tested against a simulator running in a container, please? (see #111 ) -- This is an automated message from the

Re: [PR] Modify State Changing Requests to Utilize POST Request [cloudstack-go]

2025-04-23 Thread via GitHub
sureshanaparti commented on code in PR #107: URL: https://github.com/apache/cloudstack-go/pull/107#discussion_r2056117130 ## cloudstack/QuotaService.go: ## @@ -192,7 +192,7 @@ func (s *QuotaService) NewQuotaBalanceParams(account string, domainid string) *Q // Create a quota

Re: [PR] Modify State Changing Requests to Utilize POST Request [cloudstack-go]

2025-04-23 Thread via GitHub
sureshanaparti commented on code in PR #107: URL: https://github.com/apache/cloudstack-go/pull/107#discussion_r2056114303 ## cloudstack/QuotaService.go: ## @@ -801,7 +801,7 @@ func (s *QuotaService) NewQuotaSummaryParams() *QuotaSummaryParams { // Lists balance and quota usa

Re: [PR] Modify State Changing Requests to Utilize POST Request [cloudstack-go]

2025-04-23 Thread via GitHub
sureshanaparti commented on code in PR #107: URL: https://github.com/apache/cloudstack-go/pull/107#discussion_r2056115362 ## cloudstack/QuotaService.go: ## @@ -1449,7 +1449,7 @@ func (s *QuotaService) NewQuotaTariffListParams() *QuotaTariffListParams { // Lists all quota tar

Re: [PR] Modify State Changing Requests to Utilize POST Request [cloudstack-go]

2025-04-23 Thread via GitHub
sureshanaparti commented on code in PR #107: URL: https://github.com/apache/cloudstack-go/pull/107#discussion_r2056112815 ## cloudstack/QuotaService.go: ## @@ -598,7 +598,7 @@ func (s *QuotaService) NewQuotaStatementParams(account string, domainid string, // Create a quota s

Re: [PR] Modify State Changing Requests to Utilize POST Request [cloudstack-go]

2025-04-23 Thread via GitHub
sureshanaparti commented on code in PR #107: URL: https://github.com/apache/cloudstack-go/pull/107#discussion_r2056111744 ## cloudstack/QuotaService.go: ## @@ -408,7 +408,7 @@ func (s *QuotaService) NewQuotaIsEnabledParams() *QuotaIsEnabledParams { // Return true if the plug

Re: [PR] Modify State Changing Requests to Utilize POST Request [cloudstack-go]

2025-04-23 Thread via GitHub
sureshanaparti commented on code in PR #107: URL: https://github.com/apache/cloudstack-go/pull/107#discussion_r2056084151 ## cloudstack/ManagementService.go: ## @@ -804,7 +804,7 @@ func (s *ManagementService) NewReadyForShutdownParams() *ReadyForShutdownParams // Returns the

Re: [PR] Modify State Changing Requests to Utilize POST Request [cloudstack-go]

2025-04-23 Thread via GitHub
sureshanaparti commented on code in PR #107: URL: https://github.com/apache/cloudstack-go/pull/107#discussion_r2056077237 ## cloudstack/CloudianService.go: ## @@ -51,7 +51,7 @@ func (s *CloudianService) NewCloudianIsEnabledParams() *CloudianIsEnabledParams // Checks if the C

Re: [PR] Modify State Changing Requests to Utilize POST Request [cloudstack-go]

2025-04-23 Thread via GitHub
sureshanaparti commented on code in PR #107: URL: https://github.com/apache/cloudstack-go/pull/107#discussion_r2056053999 ## cloudstack/AccountService.go: ## @@ -1104,7 +1104,7 @@ func (s *AccountService) NewIsAccountAllowedToCreateOfferingsWithTagsParams() *I // Return true

Re: [PR] Modify State Changing Requests to Utilize POST Request [cloudstack-go]

2025-04-16 Thread via GitHub
kevin-lii commented on code in PR #107: URL: https://github.com/apache/cloudstack-go/pull/107#discussion_r2047779261 ## generate/generate.go: ## @@ -560,7 +560,7 @@ func (as *allServices) GeneralCode() ([]byte, error) { pn("// Execute the request against a CS API. Will r

Re: [PR] Modify State Changing Requests to Utilize POST Request [cloudstack-go]

2025-04-16 Thread via GitHub
rohityadavcloud commented on code in PR #107: URL: https://github.com/apache/cloudstack-go/pull/107#discussion_r2046235561 ## generate/generate.go: ## @@ -560,7 +560,7 @@ func (as *allServices) GeneralCode() ([]byte, error) { pn("// Execute the request against a CS API.