Update to powershell SDK docs: 13400083192

This commit is contained in:
developer-relations-sp
2025-02-18 21:09:13 +00:00
parent 63e80b2c1b
commit d8aeab4d75
78 changed files with 1364 additions and 340 deletions

View File

@@ -16,8 +16,6 @@ tags: ['SDK', 'Software Development Kit', 'AccessProfileDocument', 'AccessProfil
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | **String** | Access profile's ID. | [required]
**Name** | **String** | Access profile's name. | [required]
**Description** | **String** | Access item's description. | [optional]
**Created** | **System.DateTime** | ISO-8601 date-time referring to the time when the object was created. | [optional]
**Modified** | **System.DateTime** | ISO-8601 date-time referring to the time when the object was last modified. | [optional]
@@ -25,20 +23,22 @@ Name | Type | Description | Notes
**Enabled** | **Boolean** | Indicates whether the access item is currently enabled. | [optional] [default to $false]
**Requestable** | **Boolean** | Indicates whether the access item can be requested. | [optional] [default to $true]
**RequestCommentsRequired** | **Boolean** | Indicates whether comments are required for requests to access the item. | [optional] [default to $false]
**Owner** | [**BaseAccessAllOfOwner**](base-access-all-of-owner) | | [optional]
**Type** | **Enum** [ "accessprofile", "accountactivity", "account", "aggregation", "entitlement", "event", "identity", "role" ] | Access profile's document type. This enum represents the currently supported document types. Additional values may be added in the future without notice. | [required]
**Owner** | [**BaseAccessOwner**](base-access-owner) | | [optional]
**Id** | **String** | Access profile's ID. | [required]
**Name** | **String** | Access profile's name. | [required]
**Source** | [**AccessProfileDocumentAllOfSource**](access-profile-document-all-of-source) | | [optional]
**Entitlements** | [**[]BaseEntitlement**](base-entitlement) | Entitlements the access profile has access to. | [optional]
**EntitlementCount** | **Int32** | Number of entitlements. | [optional]
**Segments** | [**[]BaseSegment**](base-segment) | Segments with the access profile. | [optional]
**SegmentCount** | **Int32** | Number of segments with the access profile. | [optional]
**Tags** | **[]String** | Tags that have been applied to the object. | [optional]
**Apps** | [**[]AccessApps**](access-apps) | Applications with the access profile | [optional]
## Examples
- Prepare the resource
```powershell
$AccessProfileDocument = Initialize-PSSailpoint.V3AccessProfileDocument -Id 2c9180825a6c1adc015a71c9023f0818 `
-Name Cloud Eng `
-Description The admin role `
$AccessProfileDocument = Initialize-PSSailpoint.V3AccessProfileDocument -Description Admin access `
-Created 2018-06-25T20:22:28.104Z `
-Modified 2018-06-25T20:22:28.104Z `
-Synced 2018-06-25T20:22:33.104Z `
@@ -46,11 +46,15 @@ $AccessProfileDocument = Initialize-PSSailpoint.V3AccessProfileDocument -Id 2c9
-Requestable true `
-RequestCommentsRequired false `
-Owner null `
-Type accessprofile `
-Id 2c9180825a6c1adc015a71c9023f0818 `
-Name Cloud Eng `
-Source null `
-Entitlements null `
-EntitlementCount 5 `
-Tags [TAG_1, TAG_2]
-Segments null `
-SegmentCount 1 `
-Tags [TAG_1, TAG_2] `
-Apps null
```
- Convert the resource to JSON