SimpliVity security API

Includes the REST APIs that support security operations for HPE SimpliVity objects

Operations 8

GET /security/certificates Get all SSL certificates from the HPE SimpliVity trust store #
POST /security/certificates Add an SSL certificate to the HPE SimpliVity trust store #
POST /security/certificates/upload_der_encoded_certificate Add a DER encoded SSL certificate to the HPE SimpliVity trust store #
GET /security/certificates/{certId} Get an SSL certificate from the HPE SimpliVity trust store #
DELETE /security/certificates/{certId} Delete an SSL certificate in the HPE SimpliVity trust store #
GET /security/rbac/policies/role_assignments Get all HPE OmniStack role assignments #
POST /security/rbac/policies/role_assignments Add an HPE OmniStack role assignment #
POST /security/rbac/policies/role_assignments/remove Remove HPE OmniStack role assignments #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/simplivity-security-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

simplivity-security-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: "This API enables the programmatic management of key components of an HPE SimpliVity configuration.\n\nTo access the API, request an authentication token by issuing an authentication request in the following form, where the username/password combination is a set of valid management credentials for the applicable hypervisor environment:\n\n     curl -k https://simplivity@<host>/api/oauth/token -d grant_type=password -d username=<user> -d password=<pass>\n\nThen, you can pass in the resulting access_token returned in each HTTP header using Authorization: Bearer token. For example:\n\n     curl -H \"Authorization: Bearer 0a08c809-17ff-479f-b0a8-aedd4d8305a0\"\n\nThe access_token times out after 10 minutes of inactivity and expires after 24 hours.\n\nMake sure to use TLS version 1.2 or greater.\n\nThere are a wide range of possible return values.  Below is a list of the most common return values. \n\n    200 \"OK\" ⁃ This indicates that the request and action has completed with no issues.\n    201 \"Created\" ⁃ This indicates that the request has completed and a new resource has been created.\n    202 \"Accepted\" ⁃ This indicates that the request has been accepted for processing but the processing has not\n                     completed. This is a typical return when a task is generated.\n    400 \"Bad Request\" ⁃ The request cannot or will not be proccessed.  Usually due to a missing required parameter\n                        or invalid data in the parameter.\n    401 \"Unauthorized\" ⁃ The request has not been applied because it lacks authentication credentials for the\n                         target resource.\n    404 \"Not Found\" ⁃ The requested target doesn't exist or has been deleted.\n    405 \"Method Not Allowed\" ⁃ The method being requested is not valid for the target it is being performed on.\n    408 \"Request Timeout\" ⁃ The response took too long.\n    500 \"Internal Server Error\" ⁃ Indicates that the server encountered an unexpected condition that prevented it\n                                  from fulfilling the request.\n\n<a href=\"https://developer.hpe.com/platform/hpe-simplivity/home\" class=\"\toggleEndpointList\" data-id=\"errors\">Click here for a complete list of return codes and response formats</a>\n\n"
  version: '1.25'
  title: HPE OmniStack REST backups Security API
  contact:
    name: Hewlett Packard Enterprise
  license:
    name: HPE OmniStack REST API
servers:
- url: https://localhost
tags:
- name: security
  description: Includes the REST APIs that support security operations for HPE SimpliVity objects
