Update PowerShell SDK docs: 17161070549

This commit is contained in:
developer-relations-sp
2025-08-22 16:52:08 +00:00
parent b34c0d27b4
commit ebf793f17d
7 changed files with 266 additions and 40 deletions

View File

@@ -0,0 +1,67 @@
---
id: v2025-machine-identity-response
title: MachineIdentityResponse
pagination_label: MachineIdentityResponse
sidebar_label: MachineIdentityResponse
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'MachineIdentityResponse', 'V2025MachineIdentityResponse']
slug: /tools/sdk/powershell/v2025/models/machine-identity-response
tags: ['SDK', 'Software Development Kit', 'MachineIdentityResponse', 'V2025MachineIdentityResponse']
---
# MachineIdentityResponse
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | **String** | System-generated unique ID of the Object | [optional] [readonly]
**Name** | **String** | Name of the Object | [required]
**Created** | **System.DateTime** | Creation date of the Object | [optional] [readonly]
**Modified** | **System.DateTime** | Last modification date of the Object | [optional] [readonly]
**BusinessApplication** | **String** | The business application that the identity represents | [required]
**Description** | **String** | Description of machine identity | [optional]
**Attributes** | [**SystemCollectionsHashtable**]https://learn.microsoft.com/en-us/dotnet/api/system.collections.hashtable?view=net-9.0 | A map of custom machine identity attributes | [optional]
**Subtype** | **String** | The subtype value associated to the machine identity | [required]
**Owners** | [**MachineIdentityDtoOwners**](machine-identity-dto-owners) | | [optional]
**SourceId** | **String** | The source id associated to the machine identity | [optional]
**Uuid** | **String** | The UUID associated to the machine identity directly aggregated from a source | [optional]
**NativeIdentity** | **String** | The native identity associated to the machine identity directly aggregated from a source | [optional]
**ManuallyEdited** | **Boolean** | Indicates if the machine identity has been manually edited | [optional] [default to $false]
**ManuallyCreated** | **Boolean** | Indicates if the machine identity has been manually created | [optional] [default to $false]
**Source** | [**SystemCollectionsHashtable**]https://learn.microsoft.com/en-us/dotnet/api/system.collections.hashtable?view=net-9.0 | The source of the machine identity | [optional]
**DatasetId** | **String** | The dataset id associated to the source in which the identity was retrieved from | [optional]
**UserEntitlements** | [**[]MachineIdentityResponseUserEntitlements**](machine-identity-response-user-entitlements) | The user entitlements associated to the machine identity | [optional]
## Examples
- Prepare the resource
```powershell
$MachineIdentityResponse = Initialize-V2025MachineIdentityResponse -Id id12345 `
-Name aName `
-Created 2015-05-28T14:07:17Z `
-Modified 2015-05-28T14:07:17Z `
-BusinessApplication ADService `
-Description `
-Attributes {"Region":"EU"} `
-Subtype Application `
-Owners null `
-SourceId 6d28b7c1-620c-49c6-b6d5-cbf81eb4b5fa `
-Uuid f5dd23fe-3414-42b7-bb1c-869400ad7a10 `
-NativeIdentity abc:123:dddd `
-ManuallyEdited true `
-ManuallyCreated true `
-Source null `
-DatasetId 8886e5e3-63d0-462f-a195-d98da885b8dc `
-UserEntitlements null
```
- Convert the resource to JSON
```powershell
$MachineIdentityResponse | ConvertTo-JSON
```
[[Back to top]](#)