From 254add2dc91c8c4020aa8859e6c395eb73f65ae5 Mon Sep 17 00:00:00 2001 From: Shawn Neal Date: Thu, 5 Jan 2023 18:43:25 -0800 Subject: [PATCH] Add missing user provided service URLs --- resource/service_instance.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/resource/service_instance.go b/resource/service_instance.go index b304bfd1..55840fd2 100644 --- a/resource/service_instance.go +++ b/resource/service_instance.go @@ -26,6 +26,12 @@ type ServiceInstance struct { // The URL to the service instance dashboard (or null if there is none); only shown when type is managed DashboardURL *string `json:"dashboard_url,omitempty"` + + // The URL to the syslog drain (or null if there is none); only shown when type is user provided + SyslogDrainURL *string `json:"syslog_drain_url,omitempty"` + + // The URL to the route service (or null if there is none); only shown when type is user provided + RouteServiceURL *string `json:"route_service_url,omitempty"` } type ServiceInstanceCreate struct {