You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficcontrol.apache.org by gi...@apache.org on 2017/10/30 14:38:37 UTC

[2/2] incubator-trafficcontrol-website git commit: Update docs from commit f0bd87b02204cdb96e6cd7e7a1758df7cf23eace

Update docs from commit f0bd87b02204cdb96e6cd7e7a1758df7cf23eace


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

Branch: refs/heads/asf-site
Commit: 5677ef4c6f01b29b58084d70f7f82925b6faf186
Parents: f0c8ea0
Author: jenkins <bu...@apache.org>
Authored: Mon Oct 30 14:38:34 2017 +0000
Committer: jenkins <bu...@apache.org>
Committed: Mon Oct 30 14:38:34 2017 +0000

----------------------------------------------------------------------
 .../traffic_ops_api/v12/deliveryservice.rst.txt | 196 ++++++++++++++
 .../traffic_ops_api/v12/deliveryservice.html    | 262 +++++++++++++++++++
 .../development/traffic_ops_api/v12/hwinfo.html |   6 +-
 .../development/traffic_ops_api/v12/job.html    |   6 +-
 .../traffic_ops_api/v12/profile_parameter.html  |   2 +-
 docs/master/searchindex.js                      |   2 +-
 6 files changed, 466 insertions(+), 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol-website/blob/5677ef4c/docs/master/_sources/development/traffic_ops_api/v12/deliveryservice.rst.txt
----------------------------------------------------------------------
diff --git a/docs/master/_sources/development/traffic_ops_api/v12/deliveryservice.rst.txt b/docs/master/_sources/development/traffic_ops_api/v12/deliveryservice.rst.txt
index 2821712..00dbc85 100644
--- a/docs/master/_sources/development/traffic_ops_api/v12/deliveryservice.rst.txt
+++ b/docs/master/_sources/development/traffic_ops_api/v12/deliveryservice.rst.txt
@@ -3198,3 +3198,199 @@ URL Sig Keys
 
 |
 
