Skip to main content

SourceDatasetResource

Properties

NameTypeDescriptionNotes
IdStringResource identifier. Server-generated on create.[optional] [readonly]
NameStringDisplay name of the resource. Required on create.[optional]
Features[]StringFeature identifiers supported by this resource.[optional]
TypeStringResource type. Required on create.[optional]
DatasetIdStringDataset identifier to associate this resource with. Required on create.[optional]
SchemaSchema[optional]

Examples

  • Prepare the resource
$SourceDatasetResource = Initialize-SourceDatasetResource -Id aws:iam-role `
-Name Account `
-Features ["Create","Delete"] `
-Type std:resource `
-DatasetId cmdb-servicenow:applications `
-Schema null
  • Convert the resource to JSON
$SourceDatasetResource | ConvertTo-JSON

[Back to top]