Update to powershell SDK docs: 14132734151

This commit is contained in:
developer-relations-sp
2025-03-28 15:47:21 +00:00
parent 74a9e68543
commit 505a2245eb
31 changed files with 3035 additions and 226 deletions

View File

@@ -0,0 +1,41 @@
---
id: v2024-connector-customizer-create-response
title: ConnectorCustomizerCreateResponse
pagination_label: ConnectorCustomizerCreateResponse
sidebar_label: ConnectorCustomizerCreateResponse
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'ConnectorCustomizerCreateResponse', 'V2024ConnectorCustomizerCreateResponse']
slug: /tools/sdk/powershell/v2024/models/connector-customizer-create-response
tags: ['SDK', 'Software Development Kit', 'ConnectorCustomizerCreateResponse', 'V2024ConnectorCustomizerCreateResponse']
---
# ConnectorCustomizerCreateResponse
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | **String** | the ID of connector customizer. | [optional]
**Name** | **String** | name of the connector customizer. | [optional]
**TenantID** | **String** | Connector customizer tenant id. | [optional]
**Created** | **System.DateTime** | Date-time when the connector customizer was created. | [optional]
## Examples
- Prepare the resource
```powershell
$ConnectorCustomizerCreateResponse = Initialize-PSSailpoint.V2024ConnectorCustomizerCreateResponse -Id b07dc46a-1498-4de8-bfbb-259a68e70c8a `
-Name connector-customizer-name `
-TenantID 2c91808568c529c60168cca6f90c1324 `
-Created null
```
- Convert the resource to JSON
```powershell
$ConnectorCustomizerCreateResponse | ConvertTo-JSON
```
[[Back to top]](#)