removing part of model docs from v2024

This commit is contained in:
darrell-thobe-sp
2025-01-28 08:52:12 -05:00
parent cb679653ff
commit fb685431b3
639 changed files with 0 additions and 26446 deletions

View File

@@ -1,39 +0,0 @@
---
id: v2024-managed-cluster-key-pair
title: ManagedClusterKeyPair
pagination_label: ManagedClusterKeyPair
sidebar_label: ManagedClusterKeyPair
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'ManagedClusterKeyPair']
slug: /tools/sdk/powershell/v2024/models/managed-cluster-key-pair
tags: ['SDK', 'Software Development Kit', 'ManagedClusterKeyPair']
---
# ManagedClusterKeyPair
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**PublicKey** | Pointer to **String** | ManagedCluster publicKey | [optional]
**PublicKeyThumbprint** | Pointer to **String** | ManagedCluster publicKeyThumbprint | [optional]
**PublicKeyCertificate** | Pointer to **String** | ManagedCluster publicKeyCertificate | [optional]
## Examples
- Prepare the resource
```powershell
$ManagedClusterKeyPair = Initialize-PSSailpoint.V2024ManagedClusterKeyPair -PublicKey -----BEGIN PUBLIC KEY-----******-----END PUBLIC KEY----- `
-PublicKeyThumbprint 6CMlaJIV44-xJxcB3CJBjDUUn54 `
-PublicKeyCertificate -----BEGIN CERTIFICATE-----****-----END CERTIFICATE-----
```
- Convert the resource to JSON
```powershell
$ManagedClusterKeyPair | ConvertTo-JSON
```
[[Back to top]](#)