adding powershell sdk docs back

This commit is contained in:
darrell-thobe-sp
2025-01-28 13:29:29 -05:00
parent 248e4afe6b
commit c69a78b807
2822 changed files with 201703 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
---
id: v2024-network-configuration
title: NetworkConfiguration
pagination_label: NetworkConfiguration
sidebar_label: NetworkConfiguration
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'NetworkConfiguration', 'V2024NetworkConfiguration']
slug: /tools/sdk/powershell/v2024/models/network-configuration
tags: ['SDK', 'Software Development Kit', 'NetworkConfiguration', 'V2024NetworkConfiguration']
---
# 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.V2024NetworkConfiguration -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]](#)