Skip to main content

ManagedClusterTypesApi

Use this API to implement managed cluster types functionality. With this functionality in place, administrators can modify and delete existing managed cluster types and create new ones.

All URIs are relative to https://sailpoint.api.identitynow.com

MethodHTTP requestDescription
create-managed-cluster-type-v1POST /managed-cluster-types/v1Create new managed cluster type
delete-managed-cluster-type-v1DELETE /managed-cluster-types/v1/{id}Delete a managed cluster type
get-managed-cluster-type-v1GET /managed-cluster-types/v1/{id}Get a managed cluster type
get-managed-cluster-types-v1GET /managed-cluster-types/v1List managed cluster types
update-managed-cluster-type-v1PATCH /managed-cluster-types/v1/{id}Update a managed cluster type

create-managed-cluster-type-v1

Create new managed cluster type Create a new Managed Cluster Type.

The API returns a result that includes the Managed Cluster Type ID

API Spec

Parameters

NameTypeDescriptionNotes
managedclustertypeManagedclustertype

Return type

Managedclustertype

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

Example

import { ManagedClusterTypesApi } from 'sailpoint-api-client';
import { Configuration } from 'sailpoint-api-client';
import { Managedclustertype } from 'sailpoint-api-client/dist/managed_cluster_types/api';

const configuration = new Configuration();
const apiInstance = new ManagedClusterTypesApi(configuration);
const managedclustertype: Managedclustertype = ; //
const result = await apiInstance.createManagedClusterTypeV1({ managedclustertype: managedclustertype });
console.log(result);

[Back to top]

delete-managed-cluster-type-v1

Delete a managed cluster type Delete an existing Managed Cluster Type.

API Spec

Parameters

NameTypeDescriptionNotes
idstringThe Managed Cluster Type ID[default to undefined]

Return type

(empty response body)

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

Example

import { ManagedClusterTypesApi } from 'sailpoint-api-client';
import { Configuration } from 'sailpoint-api-client';

const configuration = new Configuration();
const apiInstance = new ManagedClusterTypesApi(configuration);
const id: string = aClusterTypeId; // The Managed Cluster Type ID
const result = await apiInstance.deleteManagedClusterTypeV1({ id: id });
console.log(result);

[Back to top]

get-managed-cluster-type-v1

Get a managed cluster type Get a Managed Cluster Type.

API Spec

Parameters

NameTypeDescriptionNotes
idstringThe Managed Cluster Type ID[default to undefined]

Return type

Managedclustertype

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

Example

import { ManagedClusterTypesApi } from 'sailpoint-api-client';
import { Configuration } from 'sailpoint-api-client';

const configuration = new Configuration();
const apiInstance = new ManagedClusterTypesApi(configuration);
const id: string = aClusterTypeId; // The Managed Cluster Type ID
const result = await apiInstance.getManagedClusterTypeV1({ id: id });
console.log(result);

[Back to top]

get-managed-cluster-types-v1

List managed cluster types Get a list of Managed Cluster Types.

API Spec

Parameters

NameTypeDescriptionNotes
typestringType descriptor[optional] [default to undefined]
podstringPinned pod (or default)[optional] [default to undefined]
orgstringPinned org (or default)[optional] [default to undefined]
offsetnumberOffset into the full result set. Usually specified with limit to paginate through the results. See V3 API Standard Collection Parameters for more information.[optional] [default to 0]
limitnumberMax number of results to return. See V3 API Standard Collection Parameters for more information.[optional] [default to 250]

Return type

Array<Managedclustertype>

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

Example

import { ManagedClusterTypesApi } from 'sailpoint-api-client';
import { Configuration } from 'sailpoint-api-client';

const configuration = new Configuration();
const apiInstance = new ManagedClusterTypesApi(configuration);
const type: string = IDN; // Type descriptor (optional)
const pod: string = megapod-useast1; // Pinned pod (or default) (optional)
const org: string = denali-xyz; // Pinned org (or default) (optional)
const offset: number = 0; // Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information. (optional)
const limit: number = 250; // Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information. (optional)
const result = await apiInstance.getManagedClusterTypesV1({ });
console.log(result);

[Back to top]

update-managed-cluster-type-v1

Update a managed cluster type Update an existing Managed Cluster Type.

API Spec

Parameters

NameTypeDescriptionNotes
idstringThe Managed Cluster Type ID[default to undefined]
jsonpatchJsonpatchThe JSONPatch payload used to update the schema.

Return type

Managedclustertype

HTTP request headers

  • Content-Type: application/json-patch+json
  • Accept: application/json

Example

import { ManagedClusterTypesApi } from 'sailpoint-api-client';
import { Configuration } from 'sailpoint-api-client';
import { Jsonpatch } from 'sailpoint-api-client/dist/managed_cluster_types/api';

const configuration = new Configuration();
const apiInstance = new ManagedClusterTypesApi(configuration);
const id: string = aClusterTypeId; // The Managed Cluster Type ID
const jsonpatch: Jsonpatch = ; // The JSONPatch payload used to update the schema.
const result = await apiInstance.updateManagedClusterTypeV1({ id: id, jsonpatch: jsonpatch });
console.log(result);

[Back to top]