You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficcontrol.apache.org by da...@apache.org on 2016/12/16 21:16:20 UTC

[23/50] incubator-trafficcontrol git commit: add cdnId, typeId, and profileId to DeliveryService struct

add cdnId, typeId, and profileId to DeliveryService struct


Project: http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/commit/5d446c49
Tree: http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/tree/5d446c49
Diff: http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/diff/5d446c49

Branch: refs/heads/postgres
Commit: 5d446c49cdd42f42def1319b1478b9eb00230783
Parents: 3af40c0
Author: David Neuman <da...@gmail.com>
Authored: Wed Nov 30 08:45:01 2016 -0700
Committer: Dan Kirkwood <da...@gmail.com>
Committed: Fri Dec 16 14:10:45 2016 -0700

----------------------------------------------------------------------
 traffic_ops/client/delivery_service_resources.go | 3 +++
 1 file changed, 3 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/blob/5d446c49/traffic_ops/client/delivery_service_resources.go
----------------------------------------------------------------------
diff --git a/traffic_ops/client/delivery_service_resources.go b/traffic_ops/client/delivery_service_resources.go
index 8d53d53..186c137 100644
--- a/traffic_ops/client/delivery_service_resources.go
+++ b/traffic_ops/client/delivery_service_resources.go
@@ -54,10 +54,13 @@ type DeliveryService struct {
 	DNSBypassCname       string                 `json:"dnsBypassCname"`
 	DNSBypassTTL         int                    `json:"dnsBypassTtl"`
 	OrgServerFQDN        string                 `json:"orgServerFqdn"`
+	TypeID               int                    `json:"typeId"`
 	Type                 string                 `json:"type"`
+	ProfileID            int                    `json:"profileId"`
 	ProfileName          string                 `json:"profileName"`
 	ProfileDesc          string                 `json:"profileDescription"`
 	CDNName              string                 `json:"cdnName"`
+	CDNID                int                    `json:"cdnId"`
 	CCRDNSTTL            int                    `json:"ccrDnsTtl"`
 	GlobalMaxMBPS        int                    `json:"globalMaxMbps"`
 	GlobalMaxTPS         int                    `json:"globalMaxTps"`