Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/Beta/Models/BaseCommonDto1.md
2025-01-28 13:29:29 -05:00

1.2 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-dto1 BaseCommonDto1 BaseCommonDto1 BaseCommonDto1 powershellsdk
powershell
PowerShell
sdk
BaseCommonDto1
BetaBaseCommonDto1
/tools/sdk/powershell/beta/models/base-common-dto1
SDK
Software Development Kit
BaseCommonDto1
BetaBaseCommonDto1

BaseCommonDto1

Properties

Name Type Description Notes
Id Pointer to String System-generated unique ID of the Object [optional] [readonly]
Name String Name of the Object [required]
Created Pointer to System.DateTime Creation date of the Object [optional] [readonly]
Modified Pointer to System.DateTime Last modification date of the Object [optional] [readonly]

Examples

  • Prepare the resource
$BaseCommonDto1 = Initialize-PSSailpoint.BetaBaseCommonDto1  -Id id12345 `
 -Name aName `
 -Created 2015-05-28T14:07:17Z `
 -Modified 2015-05-28T14:07:17Z
  • Convert the resource to JSON
$BaseCommonDto1 | ConvertTo-JSON

[Back to top]