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,35 @@
---
id: v2025-send-classify-machine-account200-response
title: SendClassifyMachineAccount200Response
pagination_label: SendClassifyMachineAccount200Response
sidebar_label: SendClassifyMachineAccount200Response
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'SendClassifyMachineAccount200Response', 'V2025SendClassifyMachineAccount200Response']
slug: /tools/sdk/powershell/v2025/models/send-classify-machine-account200-response
tags: ['SDK', 'Software Development Kit', 'SendClassifyMachineAccount200Response', 'V2025SendClassifyMachineAccount200Response']
---
# SendClassifyMachineAccount200Response
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**IsMachine** | **Boolean** | Indicates if account is classified as machine | [optional] [default to $false]
## Examples
- Prepare the resource
```powershell
$SendClassifyMachineAccount200Response = Initialize-V2025SendClassifyMachineAccount200Response -IsMachine true
```
- Convert the resource to JSON
```powershell
$SendClassifyMachineAccount200Response | ConvertTo-JSON
```
[[Back to top]](#)