mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-07 20:37:46 +00:00
Update to powershell SDK docs: 13685764589
This commit is contained in:
@@ -0,0 +1,49 @@
|
||||
---
|
||||
id: v2024-access-model-metadata
|
||||
title: AccessModelMetadata
|
||||
pagination_label: AccessModelMetadata
|
||||
sidebar_label: AccessModelMetadata
|
||||
sidebar_class_name: powershellsdk
|
||||
keywords: ['powershell', 'PowerShell', 'sdk', 'AccessModelMetadata', 'V2024AccessModelMetadata']
|
||||
slug: /tools/sdk/powershell/v2024/models/access-model-metadata
|
||||
tags: ['SDK', 'Software Development Kit', 'AccessModelMetadata', 'V2024AccessModelMetadata']
|
||||
---
|
||||
|
||||
|
||||
# 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**](access-model-metadata-values-inner) | The value to assign to the metadata item | [optional]
|
||||
|
||||
## Examples
|
||||
|
||||
- Prepare the resource
|
||||
```powershell
|
||||
$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
|
||||
```powershell
|
||||
$AccessModelMetadata | ConvertTo-JSON
|
||||
```
|
||||
|
||||
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user