Update PowerShell SDK docs: 17131775728

This commit is contained in:
developer-relations-sp
2025-08-21 15:39:27 +00:00
parent 0559c289e0
commit ef46413da7
6 changed files with 114 additions and 3 deletions

View File

@@ -0,0 +1,35 @@
---
id: v2025-managed-cluster-encryption-config
title: ManagedClusterEncryptionConfig
pagination_label: ManagedClusterEncryptionConfig
sidebar_label: ManagedClusterEncryptionConfig
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'ManagedClusterEncryptionConfig', 'V2025ManagedClusterEncryptionConfig']
slug: /tools/sdk/powershell/v2025/models/managed-cluster-encryption-config
tags: ['SDK', 'Software Development Kit', 'ManagedClusterEncryptionConfig', 'V2025ManagedClusterEncryptionConfig']
---
# ManagedClusterEncryptionConfig
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Format** | **Enum** [ "V2", "V3" ] | Specifies the format used for encrypted data, such as secrets. The format determines how the encrypted data is structured and processed. | [optional]
## Examples
- Prepare the resource
```powershell
$ManagedClusterEncryptionConfig = Initialize-V2025ManagedClusterEncryptionConfig -Format V3
```
- Convert the resource to JSON
```powershell
$ManagedClusterEncryptionConfig | ConvertTo-JSON
```
[[Back to top]](#)