Skip to content

Commit

Permalink
fix(service_integration_endpoint): user_config is required
Browse files Browse the repository at this point in the history
  • Loading branch information
byashimov committed Mar 14, 2024
1 parent a27065a commit 9149f82
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions service_integration_endpoint.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ type (
CreateServiceIntegrationEndpointRequest struct {
EndpointName string `json:"endpoint_name"`
EndpointType string `json:"endpoint_type"`
UserConfig map[string]interface{} `json:"user_config,omitempty"`
UserConfig map[string]interface{} `json:"user_config"`
}

// UpdateServiceIntegrationEndpointRequest are the parameters to update
// a Service Integration Endpoint.
UpdateServiceIntegrationEndpointRequest struct {
UserConfig map[string]interface{} `json:"user_config,omitempty"`
UserConfig map[string]interface{} `json:"user_config"`
}

// ServiceIntegrationEndpointResponse represents the response from Aiven
Expand Down

0 comments on commit 9149f82

Please sign in to comment.