JIRA

JIRA

/api/jira/

A filter backend that uses django-filter. Supported actions and methods:

/api/jira/

Methods: GET, POST

Supported fields for creation:

  • namestring
  • project – link to /api/projects/<uuid>/
  • customerlink to /api/customers/<uuid>/
  • settingslink to /api/service-settings/<uuid>/
  • backend_url – URL (JIRA host (e.g. https://jira.example.com/))
  • username – string (JIRA user with excessive privileges)
  • password – string
  • available_for_all – boolean (Service will be automatically added to all customers projects if it is available for all)
  • scope – link to any: /api/jira-projects/<uuid>/ (VM that contains service)

Filter fields:

  • ?customer = UUIDFilter
  • ?name = string
  • ?settings = link
  • ?project_uuid = UUIDFilter
  • ?project = link
  • ?tag = ModelMultipleChoiceField
  • ?rtag = ModelMultipleChoiceField
  • ?shared = boolean
  • ?type = ServiceTypeFilter

To list all services without regard to its type, run GET against /api/services/ as an authenticated user.

To list services of specific type issue GET to specific endpoint from a list above as a customer owner. Individual endpoint used for every service type.

To create a service, issue a POST to specific endpoint from a list above as a customer owner. Individual endpoint used for every service type.

You can create service based on shared service settings. Example:

POST /api/digitalocean/ HTTP/1.1
Content-Type: application/json
Accept: application/json
Authorization: Token c84d653b9ec92c6cbac41c706593e66f567a7fa4
Host: example.com

{
    "name": "Common DigitalOcean",
    "customer": "http://example.com/api/customers/1040561ca9e046d2b74268600c7e1105/",
    "settings": "http://example.com/api/service-settings/93ba615d6111466ebe3f792669059cb4/"
}

Or provide your own credentials. Example:

POST /api/oracle/ HTTP/1.1
Content-Type: application/json
Accept: application/json
Authorization: Token c84d653b9ec92c6cbac41c706593e66f567a7fa4
Host: example.com

{
    "name": "My Oracle",
    "customer": "http://example.com/api/customers/1040561ca9e046d2b74268600c7e1105/",
    "backend_url": "https://oracle.example.com:7802/em",
    "username": "admin",
    "password": "secret"
}

/api/jira/<uuid>/

Methods: GET, PUT, PATCH, DELETE

Supported fields for update:

  • namestring
  • available_for_all – boolean (Service will be automatically added to all customers projects if it is available for all)

/api/jira/<uuid>/link/

Methods: GET, POST

To get a list of resources available for import, run GET against /<service_endpoint>/link/ as an authenticated user. Optionally project_uuid parameter can be supplied for services requiring it like OpenStack.

To import (link with NodeConductor) resource issue POST against the same endpoint with resource id.

POST /api/openstack/08039f01c9794efc912f1689f4530cf0/link/ HTTP/1.1
Content-Type: application/json
Accept: application/json
Authorization: Token c84d653b9ec92c6cbac41c706593e66f567a7fa4
Host: example.com

{
    "backend_id": "bd5ec24d-9164-440b-a9f2-1b3c807c5df3",
    "project": "http://example.com/api/projects/e5f973af2eb14d2d8c38d62bcbaccb33/"
}

/api/jira/<uuid>/managed_resources/

Methods: GET

/api/jira/<uuid>/unlink/

Methods: POST

Unlink all related resources, service project link and service itself.

/api/jira-webhook-receiver/

A filter backend that uses django-filter. Supported actions and methods:

/api/jira-webhook-receiver/

Methods: POST

Supported fields for creation:

  • webhookEventchoice('jira:issue_created', 'jira:issue_deleted', 'jira:issue_updated')
  • timestampUnixTimeField
  • changelog – JiraChangelogSerializer
  • comment – JiraCommentSerializer
  • issueJiraIssueSerializer
  • userJiraUserSerializer

/api/jira-projects/

SLA filter

Allows to filter or sort resources by actual_sla Default period is current year and month.

Example query parameters for filtering list of OpenStack instances:

/api/openstack-instances/?actual_sla=90&period=2016-02

Example query parameters for sorting list of OpenStack instances:

/api/openstack-instances/?o=actual_sla&period=2016-02

Monitoring filter

Filter and order resources by monitoring item. For example, given query dictionary

{
    'monitoring__installation_state': True
}

it produces following query

{
    'monitoring_item__name': 'installation_state',
    'monitoring_item__value': True
}

Example query parameters for sorting list of OpenStack instances:

/api/openstack-instances/?o=monitoring__installation_state

Tags ordering. Filtering for complex tags.

Example:
?tag__license-os=centos7 - will filter objects with tag “license-os:centos7”.
Allow to define next parameters in view:
  • tags_filter_db_field - name of tags field in database. Default: tags.
  • tags_filter_request_field - name of tags in request. Default: tag.

In PostgreSQL NULL values come last with ascending sort order. In MySQL NULL values come first with ascending sort order. This filter provides unified sorting for both databases. Supported actions and methods:

/api/jira-projects/

Methods: GET, POST

Supported fields for creation:

  • namestring
  • description – string
  • service_project_linklink to /api/jira-service-project-link/<pk>/
  • keystring
  • impact_field – string
  • reporter_field – string
  • default_issue_type – string
  • available_for_all – boolean (Allow access to any user)

Filter fields:

  • ?available_for_all = boolean

/api/jira-projects/<uuid>/

Methods: GET, PUT, PATCH, DELETE

Supported fields for update:

  • namestring
  • description – string
  • impact_field – string
  • reporter_field – string
  • default_issue_type – string
  • available_for_all – boolean (Allow access to any user)

/api/jira-issues/

A filter backend that uses django-filter. Supported actions and methods:

/api/jira-issues/

Methods: GET, POST

Supported fields for creation:

  • user – link to /api/users/<uuid>/
  • projectlink to /api/jira-projects/<uuid>/
  • summarystring
  • description – string
  • prioritychoice('Critical', 'Major', 'Minor', 'n/a')
  • impactchoice('Large - Whole organization or all services are affected', 'Medium - One department or service is affected', 'Small - Partial loss of service, one person affected', 'n/a')

Filter fields:

  • ?status = string
  • ?description = string
  • ?project_key = string
  • ?summary = string
  • ?key = string
  • ?user_uuid = UUIDFilter

Order fields: created, updated

/api/jira-issues/<uuid>/

Methods: GET, PUT, PATCH, DELETE

Supported fields for update:

  • user – link to /api/users/<uuid>/
  • summarystring
  • description – string
  • prioritychoice('Critical', 'Major', 'Minor', 'n/a')
  • impactchoice('Large - Whole organization or all services are affected', 'Medium - One department or service is affected', 'Small - Partial loss of service, one person affected', 'n/a')

/api/jira-comments/

A filter backend that uses django-filter. Supported actions and methods:

/api/jira-comments/

Methods: GET, POST

Supported fields for creation:

  • issuelink to /api/jira-issues/<uuid>/
  • message – string

Filter fields:

  • ?issue_key = string
  • ?user_uuid = UUIDFilter
  • ?issue_uuid = UUIDFilter

/api/jira-comments/<uuid>/

Methods: GET, PUT, PATCH, DELETE

Supported fields for update:

  • message – string

/api/jira-attachments/

A filter backend that uses django-filter. Supported actions and methods:

/api/jira-attachments/

Methods: GET, POST

Supported fields for creation:

  • issuelink to /api/jira-issues/<uuid>/
  • filefile

Filter fields:

  • ?issue_key = string

/api/jira-attachments/<uuid>/

Methods: GET, PUT, PATCH, DELETE

Supported fields for update:

  • filefile