add method and model docs for powershell and python v2025

This commit is contained in:
darrell-thobe-sp
2025-04-01 09:23:12 -04:00
parent c12ffb7efc
commit 5d8f458a33
2414 changed files with 191212 additions and 0 deletions

View File

@@ -0,0 +1,41 @@
---
id: v2025-connector-customizer-create-response
title: ConnectorCustomizerCreateResponse
pagination_label: ConnectorCustomizerCreateResponse
sidebar_label: ConnectorCustomizerCreateResponse
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'ConnectorCustomizerCreateResponse', 'V2025ConnectorCustomizerCreateResponse']
slug: /tools/sdk/powershell/v2025/models/connector-customizer-create-response
tags: ['SDK', 'Software Development Kit', 'ConnectorCustomizerCreateResponse', 'V2025ConnectorCustomizerCreateResponse']
---
# 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.V2025ConnectorCustomizerCreateResponse -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]](#)