mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-10 12:27:47 +00:00
Update PowerShell SDK docs: 17131775728
This commit is contained in:
@@ -28,13 +28,14 @@ Name | Type | Description | Notes
|
|||||||
**Redis** | [**ManagedClusterRedis**](managed-cluster-redis) | | [optional]
|
**Redis** | [**ManagedClusterRedis**](managed-cluster-redis) | | [optional]
|
||||||
**ClientType** | [**ManagedClientType**](managed-client-type) | | [required]
|
**ClientType** | [**ManagedClientType**](managed-client-type) | | [required]
|
||||||
**CcgVersion** | **String** | CCG version used by the ManagedCluster | [required]
|
**CcgVersion** | **String** | CCG version used by the ManagedCluster | [required]
|
||||||
**PinnedConfig** | **Boolean** | boolean flag indiacting whether or not the cluster configuration is pinned | [optional] [default to $false]
|
**PinnedConfig** | **Boolean** | boolean flag indicating whether or not the cluster configuration is pinned | [optional] [default to $false]
|
||||||
**LogConfiguration** | [**ClientLogConfiguration**](client-log-configuration) | | [optional]
|
**LogConfiguration** | [**ClientLogConfiguration**](client-log-configuration) | | [optional]
|
||||||
**Operational** | **Boolean** | Whether or not the cluster is operational or not | [optional] [default to $false]
|
**Operational** | **Boolean** | Whether or not the cluster is operational or not | [optional] [default to $false]
|
||||||
**Status** | **Enum** [ "CONFIGURING", "FAILED", "NO_CLIENTS", "NORMAL", "WARNING" ] | Cluster status | [optional]
|
**Status** | **Enum** [ "CONFIGURING", "FAILED", "NO_CLIENTS", "NORMAL", "WARNING" ] | Cluster status | [optional]
|
||||||
**PublicKeyCertificate** | **String** | Public key certificate | [optional]
|
**PublicKeyCertificate** | **String** | Public key certificate | [optional]
|
||||||
**PublicKeyThumbprint** | **String** | Public key thumbprint | [optional]
|
**PublicKeyThumbprint** | **String** | Public key thumbprint | [optional]
|
||||||
**PublicKey** | **String** | Public key | [optional]
|
**PublicKey** | **String** | Public key | [optional]
|
||||||
|
**EncryptionConfiguration** | [**ManagedClusterEncryptionConfig**](managed-cluster-encryption-config) | | [optional]
|
||||||
**AlertKey** | **String** | Key describing any immediate cluster alerts | [optional]
|
**AlertKey** | **String** | Key describing any immediate cluster alerts | [optional]
|
||||||
**ClientIds** | **[]String** | List of clients in a cluster | [optional]
|
**ClientIds** | **[]String** | List of clients in a cluster | [optional]
|
||||||
**ServiceCount** | **Int32** | Number of services bound to a cluster | [optional] [default to 0]
|
**ServiceCount** | **Int32** | Number of services bound to a cluster | [optional] [default to 0]
|
||||||
@@ -71,6 +72,7 @@ $ManagedCluster = Initialize-V2024ManagedCluster -Id e1ff7bb24c934240bbf55e1aa3
|
|||||||
-PublicKeyCertificate -----BEGIN CERTIFICATE-----TCCAb2gAwIBAgIBADANBgkqhkiG9w0BAQsFADAuMQ0wCwYDVQQD-----END CERTIFICATE----- `
|
-PublicKeyCertificate -----BEGIN CERTIFICATE-----TCCAb2gAwIBAgIBADANBgkqhkiG9w0BAQsFADAuMQ0wCwYDVQQD-----END CERTIFICATE----- `
|
||||||
-PublicKeyThumbprint obc6pLiulGbtZ `
|
-PublicKeyThumbprint obc6pLiulGbtZ `
|
||||||
-PublicKey -----BEGIN PUBLIC KEY-----jANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3WgnsxP52MDgBTfHR+5n4-----END PUBLIC KEY----- `
|
-PublicKey -----BEGIN PUBLIC KEY-----jANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3WgnsxP52MDgBTfHR+5n4-----END PUBLIC KEY----- `
|
||||||
|
-EncryptionConfiguration null `
|
||||||
-AlertKey LIMITED_RESOURCES `
|
-AlertKey LIMITED_RESOURCES `
|
||||||
-ClientIds [1244, 1245] `
|
-ClientIds [1244, 1245] `
|
||||||
-ServiceCount 6 `
|
-ServiceCount 6 `
|
||||||
|
|||||||
@@ -0,0 +1,35 @@
|
|||||||
|
---
|
||||||
|
id: v2024-managed-cluster-encryption-config
|
||||||
|
title: ManagedClusterEncryptionConfig
|
||||||
|
pagination_label: ManagedClusterEncryptionConfig
|
||||||
|
sidebar_label: ManagedClusterEncryptionConfig
|
||||||
|
sidebar_class_name: powershellsdk
|
||||||
|
keywords: ['powershell', 'PowerShell', 'sdk', 'ManagedClusterEncryptionConfig', 'V2024ManagedClusterEncryptionConfig']
|
||||||
|
slug: /tools/sdk/powershell/v2024/models/managed-cluster-encryption-config
|
||||||
|
tags: ['SDK', 'Software Development Kit', 'ManagedClusterEncryptionConfig', 'V2024ManagedClusterEncryptionConfig']
|
||||||
|
---
|
||||||
|
|
||||||
|
|
||||||
|
# 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-V2024ManagedClusterEncryptionConfig -Format V3
|
||||||
|
```
|
||||||
|
|
||||||
|
- Convert the resource to JSON
|
||||||
|
```powershell
|
||||||
|
$ManagedClusterEncryptionConfig | ConvertTo-JSON
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
[[Back to top]](#)
|
||||||
|
|
||||||
@@ -28,13 +28,14 @@ Name | Type | Description | Notes
|
|||||||
**Redis** | [**ManagedClusterRedis**](managed-cluster-redis) | | [optional]
|
**Redis** | [**ManagedClusterRedis**](managed-cluster-redis) | | [optional]
|
||||||
**ClientType** | [**ManagedClientType**](managed-client-type) | | [required]
|
**ClientType** | [**ManagedClientType**](managed-client-type) | | [required]
|
||||||
**CcgVersion** | **String** | CCG version used by the ManagedCluster | [required]
|
**CcgVersion** | **String** | CCG version used by the ManagedCluster | [required]
|
||||||
**PinnedConfig** | **Boolean** | boolean flag indiacting whether or not the cluster configuration is pinned | [optional] [default to $false]
|
**PinnedConfig** | **Boolean** | boolean flag indicating whether or not the cluster configuration is pinned | [optional] [default to $false]
|
||||||
**LogConfiguration** | [**ClientLogConfiguration**](client-log-configuration) | | [optional]
|
**LogConfiguration** | [**ClientLogConfiguration**](client-log-configuration) | | [optional]
|
||||||
**Operational** | **Boolean** | Whether or not the cluster is operational or not | [optional] [default to $false]
|
**Operational** | **Boolean** | Whether or not the cluster is operational or not | [optional] [default to $false]
|
||||||
**Status** | **Enum** [ "CONFIGURING", "FAILED", "NO_CLIENTS", "NORMAL", "WARNING" ] | Cluster status | [optional]
|
**Status** | **Enum** [ "CONFIGURING", "FAILED", "NO_CLIENTS", "NORMAL", "WARNING" ] | Cluster status | [optional]
|
||||||
**PublicKeyCertificate** | **String** | Public key certificate | [optional]
|
**PublicKeyCertificate** | **String** | Public key certificate | [optional]
|
||||||
**PublicKeyThumbprint** | **String** | Public key thumbprint | [optional]
|
**PublicKeyThumbprint** | **String** | Public key thumbprint | [optional]
|
||||||
**PublicKey** | **String** | Public key | [optional]
|
**PublicKey** | **String** | Public key | [optional]
|
||||||
|
**EncryptionConfiguration** | [**ManagedClusterEncryptionConfig**](managed-cluster-encryption-config) | | [optional]
|
||||||
**AlertKey** | **String** | Key describing any immediate cluster alerts | [optional]
|
**AlertKey** | **String** | Key describing any immediate cluster alerts | [optional]
|
||||||
**ClientIds** | **[]String** | List of clients in a cluster | [optional]
|
**ClientIds** | **[]String** | List of clients in a cluster | [optional]
|
||||||
**ServiceCount** | **Int32** | Number of services bound to a cluster | [optional] [default to 0]
|
**ServiceCount** | **Int32** | Number of services bound to a cluster | [optional] [default to 0]
|
||||||
@@ -65,6 +66,7 @@ $ManagedCluster = Initialize-V2025ManagedCluster -Id e1ff7bb24c934240bbf55e1aa3
|
|||||||
-PublicKeyCertificate -----BEGIN CERTIFICATE-----TCCAb2gAwIBAgIBADANBgkqhkiG9w0BAQsFADAuMQ0wCwYDVQQD-----END CERTIFICATE----- `
|
-PublicKeyCertificate -----BEGIN CERTIFICATE-----TCCAb2gAwIBAgIBADANBgkqhkiG9w0BAQsFADAuMQ0wCwYDVQQD-----END CERTIFICATE----- `
|
||||||
-PublicKeyThumbprint obc6pLiulGbtZ `
|
-PublicKeyThumbprint obc6pLiulGbtZ `
|
||||||
-PublicKey -----BEGIN PUBLIC KEY-----jANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3WgnsxP52MDgBTfHR+5n4-----END PUBLIC KEY----- `
|
-PublicKey -----BEGIN PUBLIC KEY-----jANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3WgnsxP52MDgBTfHR+5n4-----END PUBLIC KEY----- `
|
||||||
|
-EncryptionConfiguration null `
|
||||||
-AlertKey LIMITED_RESOURCES `
|
-AlertKey LIMITED_RESOURCES `
|
||||||
-ClientIds [1244, 1245] `
|
-ClientIds [1244, 1245] `
|
||||||
-ServiceCount 6 `
|
-ServiceCount 6 `
|
||||||
|
|||||||
@@ -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]](#)
|
||||||
|
|
||||||
@@ -28,13 +28,14 @@ Name | Type | Description | Notes
|
|||||||
**Redis** | [**ManagedClusterRedis**](managed-cluster-redis) | | [optional]
|
**Redis** | [**ManagedClusterRedis**](managed-cluster-redis) | | [optional]
|
||||||
**ClientType** | [**ManagedClientType**](managed-client-type) | | [required]
|
**ClientType** | [**ManagedClientType**](managed-client-type) | | [required]
|
||||||
**CcgVersion** | **String** | CCG version used by the ManagedCluster | [required]
|
**CcgVersion** | **String** | CCG version used by the ManagedCluster | [required]
|
||||||
**PinnedConfig** | **Boolean** | boolean flag indiacting whether or not the cluster configuration is pinned | [optional] [default to $false]
|
**PinnedConfig** | **Boolean** | boolean flag indicating whether or not the cluster configuration is pinned | [optional] [default to $false]
|
||||||
**LogConfiguration** | [**ClientLogConfiguration**](client-log-configuration) | | [optional]
|
**LogConfiguration** | [**ClientLogConfiguration**](client-log-configuration) | | [optional]
|
||||||
**Operational** | **Boolean** | Whether or not the cluster is operational or not | [optional] [default to $false]
|
**Operational** | **Boolean** | Whether or not the cluster is operational or not | [optional] [default to $false]
|
||||||
**Status** | **Enum** [ "CONFIGURING", "FAILED", "NO_CLIENTS", "NORMAL", "WARNING" ] | Cluster status | [optional]
|
**Status** | **Enum** [ "CONFIGURING", "FAILED", "NO_CLIENTS", "NORMAL", "WARNING" ] | Cluster status | [optional]
|
||||||
**PublicKeyCertificate** | **String** | Public key certificate | [optional]
|
**PublicKeyCertificate** | **String** | Public key certificate | [optional]
|
||||||
**PublicKeyThumbprint** | **String** | Public key thumbprint | [optional]
|
**PublicKeyThumbprint** | **String** | Public key thumbprint | [optional]
|
||||||
**PublicKey** | **String** | Public key | [optional]
|
**PublicKey** | **String** | Public key | [optional]
|
||||||
|
**EncryptionConfiguration** | [**ManagedClusterEncryptionConfig**](managed-cluster-encryption-config) | | [optional]
|
||||||
**AlertKey** | **String** | Key describing any immediate cluster alerts | [optional]
|
**AlertKey** | **String** | Key describing any immediate cluster alerts | [optional]
|
||||||
**ClientIds** | **[]String** | List of clients in a cluster | [optional]
|
**ClientIds** | **[]String** | List of clients in a cluster | [optional]
|
||||||
**ServiceCount** | **Int32** | Number of services bound to a cluster | [optional] [default to 0]
|
**ServiceCount** | **Int32** | Number of services bound to a cluster | [optional] [default to 0]
|
||||||
@@ -65,6 +66,7 @@ $ManagedCluster = Initialize-ManagedCluster -Id e1ff7bb24c934240bbf55e1aa39e41c
|
|||||||
-PublicKeyCertificate -----BEGIN CERTIFICATE-----TCCAb2gAwIBAgIBADANBgkqhkiG9w0BAQsFADAuMQ0wCwYDVQQD-----END CERTIFICATE----- `
|
-PublicKeyCertificate -----BEGIN CERTIFICATE-----TCCAb2gAwIBAgIBADANBgkqhkiG9w0BAQsFADAuMQ0wCwYDVQQD-----END CERTIFICATE----- `
|
||||||
-PublicKeyThumbprint obc6pLiulGbtZ `
|
-PublicKeyThumbprint obc6pLiulGbtZ `
|
||||||
-PublicKey -----BEGIN PUBLIC KEY-----jANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3WgnsxP52MDgBTfHR+5n4-----END PUBLIC KEY----- `
|
-PublicKey -----BEGIN PUBLIC KEY-----jANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3WgnsxP52MDgBTfHR+5n4-----END PUBLIC KEY----- `
|
||||||
|
-EncryptionConfiguration null `
|
||||||
-AlertKey LIMITED_RESOURCES `
|
-AlertKey LIMITED_RESOURCES `
|
||||||
-ClientIds [1244, 1245] `
|
-ClientIds [1244, 1245] `
|
||||||
-ServiceCount 6 `
|
-ServiceCount 6 `
|
||||||
|
|||||||
@@ -0,0 +1,35 @@
|
|||||||
|
---
|
||||||
|
id: managed-cluster-encryption-config
|
||||||
|
title: ManagedClusterEncryptionConfig
|
||||||
|
pagination_label: ManagedClusterEncryptionConfig
|
||||||
|
sidebar_label: ManagedClusterEncryptionConfig
|
||||||
|
sidebar_class_name: powershellsdk
|
||||||
|
keywords: ['powershell', 'PowerShell', 'sdk', 'ManagedClusterEncryptionConfig', 'ManagedClusterEncryptionConfig']
|
||||||
|
slug: /tools/sdk/powershell/v3/models/managed-cluster-encryption-config
|
||||||
|
tags: ['SDK', 'Software Development Kit', 'ManagedClusterEncryptionConfig', 'ManagedClusterEncryptionConfig']
|
||||||
|
---
|
||||||
|
|
||||||
|
|
||||||
|
# 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-ManagedClusterEncryptionConfig -Format V3
|
||||||
|
```
|
||||||
|
|
||||||
|
- Convert the resource to JSON
|
||||||
|
```powershell
|
||||||
|
$ManagedClusterEncryptionConfig | ConvertTo-JSON
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
[[Back to top]](#)
|
||||||
|
|
||||||
Reference in New Issue
Block a user