mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-10 20:37:47 +00:00
32 lines
795 B
YAML
32 lines
795 B
YAML
get:
|
|
tags:
|
|
- Managed Clusters
|
|
summary: Get a specified ManagedCluster.
|
|
description: Retrieve a ManagedCluster by ID.
|
|
operationId: getManagedCluster
|
|
parameters:
|
|
- name: id
|
|
in: path
|
|
description: ID of the ManagedCluster to get
|
|
required: true
|
|
style: simple
|
|
explode: false
|
|
schema:
|
|
type: string
|
|
example: aClusterId
|
|
responses:
|
|
"200":
|
|
description: Responds with ManagedCluster having the given ID.
|
|
content:
|
|
application/json:
|
|
schema:
|
|
$ref: '../schemas/ManagedCluster.yaml'
|
|
"400":
|
|
$ref: '../../v3/responses/400.yaml'
|
|
"403":
|
|
$ref: '../../v3/responses/403.yaml'
|
|
"404":
|
|
$ref: '../../v3/responses/404.yaml'
|
|
security:
|
|
- oauth2: [idn:managed-cluster:read]
|