Oracle Enterprise Manager Cloud Control REST API

REST API for Oracle Enterprise Manager Cloud Control providing access to monitoring, configuration, and administration capabilities including targets, metrics, incidents, blackouts, credentials, user management, and deployment procedures.

Documentation

Specifications

Schemas & Data

Other Resources

OpenAPI Specification

oracle-enterprise-manager-cloud-control-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Oracle Enterprise Manager Cloud Control REST API
  description: >-
    REST API for Oracle Enterprise Manager Cloud Control providing programmatic
    access to monitoring, configuration, and administration capabilities. This
    specification covers core resources including targets, metrics, incidents,
    and blackouts for managing Oracle IT infrastructure and applications.
  version: 13.5.0.23
  contact:
    name: Oracle Support
    url: https://www.oracle.com/support/
    email: [email protected]
  license:
    name: Oracle Technology Network License
    url: https://www.oracle.com/legal/terms.html
  x-logo:
    url: https://www.oracle.com/a/ocom/img/oracle-enterprise-manager.jpg
externalDocs:
  description: Oracle Enterprise Manager Cloud Control REST API Documentation
  url: https://docs.oracle.com/en/enterprise-manager/cloud-control/enterprise-manager-cloud-control/13.5/emrest/APIOverview.html
servers:
- url: https://{emHost}:{emPort}/em/api
  description: Enterprise Manager Cloud Control server
  variables:
    emHost:
      default: localhost
      description: Enterprise Manager OMS hostname
    emPort:
      default: '7803'
      description: Enterprise Manager HTTPS console port
security:
- basicAuth: []
tags:
- name: Blackouts
  description: >-
    Manage blackout windows for maintenance activities. Blackouts suppress
    monitoring and alerting during scheduled maintenance periods, preventing
    false alerts.
  externalDocs:
    url: https://docs.oracle.com/en/enterprise-manager/cloud-control/enterprise-manager-cloud-control/13.5/emrest/rest-endpoints.html
- name: Events
  description: >-
    Access individual event details. Events are the underlying occurrences
    that are correlated into incidents.
  externalDocs:
    url: https://docs.oracle.com/en/enterprise-manager/cloud-control/enterprise-manager-cloud-control/13.5/emrest/rest-endpoints.html
- name: Global Target Properties
  description: >-
    Manage global properties that can be applied across targets for
    classification, grouping, and reporting purposes.
  externalDocs:
    url: https://docs.oracle.com/en/enterprise-manager/cloud-control/enterprise-manager-cloud-control/13.5/emrest/rest-endpoints.html
- name: Incidents
  description: >-
    Search, view, and manage incidents and events. Incidents represent
    actionable issues detected by Enterprise Manager monitoring, with
    operations for clearing, suppressing, and annotating.
  externalDocs:
    url: https://docs.oracle.com/en/enterprise-manager/cloud-control/enterprise-manager-cloud-control/13.5/emrest/rest-endpoints.html
- name: Metrics
  description: >-
    Query metric data and metadata for monitored targets. Access time-series
    performance data, latest metric values, and metric group definitions.
  externalDocs:
    url: https://docs.oracle.com/en/enterprise-manager/cloud-control/enterprise-manager-cloud-control/13.5/emrest/rest-endpoints.html
- name: Targets
  description: >-
    Manage monitored targets in Enterprise Manager including discovery,
    configuration, lifecycle operations, and property management. Targets
    represent any managed entity such as databases, hosts, middleware, and
    applications.
  externalDocs:
    url: https://docs.oracle.com/en/enterprise-manager/cloud-control/enterprise-manager-cloud-control/13.5/emrest/rest-endpoints.html
