You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficcontrol.apache.org by mi...@apache.org on 2018/04/12 14:27:05 UTC

[incubator-trafficcontrol] branch master updated (5938416 -> 58637c5)

This is an automated email from the ASF dual-hosted git repository.

mitchell852 pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-trafficcontrol.git.


    from 5938416  added swaggerdocs for statuses
     new d59aaf1  created swaggerdocs for /regions
     new 58637c5  updated to use the tc.TimeNoMod type

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 lib/go-tc/v13/{divisions.go => regions.go}         |  36 +++--
 .../traffic_ops_golang/swaggerdocs/v13/regions.go  | 147 +++++++++++++++++++++
 2 files changed, 171 insertions(+), 12 deletions(-)
 copy lib/go-tc/v13/{divisions.go => regions.go} (63%)
 create mode 100644 traffic_ops/traffic_ops_golang/swaggerdocs/v13/regions.go

-- 
To stop receiving notification emails like this one, please contact
mitchell852@apache.org.

[incubator-trafficcontrol] 02/02: updated to use the tc.TimeNoMod type

Posted by mi...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

mitchell852 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-trafficcontrol.git

commit 58637c52cb85a40dca044c61b942563d3dd96d5b
Author: Dewayne Richardson <de...@apache.org>
AuthorDate: Tue Apr 10 12:58:27 2018 -0600

    updated to use the tc.TimeNoMod type
---
 lib/go-tc/v13/regions.go | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/lib/go-tc/v13/regions.go b/lib/go-tc/v13/regions.go
index 5449197..8b7cde3 100644
--- a/lib/go-tc/v13/regions.go
+++ b/lib/go-tc/v13/regions.go
@@ -1,5 +1,7 @@
 package v13
 
+import tc "github.com/apache/incubator-trafficcontrol/lib/go-tc"
+
 /*
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
@@ -53,7 +55,9 @@ type Region struct {
 	//
 	ID int `json:"id" db:"id"`
 
-	LastUpdated string `json:"lastUpdated" db:"last_updated"`
+	// LastUpdated
+	//
+	LastUpdated tc.TimeNoMod `json:"lastUpdated" db:"last_updated"`
 
 	// Region Name
 	//

-- 
To stop receiving notification emails like this one, please contact
mitchell852@apache.org.

[incubator-trafficcontrol] 01/02: created swaggerdocs for /regions

Posted by mi...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

mitchell852 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-trafficcontrol.git

commit d59aaf11e78bf46d859df2734135b1d105662b2f
Author: Dewayne Richardson <de...@apache.org>
AuthorDate: Tue Apr 10 12:29:04 2018 -0600

    created swaggerdocs for /regions
---
 lib/go-tc/v13/regions.go                           |  62 +++++++++
 .../traffic_ops_golang/swaggerdocs/v13/regions.go  | 147 +++++++++++++++++++++
 2 files changed, 209 insertions(+)

diff --git a/lib/go-tc/v13/regions.go b/lib/go-tc/v13/regions.go
new file mode 100644
index 0000000..5449197
--- /dev/null
+++ b/lib/go-tc/v13/regions.go
@@ -0,0 +1,62 @@
+package v13
+
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+// A List of Regions Response
+// swagger:response RegionsResponse
+// in: body
+type RegionsResponse struct {
+	// in: body
+	Response []Region `json:"response"`
+}
+
+// A Single Region Response for Update and Create to depict what changed
+// swagger:response RegionResponse
+// in: body
+type RegionResponse struct {
+	// in: body
+	Response Region `json:"response"`
+}
+
+type Region struct {
+
+	// The Region to retrieve
+
+	// DivisionName - Name of the Division associated to this Region
+	//
+	// required: true
+	DivisionName string `json:"divisionName"`
+
+	// DivisionName of the Division
+	//
+	// required: true
+	Division int `json:"division" db:"division"`
+
+	// Region ID
+	//
+	ID int `json:"id" db:"id"`
+
+	LastUpdated string `json:"lastUpdated" db:"last_updated"`
+
+	// Region Name
+	//
+	// required: true
+	Name string `json:"name" db:"name"`
+}
diff --git a/traffic_ops/traffic_ops_golang/swaggerdocs/v13/regions.go b/traffic_ops/traffic_ops_golang/swaggerdocs/v13/regions.go
new file mode 100644
index 0000000..f3cb335
--- /dev/null
+++ b/traffic_ops/traffic_ops_golang/swaggerdocs/v13/regions.go
@@ -0,0 +1,147 @@
+package v13
+
+import "github.com/apache/incubator-trafficcontrol/lib/go-tc/v13"
+
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+// Regions -  RegionsResponse to get the "response" top level key
+// swagger:response Regions
+// in: body
+type Regions struct {
+	// Region Response Body
+	// in: body
+	RegionsResponse v13.RegionsResponse `json:"response"`
+}
+
+// Region -  RegionResponse to get the "response" top level key
+// swagger:response Region
+// in: body
+type Region struct {
+	// Region Response Body
+	// in: body
+	RegionResponse v13.RegionResponse
+}
+
+// RegionQueryParams
+//
+// swagger:parameters GetRegions
+type RegionQueryParams struct {
+
+	// RegionsQueryParams
+
+	// Division ID that refers to this Region
+	//
+	Division string `json:"division"`
+
+	// Division Name that refers to this Region
+	//
+	DivisionName string `json:"divisionName"`
+
+	// Unique identifier for the Region
+	//
+	ID string `json:"id"`
+
+	//
+	//
+	Orderby string `json:"orderby"`
+}
+
+// swagger:parameters PostRegion
+type RegionPostParam struct {
+	// Region Request Body
+	//
+	// in: body
+	// required: true
+	Region v13.Region
+}
+
+// swagger:parameters GetRegionById DeleteRegion
+type RegionPathParams struct {
+
+	// Id associated to the Region
+	// in: path
+	ID int `json:"id"`
+}
+
+// PostRegion swagger:route POST /regions Region PostRegion
+//
+// Create a Region
+//
+// Responses:
+//          200: Alerts
+func PostRegion(entity RegionPostParam) (Region, Alerts) {
+	return Region{}, Alerts{}
+}
+
+// GetRegions swagger:route GET /regions Region GetRegions
+//
+// Retrieve a list of Regions
+//
+// Responses:
+//          200: Regions
+//          400: Alerts
+func GetRegions() (Regions, Alerts) {
+	return Regions{}, Alerts{}
+}
+
+// swagger:parameters PutRegion
+type RegionPutParam struct {
+
+	// ID
+	// in: path
+	ID int `json:"id"`
+
+	// Region Request Body
+	//
+	// in: body
+	// required: true
+	Region v13.Region
+}
+
+// PutRegion swagger:route PUT /regions/{id} Region PutRegion
+//
+// Update a Region
+//
+// Responses:
+//          200: Region
+func PutRegion(entity RegionPutParam) (Region, Alerts) {
+	return Region{}, Alerts{}
+}
+
+// GetRegionById swagger:route GET /regions/{id} Region GetRegionById
+//
+// Retrieve a specific Region
+//
+// Responses:
+//          200: Regions
+//          400: Alerts
+func GetRegionById() (Regions, Alerts) {
+	return Regions{}, Alerts{}
+}
+
+// DeleteRegion swagger:route DELETE /regions/{id} Region DeleteRegion
+//
+// Delete a Region
+//
+// Responses:
+//          200: Alerts
+func DeleteRegion(entityId int) Alerts {
+	return Alerts{}
+}

-- 
To stop receiving notification emails like this one, please contact
mitchell852@apache.org.