+URI Signing Keys
+++++++++++++
+
+**DELETE /api/1.2/deliveryservices/:xml_id/urisignkeys
+
+  Deletes URISigning objects for a delivery service.
+
+  Authentication Required: Yes
+
+  Role(s) Required: admin
+
+  **Request Route Parameters**
+
+  +-----------+----------+----------------------------------------+
+  |    Name   | Required |              Description               |
+  +===========+==========+========================================+
+  | ``xml_id`` | yes      | xml_id of the desired delivery service |
+  +-----------+----------+----------------------------------------+
+
+**GET /api/1.2/deliveryservices/:xml_id/urisignkeys
+
+  Retrieves one or more URISigning objects for a delivery service.
+
+  Authentication Required: Yes
+
+  Role(s) Required: admin
+
+  **Request Route Parameters**
+
+  +-----------+----------+----------------------------------------+
+  |    Name   | Required |              Description               |
+  +===========+==========+========================================+
+  | ``xml_id`` | yes      | xml_id of the desired delivery service |
+  +-----------+----------+----------------------------------------+
+
+  **Response Properties**
+
+  +---------------------+--------+-----------------------------------------------------------------------------------------------------------------------------------------+
+  |    Parameter        |  Type  |                                                               Description                                                               |
+  +=====================+========+=========================================================================================================================================+
+  | ``Issuer``          | string | a string describing the issuer of the URI signing object. Multiple URISigning objects may be returned in a response, see example        |
+  +---------------------+--------+-----------------------------------------------------------------------------------------------------------------------------------------+
+  | ``renewal_kid``     | string | a string naming the jwt key used for renewals.                                                                                          |
+  +---------------------+--------+-----------------------------------------------------------------------------------------------------------------------------------------+
+  | ``keys``            | string | json array of jwt symmetric keys                                                             .                                          |
+  +---------------------+--------+-----------------------------------------------------------------------------------------------------------------------------------------+
+  | ``alg``             | string | this parameter repeats for each jwt key in the array and specifies the jwa encryption algorithm to use with this key, RFC 7518.         |
+  +---------------------+--------+-----------------------------------------------------------------------------------------------------------------------------------------+
+  | ``kid``             | string | this parameter repeats for each jwt key in the array and specifies the unique id for the key as defined in RFC 7516.                    |
+  +---------------------+--------+-----------------------------------------------------------------------------------------------------------------------------------------+
+  | ``kty``             | string | this parameter repeats for each jwt key in the array and specifies the key type as defined in RFC 7516.                                 |
+  +---------------------+--------+-----------------------------------------------------------------------------------------------------------------------------------------+
+  | ``k``               | string | this parameter repeats for each jwt key in the array and specifies the base64 encoded symmetric key see RFC 7516.                       |
+  +---------------------+--------+-----------------------------------------------------------------------------------------------------------------------------------------+
+
+  **Response Example** ::
+
+  {
+    "Kabletown URI Authority": {
+      "renewal_kid": "Second Key",
+      "keys": [
+        {
+          "alg": "HS256",
+          "kid": "First Key",
+          "kty": "oct",
+          "k": "Kh_RkUMj-fzbD37qBnDf_3e_RvQ3RP9PaSmVEpE24AM"
+        },
+        {
+          "alg": "HS256",
+          "kid": "Second Key",
+          "kty": "oct",
+          "k": "fZBpDBNbk2GqhwoB_DGBAsBxqQZVix04rIoLJ7p_RlE"
+        }
+      ]
+    }
+  }
+
+
+**POST /api/1.2/deliveryservices/:xml_id/urisignkeys
+
+  Assigns URISigning objects to a delivery service.
+
+  Authentication Required: Yes
+
+  Role(s) Required: admin
+
+  **Request Route Parameters**
+
+  +-----------+----------+----------------------------------------+
+  |    Name   | Required |              Description               |
+  +===========+==========+========================================+
+  | ``xml_id`` | yes      | xml_id of the desired delivery service |
+  +-----------+----------+----------------------------------------+
+
+  **Request Properties**
+
+  +---------------------+--------+-----------------------------------------------------------------------------------------------------------------------------------------+
+  |    Parameter        |  Type  |                                                               Description                                                               |
+  +=====================+========+=========================================================================================================================================+
+  | ``Issuer``          | string | a string describing the issuer of the URI signing object. Multiple URISigning objects may be returned in a response, see example        |
+  +---------------------+--------+-----------------------------------------------------------------------------------------------------------------------------------------+
+  | ``renewal_kid``     | string | a string naming the jwt key used for renewals.                                                                                          |
+  +---------------------+--------+-----------------------------------------------------------------------------------------------------------------------------------------+
+  | ``keys``            | string | json array of jwt symmetric keys                                                             .                                          |
+  +---------------------+--------+-----------------------------------------------------------------------------------------------------------------------------------------+
+  | ``alg``             | string | this parameter repeats for each jwt key in the array and specifies the jwa encryption algorithm to use with this key, RFC 7518.         |
+  +---------------------+--------+-----------------------------------------------------------------------------------------------------------------------------------------+
+  | ``kid``             | string | this parameter repeats for each jwt key in the array and specifies the unique id for the key as defined in RFC 7516.                    |
+  +---------------------+--------+-----------------------------------------------------------------------------------------------------------------------------------------+
+  | ``kty``             | string | this parameter repeats for each jwt key in the array and specifies the key type as defined in RFC 7516.                                 |
+  +---------------------+--------+-----------------------------------------------------------------------------------------------------------------------------------------+
+  | ``k``               | string | this parameter repeats for each jwt key in the array and specifies the base64 encoded symmetric key see RFC 7516.                       |
+  +---------------------+--------+-----------------------------------------------------------------------------------------------------------------------------------------+
+
+  **Request Example** ::
+
+  {
+    "Kabletown URI Authority": {
+      "renewal_kid": "Second Key",
+      "keys": [
+        {
+          "alg": "HS256",
+          "kid": "First Key",
+          "kty": "oct",
+          "k": "Kh_RkUMj-fzbD37qBnDf_3e_RvQ3RP9PaSmVEpE24AM"
+        },
+        {
+          "alg": "HS256",
+          "kid": "Second Key",
+          "kty": "oct",
+          "k": "fZBpDBNbk2GqhwoB_DGBAsBxqQZVix04rIoLJ7p_RlE"
+        }
+      ]
+    }
+  }
+
+**PUT /api/1.2/deliveryservices/:xml_id/urisignkeys
+
+  updates URISigning objects on a delivery service.
+
+  Authentication Required: Yes
+
+  Role(s) Required: admin
+
+  **Request Route Parameters**
+
+  +-----------+----------+----------------------------------------+
+  |    Name   | Required |              Description               |
+  +===========+==========+========================================+
+  | ``xml_id`` | yes      | xml_id of the desired delivery service |
+  +-----------+----------+----------------------------------------+
+
+  **Request Properties**
+
+  +---------------------+--------+-----------------------------------------------------------------------------------------------------------------------------------------+
+  |    Parameter        |  Type  |                                                               Description                                                               |
+  +=====================+========+=========================================================================================================================================+
+  | ``Issuer``          | string | a string describing the issuer of the URI signing object. Multiple URISigning objects may be returned in a response, see example        |
+  +---------------------+--------+-----------------------------------------------------------------------------------------------------------------------------------------+
+  | ``renewal_kid``     | string | a string naming the jwt key used for renewals.                                                                                          |
+  +---------------------+--------+-----------------------------------------------------------------------------------------------------------------------------------------+
+  | ``keys``            | string | json array of jwt symmetric keys                                                             .                                          |
+  +---------------------+--------+-----------------------------------------------------------------------------------------------------------------------------------------+
+  | ``alg``             | string | this parameter repeats for each jwt key in the array and specifies the jwa encryption algorithm to use with this key, RFC 7518.         |
+  +---------------------+--------+-----------------------------------------------------------------------------------------------------------------------------------------+
+  | ``kid``             | string | this parameter repeats for each jwt key in the array and specifies the unique id for the key as defined in RFC 7516.                    |
+  +---------------------+--------+-----------------------------------------------------------------------------------------------------------------------------------------+
+  | ``kty``             | string | this parameter repeats for each jwt key in the array and specifies the key type as defined in RFC 7516.                                 |
+  +---------------------+--------+-----------------------------------------------------------------------------------------------------------------------------------------+
+  | ``k``               | string | this parameter repeats for each jwt key in the array and specifies the base64 encoded symmetric key see RFC 7516.                       |
+  +---------------------+--------+-----------------------------------------------------------------------------------------------------------------------------------------+
+
+  **Request Example** ::
+
+  {
+    "Kabletown URI Authority": {
+      "renewal_kid": "Second Key",
+      "keys": [
+        {
+          "alg": "HS256",
+          "kid": "First Key",
+          "kty": "oct",
+          "k": "Kh_RkUMj-fzbD37qBnDf_3e_RvQ3RP9PaSmVEpE24AM"
+        },
+        {
+          "alg": "HS256",
+          "kid": "Second Key",
+          "kty": "oct",
+          "k": "fZBpDBNbk2GqhwoB_DGBAsBxqQZVix04rIoLJ7p_RlE"
+        }
+      ]
+    }
+  }
+
+|
+

