Files
developer.sailpoint.com/static/api-specs/idn/beta/paths/managed-cluster-path.yaml
2022-09-29 21:59:22 +00:00

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]