adding v3 docs back in

This commit is contained in:
darrell-thobe-sp
2025-01-23 20:41:57 -05:00
parent f36c734ca4
commit 7194b934e8
658 changed files with 47533 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
---
id: backup-options
title: BackupOptions
pagination_label: BackupOptions
sidebar_label: BackupOptions
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'BackupOptions']
slug: /tools/sdk/powershell/v3/models/backup-options
tags: ['SDK', 'Software Development Kit', 'BackupOptions']
---
# BackupOptions
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**IncludeTypes** | Pointer to **[]String** | Object type names to be included in a Configuration Hub backup command. | [optional]
**ObjectOptions** | Pointer to [**map[string]ObjectExportImportNames**](object-export-import-names) | Additional options targeting specific objects related to each item in the includeTypes field. | [optional]
## Examples
- Prepare the resource
```powershell
$BackupOptions = Initialize-PSSailpoint.V3BackupOptions -IncludeTypes null `
-ObjectOptions {TRIGGER_SUBSCRIPTION={includedNames=[Trigger Subscription name]}}
```
- Convert the resource to JSON
```powershell
$BackupOptions | ConvertTo-JSON
```
[[Back to top]](#)