Skip to main content

Sourcesubtypewithsource

Properties

NameTypeDescriptionNotes
IdStringUnique identifier for the subtype.[optional]
SourceIdStringThe ID of the source.[optional] [readonly]
TechnicalNameStringTechnical name of the subtype.[optional]
DisplayNameStringDisplay name of the subtype.[optional]
DescriptionStringDescription of the subtype.[optional]
CreatedSystem.DateTimeCreation timestamp.[optional]
ModifiedSystem.DateTimeLast modified timestamp.[optional]
TypeStringType of the subtype. Either MACHINE OR null.[optional]
SourceSourcesubtypewithsourceSource[optional]
SystemManagedBooleanIndicates if the subtype is managed by the system.[optional] [default to $false]

Examples

  • Prepare the resource
$Sourcesubtypewithsource = Initialize-Sourcesubtypewithsource  -Id 38453251-6be2-5f8f-df93-5ce19e295838 `
-SourceId null `
-TechnicalName foo `
-DisplayName Mr Foo `
-Description fighters `
-Created 2025-07-28T16:13:42.801300Z `
-Modified 2025-07-28T16:13:42.750850Z `
-Type MACHINE `
-Source null `
-SystemManaged true
  • Convert the resource to JSON
$Sourcesubtypewithsource | ConvertTo-JSON

[Back to top]