only beta

This commit is contained in:
darrell-thobe-sp
2025-01-28 08:57:33 -05:00
parent fb685431b3
commit ca4e98517f
444 changed files with 0 additions and 18963 deletions

View File

@@ -1,45 +0,0 @@
---
id: v2024-task-definition-summary
title: TaskDefinitionSummary
pagination_label: TaskDefinitionSummary
sidebar_label: TaskDefinitionSummary
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'TaskDefinitionSummary']
slug: /tools/sdk/powershell/v2024/models/task-definition-summary
tags: ['SDK', 'Software Development Kit', 'TaskDefinitionSummary']
---
# TaskDefinitionSummary
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | **String** | System-generated unique ID of the TaskDefinition | [required]
**UniqueName** | **String** | Name of the TaskDefinition | [required]
**Description** | **String** | Description of the TaskDefinition | [required]
**ParentName** | **String** | Name of the parent of the TaskDefinition | [required]
**Executor** | **String** | Executor of the TaskDefinition | [required]
**Arguments** | [**map[string]AnyType**]https://learn.microsoft.com/en-us/powershell/scripting/lang-spec/chapter-04?view=powershell-7.4 | Formal parameters of the TaskDefinition, without values | [required]
## Examples
- Prepare the resource
```powershell
$TaskDefinitionSummary = Initialize-PSSailpoint.V2024TaskDefinitionSummary -Id 2c91808475b4334b0175e1dff64b63c5 `
-UniqueName Cloud Account Aggregation `
-Description Aggregates from the specified application. `
-ParentName Cloud Account Aggregation `
-Executor sailpoint.task.ServiceTaskExecutor `
-Arguments null
```
- Convert the resource to JSON
```powershell
$TaskDefinitionSummary | ConvertTo-JSON
```
[[Back to top]](#)