Jump to: navigation, search

Difference between revisions of "Designate/Blueprints/Server Pools/DNS Notify"

(Blanked the page)
 
Line 1: Line 1:
 +
== Overview ==
  
 +
{| class="wikitable"
 +
|-
 +
! Gerrit Patch || []
 +
|-
 +
! Launchpad Blueprint || []
 +
|}
 +
 +
=== Summary ===
 +
 +
Quick overview of the change
 +
 +
== API Changes ==
 +
 +
List of changes to the HTTP API
 +
 +
=== One Per Change ===
 +
{| class="wikitable"
 +
|-
 +
! Verb !! Resource !! Description
 +
|-
 +
| GET || /resource || Description of call
 +
|-
 +
| GET || /resource/{id} || Description of call
 +
|}
 +
 +
==== Example of Call (HTTP Verb) ====
 +
 +
Overview of call
 +
 +
'''Response'''
 +
    {
 +
        “data”: [
 +
            {
 +
                "more":"data"
 +
            }
 +
          ]
 +
    }
 +
 +
== Database Changes ==
 +
Description of Changes to DB schemas
 +
 +
eg -
 +
 +
{| class="wikitable"
 +
|-
 +
! Name!! Data Type !! Length !! Nullable!! Details
 +
|-
 +
| id || VARCHAR || 36 || False || Primary Key, Generated UUID
 +
|-
 +
| name || VARCHAR || 255 || False || Domain name to be blacklisted
 +
|-
 +
| version || INTEGER || - || False || Designate API version
 +
|-
 +
| created_at || DATETIME ||  -  || False || UTC time of creation
 +
|-
 +
| updated_at || DATETIME || - ||True || UTC time of creation
 +
|-
 +
| description || VARCHAR || 160 || True || UTF-8 text field
 +
|}

Latest revision as of 15:07, 17 February 2014

Overview

Gerrit Patch []
Launchpad Blueprint []

Summary

Quick overview of the change

API Changes

List of changes to the HTTP API

One Per Change

Verb Resource Description
GET /resource Description of call
GET /resource/{id} Description of call

Example of Call (HTTP Verb)

Overview of call

Response

   {
       “data”: [
           {
               "more":"data"
           }
         ]
   }

Database Changes

Description of Changes to DB schemas

eg -

Name Data Type Length Nullable Details
id VARCHAR 36 False Primary Key, Generated UUID
name VARCHAR 255 False Domain name to be blacklisted
version INTEGER - False Designate API version
created_at DATETIME - False UTC time of creation
updated_at DATETIME - True UTC time of creation
description VARCHAR 160 True UTF-8 text field