mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-09 20:37:47 +00:00
adding powershell sdk docs back
This commit is contained in:
47
docs/tools/sdk/powershell/Reference/V2024/Models/Tenant.md
Normal file
47
docs/tools/sdk/powershell/Reference/V2024/Models/Tenant.md
Normal file
@@ -0,0 +1,47 @@
|
||||
---
|
||||
id: v2024-tenant
|
||||
title: Tenant
|
||||
pagination_label: Tenant
|
||||
sidebar_label: Tenant
|
||||
sidebar_class_name: powershellsdk
|
||||
keywords: ['powershell', 'PowerShell', 'sdk', 'Tenant', 'V2024Tenant']
|
||||
slug: /tools/sdk/powershell/v2024/models/tenant
|
||||
tags: ['SDK', 'Software Development Kit', 'Tenant', 'V2024Tenant']
|
||||
---
|
||||
|
||||
|
||||
# Tenant
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**Id** | Pointer to **String** | The unique identifier for the Tenant | [optional] [readonly]
|
||||
**Name** | Pointer to **String** | Abbreviated name of the Tenant | [optional]
|
||||
**FullName** | Pointer to **String** | Human-readable name of the Tenant | [optional]
|
||||
**Pod** | Pointer to **String** | Deployment pod for the Tenant | [optional]
|
||||
**Region** | Pointer to **String** | Deployment region for the Tenant | [optional]
|
||||
**Description** | Pointer to **String** | Description of the Tenant | [optional]
|
||||
**Products** | Pointer to [**[]Product**](product) | | [optional]
|
||||
|
||||
## Examples
|
||||
|
||||
- Prepare the resource
|
||||
```powershell
|
||||
$Tenant = Initialize-PSSailpoint.V2024Tenant -Id 2c91808568c529c60168cca6f90c1324 `
|
||||
-Name acme `
|
||||
-FullName Acme, Inc `
|
||||
-Pod example-pod `
|
||||
-Region us-east-1 `
|
||||
-Description Description of the Tenant `
|
||||
-Products null
|
||||
```
|
||||
|
||||
- Convert the resource to JSON
|
||||
```powershell
|
||||
$Tenant | ConvertTo-JSON
|
||||
```
|
||||
|
||||
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user