http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol-website/blob/5677ef4c/docs/master/development/traffic_ops_api/v12/deliveryservice.html
----------------------------------------------------------------------
diff --git a/docs/master/development/traffic_ops_api/v12/deliveryservice.html b/docs/master/development/traffic_ops_api/v12/deliveryservice.html
index 7c5efe4..80f3989 100644
--- a/docs/master/development/traffic_ops_api/v12/deliveryservice.html
+++ b/docs/master/development/traffic_ops_api/v12/deliveryservice.html
@@ -5169,6 +5169,268 @@ protocol (<a class="reference external" href="http://">http://</a> or <a class="
 <div class="line"><br /></div>
 </div>
 </div>
+<div class="section" id="uri-signing-keys">
+<h2>URI Signing Keys<a class="headerlink" href="#uri-signing-keys" title="Permalink to this headline">ΒΆ</a></h2>
+<p><a href="#id5"><span class="problematic" id="id6">**</span></a>DELETE /api/1.2/deliveryservices/:xml_id/urisignkeys</p>
+<blockquote>
+<div><p>Deletes URISigning objects for a delivery service.</p>
+<p>Authentication Required: Yes</p>
+<p>Role(s) Required: admin</p>
+<p><strong>Request Route Parameters</strong></p>
+</div></blockquote>
+<p><a href="#id7"><span class="problematic" id="id8">**</span></a>GET /api/1.2/deliveryservices/:xml_id/urisignkeys</p>
+<blockquote>
+<div><p>Retrieves one or more URISigning objects for a delivery service.</p>
+<p>Authentication Required: Yes</p>
+<p>Role(s) Required: admin</p>
+<p><strong>Request Route Parameters</strong></p>
+<p><strong>Response Properties</strong></p>
+<table border="1" class="docutils">
+<colgroup>
+<col width="13%" />
+<col width="5%" />
+<col width="83%" />
+</colgroup>
+<thead valign="bottom">
+<tr class="row-odd"><th class="head">Parameter</th>
+<th class="head">Type</th>
+<th class="head">Description</th>
+</tr>
+</thead>
+<tbody valign="top">
+<tr class="row-even"><td><code class="docutils literal"><span class="pre">Issuer</span></code></td>
+<td>string</td>
+<td>a string describing the issuer of the URI signing object. Multiple URISigning objects may be returned in a response, see example</td>
+</tr>
+<tr class="row-odd"><td><code class="docutils literal"><span class="pre">renewal_kid</span></code></td>
+<td>string</td>
+<td>a string naming the jwt key used for renewals.</td>
+</tr>
+<tr class="row-even"><td><code class="docutils literal"><span class="pre">keys</span></code></td>
+<td>string</td>
+<td>json array of jwt symmetric keys                                                             .</td>
+</tr>
+<tr class="row-odd"><td><code class="docutils literal"><span class="pre">alg</span></code></td>
+<td>string</td>
+<td>this parameter repeats for each jwt key in the array and specifies the jwa encryption algorithm to use with this key, RFC 7518.</td>
+</tr>
+<tr class="row-even"><td><code class="docutils literal"><span class="pre">kid</span></code></td>
+<td>string</td>
+<td>this parameter repeats for each jwt key in the array and specifies the unique id for the key as defined in RFC 7516.</td>
+</tr>
+<tr class="row-odd"><td><code class="docutils literal"><span class="pre">kty</span></code></td>
+<td>string</td>
+<td>this parameter repeats for each jwt key in the array and specifies the key type as defined in RFC 7516.</td>
+</tr>
+<tr class="row-even"><td><code class="docutils literal"><span class="pre">k</span></code></td>
+<td>string</td>
+<td>this parameter repeats for each jwt key in the array and specifies the base64 encoded symmetric key see RFC 7516.</td>
+</tr>
+</tbody>
+</table>
+<p><strong>Response Example</strong></p>
+<div class="highlight-default"><div class="highlight"><pre><span class="p">{</span>
+</pre></div>
+</div>
+<blockquote>
+<div><dl class="docutils">
+<dt>&#8220;Kabletown URI Authority&#8221;: {</dt>
+<dd><p class="first">&#8220;renewal_kid&#8221;: &#8220;Second Key&#8221;,
+&#8220;keys&#8221;: [</p>
+<blockquote>
+<div><dl class="docutils">
+<dt>{</dt>
+<dd>&#8220;alg&#8221;: &#8220;HS256&#8221;,
+&#8220;kid&#8221;: &#8220;First Key&#8221;,
+&#8220;kty&#8221;: &#8220;oct&#8221;,
+&#8220;k&#8221;: &#8220;Kh_RkUMj-fzbD37qBnDf_3e_RvQ3RP9PaSmVEpE24AM&#8221;</dd>
+</dl>
+<p>},
+{</p>
+<blockquote>
+<div>&#8220;alg&#8221;: &#8220;HS256&#8221;,
+&#8220;kid&#8221;: &#8220;Second Key&#8221;,
+&#8220;kty&#8221;: &#8220;oct&#8221;,
+&#8220;k&#8221;: &#8220;fZBpDBNbk2GqhwoB_DGBAsBxqQZVix04rIoLJ7p_RlE&#8221;</div></blockquote>
+<p>}</p>
+</div></blockquote>
+<p class="last">]</p>
+</dd>
+</dl>
+<p>}</p>
+</div></blockquote>
+<p>}</p>
+</div></blockquote>
+<p><a href="#id9"><span class="problematic" id="id10">**</span></a>POST /api/1.2/deliveryservices/:xml_id/urisignkeys</p>
+<blockquote>
+<div><p>Assigns URISigning objects to a delivery service.</p>
+<p>Authentication Required: Yes</p>
+<p>Role(s) Required: admin</p>
+<p><strong>Request Route Parameters</strong></p>
+<p><strong>Request Properties</strong></p>
+<table border="1" class="docutils">
+<colgroup>
+<col width="13%" />
+<col width="5%" />
+<col width="83%" />
+</colgroup>
+<thead valign="bottom">
+<tr class="row-odd"><th class="head">Parameter</th>
+<th class="head">Type</th>
+<th class="head">Description</th>
+</tr>
+</thead>
+<tbody valign="top">
+<tr class="row-even"><td><code class="docutils literal"><span class="pre">Issuer</span></code></td>
+<td>string</td>
+<td>a string describing the issuer of the URI signing object. Multiple URISigning objects may be returned in a response, see example</td>
+</tr>
+<tr class="row-odd"><td><code class="docutils literal"><span class="pre">renewal_kid</span></code></td>
+<td>string</td>
+<td>a string naming the jwt key used for renewals.</td>
+</tr>
+<tr class="row-even"><td><code class="docutils literal"><span class="pre">keys</span></code></td>
+<td>string</td>
+<td>json array of jwt symmetric keys                                                             .</td>
+</tr>
+<tr class="row-odd"><td><code class="docutils literal"><span class="pre">alg</span></code></td>
+<td>string</td>
+<td>this parameter repeats for each jwt key in the array and specifies the jwa encryption algorithm to use with this key, RFC 7518.</td>
+</tr>
+<tr class="row-even"><td><code class="docutils literal"><span class="pre">kid</span></code></td>
+<td>string</td>
+<td>this parameter repeats for each jwt key in the array and specifies the unique id for the key as defined in RFC 7516.</td>
+</tr>
+<tr class="row-odd"><td><code class="docutils literal"><span class="pre">kty</span></code></td>
+<td>string</td>
+<td>this parameter repeats for each jwt key in the array and specifies the key type as defined in RFC 7516.</td>
+</tr>
+<tr class="row-even"><td><code class="docutils literal"><span class="pre">k</span></code></td>
+<td>string</td>
+<td>this parameter repeats for each jwt key in the array and specifies the base64 encoded symmetric key see RFC 7516.</td>
+</tr>
+</tbody>
+</table>
+<p><strong>Request Example</strong></p>
+<div class="highlight-default"><div class="highlight"><pre><span class="p">{</span>
+</pre></div>
+</div>
+<blockquote>
+<div><dl class="docutils">
+<dt>&#8220;Kabletown URI Authority&#8221;: {</dt>
+<dd><p class="first">&#8220;renewal_kid&#8221;: &#8220;Second Key&#8221;,
+&#8220;keys&#8221;: [</p>
+<blockquote>
+<div><dl class="docutils">
+<dt>{</dt>
+<dd>&#8220;alg&#8221;: &#8220;HS256&#8221;,
+&#8220;kid&#8221;: &#8220;First Key&#8221;,
+&#8220;kty&#8221;: &#8220;oct&#8221;,
+&#8220;k&#8221;: &#8220;Kh_RkUMj-fzbD37qBnDf_3e_RvQ3RP9PaSmVEpE24AM&#8221;</dd>
+</dl>
+<p>},
+{</p>
+<blockquote>
+<div>&#8220;alg&#8221;: &#8220;HS256&#8221;,
+&#8220;kid&#8221;: &#8220;Second Key&#8221;,
+&#8220;kty&#8221;: &#8220;oct&#8221;,
+&#8220;k&#8221;: &#8220;fZBpDBNbk2GqhwoB_DGBAsBxqQZVix04rIoLJ7p_RlE&#8221;</div></blockquote>
+<p>}</p>
+</div></blockquote>
+<p class="last">]</p>
+</dd>
+</dl>
+<p>}</p>
+</div></blockquote>
+<p>}</p>
+</div></blockquote>
+<p><a href="#id11"><span class="problematic" id="id12">**</span></a>PUT /api/1.2/deliveryservices/:xml_id/urisignkeys</p>
+<blockquote>
+<div><p>updates URISigning objects on a delivery service.</p>
+<p>Authentication Required: Yes</p>
+<p>Role(s) Required: admin</p>
+<p><strong>Request Route Parameters</strong></p>
+<p><strong>Request Properties</strong></p>
+<table border="1" class="docutils">
+<colgroup>
+<col width="13%" />
+<col width="5%" />
+<col width="83%" />
+</colgroup>
+<thead valign="bottom">
+<tr class="row-odd"><th class="head">Parameter</th>
+<th class="head">Type</th>
+<th class="head">Description</th>
+</tr>
+</thead>
+<tbody valign="top">
+<tr class="row-even"><td><code class="docutils literal"><span class="pre">Issuer</span></code></td>
+<td>string</td>
+<td>a string describing the issuer of the URI signing object. Multiple URISigning objects may be returned in a response, see example</td>
+</tr>
+<tr class="row-odd"><td><code class="docutils literal"><span class="pre">renewal_kid</span></code></td>
+<td>string</td>
+<td>a string naming the jwt key used for renewals.</td>
+</tr>
+<tr class="row-even"><td><code class="docutils literal"><span class="pre">keys</span></code></td>
+<td>string</td>
+<td>json array of jwt symmetric keys                                                             .</td>
+</tr>
+<tr class="row-odd"><td><code class="docutils literal"><span class="pre">alg</span></code></td>
+<td>string</td>
+<td>this parameter repeats for each jwt key in the array and specifies the jwa encryption algorithm to use with this key, RFC 7518.</td>
+</tr>
+<tr class="row-even"><td><code class="docutils literal"><span class="pre">kid</span></code></td>
+<td>string</td>
+<td>this parameter repeats for each jwt key in the array and specifies the unique id for the key as defined in RFC 7516.</td>
+</tr>
+<tr class="row-odd"><td><code class="docutils literal"><span class="pre">kty</span></code></td>
+<td>string</td>
+<td>this parameter repeats for each jwt key in the array and specifies the key type as defined in RFC 7516.</td>
+</tr>
+<tr class="row-even"><td><code class="docutils literal"><span class="pre">k</span></code></td>
+<td>string</td>
+<td>this parameter repeats for each jwt key in the array and specifies the base64 encoded symmetric key see RFC 7516.</td>
+</tr>
+</tbody>
+</table>
+<p><strong>Request Example</strong></p>
+<div class="highlight-default"><div class="highlight"><pre><span class="p">{</span>
+</pre></div>
+</div>
+<blockquote>
+<div><dl class="docutils">
+<dt>&#8220;Kabletown URI Authority&#8221;: {</dt>
+<dd><p class="first">&#8220;renewal_kid&#8221;: &#8220;Second Key&#8221;,
+&#8220;keys&#8221;: [</p>
+<blockquote>
+<div><dl class="docutils">
+<dt>{</dt>
+<dd>&#8220;alg&#8221;: &#8220;HS256&#8221;,
+&#8220;kid&#8221;: &#8220;First Key&#8221;,
+&#8220;kty&#8221;: &#8220;oct&#8221;,
+&#8220;k&#8221;: &#8220;Kh_RkUMj-fzbD37qBnDf_3e_RvQ3RP9PaSmVEpE24AM&#8221;</dd>
+</dl>
+<p>},
+{</p>
+<blockquote>
+<div>&#8220;alg&#8221;: &#8220;HS256&#8221;,
+&#8220;kid&#8221;: &#8220;Second Key&#8221;,
+&#8220;kty&#8221;: &#8220;oct&#8221;,
+&#8220;k&#8221;: &#8220;fZBpDBNbk2GqhwoB_DGBAsBxqQZVix04rIoLJ7p_RlE&#8221;</div></blockquote>
+<p>}</p>
+</div></blockquote>
+<p class="last">]</p>
+</dd>
+</dl>
+<p>}</p>
+</div></blockquote>
+<p>}</p>
+</div></blockquote>
+<div class="line-block">
+<div class="line"><br /></div>
+</div>
+</div>
 </div>
 
 

