Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V3/Models/AccessModelMetadata.md
2025-05-07 14:37:48 +00:00

1.6 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
access-model-metadata AccessModelMetadata AccessModelMetadata AccessModelMetadata powershellsdk
powershell
PowerShell
sdk
AccessModelMetadata
AccessModelMetadata
/tools/sdk/powershell/v3/models/access-model-metadata
SDK
Software Development Kit
AccessModelMetadata
AccessModelMetadata

AccessModelMetadata

Properties

Name Type Description Notes
Key String Unique identifier for the metadata type [optional]
Name String Human readable name of the metadata type [optional]
Multiselect Boolean Allows selecting multiple values [optional] [default to $false]
Status String The state of the metadata item [optional]
Type String The type of the metadata item [optional]
ObjectTypes []String The types of objects [optional]
Description String Describes the metadata item [optional]
Values []AccessModelMetadataValuesInner The value to assign to the metadata item [optional]

Examples

  • Prepare the resource
$AccessModelMetadata = Initialize-AccessModelMetadata  -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]