paths:
  /security/certificates:
    get:
      tags:
      - security
      summary: Get all SSL certificates from the HPE SimpliVity trust store
      operationId: getCertificates
      responses:
        '200':
          description: OK
          content:
            application/vnd.simplivity.v1.19+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.23+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.9+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.18+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.13+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.16+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.24+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.14+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.11+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.17+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.21+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.22+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.10+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.8+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.15+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.25+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.12+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.20+json:
              schema:
                $ref: '#/components/schemas/certificate'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
    post:
      tags:
      - security
      summary: Add an SSL certificate to the HPE SimpliVity trust store
      operationId: addCertificate
      responses:
        '201':
          description: Created
          content:
            application/vnd.simplivity.v1.19+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.23+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.9+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.18+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.13+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.16+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.24+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.14+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.11+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.17+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.21+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.22+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.10+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.8+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.15+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.25+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.12+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.20+json:
              schema:
                $ref: '#/components/schemas/certificate'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
      requestBody:
        content:
          application/vnd.simplivity.v1.19+json:
            schema:
              $ref: '#/components/schemas/add_certificate'
          application/vnd.simplivity.v1.23+json:
            schema:
              $ref: '#/components/schemas/add_certificate'
          application/vnd.simplivity.v1.9+json:
            schema:
              $ref: '#/components/schemas/add_certificate'
          application/vnd.simplivity.v1.18+json:
            schema:
              $ref: '#/components/schemas/add_certificate'
          application/vnd.simplivity.v1.13+json:
            schema:
              $ref: '#/components/schemas/add_certificate'
          application/vnd.simplivity.v1.16+json:
            schema:
              $ref: '#/components/schemas/add_certificate'
          application/vnd.simplivity.v1.24+json:
            schema:
              $ref: '#/components/schemas/add_certificate'
          application/vnd.simplivity.v1.14+json:
            schema:
              $ref: '#/components/schemas/add_certificate'
          application/vnd.simplivity.v1.11+json:
            schema:
              $ref: '#/components/schemas/add_certificate'
          application/vnd.simplivity.v1.17+json:
            schema:
              $ref: '#/components/schemas/add_certificate'
          application/vnd.simplivity.v1.21+json:
            schema:
              $ref: '#/components/schemas/add_certificate'
          application/vnd.simplivity.v1.22+json:
            schema:
              $ref: '#/components/schemas/add_certificate'
          application/vnd.simplivity.v1.10+json:
            schema:
              $ref: '#/components/schemas/add_certificate'
          application/vnd.simplivity.v1.8+json:
            schema:
              $ref: '#/components/schemas/add_certificate'
          application/vnd.simplivity.v1.15+json:
            schema:
              $ref: '#/components/schemas/add_certificate'
          application/vnd.simplivity.v1.25+json:
            schema:
              $ref: '#/components/schemas/add_certificate'
          application/vnd.simplivity.v1.12+json:
            schema:
              $ref: '#/components/schemas/add_certificate'
          application/vnd.simplivity.v1.20+json:
            schema:
              $ref: '#/components/schemas/add_certificate'
        description: mo
        required: true
  /security/certificates/upload_der_encoded_certificate:
    post:
      tags:
      - security
      summary: Add a DER encoded SSL certificate to the HPE SimpliVity trust store
      operationId: addDEREncodedCertificate
      responses:
        '201':
          description: Created
          content:
            application/vnd.simplivity.v1.19+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.23+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.9+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.18+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.13+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.16+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.24+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.14+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.11+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.17+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.21+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.22+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.10+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.8+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.15+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.25+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.12+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.20+json:
              schema:
                $ref: '#/components/schemas/certificate'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
      requestBody:
        content:
          multipart/form-data:
            schema:
              type: object
              properties:
                certificate:
                  type: string
                  description: A DER encoded SSL certificate
                  format: binary
              required:
              - certificate
  /security/certificates/{certId}:
    get:
      tags:
      - security
      summary: Get an SSL certificate from the HPE SimpliVity trust store
      operationId: getCertificate
      parameters:
      - name: certId
        in: path
        description: The unique identifier (SHA-1 thumbprint) of the certificate that you want to retrieve
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/vnd.simplivity.v1.19+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.23+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.9+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.18+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.13+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.16+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.24+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.14+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.11+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.17+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.21+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.22+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.10+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.8+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.15+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.25+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.12+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.20+json:
              schema:
                $ref: '#/components/schemas/certificate'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
    delete:
      tags:
      - security
      summary: Delete an SSL certificate in the HPE SimpliVity trust store
      operationId: deleteCertificate
      parameters:
      - name: certId
        in: path
        description: The unique identifier (SHA-1 thumbprint) of the certificate that you want to delete
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/vnd.simplivity.v1.19+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.23+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.9+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.18+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.13+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.16+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.24+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.14+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.11+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.17+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.21+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.22+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.10+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.8+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.15+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.25+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.12+json:
              schema:
                $ref: '#/components/schemas/certificate'
            application/vnd.simplivity.v1.20+json:
              schema:
                $ref: '#/components/schemas/certificate'
        '204':
          description: No Content
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
  /security/rbac/policies/role_assignments:
    get:
      tags:
      - security
      summary: Get all HPE OmniStack role assignments
      operationId: getRoleAssignments
      responses:
        '200':
          description: OK
          content:
            application/vnd.simplivity.v1.19+json:
              schema:
                $ref: '#/components/schemas/role_assignments'
            application/vnd.simplivity.v1.23+json:
              schema:
                $ref: '#/components/schemas/role_assignments'
            application/json:
              schema:
                $ref: '#/components/schemas/role_assignments'
            application/vnd.simplivity.v1.9+json:
              schema:
                $ref: '#/components/schemas/role_assignments'
            application/vnd.simplivity.v1.18+json:
              schema:
                $ref: '#/components/schemas/role_assignments'
            application/vnd.simplivity.v1.13+json:
              schema:
                $ref: '#/components/schemas/role_assignments'
            application/vnd.simplivity.v1.16+json:
              schema:
                $ref: '#/components/schemas/role_assignments'
            application/vnd.simplivity.v1.24+json:
              schema:
                $ref: '#/components/schemas/role_assignments'
            application/vnd.simplivity.v1.14+json:
              schema:
                $ref: '#/components/schemas/role_assignments'
            application/vnd.simplivity.v1.11+json:
              schema:
                $ref: '#/components/schemas/role_assignments'
            application/vnd.simplivity.v1.17+json:
              schema:
                $ref: '#/components/schemas/role_assignments'
            application/vnd.simplivity.v1.21+json:
              schema:
                $ref: '#/components/schemas/role_assignments'
            application/vnd.simplivity.v1.22+json:
              schema:
                $ref: '#/components/schemas/role_assignments'
            application/vnd.simplivity.v1.10+json:
              schema:
                $ref: '#/components/schemas/role_assignments'
            application/vnd.simplivity.v1.8+json:
              schema:
                $ref: '#/components/schemas/role_assignments'
            application/vnd.simplivity.v1.15+json:
              schema:
                $ref: '#/components/schemas/role_assignments'
            application/vnd.simplivity.v1.25+json:
              schema:
                $ref: '#/components/schemas/role_assignments'
            application/vnd.simplivity.v1.12+json:
              schema:
                $ref: '#/components/schemas/role_assignments'
            application/vnd.simplivity.v1.20+json:
              schema:
                $ref: '#/components/schemas/role_assignments'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
    post:
      tags:
      - security
      summary: Add an HPE OmniStack role assignment
      operationId: addRoleAssignments
      responses:
        '201':
          description: Created
          content:
            application/vnd.simplivity.v1.19+json:
              schema:
                $ref: '#/components/schemas/role_assignments'
            application/vnd.simplivity.v1.23+json:
              schema:
                $ref: '#/components/schemas/role_assignments'
            application/json:
              schema:
                $ref: '#/components/schemas/role_assignments'
            application/vnd.simplivity.v1.9+json:
              schema:
                $ref: '#/components/schemas/role_assignments'
            application/vnd.simplivity.v1.18+json:
              schema:
                $ref: '#/components/schemas/role_assignments'
            application/vnd.simplivity.v1.13+json:
              schema:
                $ref: '#/components/schemas/role_assignments'
            application/vnd.simplivity.v1.16+json:
              schema:
                $ref: '#/components/schemas/role_assignments'
            application/vnd.simplivity.v1.24+json:
              schema:
                $ref: '#/components/schemas/role_assignments'
            application/vnd.simplivity.v1.14+json:
              schema:
                $ref: '#/components/schemas/role_assignments'
            application/vnd.simplivity.v1.11+json:
              schema:
                $ref: '#/components/schemas/role_assignments'
            application/vnd.simplivity.v1.17+json:
              schema:
                $ref: '#/components/schemas/role_assignments'
            application/vnd.simplivity.v1.21+json:
              schema:
                $ref: '#/components/schemas/role_assignments'
            application/vnd.simplivity.v1.22+json:
              schema:
                $ref: '#/components/schemas/role_assignments'
            application/vnd.simplivity.v1.10+json:
              schema:
                $ref: '#/components/schemas/role_assignments'
            application/vnd.simplivity.v1.8+json:
              schema:
                $ref: '#/components/schemas/role_assignments'
            application/vnd.simplivity.v1.15+json:
              schema:
                $ref: '#/components/schemas/role_assignments'
            application/vnd.simplivity.v1.25+json:
              schema:
                $ref: '#/components/schemas/role_assignments'
            application/vnd.simplivity.v1.12+json:
              schema:
                $ref: '#/components/schemas/role_assignments'
            application/vnd.simplivity.v1.20+json:
              schema:
                $ref: '#/components/schemas/role_assignments'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
      requestBody:
        content:
          application/vnd.simplivity.v1.17+json:
            schema:
              $ref: '#/components/schemas/role_assignments'
          application/vnd.simplivity.v1.19+json:
            schema:
              $ref: '#/components/schemas/role_assignments'
          application/vnd.simplivity.v1.23+json:
            schema:
              $ref: '#/components/schemas/role_assignments'
          application/vnd.simplivity.v1.21+json:
            schema:
              $ref: '#/components/schemas/role_assignments'
          application/vnd.simplivity.v1.22+json:
            schema:
              $ref: '#/components/schemas/role_assignments'
          application/vnd.simplivity.v1.18+json:
            schema:
              $ref: '#/components/schemas/role_assignments'
          application/vnd.simplivity.v1.25+json:
            schema:
              $ref: '#/components/schemas/role_assignments'
          application/vnd.simplivity.v1.16+json:
            schema:
              $ref: '#/components/schemas/role_assignments'
          application/vnd.simplivity.v1.20+json:
            schema:
              $ref: '#/components/schemas/role_assignments'
          application/vnd.simplivity.v1.24+json:
            schema:
              $ref: '#/components/schemas/role_assignments'
        description: mo
        required: true
  /security/rbac/policies/role_assignments/remove:
    post:
      tags:
      - security
      summary: Remove HPE OmniStack role assignments
      operationId: removeRoleAssignments
      responses:
        '201':
          description: Created
        '204':
          description: No Content
          content:
            application/vnd.simplivity.v1.19+json:
              schema:
                $ref: '#/components/schemas/role_assignments'
            application/vnd.simplivity.v1.23+json:
              schema:
                $ref: '#/components/schemas/role_assignments'
            application/json:
              schema:
                $ref: '#/components/schemas/role_assignments'
            application/vnd.simplivity.v1.9+json:
              schema:
                $ref: '#/components/schemas/role_assignments'
            application/vnd.simplivity.v1.18+json:
              schema:
                $ref: '#/components/schemas/role_assignments'
            application/vnd.simplivity.v1.13+json:
              schema:
                $ref: '#/components/schemas/role_assignments'
            application/vnd.simplivity.v1.16+json:
              schema:
                $ref: '#/components/schemas/role_assignments'
            application/vnd.simplivity.v1.24+json:
              schema:
                $ref: '#/components/schemas/role_assignments'
            application/vnd.simplivity.v1.14+json:
              schema:
                $ref: '#/components/schemas/role_assignments'
            application/vnd.simplivity.v1.11+json:
              schema:
                $ref: '#/components/schemas/role_assignments'
            application/vnd.simplivity.v1.17+json:
              schema:
                $ref: '#/components/schemas/role_assignments'
            application/vnd.simplivity.v1.21+json:
              schema:
                $ref: '#/components/schemas/role_assignments'
            application/vnd.simplivity.v1.22+json:
              schema:
                $ref: '#/components/schemas/role_assignments'
            application/vnd.simplivity.v1.10+json:
              schema:
                $ref: '#/components/schemas/role_assignments'
            application/vnd.simplivity.v1.8+json:
              schema:
                $ref: '#/components/schemas/role_assignments'
            application/vnd.simplivity.v1.15+json:
              schema:
                $ref: '#/components/schemas/role_assignments'
            application/vnd.simplivity.v1.25+json:
              schema:
                $ref: '#/components/schemas/role_assignments'
            application/vnd.simplivity.v1.12+json:
              schema:
                $ref: '#/components/schemas/role_assignments'
            application/vnd.simplivity.v1.20+json:
              schema:
                $ref: '#/components/schemas/role_assignments'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
      requestBody:
        content:
          application/vnd.simplivity.v1.17+json:
            schema:
              $ref: '#/components/schemas/role_assignments'
          application/vnd.simplivity.v1.19+json:
            schema:
              $ref: '#/components/schemas/role_assignments'
          application/vnd.simplivity.v1.23+json:
            schema:
              $ref: '#/components/schemas/role_assignments'
          application/vnd.simplivity.v1.21+json:
            schema:
              $ref: '#/components/schemas/role_assignments'
          application/vnd.simplivity.v1.22+json:
            schema:
              $ref: '#/components/schemas/role_assignments'
          application/vnd.simplivity.v1.18+json:
            schema:
              $ref: '#/components/schemas/role_assignments'
          application/vnd.simplivity.v1.25+json:
            schema:
              $ref: '#/components/schemas/role_assignments'
          application/vnd.simplivity.v1.16+json:
            schema:
              $ref: '#/components/schemas/role_assignments'
          application/vnd.simplivity.v1.20+json:
            schema:
              $ref: '#/components/schemas/role_assignments'
          application/vnd.simplivity.v1.24+json:
            schema:
              $ref: '#/components/schemas/role_assignments'
        description: mo
        required: true
components:
  schemas:
    certificate:
      type: object
      required:
      - certificate
      properties:
        certificate:
          type: string
          description: A Base64 encoded SSL certificate
        hash:
          type: string
          description: A hash value of the SSL certificate
        subject:
          type: string
          description: The subject value of the SSL certificate
        issuer:
          type: string
          description: The issuer value of the SSL certificate
        serialno:
          type: string
          description: The serial number of the SSL certificate
      description: An SSL Certificate
    role_assignments:
      type: object
      required:
      - groups
      - role
      properties:
        role:
          type: string
          description: The value of the HPE OmniStack role
        groups:
          type: array
          description: The vCenter Server group(s) assigned to the HPE OmniStack role
          items:
            type: string
      description: The HPE OmniStack role assignments
    add_certificate:
      type: 

# --- truncated at 32 KB (32 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/simplivity/refs/heads/main/openapi/simplivity-security-api-openapi.yml