Update PowerShell SDK docs: 15781241582

This commit is contained in:
developer-relations-sp
2025-06-20 14:31:01 +00:00
parent cc95222670
commit 83c944f2cb
50 changed files with 1841 additions and 383 deletions

View File

@@ -0,0 +1,37 @@
---
id: v2025-machine-identity-dto-owners
title: MachineIdentityDtoOwners
pagination_label: MachineIdentityDtoOwners
sidebar_label: MachineIdentityDtoOwners
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'MachineIdentityDtoOwners', 'V2025MachineIdentityDtoOwners']
slug: /tools/sdk/powershell/v2025/models/machine-identity-dto-owners
tags: ['SDK', 'Software Development Kit', 'MachineIdentityDtoOwners', 'V2025MachineIdentityDtoOwners']
---
# MachineIdentityDtoOwners
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**PrimaryIdentity** | [**SystemCollectionsHashtable**]https://learn.microsoft.com/en-us/dotnet/api/system.collections.hashtable?view=net-9.0 | Defines the identity which is selected as the primary owner | [required]
**SecondaryIdentities** | [**[]BaseReferenceDto**](base-reference-dto) | Defines the identities which are selected as secondary owners | [required]
## Examples
- Prepare the resource
```powershell
$MachineIdentityDtoOwners = Initialize-V2025MachineIdentityDtoOwners -PrimaryIdentity null `
-SecondaryIdentities null
```
- Convert the resource to JSON
```powershell
$MachineIdentityDtoOwners | ConvertTo-JSON
```
[[Back to top]](#)