mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-09 12:27:47 +00:00
adding powershell sdk docs back
This commit is contained in:
@@ -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]](#)
|
||||
|
||||
Reference in New Issue
Block a user