saffronjam opened a new issue, #55:
URL: https://github.com/apache/cloudstack-go/issues/55

   ```
   type GetKubernetesClusterConfigResponse struct {
        Configdata string `json:"configdata"`
        Id         string `json:"id"`
        JobID      string `json:"jobid"`
        Jobstatus  int    `json:"jobstatus"`
        Name       string `json:"name"`
   }
   ```
   
   Should be:
   ```
   type GetKubernetesClusterConfigResponse struct {
        ClusterConfig struct {
                Configdata string `json:"configdata"`
                Id         string `json:"id"`
                JobID      string `json:"jobid"`
                Jobstatus  int    `json:"jobstatus"`
                Name       string `json:"name"`
        } `json:"clusterconfig"`
   }
   ``` 
   
   Since the response is this (showing only the start since that is the only 
relevant part):
   
![image](https://user-images.githubusercontent.com/26722370/230050671-f4195177-1a6c-4f55-a5fb-83680bef4563.png)
   
   
   CloudStack version: 4.18


-- 
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...@cloudstack.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to