This repository was archived by the owner on Nov 24, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 355
Included docs for POST,PUT,DELETE for v3,v4,v5 of statuses and statusesID #7588
Merged
Merged
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
863e7e9
Included docs for POST,PUT,DELETE for v3,v4,v5 of statuses and status…
heneriknguyen 6cb45ba
Added CHANGELOG description for changes made
heneriknguyen 32bec85
Updated branch for CHANGELOG
heneriknguyen 378b37c
Fixed merge changes in CHANGELOG
heneriknguyen 39eed63
Fixed tables within statuses_id for v4 & v5
heneriknguyen c43e427
Fixed docs structure for v4 and v5. Also added statuses_id for v3 and…
heneriknguyen 1fe5640
Merge branch 'master' of https://github.com/apache/trafficcontrol int…
heneriknguyen 210bf4b
Fixed response type for DELETE (v3,v4,v5) in statuses_id, and include…
heneriknguyen 776cdc6
Merge branch 'master' of https://github.com/apache/trafficcontrol int…
heneriknguyen 5b454b7
Delete extra new line in statuses v5
heneriknguyen a263376
Fixed white space and formatting of statuses and statuses_id (v3,v4,v5)
heneriknguyen File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,216 @@ | ||
| .. | ||
| .. | ||
| .. 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-v3-statuses-id: | ||
|
|
||
| ******************* | ||
| ``statuses/{{ID}}`` | ||
| ******************* | ||
|
|
||
| ``GET`` | ||
| ======= | ||
| Retrieves a list of all server :term:`Statuses`. | ||
|
|
||
| :Auth. Required: Yes | ||
| :Roles Required: None | ||
| :Permissions Required: STATUS:READ | ||
| :Response Type: Array | ||
|
|
||
| Request Structure | ||
| ----------------- | ||
| .. table:: Request Query Parameters | ||
|
|
||
| +-------------+----------+------------------------------------------------------------------------------------------------------+ | ||
| | Name | Required | Description | | ||
| +=============+==========+======================================================================================================+ | ||
| | description | no | Return only :term:`Statuses` with this *exact* description | | ||
| +-------------+----------+------------------------------------------------------------------------------------------------------+ | ||
| | id | no | Return only the :term:`Status` with this integral, unique identifier | | ||
| +-------------+----------+------------------------------------------------------------------------------------------------------+ | ||
| | name | no | Return only :term:`Statuses` with this name | | ||
| +-------------+----------+------------------------------------------------------------------------------------------------------+ | ||
| | orderby | no | Choose the ordering of the results - must be the name of one | | ||
| | | | of the fields of the objects in the ``response`` array | | ||
| +-------------+----------+------------------------------------------------------------------------------------------------------+ | ||
| | sortOrder | no | Changes the order of sorting. Either ascending (default or "asc") or | | ||
| | | | descending ("desc") | | ||
| +-------------+----------+------------------------------------------------------------------------------------------------------+ | ||
| | limit | no | Choose the maximum number of results to return | | ||
| +-------------+----------+------------------------------------------------------------------------------------------------------+ | ||
| | offset | no | The number of results to skip before beginning to return results. Must use in conjunction with limit | | ||
| +-------------+----------+------------------------------------------------------------------------------------------------------+ | ||
| | page | no | Return the n\ :sup:`th` page of results, where "n" is the value of this parameter, pages are | | ||
| | | | ``limit`` long and the first page is 1. If ``offset`` was defined, this query parameter has no | | ||
| | | | effect. ``limit`` must be defined to make use of ``page``. | | ||
| +-------------+----------+------------------------------------------------------------------------------------------------------+ | ||
|
|
||
| .. code-block:: http | ||
| :caption: Request Example | ||
|
|
||
| GET /api/3.0/statuses/3 HTTP/1.1 | ||
| Host: trafficops.infra.ciab.test | ||
| User-Agent: curl/7.47.0 | ||
| Accept: */* | ||
| Cookie: mojolicious=... | ||
|
|
||
| Response Structure | ||
| ------------------ | ||
| :description: A short description of the status | ||
| :id: The integral, unique identifier of this status | ||
| :lastUpdated: The date and time at which this status was last modified, in :ref:`non-rfc-datetime` | ||
| :name: The name of the status | ||
|
|
||
| .. code-block:: http | ||
| :caption: Response Example | ||
|
|
||
| HTTP/1.1 200 OK | ||
| Access-Control-Allow-Credentials: true | ||
| Access-Control-Allow-Headers: Origin, X-Requested-With, Content-Type, Accept, Set-Cookie, Cookie | ||
| Access-Control-Allow-Methods: POST,GET,OPTIONS,PUT,DELETE | ||
| Access-Control-Allow-Origin: * | ||
| Content-Type: application/json | ||
| Set-Cookie: mojolicious=...; Path=/; Expires=Mon, 18 Nov 2019 17:40:54 GMT; Max-Age=3600; HttpOnly | ||
| Whole-Content-Sha512: dHNip9kpTGGS1w39/fWcFehNktgmXZus8XaufnmDpv0PyG/3fK/KfoCO3ZOj9V74/CCffps7doEygWeL/xRtKA== | ||
| X-Server-Name: traffic_ops_golang/ | ||
| Date: Mon, 10 Dec 2018 20:56:59 GMT | ||
| Content-Length: 150 | ||
|
|
||
| { "response": [ | ||
| { | ||
| "description": "Server is online and reported in the health protocol.", | ||
| "id": 3, | ||
| "lastUpdated": "2018-12-10 19:11:17+00", | ||
| "name": "REPORTED" | ||
| } | ||
| ]} | ||
|
|
||
| ``PUT`` | ||
| ======= | ||
| Updates a :term:`Status`. | ||
|
|
||
| :Auth. Required: Yes | ||
| :Roles Required: "admin" or "operations" | ||
| :Permissions Required: STATUS:UPDATE, STATUS:READ | ||
| :Response Type: Array | ||
|
|
||
| Request Structure | ||
| ----------------- | ||
| :description: The description of the updated :term:`Status` | ||
| :name: The name of the updated :term:`Status` | ||
|
|
||
| .. code-block:: http | ||
| :caption: Request Example | ||
|
|
||
| PUT /api/3.0/statuses/29 HTTP/1.1 | ||
| Host: trafficops.infra.ciab.test | ||
| User-Agent: curl/8.1.2 | ||
| Accept: */* | ||
| Cookie: mojolicious=... | ||
|
|
||
| { "description": "test", "name": "example" } | ||
|
|
||
| Response Structure | ||
| ------------------ | ||
| :description: A short description of the status | ||
| :id: The integral, unique identifier of the desired :abbr:`Status`-to-:term:`Cache Group` association | ||
| :lastUpdated: The time and date this server entry was last updated in :ref:`non-rfc-datetime` | ||
| :name: The name of the status | ||
|
|
||
| .. code-block:: http | ||
| :caption: Response Example | ||
|
|
||
| HTTP/1.1 200 OK | ||
| Access-Control-Allow-Credentials: true | ||
| Access-Control-Allow-Headers: Origin, X-Requested-With, Content-Type, Accept, Set-Cookie, Cookie | ||
| Access-Control-Allow-Methods: POST,GET,OPTIONS,PUT,DELETE | ||
| Access-Control-Allow-Origin: * | ||
| Content-Type: application/json | ||
| Set-Cookie: mojolicious=...; Path=/; Expires=Tue, 20 Jun 2023 23:00:16 GMT; Max-Age=3600; HttpOnly | ||
| Whole-Content-Sha512: FuS3TkVosxHtpxRGMJ2on+WnFdYTNSPjxz/Gh1iT4UCJ2/P0twUbAGQ3tTx9EfGiAzg9CNQiVUFGnYjJZ6NCpg== | ||
| X-Server-Name: traffic_ops_golang/ | ||
| Date: Tue, 20 Feb 2023 21:51:55 GMT | ||
| Content-Length: 46 | ||
|
|
||
| { | ||
| "alerts": [ | ||
| { | ||
| "text": "status was updated.", | ||
| "level": "success" | ||
| } | ||
| ], | ||
| "response": { | ||
| "description": "test", | ||
| "id": 29, | ||
| "lastUpdated": "2023-06-20 16:05:16-06" | ||
| "name": "example" | ||
| } | ||
| } | ||
|
|
||
| ``DELETE`` | ||
| ========== | ||
| Deletes a :term:`Status`. | ||
|
|
||
| :Auth. Required: Yes | ||
| :Roles Required: "admin" or "operations" | ||
| :Permissions Required: STATUS:DELETE, STATUS:READ | ||
| :Response Type: Object | ||
|
|
||
| Request Structure | ||
| ----------------- | ||
| .. table:: Request Path Parameters | ||
|
|
||
| +------+----------+---------------------------------------------------------------------------------------------+ | ||
| | Name | Required | Description | | ||
| +======+==========+=============================================================================================+ | ||
| | id | yes | The integral, unique identifier of the desired :abbr:`Status`-to-:term:`Server` association | | ||
| +------+----------+---------------------------------------------------------------------------------------------+ | ||
|
|
||
| .. code-block:: http | ||
| :caption: Request Example | ||
|
|
||
| DELETE /api/3.0/statuses/18 HTTP/1.1 | ||
| User-Agent: curl/8.1.2 | ||
| Accept-Encoding: gzip, deflate | ||
| Accept: */* | ||
| Connection: keep-alive | ||
| Cookie: mojolicious=... | ||
| Content-Length: 0 | ||
|
|
||
| Response Structure | ||
| ------------------ | ||
| .. code-block:: http | ||
| :caption: Response Example | ||
|
|
||
| HTTP/1.1 200 OK | ||
| Access-Control-Allow-Credentials: true | ||
| Access-Control-Allow-Headers: Origin, X-Requested-With, Content-Type, Accept, Set-Cookie, Cookie | ||
| Access-Control-Allow-Methods: POST,GET,OPTIONS,PUT,DELETE | ||
| Access-Control-Allow-Origin: * | ||
| Content-Encoding: gzip | ||
| Content-Type: application/json | ||
| Set-Cookie: mojolicious=...; Path=/; Expires=Thu, 15 Jun 2023 22:37:37 GMT; Max-Age=3600; HttpOnly | ||
| Whole-Content-Sha512: T8wtKKwyOKKVwDwoNCNvETllsByDiEe4CrpeS7Zdox+rXMgPb3FBlKmmgu4CpxbWdhpiODKqKn+gsSq5K4yvIQ== | ||
| X-Server-Name: traffic_ops_golang/ | ||
| Date: Thu, 15 Jun 2023 21:41:18 GMT | ||
| Content-Length: 62 | ||
|
|
||
| { | ||
| "alerts": [ | ||
| { | ||
| "text": "status was deleted.", | ||
| "level": "success" | ||
| } | ||
| ] | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.