http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol-website/blob/5677ef4c/docs/master/development/traffic_ops_api/v12/hwinfo.html
----------------------------------------------------------------------
diff --git a/docs/master/development/traffic_ops_api/v12/hwinfo.html b/docs/master/development/traffic_ops_api/v12/hwinfo.html
index ca2f774..ecf5592 100644
--- a/docs/master/development/traffic_ops_api/v12/hwinfo.html
+++ b/docs/master/development/traffic_ops_api/v12/hwinfo.html
@@ -40,7 +40,7 @@
         <link rel="search" title="Search" href="../../../search.html"/>
     <link rel="top" title="Traffic Control 2.1-dev documentation" href="../../../index.html"/>
         <link rel="up" title="Traffic Ops" href="../../traffic_ops.html"/>
-        <link rel="next" title="ISO" href="iso.html"/>
+        <link rel="next" title="Jobs" href="job.html"/>
         <link rel="prev" title="Federation" href="federation.html"/> 
 
   
@@ -187,7 +187,7 @@
  		  
     		  <div class="rst-footer-buttons" role="navigation" aria-label="footer navigation">
       		  
-        		  <a href="iso.html" class="btn btn-neutral float-right" title="ISO">Next <span class="fa fa-arrow-circle-right"></span></a>
+        		  <a href="job.html" class="btn btn-neutral float-right" title="Jobs">Next <span class="fa fa-arrow-circle-right"></span></a>
       		  
       		  
         		  <a href="federation.html" class="btn btn-neutral" title="Federation"><span class="fa fa-arrow-circle-left"></span> Previous</a>
