mitchell852 commented on a change in pull request #2029: [Issue 1907] TO API for backup edge cachegroup URL: https://github.com/apache/incubator-trafficcontrol/pull/2029#discussion_r184151465
########## File path: docs/source/development/traffic_ops_api/v12/cachegroup_fallbacks.rst ########## @@ -0,0 +1,209 @@ +.. +.. +.. Licensed 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. +.. + +.. _to-api-v12-cachegroupfallbacks: + +Cache Group Fallback +==================== + +.. _to-api-v12-cachegroupfallbacks-route: + +/api/1.2/cachegroup_fallbacks +++++++++++++++++++++++++++++++ + +**GET /api/1.2/cachegroup_fallbacks** + + Retrieve fallback related configurations for a cache group. + + Authentication Required: Yes + + Role(s) Required: None + + **Request Query Parameters** + + Query parameter is mandatory. Either one of the parameters must be used. Both cant be used simultaneously. + + +-----------------+---------------------------------------------------------------------------+ + | Name | Description | + +=================+===========================================================================+ + | cacheGroupId | The id of the cache group whose backup configurations has to be retrieved | + +-----------------+---------------------------------------------------------------------------+ + | fallbackId | The id of the fallback cache group associated with a cache group | + +-----------------+---------------------------------------------------------------------------+ + + **Response Properties** + + +-----------------------------------+--------+--------------------------------------------------------------------------+ + | Parameter | Type | Description | + +===================================+========+==========================================================================+ + | | array | parameters array | + +-----------------------------------+--------+--------------------------------------------------------------------------+ + | ``>cacheGroupId`` | int | Cache group id | + +-----------------------------------+--------+--------------------------------------------------------------------------+ + | ``>fallbackId`` | int | fallback cache group id | + +-----------------------------------+--------+--------------------------------------------------------------------------+ + | ``>cacheGroupName`` | string | Cache group name | + +-----------------------------------+--------+--------------------------------------------------------------------------+ + | ``>fallbackName`` | string | Fallback cache group name | + +-----------------------------------+--------+--------------------------------------------------------------------------+ + | ``>fallbackOrder`` | int | Ordering list in the list of backups | + +-----------------------------------+--------+--------------------------------------------------------------------------+ + + **Response Example** :: + + { + "response": [ + { + "cacheGroupId":1, + "cacheGroupName":"GROUP1", + "fallbackId":2, + "fallbackOrder":10, + "fallbackName":"GROUP2" + } + ] + } + +| + +**POST /api/1.2/cachegroup_fallbacks** + + Creates/ Updates fallback list for the cache group. Review comment: Can you add a little more detail here. How does this work exactly? Send in an array to the POST. for each item in the array, if doesn't exist, create it. if exists, update it? ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
