removing beta docs

This commit is contained in:
darrell-thobe-sp
2025-01-23 23:30:59 -05:00
parent 7194b934e8
commit befdd82384
999 changed files with 0 additions and 70946 deletions

View File

@@ -1,39 +0,0 @@
---
id: 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/beta/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.BetaManagedClusterKeyPair -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]](#)