mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-07 12:27:47 +00:00
adding powershell sdk docs back
This commit is contained in:
@@ -0,0 +1,45 @@
|
||||
---
|
||||
id: beta-access-profile-update-item
|
||||
title: AccessProfileUpdateItem
|
||||
pagination_label: AccessProfileUpdateItem
|
||||
sidebar_label: AccessProfileUpdateItem
|
||||
sidebar_class_name: powershellsdk
|
||||
keywords: ['powershell', 'PowerShell', 'sdk', 'AccessProfileUpdateItem', 'BetaAccessProfileUpdateItem']
|
||||
slug: /tools/sdk/powershell/beta/models/access-profile-update-item
|
||||
tags: ['SDK', 'Software Development Kit', 'AccessProfileUpdateItem', 'BetaAccessProfileUpdateItem']
|
||||
---
|
||||
|
||||
|
||||
# AccessProfileUpdateItem
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**Id** | **String** | Identifier of Access Profile in bulk update request. | [required]
|
||||
**Requestable** | **Boolean** | Access Profile requestable or not. | [required]
|
||||
**Status** | **String** | The HTTP response status code returned for an individual Access Profile that is requested for update during a bulk update operation. > 201 - Access profile is updated successfully. > 404 - Access profile not found. | [required]
|
||||
**Description** | Pointer to **String** | Human readable status description and containing additional context information about success or failures etc. | [optional]
|
||||
|
||||
## Examples
|
||||
|
||||
- Prepare the resource
|
||||
```powershell
|
||||
$AccessProfileUpdateItem = Initialize-PSSailpoint.BetaAccessProfileUpdateItem -Id 2c7180a46faadee4016fb4e018c20642 `
|
||||
-Requestable false `
|
||||
-Status 201 `
|
||||
-Description
|
||||
> Access profile is updated successfully.
|
||||
|
||||
> Referenced Access profile with Id "2c7180a46faadee4016fb4e018c20642" was not found.
|
||||
|
||||
```
|
||||
|
||||
- Convert the resource to JSON
|
||||
```powershell
|
||||
$AccessProfileUpdateItem | ConvertTo-JSON
|
||||
```
|
||||
|
||||
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user