Skip to main content

AccessModelMetadata

Properties

NameTypeDescriptionNotes
KeyStringUnique identifier for the metadata type[optional]
NameStringHuman readable name of the metadata type[optional]
MultiselectBooleanAllows selecting multiple values[optional] [default to $false]
StatusStringThe state of the metadata item[optional]
TypeStringThe type of the metadata item[optional]
ObjectTypes[]StringThe types of objects[optional]
DescriptionStringDescribes the metadata item[optional]
Values[]AccessModelMetadataValuesInnerThe value to assign to the metadata item[optional]

Examples

  • Prepare the resource
$AccessModelMetadata = Initialize-PSSailpoint.V2024AccessModelMetadata  -Key iscCsp `
-Name CSP `
-Multiselect true `
-Status active `
-Type governance `
-ObjectTypes null `
-Description Indicates the type of deployment environment of an access item. `
-Values null
  • Convert the resource to JSON
$AccessModelMetadata | ConvertTo-JSON

[Back to top]