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,39 @@
---
id: network-configuration
title: NetworkConfiguration
pagination_label: NetworkConfiguration
sidebar_label: NetworkConfiguration
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'NetworkConfiguration']
slug: /tools/sdk/powershell/v3/models/network-configuration
tags: ['SDK', 'Software Development Kit', 'NetworkConfiguration']
---
# NetworkConfiguration
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Range** | Pointer to **[]String** | The collection of ip ranges. | [optional]
**Geolocation** | Pointer to **[]String** | The collection of country codes. | [optional]
**Whitelisted** | Pointer to **Boolean** | Denotes whether the provided lists are whitelisted or blacklisted for geo location. | [optional] [default to $false]
## Examples
- Prepare the resource
```powershell
$NetworkConfiguration = Initialize-PSSailpoint.V3NetworkConfiguration -Range [1.3.7.2, 255.255.255.252/30] `
-Geolocation [CA, FR, HT] `
-Whitelisted true
```
- Convert the resource to JSON
```powershell
$NetworkConfiguration | ConvertTo-JSON
```
[[Back to top]](#)