Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/Beta/Models/BaseCommonDto.md
2025-02-03 22:09:17 +00:00

1.1 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
beta-base-common-dto BaseCommonDto BaseCommonDto BaseCommonDto powershellsdk
powershell
PowerShell
sdk
BaseCommonDto
BetaBaseCommonDto
/tools/sdk/powershell/beta/models/base-common-dto
SDK
Software Development Kit
BaseCommonDto
BetaBaseCommonDto

BaseCommonDto

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]

Examples

  • Prepare the resource
$BaseCommonDto = Initialize-PSSailpoint.BetaBaseCommonDto  -Id id12345 `
 -Name aName `
 -Created 2023-01-03T21:16:22.432Z `
 -Modified 2023-01-03T21:16:22.432Z
  • Convert the resource to JSON
$BaseCommonDto | ConvertTo-JSON

[Back to top]