@@ -272,7 +272,7 @@
   
     <div class="rst-footer-buttons" role="navigation" aria-label="footer navigation">
       
-        <a href="iso.html" class="btn btn-neutral float-right" title="ISO">Next <span class="fa fa-arrow-circle-right"></span></a>
+        <a href="job.html" class="btn btn-neutral float-right" title="Jobs">Next <span class="fa fa-arrow-circle-right"></span></a>
       
       
         <a href="federation.html" class="btn btn-neutral" title="Federation"><span class="fa fa-arrow-circle-left"></span> Previous</a>

http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol-website/blob/5677ef4c/docs/master/development/traffic_ops_api/v12/job.html
----------------------------------------------------------------------
diff --git a/docs/master/development/traffic_ops_api/v12/job.html b/docs/master/development/traffic_ops_api/v12/job.html
index 44f4eba..bc22987 100644
--- a/docs/master/development/traffic_ops_api/v12/job.html
+++ b/docs/master/development/traffic_ops_api/v12/job.html
@@ -41,7 +41,7 @@
     <link rel="top" title="Traffic Control 2.1-dev documentation" href="../../../index.html"/>
         <link rel="up" title="Traffic Ops" href="../../traffic_ops.html"/>
         <link rel="next" title="Parameter" href="parameter.html"/>