paths:
  /targets:
    get:
      operationId: listTargets
      summary: Oracle Enterprise Manager List Targets
      description: >-
        Returns a list of monitored targets in Enterprise Manager. Supports
        filtering by target name, target type, and lifecycle status. Results
        are paginated.
      tags:
      - Targets
      parameters:
      - $ref: '#/components/parameters/targetNameQuery'
      - $ref: '#/components/parameters/targetTypeQuery'
      - $ref: '#/components/parameters/lifecycleStatusQuery'
      - $ref: '#/components/parameters/limitQuery'
      - $ref: '#/components/parameters/offsetQuery'
      responses:
        '200':
          description: A paginated list of targets.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TargetCollection'
              examples:
                Listtargets200Example:
                  summary: Default listTargets 200 response
                  x-microcks-default: true
                  value:
                    items:
                    - targetId: '500123'
                      targetName: example_value
                      targetType: example_value
                      targetDisplayType: example_value
                      hostName: example_value
                      lifecycleStatus: MONITORED
                      availabilityStatus: UP
                      agentUrl: https://www.example.com
                      oracleHome: example_value
                      machineName: example_value
                      installLocation: example_value
                      timezone: example_value
                      owner: example_value
                      timeCreated: '2026-01-15T10:30:00Z'
                      timeUpdated: '2026-01-15T10:30:00Z'
                      properties: example_value
                      canonicalLink: https://www.example.com
                    totalCount: 10
                    limit: 10
                    offset: 10
                    hasMore: true
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '500':
          $ref: '#/components/responses/InternalServerError'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
    post:
      operationId: createTarget
      summary: Oracle Enterprise Manager Create a Target
      description: >-
        Creates a new monitored target in Enterprise Manager. Requires target
        name, target type, and host information. Additional properties can be
        specified depending on the target type.
      tags:
      - Targets
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TargetCreateRequest'
            examples:
              CreatetargetRequestExample:
                summary: Default createTarget request
                x-microcks-default: true
                value:
                  targetName: example_value
                  targetType: example_value
                  hostName: example_value
                  properties: example_value
                  credentials:
                    credentialName: example_value
                    credentialType: example_value
      responses:
        '201':
          description: Target created successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Target'
              examples:
                Createtarget201Example:
                  summary: Default createTarget 201 response
                  x-microcks-default: true
                  value:
                    targetId: '500123'
                    targetName: example_value
                    targetType: example_value
                    targetDisplayType: example_value
                    hostName: example_value
                    lifecycleStatus: MONITORED
                    availabilityStatus: UP
                    agentUrl: https://www.example.com
                    oracleHome: example_value
                    machineName: example_value
                    installLocation: example_value
                    timezone: example_value
                    owner: example_value
                    timeCreated: '2026-01-15T10:30:00Z'
                    timeUpdated: '2026-01-15T10:30:00Z'
                    properties: example_value
                    canonicalLink: https://www.example.com
          headers:
            Location:
              description: URI of the newly created target resource.
              schema:
                type: string
                format: uri
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '409':
          $ref: '#/components/responses/Conflict'
        '500':
          $ref: '#/components/responses/InternalServerError'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /targets/{targetId}:
    get:
      operationId: getTarget
      summary: Oracle Enterprise Manager Get Target Details
      description: >-
        Returns detailed information about a specific target including its
        configuration properties, monitoring status, and associated metadata.
      tags:
      - Targets
      parameters:
      - $ref: '#/components/parameters/targetIdPath'
      responses:
        '200':
          description: Target details.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Target'
              examples:
                Gettarget200Example:
                  summary: Default getTarget 200 response
                  x-microcks-default: true
                  value:
                    targetId: '500123'
                    targetName: example_value
                    targetType: example_value
                    targetDisplayType: example_value
                    hostName: example_value
                    lifecycleStatus: MONITORED
                    availabilityStatus: UP
                    agentUrl: https://www.example.com
                    oracleHome: example_value
                    machineName: example_value
                    installLocation: example_value
                    timezone: example_value
                    owner: example_value
                    timeCreated: '2026-01-15T10:30:00Z'
                    timeUpdated: '2026-01-15T10:30:00Z'
                    properties: example_value
                    canonicalLink: https://www.example.com
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
        '500':
          $ref: '#/components/responses/InternalServerError'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
    patch:
      operationId: updateTarget
      summary: Oracle Enterprise Manager Update a Target
      description: >-
        Updates properties of an existing target. Only the specified fields
        are modified; unspecified fields remain unchanged.
      tags:
      - Targets
      parameters:
      - $ref: '#/components/parameters/targetIdPath'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TargetUpdateRequest'
            examples:
              UpdatetargetRequestExample:
                summary: Default updateTarget request
                x-microcks-default: true
                value:
                  properties: example_value
      responses:
        '200':
          description: Target updated successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Target'
              examples:
                Updatetarget200Example:
                  summary: Default updateTarget 200 response
                  x-microcks-default: true
                  value:
                    targetId: '500123'
                    targetName: example_value
                    targetType: example_value
                    targetDisplayType: example_value
                    hostName: example_value
                    lifecycleStatus: MONITORED
                    availabilityStatus: UP
                    agentUrl: https://www.example.com
                    oracleHome: example_value
                    machineName: example_value
                    installLocation: example_value
                    timezone: example_value
                    owner: example_value
                    timeCreated: '2026-01-15T10:30:00Z'
                    timeUpdated: '2026-01-15T10:30:00Z'
                    properties: example_value
                    canonicalLink: https://www.example.com
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
        '500':
          $ref: '#/components/responses/InternalServerError'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
    delete:
      operationId: deleteTarget
      summary: Oracle Enterprise Manager Delete a Target
      description: >-
        Removes a monitored target from Enterprise Manager. This stops all
        monitoring, removes collected data associations, and deletes the
        target configuration.
      tags:
      - Targets
      parameters:
      - $ref: '#/components/parameters/targetIdPath'
      responses:
        '204':
          description: Target deleted successfully.
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
        '500':
          $ref: '#/components/responses/InternalServerError'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /targets/{targetId}/properties:
    get:
      operationId: getTargetProperties
      summary: Oracle Enterprise Manager Get Target Properties
      description: >-
        Returns the configuration and monitoring properties of a specific
        target, including instance properties, dynamic properties, and any
        custom properties defined for the target type.
      tags:
      - Targets
      parameters:
      - $ref: '#/components/parameters/targetIdPath'
      responses:
        '200':
          description: Target properties.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TargetPropertyCollection'
              examples:
                Gettargetproperties200Example:
                  summary: Default getTargetProperties 200 response
                  x-microcks-default: true
                  value:
                    items:
                    - name: Example Title
                      value: example_value
                      isReadOnly: true
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
        '500':
          $ref: '#/components/responses/InternalServerError'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /targets/{targetId}/actions/bulkUpdateProperties:
    post:
      operationId: bulkUpdateTargetProperties
      summary: Oracle Enterprise Manager Bulk Update Target Properties
      description: >-
        Updates multiple properties of a target in a single request. Useful
        for batch configuration changes.
      tags:
      - Targets
      parameters:
      - $ref: '#/components/parameters/targetIdPath'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BulkPropertyUpdateRequest'
            examples:
              BulkupdatetargetpropertiesRequestExample:
                summary: Default bulkUpdateTargetProperties request
                x-microcks-default: true
                value:
                  properties:
                  - name: Example Title
                    value: example_value
      responses:
        '200':
          description: Properties updated successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TargetPropertyCollection'
              examples:
                Bulkupdatetargetproperties200Example:
                  summary: Default bulkUpdateTargetProperties 200 response
                  x-microcks-default: true
                  value:
                    items:
                    - name: Example Title
                      value: example_value
                      isReadOnly: true
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
        '500':
          $ref: '#/components/responses/InternalServerError'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /targets/{targetId}/metricGroups:
    get:
      operationId: listMetricGroups
      summary: Oracle Enterprise Manager List Metric Groups for a Target
      description: >-
        Returns a list of all metric groups available for a specific target.
        Metric groups organize related metrics and define the collection
        schedule and columns.
      tags:
      - Metrics
      parameters:
      - $ref: '#/components/parameters/targetIdPath'
      responses:
        '200':
          description: A list of metric groups.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MetricGroupCollection'
              examples:
                Listmetricgroups200Example:
                  summary: Default listMetricGroups 200 response
                  x-microcks-default: true
                  value:
                    items:
                    - metricGroupName: example_value
                      displayName: example_value
                      description: A sample description.
                      collectionFrequency: 10
                      metricColumns: {}
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
        '500':
          $ref: '#/components/responses/InternalServerError'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /targets/{targetId}/metricGroups/{metricGroupName}:
    get:
      operationId: getMetricGroup
      summary: Oracle Enterprise Manager Get Metric Group Details
      description: >-
        Returns detailed information about a specific metric group for a target,
        including metric column definitions, collection frequency, and thresholds.
      tags:
      - Metrics
      parameters:
      - $ref: '#/components/parameters/targetIdPath'
      - $ref: '#/components/parameters/metricGroupNamePath'
      responses:
        '200':
          description: Metric group details.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MetricGroup'
              examples:
                Getmetricgroup200Example:
                  summary: Default getMetricGroup 200 response
                  x-microcks-default: true
                  value:
                    metricGroupName: example_value
                    displayName: example_value
                    description: A sample description.
                    collectionFrequency: 10
                    metricColumns:
                    - columnName: example_value
                      displayName: example_value
                      columnType: NUMBER
                      isKey: true
                      unit: example_value
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
        '500':
          $ref: '#/components/responses/InternalServerError'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /targets/{targetId}/metricGroups/{metricGroupName}/latestData:
    get:
      operationId: getLatestMetricData
      summary: Oracle Enterprise Manager Get Latest Metric Data
      description: >-
        Returns the most recently collected metric data for a specific metric
        group on a target. Provides the latest snapshot of performance values.
      tags:
      - Metrics
      parameters:
      - $ref: '#/components/parameters/targetIdPath'
      - $ref: '#/components/parameters/metricGroupNamePath'
      responses:
        '200':
          description: Latest metric data for the group.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MetricDataCollection'
              examples:
                Getlatestmetricdata200Example:
                  summary: Default getLatestMetricData 200 response
                  x-microcks-default: true
                  value:
                    items:
                    - metricColumn: example_value
                      value: 42.5
                      key: example_value
                      collectionTime: '2026-01-15T10:30:00Z'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
        '500':
          $ref: '#/components/responses/InternalServerError'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /metricTimeSeries:
    get:
      operationId: getMetricTimeSeries
      summary: Oracle Enterprise Manager Get Metric Time Series Data
      description: >-
        Returns numeric metric data points over a specified time range for
        one or more targets. Supports filtering by target, metric group,
        metric column, and time range.
      tags:
      - Metrics
      parameters:
      - name: targetNames
        in: query
        description: >-
          Comma-separated list of target names to retrieve metric data for.
        schema:
          type: string
        example: example_value
      - name: targetTypes
        in: query
        description: >-
          Comma-separated list of target types to filter by.
        schema:
          type: string
        example: example_value
      - name: metricGroups
        in: query
        description: >-
          Comma-separated list of metric group names.
        schema:
          type: string
        example: example_value
      - name: metricColumns
        in: query
        description: >-
          Comma-separated list of metric column names.
        schema:
          type: string
        example: example_value
      - name: startTime
        in: query
        description: >-
          Start of the time range in ISO 8601 format.
        schema:
          type: string
          format: date-time
        example: '2026-01-15T10:30:00Z'
      - name: endTime
        in: query
        description: >-
          End of the time range in ISO 8601 format.
        schema:
          type: string
          format: date-time
        example: '2026-01-15T10:30:00Z'
      - $ref: '#/components/parameters/limitQuery'
      responses:
        '200':
          description: Metric time series data.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MetricTimeSeriesCollection'
              examples:
                Getmetrictimeseries200Example:
                  summary: Default getMetricTimeSeries 200 response
                  x-microcks-default: true
                  value:
                    items:
                    - targetName: example_value
                      targetType: example_value
                      metricGroupName: example_value
                      metricColumnName: example_value
                      key: example_value
                      dataPoints: {}
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '500':
          $ref: '#/components/responses/InternalServerError'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /incidents:
    get:
      operationId: listIncidents
      summary: Oracle Enterprise Manager List Incidents
      description: >-
        Returns a list of incidents in Enterprise Manager. Supports filtering
        by severity, priority, status, target, and time range. Incidents
        represent actionable issues detected by monitoring rules.
      tags:
      - Incidents
      parameters:
      - name: severity
        in: query
        description: Filter by incident severity level.
        schema:
          type: string
          enum:
          - FATAL
          - CRITICAL
          - WARNING
          - ADVISORY
          - INFORMATIONAL
        example: FATAL
      - name: priority
        in: query
        description: Filter by incident priority.
        schema:
          type: string
          enum:
          - URGENT
          - HIGH
          - MEDIUM
          - LOW
          - NONE
        example: URGENT
      - name: status
        in: query
        description: Filter by incident status.
        schema:
          type: string
          enum:
          - NEW
          - WORK_IN_PROGRESS
          - RESOLVED
          - CLOSED
          - SUPPRESSED
        example: NEW
      - name: targetName
        in: query
        description: Filter incidents by target name.
        schema:
          type: string
        example: example_value
      - name: targetType
        in: query
        description: Filter incidents by target type.
        schema:
          type: string
        example: example_value
      - name: sinceTime
        in: query
        description: >-
          Return incidents created after this time in ISO 8601 format.
        schema:
          type: string
          format: date-time
        example: '2026-01-15T10:30:00Z'
      - $ref: '#/components/parameters/limitQuery'
      - $ref: '#/components/parameters/offsetQuery'
      responses:
        '200':
          description: A paginated list of incidents.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/IncidentCollection'
              examples:
                Listincidents200Example:
                  summary: Default listIncidents 200 response
                  x-microcks-default: true
                  value:
                    items:
                    - incidentId: '500123'
                      summary: example_value
                      severity: FATAL
                      priority: URGENT
                      status: NEW
                      category: AVAILABILITY
                      targetName: example_value
                      targetType: example_value
                      escalationLevel: 10
                      owner: example_value
                      acknowledgedBy: example_value
                      resolutionState: example_value
                      ruleSetName: example_value
                      timeRaised: '2026-01-15T10:30:00Z'
                      timeUpdated: '2026-01-15T10:30:00Z'
                      timeResolved: '2026-01-15T10:30:00Z'
                      eventCount: 10
                      canonicalLink: https://www.example.com
                    totalCount: 10
                    limit: 10
                    offset: 10
                    hasMore: true
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '500':
          $ref: '#/components/responses/InternalServerError'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /incidents/{incidentId}:
    get:
      operationId: getIncident
      summary: Oracle Enterprise Manager Get Incident Details
      description: >-
        Returns detailed information about a specific incident including
        severity, priority, status, associated target, timeline, and
        resolution information.
      tags:
      - Incidents
      parameters:
      - $ref: '#/components/parameters/incidentIdPath'
      responses:
        '200':
          description: Incident details.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Incident'
              examples:
                Getincident200Example:
                  summary: Default getIncident 200 response
                  x-microcks-default: true
                  value:
                    incidentId: '500123'
                    summary: example_value
                    severity: FATAL
                    priority: URGENT
                    status: NEW
                    category: AVAILABILITY
                    targetName: example_value
                    targetType: example_value
                    escalationLevel: 10
                    owner: example_value
                    acknowledgedBy: example_value
                    resolutionState: example_value
                    ruleSetName: example_value
                    timeRaised: '2026-01-15T10:30:00Z'
                    timeUpdated: '2026-01-15T10:30:00Z'
                    timeResolved: '2026-01-15T10:30:00Z'
                    eventCount: 10
                    canonicalLink: https://www.example.com
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
        '500':
          $ref: '#/components/responses/InternalServerError'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /incidents/{incidentId}/actions/clear:
    post:
      operationId: clearIncident
      summary: Oracle Enterprise Manager Clear an Incident
      description: >-
        Clears an incident, indicating that the issue has been resolved. The
        incident status is set to CLOSED.
      tags:
      - Incidents
      parameters:
      - $ref: '#/components/parameters/incidentIdPath'
      responses:
        '200':
          description: Incident cleared successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Incident'
              examples:
                Clearincident200Example:
                  summary: Default clearIncident 200 response
                  x-microcks-default: true
                  value:
                    incidentId: '500123'
                    summary: example_value
                    severity: FATAL
                    priority: URGENT
                    status: NEW
                    category: AVAILABILITY
                    targetName: example_value
                    targetType: example_value
                    escalationLevel: 10
                    owner: example_value
                    acknowledgedBy: example_value
                    resolutionState: example_value
                    ruleSetName: example_value
                    timeRaised: '2026-01-15T10:30:00Z'
                    timeUpdated: '2026-01-15T10:30:00Z'
                    timeResolved: '2026-01-15T10:30:00Z'
                    eventCount: 10
                    canonicalLink: https://www.example.com
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
        '500':
          $ref: '#/components/responses/InternalServerError'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /incidents/{incidentId}/actions/suppress:
    post:
      operationId: suppressIncident
      summary: Oracle Enterprise Manager Suppress an Incident
      description: >-
        Suppresses an incident so it does not appear in active incident views
        or trigger notifications. Useful for known issues under investigation.
      tags:
      - Incidents
      parameters:
      - $ref: '#/components/parameters/incidentIdPath'
      responses:
        '200':
          description: Incident suppressed successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Incident'
              examples:
                Suppressincident200Example:
                  summary: Default suppressIncident 200 response
                  x-microcks-default: true
                  value:
                    incidentId: '500123'
                    summary: example_value
                    severity: FATAL
                    priority: URGENT
                    status: NEW
                    category: AVAILABILITY
                    targetName: example_value
                    targetType: example_value
                    escalationLevel: 10
                    owner: example_value
                    acknowledgedBy: example_value
                    resolutionState: example_value
                    ruleSetName: example_value
                    timeRaised: '2026-01-15T10:30:00Z'
            

# --- truncated at 32 KB (99 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/oracle-enterprise-manager/refs/heads/main/openapi/oracle-enterprise-manager-cloud-control-openapi.yml