Update PowerShell SDK docs: 16633294545

This commit is contained in:
developer-relations-sp
2025-07-30 20:42:10 +00:00
parent cdd71d1f37
commit 5d76be1d9d
35 changed files with 1335 additions and 495 deletions

View File

@@ -0,0 +1,41 @@
---
id: v2025-approval-config-serial-chain-inner
title: ApprovalConfigSerialChainInner
pagination_label: ApprovalConfigSerialChainInner
sidebar_label: ApprovalConfigSerialChainInner
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'ApprovalConfigSerialChainInner', 'V2025ApprovalConfigSerialChainInner']
slug: /tools/sdk/powershell/v2025/models/approval-config-serial-chain-inner
tags: ['SDK', 'Software Development Kit', 'ApprovalConfigSerialChainInner', 'V2025ApprovalConfigSerialChainInner']
---
# ApprovalConfigSerialChainInner
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**ChainId** | **String** | ID of the serial chain. | [optional]
**Tier** | **Int64** | Starting at 1 defines the order in which the identities will get assigned | [optional]
**IdentityId** | **String** | Identity ID in the serial chain. | [optional]
**IdentityType** | **String** | Type of identity in the serial chain. | [optional]
## Examples
- Prepare the resource
```powershell
$ApprovalConfigSerialChainInner = Initialize-V2025ApprovalConfigSerialChainInner -ChainId 23dc206e-2a9e-4f98-93db-8d6e342cca18 `
-Tier 1 `
-IdentityId 2c9180858090ea8801809a0465e829da `
-IdentityType IDENTITY
```
- Convert the resource to JSON
```powershell
$ApprovalConfigSerialChainInner | ConvertTo-JSON
```
[[Back to top]](#)