-        <link rel="prev" title="ISO" href="iso.html"/> 
+        <link rel="prev" title="Hardware Info" href="hwinfo.html"/> 
 
   
   <script src="_static/js/modernizr.min.js"></script>
@@ -190,7 +190,7 @@
         		  <a href="parameter.html" class="btn btn-neutral float-right" title="Parameter">Next <span class="fa fa-arrow-circle-right"></span></a>
       		  
       		  
-        		  <a href="iso.html" class="btn btn-neutral" title="ISO"><span class="fa fa-arrow-circle-left"></span> Previous</a>
+        		  <a href="hwinfo.html" class="btn btn-neutral" title="Hardware Info"><span class="fa fa-arrow-circle-left"></span> Previous</a>
       		  
     		  </div>
   		  
@@ -383,7 +383,7 @@
         <a href="parameter.html" class="btn btn-neutral float-right" title="Parameter">Next <span class="fa fa-arrow-circle-right"></span></a>
       
       
-        <a href="iso.html" class="btn btn-neutral" title="ISO"><span class="fa fa-arrow-circle-left"></span> Previous</a>
+        <a href="hwinfo.html" class="btn btn-neutral" title="Hardware Info"><span class="fa fa-arrow-circle-left"></span> Previous</a>
       
     </div>
   

http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol-website/blob/5677ef4c/docs/master/development/traffic_ops_api/v12/profile_parameter.html
----------------------------------------------------------------------
diff --git a/docs/master/development/traffic_ops_api/v12/profile_parameter.html b/docs/master/development/traffic_ops_api/v12/profile_parameter.html
index c0c751b..23f4942 100644
--- a/docs/master/development/traffic_ops_api/v12/profile_parameter.html
+++ b/docs/master/development/traffic_ops_api/v12/profile_parameter.html
@@ -114,7 +114,7 @@
 <li class="toctree-l2"><a class="reference internal" href="../../../admin/traffic_ops/using.html">Traffic Ops - Using</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../../../admin/traffic_ops/extensions.html">Managing Traffic Ops Extensions</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../../../admin/traffic_portal.html">Traffic Portal Administration</a></li>
-<li class="toctree-l2"><a class="reference internal" href="../../../admin/traffic_monitor.html">Traffic Monitor Administration (Legacy)</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../../admin/traffic_monitor.html">Traffic Monitor Administration</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../../../admin/traffic_monitor_golang.html">Traffic Monitor Administration</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../../../admin/traffic_router.html">Traffic Router Administration</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../../../admin/traffic_stats.html">Traffic Stats Administration</a></li>