diff --git a/.github/workflows/jcapi-powershell-ci.yml b/.github/workflows/jcapi-powershell-ci.yml index 4d07690d8..da7bbc6af 100644 --- a/.github/workflows/jcapi-powershell-ci.yml +++ b/.github/workflows/jcapi-powershell-ci.yml @@ -22,6 +22,8 @@ jobs: V1: ${{ steps.set_labels.outputs.V1 }} V2: ${{ steps.set_labels.outputs.V2 }} DIRECTORYINSIGHTS: ${{ steps.set_labels.outputs.DIRECTORYINSIGHTS }} + # When PR has label skip-api-transform, BuildAutoRest runs with -RunApiTransform:$false + SKIP_API_TRANSFORM: ${{ steps.set_labels.outputs.SKIP_API_TRANSFORM }} steps: - name: Set Environment Variables from PR Labels id: set_labels @@ -74,6 +76,14 @@ jobs: Write-Host "Module label 'DirectoryInsights' found" echo "directoryinsights=true" >> $env:GITHUB_OUTPUT } + + # Optional: skip ApiTransform.ps1 (remote spec fetch + JSON transforms) during CI builds + if ('skip-api-transform' -in $PR_LABEL_LIST) { + Write-Host "Label 'skip-api-transform' found: BuildAutoRest will use -RunApiTransform:`$false" + echo "SKIP_API_TRANSFORM=true" >> $env:GITHUB_OUTPUT + } else { + echo "SKIP_API_TRANSFORM=false" >> $env:GITHUB_OUTPUT + } env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -134,6 +144,7 @@ jobs: v2: ${{ needs.Check-PR-Labels.outputs.v2 }} directoryinsights: ${{ needs.Check-PR-Labels.outputs.directoryinsights }} RELEASE_TYPE: ${{ needs.Check-PR-Labels.outputs.RELEASE_TYPE }} + SKIP_API_TRANSFORM: ${{ needs.Check-PR-Labels.outputs.SKIP_API_TRANSFORM }} run: | # Construct the PR_LABELS variable for the Pester test script $prLabels = @() @@ -157,6 +168,8 @@ jobs: if: contains(github.event.pull_request.labels.*.name, 'DirectoryInsights') runs-on: ubuntu-latest timeout-minutes: 70 + env: + SKIP_API_TRANSFORM: ${{ needs.Check-PR-Labels.outputs.SKIP_API_TRANSFORM }} steps: - uses: actions/checkout@v4 - uses: actions/cache@v3 @@ -166,7 +179,8 @@ jobs: - name: Build JumpCloud.SDK.DirectoryInsights shell: pwsh run: | - ./BuildAutoRest -SDKName:("JumpCloud.SDK.DirectoryInsights") -ModuleVersionIncrementType "${{ needs.Check-PR-Labels.outputs.RELEASE_TYPE }}" + $runApiTransform = $env:SKIP_API_TRANSFORM -ne 'true' + ./BuildAutoRest -SDKName:("JumpCloud.SDK.DirectoryInsights") -ModuleVersionIncrementType "${{ needs.Check-PR-Labels.outputs.RELEASE_TYPE }}" -RunApiTransform:$runApiTransform - name: Pack JumpCloud.SDK.DirectoryInsights Module shell: pwsh run: | @@ -195,6 +209,8 @@ jobs: if: contains(github.event.pull_request.labels.*.name, 'v1') runs-on: ubuntu-latest timeout-minutes: 70 + env: + SKIP_API_TRANSFORM: ${{ needs.Check-PR-Labels.outputs.SKIP_API_TRANSFORM }} steps: - uses: actions/checkout@v4 - uses: actions/cache@v3 @@ -204,7 +220,8 @@ jobs: - name: Build JumpCloud.SDK.V1 shell: pwsh run: | - ./BuildAutoRest -SDKName:("JumpCloud.SDK.V1") -ModuleVersionIncrementType "${{ needs.Check-PR-Labels.outputs.RELEASE_TYPE }}" + $runApiTransform = $env:SKIP_API_TRANSFORM -ne 'true' + ./BuildAutoRest -SDKName:("JumpCloud.SDK.V1") -ModuleVersionIncrementType "${{ needs.Check-PR-Labels.outputs.RELEASE_TYPE }}" -RunApiTransform:$runApiTransform - name: Pack JumpCloud.SDK.V1 Module shell: pwsh run: | @@ -233,6 +250,8 @@ jobs: if: contains(github.event.pull_request.labels.*.name, 'v2') runs-on: ubuntu-latest timeout-minutes: 70 + env: + SKIP_API_TRANSFORM: ${{ needs.Check-PR-Labels.outputs.SKIP_API_TRANSFORM }} steps: - uses: actions/checkout@v4 - uses: actions/cache@v3 @@ -242,7 +261,8 @@ jobs: - name: Build JumpCloud.SDK.V2 shell: pwsh run: | - ./BuildAutoRest -SDKName:("JumpCloud.SDK.V2") -ModuleVersionIncrementType "${{ needs.Check-PR-Labels.outputs.RELEASE_TYPE }}" + $runApiTransform = $env:SKIP_API_TRANSFORM -ne 'true' + ./BuildAutoRest -SDKName:("JumpCloud.SDK.V2") -ModuleVersionIncrementType "${{ needs.Check-PR-Labels.outputs.RELEASE_TYPE }}" -RunApiTransform:$runApiTransform - name: Pack JumpCloud.SDK.V2 Module shell: pwsh run: | diff --git a/ApiTransform.ps1 b/ApiTransform.ps1 index 5bf4711e3..de12faefa 100644 --- a/ApiTransform.ps1 +++ b/ApiTransform.ps1 @@ -543,16 +543,16 @@ function Add-ParameterizedHost { # Determine host prefix and enum values based on existing host $hostPrefix = 'console' - $enumValues = @('console', 'console.eu') + $enumValues = @('console', 'console.eu', 'console.in') if ($SwaggerObject.Contains('host')) { $currentHost = $SwaggerObject['host'] if ($currentHost -like 'api.jumpcloud.com*') { $hostPrefix = 'api' - $enumValues = @('api', 'api.eu') + $enumValues = @('api', 'api.eu', 'api.in') } elseif ($currentHost -like 'console.jumpcloud.com*') { $hostPrefix = 'console' - $enumValues = @('console', 'console.eu') + $enumValues = @('console', 'console.eu', 'console.in') } } @@ -563,7 +563,7 @@ function Add-ParameterizedHost { parameters = @( [ordered]@{ name = if ($SDKName -eq "JumpCloud.SDK.DirectoryInsights") { 'apiHost' } else { 'consoleHost' } - description = "Region for JumpCloud API host. Use '$hostPrefix' for US or '$hostPrefix.eu' for EU." + description = "Region for JumpCloud API host. Use '$hostPrefix' for US, '$hostPrefix.eu' for EU or '$hostPrefix.in' for IN." required = $true type = 'string' in = 'client' diff --git a/BuildAutoRest.ps1 b/BuildAutoRest.ps1 index 29cb8478a..d373cbec1 100644 --- a/BuildAutoRest.ps1 +++ b/BuildAutoRest.ps1 @@ -190,7 +190,7 @@ ForEach ($SDK In $SDKName) } # After AutoRest generation, create a ModuleIdentifier.cs file for each SDK $moduleIdentifierPath = "$OutputFullPath/custom/ModuleIdentifier.cs" - $sdkIdentifier = switch ($SDKNameItem) { + $sdkIdentifier = switch ($SDKName) { 'JumpCloud.SDK.DirectoryInsights' { 'DirectoryInsights' } 'JumpCloud.SDK.V1' { 'V1' } 'JumpCloud.SDK.V2' { 'V2' } diff --git a/Configs/JumpCloud.SDK.DirectoryInsights.yaml b/Configs/JumpCloud.SDK.DirectoryInsights.yaml index d2838326f..9b4a51104 100644 --- a/Configs/JumpCloud.SDK.DirectoryInsights.yaml +++ b/Configs/JumpCloud.SDK.DirectoryInsights.yaml @@ -11,7 +11,7 @@ powershell: true dll-name: JumpCloud.SDK.DirectoryInsights.private base-folder: .. debug: true -module-version: 0.1.1 +module-version: 0.2.0 metadata: iconUri: https://console.jumpcloud.com/img/login-viewport-logo.png licenseUri: https://github.com/TheJumpCloud/jcapi-powershell/tree/$(branch)/LICENSE diff --git a/Configs/JumpCloud.SDK.V1.yaml b/Configs/JumpCloud.SDK.V1.yaml index 26f09cac6..edac09c84 100644 --- a/Configs/JumpCloud.SDK.V1.yaml +++ b/Configs/JumpCloud.SDK.V1.yaml @@ -33,7 +33,7 @@ input-file: module-name: JumpCloud.SDK.V1 namespace: JumpCloud.SDK.V1 sample-generation: true -module-version: 0.1.3 +module-version: 0.2.0 dll-name: JumpCloud.SDK.V1.private directive: diff --git a/Configs/JumpCloud.SDK.V2.yaml b/Configs/JumpCloud.SDK.V2.yaml index 50d54619c..07caab071 100644 --- a/Configs/JumpCloud.SDK.V2.yaml +++ b/Configs/JumpCloud.SDK.V2.yaml @@ -28,6 +28,6 @@ verbose: true module-name: JumpCloud.SDK.V2 output-folder: SDKs/PowerShell/JumpCloud.SDK.V2 dll-name: JumpCloud.SDK.V2.private -module-version: 0.2.1 +module-version: 0.3.0 powershell: true base-folder: .. diff --git a/Custom/Module.cs b/Custom/Module.cs index 9744bba08..963471dba 100644 --- a/Custom/Module.cs +++ b/Custom/Module.cs @@ -42,6 +42,10 @@ private void SetDefaultHostEnvInPowerShellSession() apiHostValue = "api.eu"; consoleHostValue = "console.eu"; break; + case "IN": + apiHostValue = "api.in"; + consoleHostValue = "console.in"; + break; case "STAGING": apiHostValue = "api.stg01"; consoleHostValue = "console.stg01"; @@ -53,6 +57,11 @@ private void SetDefaultHostEnvInPowerShellSession() apiHostValue = "api.eu"; consoleHostValue = "console.eu"; } + else if (userInputEnvValue.Contains(".in")) + { + apiHostValue = "api.in"; + consoleHostValue = "console.in"; + } else if (userInputEnvValue.Contains(".stg01")) { apiHostValue = "api.stg01"; @@ -81,8 +90,8 @@ private void SetDefaultHostEnvInPowerShellSession() { string defaultHostPrefix = ModuleIdentifier.SDKName == "DirectoryInsights" ? "api" : "console"; Console.WriteLine("JumpCloud SDK Module: {0} is running in the '{1}.jumpcloud.com' host environment.", ModuleIdentifier.SDKName, defaultHostPrefix); - Console.WriteLine("'{0}.jumpcloud.com' is the standard environment; '{0}.eu.jumpcloud.com' is the EU environment.", defaultHostPrefix); - Console.WriteLine("To use the EU environment, run: $ENV:{0} = 'EU' and re-import the module.", envVarNameForDefaultHostEnv); + Console.WriteLine("'{0}.jumpcloud.com' is the standard environment; '{0}.eu.jumpcloud.com' is the EU environment; '{0}.in.jumpcloud.com' is the India environment.", defaultHostPrefix); + Console.WriteLine("To use the EU or IN environments, run: $ENV:{0} = 'EU' or 'IN' and re-import the module.", envVarNameForDefaultHostEnv); Console.WriteLine("To use the standard environment, run: $ENV:{0} = 'STANDARD' and re-import the module.", envVarNameForDefaultHostEnv); } @@ -180,8 +189,8 @@ protected async Task AddAuthHeaders(HttpRequestMessage requ System.Environment.SetEnvironmentVariable("JCEnvironment", HostEnv); // Translate to both formats and set parameter defaults - string apiHost = HostEnv.Contains(".eu") ? "api.eu" : (HostEnv.Contains(".stg01") ? "api.stg01" : "api"); - string consoleHost = HostEnv.Contains(".eu") ? "console.eu" : (HostEnv.Contains(".stg01") ? "console.stg01" : "console"); + string apiHost = HostEnv.Contains(".eu") ? "api.eu" : HostEnv.Contains(".in") ? "api.in" : HostEnv.Contains(".stg01") ? "api.stg01" : "api"; + string consoleHost = HostEnv.Contains(".eu") ? "console.eu" : HostEnv.Contains(".in") ? "console.in" : HostEnv.Contains(".stg01") ? "console.stg01" : "console"; SetPSDefaultHostEnvParameterValue(apiHost, consoleHost); } diff --git a/JumpCloud.SDK.DirectoryInsights.md b/JumpCloud.SDK.DirectoryInsights.md index 30aef8176..dded946ce 100644 --- a/JumpCloud.SDK.DirectoryInsights.md +++ b/JumpCloud.SDK.DirectoryInsights.md @@ -1,3 +1,35 @@ +## JumpCloud.SDK.DirectoryInsights-0.2.0 +Release Date: May 20, 2026 +#### RELEASE NOTES +``` +Support for the IN region has been added to the Directory Insights SDK. +``` +#### FEATURES: +Support for the IN region has been added to the Directory Insights SDK. +#### IMPROVEMENTS: +NA +#### BUG FIXES: +NA +#### Generated Changes: + +
+Functions Added + +No changes +
+ +
+Functions Modified + +No changes +
+ +
+Functions Removed + +No changes +
+ ## JumpCloud.SDK.DirectoryInsights-0.1.1 Release Date: November 24, 2025 #### RELEASE NOTES diff --git a/JumpCloud.SDK.V1.md b/JumpCloud.SDK.V1.md index 4b5722530..564c38fc6 100644 --- a/JumpCloud.SDK.V1.md +++ b/JumpCloud.SDK.V1.md @@ -1,3 +1,35 @@ +## JumpCloud.SDK.V1-0.2.0 +Release Date: May 20, 2026 +#### RELEASE NOTES +``` +Support for the IN region has been added to the V1 SDK. +``` +#### FEATURES: +Support for the IN region has been added to the V1 SDK. +#### IMPROVEMENTS: +NA +#### BUG FIXES: +NA +#### Generated Changes: + +
+Functions Added + +No changes +
+ +
+Functions Modified + +No changes +
+ +
+Functions Removed + +No changes +
+ ## JumpCloud.SDK.V1-0.1.3 Release Date: March 26, 2026 #### RELEASE NOTES diff --git a/JumpCloud.SDK.V2.md b/JumpCloud.SDK.V2.md index afd361a5a..575ffda81 100644 --- a/JumpCloud.SDK.V2.md +++ b/JumpCloud.SDK.V2.md @@ -1,3 +1,35 @@ +## JumpCloud.SDK.V2-0.3.0 +Release Date: May 20, 2026 +#### RELEASE NOTES +``` +Support for the IN region has been added to the V2 SDK. +``` +#### FEATURES: +Support for the IN region has been added to the V2 SDK. +#### IMPROVEMENTS: +NA +#### BUG FIXES: +NA +#### Generated Changes: + +
+Functions Added + +No changes +
+ +
+Functions Modified + +No changes +
+ +
+Functions Removed + +No changes +
+ ## JumpCloud.SDK.V2-0.2.1 Release Date: March 26, 2026 #### RELEASE NOTES diff --git a/SDKs/PowerShell/JumpCloud.SDK.DirectoryInsights/JumpCloud.SDK.DirectoryInsights.csproj b/SDKs/PowerShell/JumpCloud.SDK.DirectoryInsights/JumpCloud.SDK.DirectoryInsights.csproj index 06bc5b8f7..f41ea3062 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.DirectoryInsights/JumpCloud.SDK.DirectoryInsights.csproj +++ b/SDKs/PowerShell/JumpCloud.SDK.DirectoryInsights/JumpCloud.SDK.DirectoryInsights.csproj @@ -1,7 +1,7 @@ - 0.1.1 + 0.2.0 7.1 netstandard2.0 Library diff --git a/SDKs/PowerShell/JumpCloud.SDK.DirectoryInsights/JumpCloud.SDK.DirectoryInsights.nuspec b/SDKs/PowerShell/JumpCloud.SDK.DirectoryInsights/JumpCloud.SDK.DirectoryInsights.nuspec index cf0076d5a..c4bcf5465 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.DirectoryInsights/JumpCloud.SDK.DirectoryInsights.nuspec +++ b/SDKs/PowerShell/JumpCloud.SDK.DirectoryInsights/JumpCloud.SDK.DirectoryInsights.nuspec @@ -2,7 +2,7 @@ JumpCloud.SDK.DirectoryInsights - 0.1.1 + 0.2.0 JumpCloud JumpCloud false diff --git a/SDKs/PowerShell/JumpCloud.SDK.DirectoryInsights/JumpCloud.SDK.DirectoryInsights.psd1 b/SDKs/PowerShell/JumpCloud.SDK.DirectoryInsights/JumpCloud.SDK.DirectoryInsights.psd1 index bf5cf0f90..1e88e0052 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.DirectoryInsights/JumpCloud.SDK.DirectoryInsights.psd1 +++ b/SDKs/PowerShell/JumpCloud.SDK.DirectoryInsights/JumpCloud.SDK.DirectoryInsights.psd1 @@ -3,7 +3,7 @@ # # Generated by: JumpCloud # -# Generated on: 11/24/2025 +# Generated on: 5/20/2026 # @{ @@ -12,7 +12,7 @@ RootModule = './JumpCloud.SDK.DirectoryInsights.psm1' # Version number of this module. -ModuleVersion = '0.1.1' +ModuleVersion = '0.2.0' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' diff --git a/SDKs/PowerShell/JumpCloud.SDK.DirectoryInsights/custom/Module.cs b/SDKs/PowerShell/JumpCloud.SDK.DirectoryInsights/custom/Module.cs index 94d1d3210..870e65618 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.DirectoryInsights/custom/Module.cs +++ b/SDKs/PowerShell/JumpCloud.SDK.DirectoryInsights/custom/Module.cs @@ -42,6 +42,10 @@ private void SetDefaultHostEnvInPowerShellSession() apiHostValue = "api.eu"; consoleHostValue = "console.eu"; break; + case "IN": + apiHostValue = "api.in"; + consoleHostValue = "console.in"; + break; case "STAGING": apiHostValue = "api.stg01"; consoleHostValue = "console.stg01"; @@ -53,6 +57,11 @@ private void SetDefaultHostEnvInPowerShellSession() apiHostValue = "api.eu"; consoleHostValue = "console.eu"; } + else if (userInputEnvValue.Contains(".in")) + { + apiHostValue = "api.in"; + consoleHostValue = "console.in"; + } else if (userInputEnvValue.Contains(".stg01")) { apiHostValue = "api.stg01"; @@ -81,8 +90,8 @@ private void SetDefaultHostEnvInPowerShellSession() { string defaultHostPrefix = ModuleIdentifier.SDKName == "DirectoryInsights" ? "api" : "console"; Console.WriteLine("JumpCloud SDK Module: {0} is running in the '{1}.jumpcloud.com' host environment.", ModuleIdentifier.SDKName, defaultHostPrefix); - Console.WriteLine("'{0}.jumpcloud.com' is the standard environment; '{0}.eu.jumpcloud.com' is the EU environment.", defaultHostPrefix); - Console.WriteLine("To use the EU environment, run: $ENV:{0} = 'EU' and re-import the module.", envVarNameForDefaultHostEnv); + Console.WriteLine("'{0}.jumpcloud.com' is the standard environment; '{0}.eu.jumpcloud.com' is the EU environment; '{0}.in.jumpcloud.com' is the India environment.", defaultHostPrefix); + Console.WriteLine("To use the EU or IN environments, run: $ENV:{0} = 'EU' or 'IN' and re-import the module.", envVarNameForDefaultHostEnv); Console.WriteLine("To use the standard environment, run: $ENV:{0} = 'STANDARD' and re-import the module.", envVarNameForDefaultHostEnv); } @@ -180,8 +189,8 @@ protected async Task AddAuthHeaders(HttpRequestMessage requ System.Environment.SetEnvironmentVariable("JCEnvironment", HostEnv); // Translate to both formats and set parameter defaults - string apiHost = HostEnv.Contains(".eu") ? "api.eu" : (HostEnv.Contains(".stg01") ? "api.stg01" : "api"); - string consoleHost = HostEnv.Contains(".eu") ? "console.eu" : (HostEnv.Contains(".stg01") ? "console.stg01" : "console"); + string apiHost = HostEnv.Contains(".eu") ? "api.eu" : HostEnv.Contains(".in") ? "api.in" : HostEnv.Contains(".stg01") ? "api.stg01" : "api"; + string consoleHost = HostEnv.Contains(".eu") ? "console.eu" : HostEnv.Contains(".in") ? "console.in" : HostEnv.Contains(".stg01") ? "console.stg01" : "console"; SetPSDefaultHostEnvParameterValue(apiHost, consoleHost); } @@ -212,10 +221,10 @@ protected async Task AddAuthHeaders(HttpRequestMessage requ request.Headers.Add("Accept", "application/json"); } // If headers do not contain an "UserAgent" with the correct value fix it - if (request.Headers.UserAgent.ToString() != "JumpCloud_JumpCloud.PowerShell.SDK.DirectoryInsights/0.1.1") + if (request.Headers.UserAgent.ToString() != "JumpCloud_JumpCloud.PowerShell.SDK.DirectoryInsights/0.2.0") { request.Headers.UserAgent.Clear(); - request.Headers.UserAgent.ParseAdd("JumpCloud_JumpCloud.PowerShell.SDK.DirectoryInsights/0.1.1"); + request.Headers.UserAgent.ParseAdd("JumpCloud_JumpCloud.PowerShell.SDK.DirectoryInsights/0.2.0"); } // // request.Headers.Add("Content-Type", "application/json"); System.Net.Http.HttpResponseMessage response = await next.SendAsync(request, callback); diff --git a/SDKs/PowerShell/JumpCloud.SDK.DirectoryInsights/docs/exports/Get-JcSdkEvent.md b/SDKs/PowerShell/JumpCloud.SDK.DirectoryInsights/docs/exports/Get-JcSdkEvent.md index a6c3b9573..81b7a5dc1 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.DirectoryInsights/docs/exports/Get-JcSdkEvent.md +++ b/SDKs/PowerShell/JumpCloud.SDK.DirectoryInsights/docs/exports/Get-JcSdkEvent.md @@ -40,14 +40,14 @@ curl -X POST 'https://api.jumpcloud.com/insights/directory/v1/events' -H 'Conten ### -------------------------- EXAMPLE 1 -------------------------- ```powershell -Get-JcSdkEvent -Service:() -StartTime:() -EndTime:() -ExactMatch:() -Fields:() -Limit:() -Q:() -SearchAfter:() -SearchTermAnd:() -SearchTermNot:() -SearchTermOr:() -Skip:() -Sort:() +) -StartTime:() -EndTime:() -ExactMatch:() -Fields:() -Limit:() -Q:() -SearchAfter:() -SearchTermAnd:() -SearchTermNot:() -SearchTermOr:() -Skip:() -Sort:() ``` ### -------------------------- EXAMPLE 2 -------------------------- ```powershell -Get-JcSdkEvent -Body:() +) ``` diff --git a/SDKs/PowerShell/JumpCloud.SDK.DirectoryInsights/docs/exports/Get-JcSdkEventCount.md b/SDKs/PowerShell/JumpCloud.SDK.DirectoryInsights/docs/exports/Get-JcSdkEventCount.md index e84ce7527..d00649068 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.DirectoryInsights/docs/exports/Get-JcSdkEventCount.md +++ b/SDKs/PowerShell/JumpCloud.SDK.DirectoryInsights/docs/exports/Get-JcSdkEventCount.md @@ -40,14 +40,14 @@ curl -X POST 'https://api.jumpcloud.com/insights/directory/v1/events/count' -H ' ### -------------------------- EXAMPLE 1 -------------------------- ```powershell -Get-JcSdkEventCount -Service:() -StartTime:() -EndTime:() -ExactMatch:() -Fields:() -Q:() -SearchAfter:() -SearchTermAnd:() -SearchTermNot:() -SearchTermOr:() -Sort:() +) -StartTime:() -EndTime:() -ExactMatch:() -Fields:() -Q:() -SearchAfter:() -SearchTermAnd:() -SearchTermNot:() -SearchTermOr:() -Sort:() ``` ### -------------------------- EXAMPLE 2 -------------------------- ```powershell -Get-JcSdkEventCount -Body:() +) ``` diff --git a/SDKs/PowerShell/JumpCloud.SDK.DirectoryInsights/docs/exports/Get-JcSdkEventDistinct.md b/SDKs/PowerShell/JumpCloud.SDK.DirectoryInsights/docs/exports/Get-JcSdkEventDistinct.md index 18fed97b9..008dbadf1 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.DirectoryInsights/docs/exports/Get-JcSdkEventDistinct.md +++ b/SDKs/PowerShell/JumpCloud.SDK.DirectoryInsights/docs/exports/Get-JcSdkEventDistinct.md @@ -39,14 +39,14 @@ curl -X POST 'https://api.jumpcloud.com/insights/directory/v1/events/distinct' - ### -------------------------- EXAMPLE 1 -------------------------- ```powershell -Get-JcSdkEventDistinct -Field:() -Service:() -StartTime:() -EndTime:() -SearchTermAnd:() -SearchTermNot:() -SearchTermOr:() +) -Service:() -StartTime:() -EndTime:() -SearchTermAnd:() -SearchTermNot:() -SearchTermOr:() ``` ### -------------------------- EXAMPLE 2 -------------------------- ```powershell -Get-JcSdkEventDistinct -Body:() +) ``` diff --git a/SDKs/PowerShell/JumpCloud.SDK.DirectoryInsights/docs/exports/Get-JcSdkEventInterval.md b/SDKs/PowerShell/JumpCloud.SDK.DirectoryInsights/docs/exports/Get-JcSdkEventInterval.md index 681d57102..316e63773 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.DirectoryInsights/docs/exports/Get-JcSdkEventInterval.md +++ b/SDKs/PowerShell/JumpCloud.SDK.DirectoryInsights/docs/exports/Get-JcSdkEventInterval.md @@ -40,14 +40,14 @@ curl -X POST 'https://api.jumpcloud.com/insights/directory/v1/events/interval' - ### -------------------------- EXAMPLE 1 -------------------------- ```powershell -Get-JcSdkEventInterval -IntervalUnit:() -Service:() -StartTime:() -EndTime:() -ExactMatch:() -IntervalValue:() -Q:() -SearchTermAnd:() -SearchTermNot:() -SearchTermOr:() -Timezone:() +) -Service:() -StartTime:() -EndTime:() -ExactMatch:() -IntervalValue:() -Q:() -SearchTermAnd:() -SearchTermNot:() -SearchTermOr:() -Timezone:() ``` ### -------------------------- EXAMPLE 2 -------------------------- ```powershell -Get-JcSdkEventInterval -Body:() +) ``` @@ -304,7 +304,7 @@ To create the parameters described below, construct a hash table containing the `BODY `: EventIntervalQuery is the users' command to search our auth logs for bucketed counts of values of the specified field - `Service >`: service name to query. - `StartTime `: query start time, UTC in RFC3339 format - - `IntervalUnit `: + - `IntervalUnit `: - `[EndTime ]`: optional query end time, UTC in RFC3339 format - `[ExactMatch ]`: optional string for specifying exact match query, do not use with full text query - `[IntervalValue ]`: Interval Value. This specifies how many units you want to bucket the event counts by diff --git a/SDKs/PowerShell/JumpCloud.SDK.DirectoryInsights/docs/exports/Get-JcSdkReportArtifactContent.md b/SDKs/PowerShell/JumpCloud.SDK.DirectoryInsights/docs/exports/Get-JcSdkReportArtifactContent.md index 5d1472e14..136ad4ec4 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.DirectoryInsights/docs/exports/Get-JcSdkReportArtifactContent.md +++ b/SDKs/PowerShell/JumpCloud.SDK.DirectoryInsights/docs/exports/Get-JcSdkReportArtifactContent.md @@ -30,7 +30,7 @@ Download a report by report ID and artifact ID ### -------------------------- EXAMPLE 1 -------------------------- ```powershell -Get-JcSdkReportArtifactContent -ArtifactId:() -ReportId:() +) -ReportId:() ``` diff --git a/SDKs/PowerShell/JumpCloud.SDK.DirectoryInsights/docs/exports/New-JcSdkReport.md b/SDKs/PowerShell/JumpCloud.SDK.DirectoryInsights/docs/exports/New-JcSdkReport.md index 63e100b4b..7170ababf 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.DirectoryInsights/docs/exports/New-JcSdkReport.md +++ b/SDKs/PowerShell/JumpCloud.SDK.DirectoryInsights/docs/exports/New-JcSdkReport.md @@ -30,7 +30,7 @@ Request a JumpCloud report to be generated asynchronously ### -------------------------- EXAMPLE 1 -------------------------- ```powershell -New-JcSdkReport -ReportType:() +) ``` diff --git a/SDKs/PowerShell/JumpCloud.SDK.V1/JumpCloud.SDK.V1.csproj b/SDKs/PowerShell/JumpCloud.SDK.V1/JumpCloud.SDK.V1.csproj index 7e7a9cb40..2be9ca3af 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V1/JumpCloud.SDK.V1.csproj +++ b/SDKs/PowerShell/JumpCloud.SDK.V1/JumpCloud.SDK.V1.csproj @@ -1,7 +1,7 @@ - 0.1.3 + 0.2.0 7.1 netstandard2.0 Library diff --git a/SDKs/PowerShell/JumpCloud.SDK.V1/JumpCloud.SDK.V1.nuspec b/SDKs/PowerShell/JumpCloud.SDK.V1/JumpCloud.SDK.V1.nuspec index 49f2d287a..a9b0d9eeb 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V1/JumpCloud.SDK.V1.nuspec +++ b/SDKs/PowerShell/JumpCloud.SDK.V1/JumpCloud.SDK.V1.nuspec @@ -2,7 +2,7 @@ JumpCloud.SDK.V1 - 0.1.3 + 0.2.0 JumpCloud JumpCloud false diff --git a/SDKs/PowerShell/JumpCloud.SDK.V1/JumpCloud.SDK.V1.psd1 b/SDKs/PowerShell/JumpCloud.SDK.V1/JumpCloud.SDK.V1.psd1 index 348123baa..371e2a880 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V1/JumpCloud.SDK.V1.psd1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V1/JumpCloud.SDK.V1.psd1 @@ -3,7 +3,7 @@ # # Generated by: JumpCloud # -# Generated on: 3/26/2026 +# Generated on: 5/20/2026 # @{ @@ -12,7 +12,7 @@ RootModule = './JumpCloud.SDK.V1.psm1' # Version number of this module. -ModuleVersion = '0.1.3' +ModuleVersion = '0.2.0' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' diff --git a/SDKs/PowerShell/JumpCloud.SDK.V1/custom/Module.cs b/SDKs/PowerShell/JumpCloud.SDK.V1/custom/Module.cs index 85494893d..756f13b54 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V1/custom/Module.cs +++ b/SDKs/PowerShell/JumpCloud.SDK.V1/custom/Module.cs @@ -42,6 +42,10 @@ private void SetDefaultHostEnvInPowerShellSession() apiHostValue = "api.eu"; consoleHostValue = "console.eu"; break; + case "IN": + apiHostValue = "api.in"; + consoleHostValue = "console.in"; + break; case "STAGING": apiHostValue = "api.stg01"; consoleHostValue = "console.stg01"; @@ -53,6 +57,11 @@ private void SetDefaultHostEnvInPowerShellSession() apiHostValue = "api.eu"; consoleHostValue = "console.eu"; } + else if (userInputEnvValue.Contains(".in")) + { + apiHostValue = "api.in"; + consoleHostValue = "console.in"; + } else if (userInputEnvValue.Contains(".stg01")) { apiHostValue = "api.stg01"; @@ -81,8 +90,8 @@ private void SetDefaultHostEnvInPowerShellSession() { string defaultHostPrefix = ModuleIdentifier.SDKName == "DirectoryInsights" ? "api" : "console"; Console.WriteLine("JumpCloud SDK Module: {0} is running in the '{1}.jumpcloud.com' host environment.", ModuleIdentifier.SDKName, defaultHostPrefix); - Console.WriteLine("'{0}.jumpcloud.com' is the standard environment; '{0}.eu.jumpcloud.com' is the EU environment.", defaultHostPrefix); - Console.WriteLine("To use the EU environment, run: $ENV:{0} = 'EU' and re-import the module.", envVarNameForDefaultHostEnv); + Console.WriteLine("'{0}.jumpcloud.com' is the standard environment; '{0}.eu.jumpcloud.com' is the EU environment; '{0}.in.jumpcloud.com' is the India environment.", defaultHostPrefix); + Console.WriteLine("To use the EU or IN environments, run: $ENV:{0} = 'EU' or 'IN' and re-import the module.", envVarNameForDefaultHostEnv); Console.WriteLine("To use the standard environment, run: $ENV:{0} = 'STANDARD' and re-import the module.", envVarNameForDefaultHostEnv); } @@ -180,8 +189,8 @@ protected async Task AddAuthHeaders(HttpRequestMessage requ System.Environment.SetEnvironmentVariable("JCEnvironment", HostEnv); // Translate to both formats and set parameter defaults - string apiHost = HostEnv.Contains(".eu") ? "api.eu" : (HostEnv.Contains(".stg01") ? "api.stg01" : "api"); - string consoleHost = HostEnv.Contains(".eu") ? "console.eu" : (HostEnv.Contains(".stg01") ? "console.stg01" : "console"); + string apiHost = HostEnv.Contains(".eu") ? "api.eu" : HostEnv.Contains(".in") ? "api.in" : HostEnv.Contains(".stg01") ? "api.stg01" : "api"; + string consoleHost = HostEnv.Contains(".eu") ? "console.eu" : HostEnv.Contains(".in") ? "console.in" : HostEnv.Contains(".stg01") ? "console.stg01" : "console"; SetPSDefaultHostEnvParameterValue(apiHost, consoleHost); } @@ -212,10 +221,10 @@ protected async Task AddAuthHeaders(HttpRequestMessage requ request.Headers.Add("Accept", "application/json"); } // If headers do not contain an "UserAgent" with the correct value fix it - if (request.Headers.UserAgent.ToString() != "JumpCloud_JumpCloud.PowerShell.SDK.V1/0.1.3") + if (request.Headers.UserAgent.ToString() != "JumpCloud_JumpCloud.PowerShell.SDK.V1/0.2.0") { request.Headers.UserAgent.Clear(); - request.Headers.UserAgent.ParseAdd("JumpCloud_JumpCloud.PowerShell.SDK.V1/0.1.3"); + request.Headers.UserAgent.ParseAdd("JumpCloud_JumpCloud.PowerShell.SDK.V1/0.2.0"); } // // request.Headers.Add("Content-Type", "application/json"); System.Net.Http.HttpResponseMessage response = await next.SendAsync(request, callback); diff --git a/SDKs/PowerShell/JumpCloud.SDK.V1/docs/exports/Get-JcSdkApplication.md b/SDKs/PowerShell/JumpCloud.SDK.V1/docs/exports/Get-JcSdkApplication.md index fe27d6601..a00ee4e2c 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V1/docs/exports/Get-JcSdkApplication.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V1/docs/exports/Get-JcSdkApplication.md @@ -134,7 +134,7 @@ A filter to apply to the query. Populate with a valid field from an endpoint response. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: List Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V1/docs/exports/Get-JcSdkApplicationTemplate.md b/SDKs/PowerShell/JumpCloud.SDK.V1/docs/exports/Get-JcSdkApplicationTemplate.md index 3776f36ed..c52694be5 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V1/docs/exports/Get-JcSdkApplicationTemplate.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V1/docs/exports/Get-JcSdkApplicationTemplate.md @@ -170,7 +170,7 @@ A filter to apply to the query. Populate with a valid field from an endpoint response. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V1/docs/exports/Get-JcSdkCommand.md b/SDKs/PowerShell/JumpCloud.SDK.V1/docs/exports/Get-JcSdkCommand.md index a13cfc5f4..754d227c7 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V1/docs/exports/Get-JcSdkCommand.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V1/docs/exports/Get-JcSdkCommand.md @@ -139,7 +139,7 @@ A filter to apply to the query. Populate with a valid field from an endpoint response. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: List Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V1/docs/exports/Get-JcSdkCommandResult.md b/SDKs/PowerShell/JumpCloud.SDK.V1/docs/exports/Get-JcSdkCommandResult.md index e3bb29791..6059f86a1 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V1/docs/exports/Get-JcSdkCommandResult.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V1/docs/exports/Get-JcSdkCommandResult.md @@ -103,7 +103,7 @@ A filter to apply to the query. Populate with a valid field from an endpoint response. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: Get, GetViaIdentity Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V1/docs/exports/Get-JcSdkOrganization.md b/SDKs/PowerShell/JumpCloud.SDK.V1/docs/exports/Get-JcSdkOrganization.md index d8774250a..a8270685c 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V1/docs/exports/Get-JcSdkOrganization.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V1/docs/exports/Get-JcSdkOrganization.md @@ -140,7 +140,7 @@ A filter to apply to the query. Populate with a valid field from an endpoint response. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V1/docs/exports/Get-JcSdkRadiusServer.md b/SDKs/PowerShell/JumpCloud.SDK.V1/docs/exports/Get-JcSdkRadiusServer.md index a099a64d8..00d371ec8 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V1/docs/exports/Get-JcSdkRadiusServer.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V1/docs/exports/Get-JcSdkRadiusServer.md @@ -128,7 +128,7 @@ A filter to apply to the query. Populate with a valid field from an endpoint response. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: List Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V1/docs/exports/Get-JcSdkSystem.md b/SDKs/PowerShell/JumpCloud.SDK.V1/docs/exports/Get-JcSdkSystem.md index 3b1f3aaed..706accf7f 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V1/docs/exports/Get-JcSdkSystem.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V1/docs/exports/Get-JcSdkSystem.md @@ -248,7 +248,7 @@ A filter to apply to the query. Populate with a valid field from an endpoint response. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V1/docs/exports/Get-JcSdkUser.md b/SDKs/PowerShell/JumpCloud.SDK.V1/docs/exports/Get-JcSdkUser.md index 5a734810f..c8ef576f1 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V1/docs/exports/Get-JcSdkUser.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V1/docs/exports/Get-JcSdkUser.md @@ -234,7 +234,7 @@ A filter to apply to the query. Populate with a valid field from an endpoint response. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/JumpCloud.SDK.V2.csproj b/SDKs/PowerShell/JumpCloud.SDK.V2/JumpCloud.SDK.V2.csproj index 7cbd6c9e0..ac7aaf1a3 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/JumpCloud.SDK.V2.csproj +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/JumpCloud.SDK.V2.csproj @@ -1,7 +1,7 @@ - 0.2.1 + 0.3.0 7.1 netstandard2.0 Library diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/JumpCloud.SDK.V2.nuspec b/SDKs/PowerShell/JumpCloud.SDK.V2/JumpCloud.SDK.V2.nuspec index 46d6b0550..d68102a68 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/JumpCloud.SDK.V2.nuspec +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/JumpCloud.SDK.V2.nuspec @@ -2,7 +2,7 @@ JumpCloud.SDK.V2 - 0.2.1 + 0.3.0 JumpCloud JumpCloud false diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/JumpCloud.SDK.V2.psd1 b/SDKs/PowerShell/JumpCloud.SDK.V2/JumpCloud.SDK.V2.psd1 index 64fc05cb0..6cde7db62 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/JumpCloud.SDK.V2.psd1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/JumpCloud.SDK.V2.psd1 @@ -3,7 +3,7 @@ # # Generated by: JumpCloud # -# Generated on: 3/26/2026 +# Generated on: 5/20/2026 # @{ @@ -12,7 +12,7 @@ RootModule = './JumpCloud.SDK.V2.psm1' # Version number of this module. -ModuleVersion = '0.2.1' +ModuleVersion = '0.3.0' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/Module.cs b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/Module.cs index 0cb6abc47..0747ef56a 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/Module.cs +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/Module.cs @@ -42,6 +42,10 @@ private void SetDefaultHostEnvInPowerShellSession() apiHostValue = "api.eu"; consoleHostValue = "console.eu"; break; + case "IN": + apiHostValue = "api.in"; + consoleHostValue = "console.in"; + break; case "STAGING": apiHostValue = "api.stg01"; consoleHostValue = "console.stg01"; @@ -53,6 +57,11 @@ private void SetDefaultHostEnvInPowerShellSession() apiHostValue = "api.eu"; consoleHostValue = "console.eu"; } + else if (userInputEnvValue.Contains(".in")) + { + apiHostValue = "api.in"; + consoleHostValue = "console.in"; + } else if (userInputEnvValue.Contains(".stg01")) { apiHostValue = "api.stg01"; @@ -81,8 +90,8 @@ private void SetDefaultHostEnvInPowerShellSession() { string defaultHostPrefix = ModuleIdentifier.SDKName == "DirectoryInsights" ? "api" : "console"; Console.WriteLine("JumpCloud SDK Module: {0} is running in the '{1}.jumpcloud.com' host environment.", ModuleIdentifier.SDKName, defaultHostPrefix); - Console.WriteLine("'{0}.jumpcloud.com' is the standard environment; '{0}.eu.jumpcloud.com' is the EU environment.", defaultHostPrefix); - Console.WriteLine("To use the EU environment, run: $ENV:{0} = 'EU' and re-import the module.", envVarNameForDefaultHostEnv); + Console.WriteLine("'{0}.jumpcloud.com' is the standard environment; '{0}.eu.jumpcloud.com' is the EU environment; '{0}.in.jumpcloud.com' is the India environment.", defaultHostPrefix); + Console.WriteLine("To use the EU or IN environments, run: $ENV:{0} = 'EU' or 'IN' and re-import the module.", envVarNameForDefaultHostEnv); Console.WriteLine("To use the standard environment, run: $ENV:{0} = 'STANDARD' and re-import the module.", envVarNameForDefaultHostEnv); } @@ -180,8 +189,8 @@ protected async Task AddAuthHeaders(HttpRequestMessage requ System.Environment.SetEnvironmentVariable("JCEnvironment", HostEnv); // Translate to both formats and set parameter defaults - string apiHost = HostEnv.Contains(".eu") ? "api.eu" : (HostEnv.Contains(".stg01") ? "api.stg01" : "api"); - string consoleHost = HostEnv.Contains(".eu") ? "console.eu" : (HostEnv.Contains(".stg01") ? "console.stg01" : "console"); + string apiHost = HostEnv.Contains(".eu") ? "api.eu" : HostEnv.Contains(".in") ? "api.in" : HostEnv.Contains(".stg01") ? "api.stg01" : "api"; + string consoleHost = HostEnv.Contains(".eu") ? "console.eu" : HostEnv.Contains(".in") ? "console.in" : HostEnv.Contains(".stg01") ? "console.stg01" : "console"; SetPSDefaultHostEnvParameterValue(apiHost, consoleHost); } @@ -212,10 +221,10 @@ protected async Task AddAuthHeaders(HttpRequestMessage requ request.Headers.Add("Accept", "application/json"); } // If headers do not contain an "UserAgent" with the correct value fix it - if (request.Headers.UserAgent.ToString() != "JumpCloud_JumpCloud.PowerShell.SDK.V2/0.2.1") + if (request.Headers.UserAgent.ToString() != "JumpCloud_JumpCloud.PowerShell.SDK.V2/0.3.0") { request.Headers.UserAgent.Clear(); - request.Headers.UserAgent.ParseAdd("JumpCloud_JumpCloud.PowerShell.SDK.V2/0.2.1"); + request.Headers.UserAgent.ParseAdd("JumpCloud_JumpCloud.PowerShell.SDK.V2/0.3.0"); } // // request.Headers.Add("Content-Type", "application/json"); System.Net.Http.HttpResponseMessage response = await next.SendAsync(request, callback); diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAccessRequest.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAccessRequest.md index 48770bdb5..8ad1840b0 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAccessRequest.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAccessRequest.md @@ -71,7 +71,7 @@ Accept wildcard characters: False . ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: List Aliases: @@ -86,7 +86,7 @@ Accept wildcard characters: False . ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: List Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectory.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectory.md index 574898ecf..33b8be968 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectory.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectory.md @@ -96,7 +96,7 @@ The comma separated fields included in the returned records. If omitted, the default list of fields will be returned. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: List Aliases: @@ -124,7 +124,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: List Aliases: @@ -170,7 +170,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: List Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryAgent.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryAgent.md index b4aa51550..017dac6be 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryAgent.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryAgent.md @@ -144,7 +144,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: List Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryTraverseUser.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryTraverseUser.md index 01394a05e..762e8a389 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryTraverseUser.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryTraverseUser.md @@ -129,7 +129,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryTraverseUserGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryTraverseUserGroup.md index 61c832173..36d5a591d 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryTraverseUserGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryTraverseUserGroup.md @@ -129,7 +129,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAppleMdm.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAppleMdm.md index a8f1ab26c..59523c047 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAppleMdm.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAppleMdm.md @@ -85,7 +85,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAppleMdmDevice.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAppleMdmDevice.md index 481eb8920..78a30a533 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAppleMdmDevice.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAppleMdmDevice.md @@ -178,7 +178,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: List Aliases: @@ -209,7 +209,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: List Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApplicationTraverseUser.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApplicationTraverseUser.md index 8f116cf04..af67d5641 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApplicationTraverseUser.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApplicationTraverseUser.md @@ -129,7 +129,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApplicationTraverseUserGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApplicationTraverseUserGroup.md index d1e12c051..87e4c13ff 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApplicationTraverseUserGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApplicationTraverseUserGroup.md @@ -129,7 +129,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApprovalFlow.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApprovalFlow.md index c31218af4..d830b2aff 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApprovalFlow.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApprovalFlow.md @@ -86,7 +86,7 @@ Accept wildcard characters: False . ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: List Aliases: @@ -101,7 +101,7 @@ Accept wildcard characters: False . ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: List Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAuthenticationPolicy.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAuthenticationPolicy.md index 614a2831b..5e015893b 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAuthenticationPolicy.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAuthenticationPolicy.md @@ -128,7 +128,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: List Aliases: @@ -174,7 +174,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: List Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkBulkUserState.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkBulkUserState.md index d46a79054..2d43f59d2 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkBulkUserState.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkBulkUserState.md @@ -88,7 +88,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCommandTraverseSystem.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCommandTraverseSystem.md index a193a324d..52e9960f9 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCommandTraverseSystem.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCommandTraverseSystem.md @@ -129,7 +129,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCommandTraverseSystemGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCommandTraverseSystemGroup.md index 3addeecd3..212613c1d 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCommandTraverseSystemGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCommandTraverseSystemGroup.md @@ -129,7 +129,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkDirectory.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkDirectory.md index c084cf681..15ebdf09b 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkDirectory.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkDirectory.md @@ -80,7 +80,7 @@ The comma separated fields included in the returned records. If omitted, the default list of fields will be returned. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -96,7 +96,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteTranslationRule.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteTranslationRule.md index 0a694a41a..33ed5816b 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteTranslationRule.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteTranslationRule.md @@ -96,7 +96,7 @@ The comma separated fields included in the returned records. If omitted, the default list of fields will be returned. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: List Aliases: @@ -124,7 +124,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: List Aliases: @@ -185,7 +185,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: List Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteTraverseUser.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteTraverseUser.md index b48ad5cab..46210d1e2 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteTraverseUser.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteTraverseUser.md @@ -114,7 +114,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteTraverseUserGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteTraverseUserGroup.md index 2d6823e1b..a47cec523 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteTraverseUserGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteTraverseUserGroup.md @@ -114,7 +114,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGroup.md index 2acfe79a9..f2d22da9e 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGroup.md @@ -97,7 +97,7 @@ The comma separated fields included in the returned records. If omitted, the default list of fields will be returned. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -125,7 +125,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -141,7 +141,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkIPList.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkIPList.md index 0f6bd01d1..4835b972d 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkIPList.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkIPList.md @@ -106,7 +106,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: List Aliases: @@ -152,7 +152,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: List Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServer.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServer.md index 16ea5b351..447dd5134 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServer.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServer.md @@ -96,7 +96,7 @@ The comma separated fields included in the returned records. If omitted, the default list of fields will be returned. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: List Aliases: @@ -124,7 +124,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: List Aliases: @@ -170,7 +170,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: List Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerSambaDomain.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerSambaDomain.md index 2c36106ed..3a00d205b 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerSambaDomain.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerSambaDomain.md @@ -94,7 +94,7 @@ The comma separated fields included in the returned records. If omitted, the default list of fields will be returned. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: List Aliases: @@ -122,7 +122,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: List Aliases: @@ -183,7 +183,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: List Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerTraverseUser.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerTraverseUser.md index 57fd589cc..affa23518 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerTraverseUser.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerTraverseUser.md @@ -114,7 +114,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerTraverseUserGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerTraverseUserGroup.md index 58a7607e1..2147a8099 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerTraverseUserGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerTraverseUserGroup.md @@ -114,7 +114,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkNextScheduledBulkUserState.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkNextScheduledBulkUserState.md index 2f14a2b4b..3ac5945b1 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkNextScheduledBulkUserState.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkNextScheduledBulkUserState.md @@ -79,7 +79,7 @@ Accept wildcard characters: False A list of system user IDs, limited to 100 items. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365TranslationRule.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365TranslationRule.md index 0d596d0f9..7bd960047 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365TranslationRule.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365TranslationRule.md @@ -98,7 +98,7 @@ The comma separated fields included in the returned records. If omitted, the default list of fields will be returned. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: List Aliases: @@ -126,7 +126,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: List Aliases: @@ -187,7 +187,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: List Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365TraverseUser.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365TraverseUser.md index 4bc02677a..c803af049 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365TraverseUser.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365TraverseUser.md @@ -114,7 +114,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365TraverseUserGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365TraverseUserGroup.md index c8cf648a0..62d6fa0b2 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365TraverseUserGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365TraverseUserGroup.md @@ -114,7 +114,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOrganizationPolicyResult.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOrganizationPolicyResult.md index c1229448b..d3c2e2656 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOrganizationPolicyResult.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOrganizationPolicyResult.md @@ -88,7 +88,7 @@ The comma separated fields included in the returned records. If omitted, the default list of fields will be returned. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -116,7 +116,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -132,7 +132,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicy.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicy.md index 0b903f6e5..e77480ae0 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicy.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicy.md @@ -116,7 +116,7 @@ The comma separated fields included in the returned records. If omitted, the default list of fields will be returned. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: List Aliases: @@ -144,7 +144,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: List Aliases: @@ -190,7 +190,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: List Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroup.md index df3c8ff3e..61c74eb9c 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroup.md @@ -98,7 +98,7 @@ The comma separated fields included in the returned records. If omitted, the default list of fields will be returned. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: List Aliases: @@ -126,7 +126,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: List Aliases: @@ -172,7 +172,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: List Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupMember.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupMember.md index bc19f040c..d5ae8b8f8 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupMember.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupMember.md @@ -145,7 +145,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: Get, GetViaIdentity Aliases: @@ -206,7 +206,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: Get, GetViaIdentity Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupMembership.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupMembership.md index d419dbe60..23aacfb9c 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupMembership.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupMembership.md @@ -98,7 +98,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -144,7 +144,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupTraverseSystem.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupTraverseSystem.md index d5e86ed17..97fdc534a 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupTraverseSystem.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupTraverseSystem.md @@ -114,7 +114,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupTraverseSystemGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupTraverseSystemGroup.md index 94fc752b6..d7b0f8bfb 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupTraverseSystemGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupTraverseSystemGroup.md @@ -114,7 +114,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyResult.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyResult.md index 514fd097c..707fdc975 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyResult.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyResult.md @@ -108,7 +108,7 @@ The comma separated fields included in the returned records. If omitted, the default list of fields will be returned. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: List Aliases: @@ -136,7 +136,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: List Aliases: @@ -197,7 +197,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: List Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyStatus.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyStatus.md index e1d31b2ae..3fe36462c 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyStatus.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyStatus.md @@ -88,7 +88,7 @@ The comma separated fields included in the returned records. If omitted, the default list of fields will be returned. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -116,7 +116,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -147,7 +147,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyTemplate.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyTemplate.md index 12312f556..63d3f456c 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyTemplate.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyTemplate.md @@ -110,7 +110,7 @@ The comma separated fields included in the returned records. If omitted, the default list of fields will be returned. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: List Aliases: @@ -138,7 +138,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: List Aliases: @@ -184,7 +184,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: List Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyTraverseSystem.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyTraverseSystem.md index c8d1a3616..d364a01a7 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyTraverseSystem.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyTraverseSystem.md @@ -114,7 +114,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyTraverseSystemGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyTraverseSystemGroup.md index ef1dbf745..6e9197fac 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyTraverseSystemGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyTraverseSystemGroup.md @@ -114,7 +114,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkProviderAdministrator.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkProviderAdministrator.md index 1911fd1b3..381b450f9 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkProviderAdministrator.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkProviderAdministrator.md @@ -63,7 +63,7 @@ The comma separated fields included in the returned records. If omitted, the default list of fields will be returned. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -91,7 +91,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -122,7 +122,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -138,7 +138,7 @@ The comma separated fields used to sort the collection, ignoring case. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkProviderOrganization.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkProviderOrganization.md index a4a9c83d2..fb7ae88fa 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkProviderOrganization.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkProviderOrganization.md @@ -63,7 +63,7 @@ The comma separated fields included in the returned records. If omitted, the default list of fields will be returned. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -91,7 +91,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -122,7 +122,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -138,7 +138,7 @@ The comma separated fields used to sort the collection, ignoring case. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkProvidersInvoice.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkProvidersInvoice.md index 2946674ea..37b7479f3 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkProvidersInvoice.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkProvidersInvoice.md @@ -82,7 +82,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -128,7 +128,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkRadiusServerTraverseUser.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkRadiusServerTraverseUser.md index 49d6f526a..b3c601121 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkRadiusServerTraverseUser.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkRadiusServerTraverseUser.md @@ -116,7 +116,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkRadiusServerTraverseUserGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkRadiusServerTraverseUserGroup.md index 96bca9495..92d72ecf4 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkRadiusServerTraverseUserGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkRadiusServerTraverseUserGroup.md @@ -114,7 +114,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareApp.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareApp.md index 1528e36ad..2177b96fa 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareApp.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareApp.md @@ -106,7 +106,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: List Aliases: @@ -152,7 +152,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: List Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppStatus.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppStatus.md index c51723f0e..3dfb84a30 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppStatus.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppStatus.md @@ -102,7 +102,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -148,7 +148,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppTraverseSystem.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppTraverseSystem.md index e3aaa0abb..06ae2fce9 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppTraverseSystem.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppTraverseSystem.md @@ -114,7 +114,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppTraverseSystemGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppTraverseSystemGroup.md index 3844f53fe..1b8fcafac 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppTraverseSystemGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppTraverseSystemGroup.md @@ -114,7 +114,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroup.md index f777bd22c..0e54ebb31 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroup.md @@ -108,7 +108,7 @@ The comma separated fields included in the returned records. If omitted, the default list of fields will be returned. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: List Aliases: @@ -136,7 +136,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: List Aliases: @@ -182,7 +182,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: List Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupMembership.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupMembership.md index a9ccd2ea2..890b0672c 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupMembership.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupMembership.md @@ -100,7 +100,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -146,7 +146,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraverseCommand.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraverseCommand.md index 58f54c35a..6f3bfe92f 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraverseCommand.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraverseCommand.md @@ -138,7 +138,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraversePolicy.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraversePolicy.md index 121b2349e..1ea167bf0 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraversePolicy.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraversePolicy.md @@ -118,7 +118,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraversePolicyGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraversePolicyGroup.md index 4a3497df3..9490cdc6b 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraversePolicyGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraversePolicyGroup.md @@ -116,7 +116,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraverseUser.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraverseUser.md index b090ff5b3..6fa519183 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraverseUser.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraverseUser.md @@ -114,7 +114,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraverseUserGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraverseUserGroup.md index fea80a971..fc73b908f 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraverseUserGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraverseUserGroup.md @@ -116,7 +116,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAlf.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAlf.md index c77505314..a25f023c2 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAlf.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAlf.md @@ -80,7 +80,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -96,7 +96,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAlfException.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAlfException.md index 753c95a9e..fac36bc01 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAlfException.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAlfException.md @@ -75,7 +75,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -91,7 +91,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAlfExplicitAuth.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAlfExplicitAuth.md index 46bbd89be..69d98c371 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAlfExplicitAuth.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAlfExplicitAuth.md @@ -74,7 +74,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -90,7 +90,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightApp.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightApp.md index 778f15374..d30e91e12 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightApp.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightApp.md @@ -98,7 +98,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -114,7 +114,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAppCompatShim.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAppCompatShim.md index cb15494a0..88853df22 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAppCompatShim.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAppCompatShim.md @@ -79,7 +79,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -95,7 +95,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAuthorizedKey.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAuthorizedKey.md index 886d564b7..9386cb108 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAuthorizedKey.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAuthorizedKey.md @@ -77,7 +77,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -93,7 +93,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAzureInstanceMetadata.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAzureInstanceMetadata.md index 2221a48aa..80c49df5a 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAzureInstanceMetadata.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAzureInstanceMetadata.md @@ -89,7 +89,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -105,7 +105,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAzureInstanceTag.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAzureInstanceTag.md index 1b5b3a671..d59d5da6a 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAzureInstanceTag.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAzureInstanceTag.md @@ -76,7 +76,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -92,7 +92,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightBattery.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightBattery.md index e46086e64..1c4d1a436 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightBattery.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightBattery.md @@ -91,7 +91,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -107,7 +107,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightBitlockerInfo.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightBitlockerInfo.md index b7a3e9573..8c38e3a74 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightBitlockerInfo.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightBitlockerInfo.md @@ -79,7 +79,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -95,7 +95,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightBrowserPlugin.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightBrowserPlugin.md index 83b0b091a..4ac4d5002 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightBrowserPlugin.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightBrowserPlugin.md @@ -83,7 +83,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -99,7 +99,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightCertificate.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightCertificate.md index 0298cb3f0..0b8b37726 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightCertificate.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightCertificate.md @@ -93,7 +93,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -109,7 +109,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightChassisInfo.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightChassisInfo.md index e7a8e3ae5..4a837cf54 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightChassisInfo.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightChassisInfo.md @@ -86,7 +86,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -102,7 +102,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightChromeExtension.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightChromeExtension.md index 9748f4703..38d05e4dd 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightChromeExtension.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightChromeExtension.md @@ -84,7 +84,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -100,7 +100,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightConnectivity.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightConnectivity.md index 278be22f8..48f937d2b 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightConnectivity.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightConnectivity.md @@ -82,7 +82,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -98,7 +98,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightCrash.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightCrash.md index 6acfda816..207e5da5c 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightCrash.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightCrash.md @@ -89,7 +89,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -105,7 +105,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightCupDestination.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightCupDestination.md index 3b32d1232..ce9ec7607 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightCupDestination.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightCupDestination.md @@ -75,7 +75,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -91,7 +91,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightDiskEncryption.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightDiskEncryption.md index debc892ab..b1ff85c39 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightDiskEncryption.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightDiskEncryption.md @@ -80,7 +80,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -96,7 +96,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightDiskInfo.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightDiskInfo.md index ed25d306b..aa158cc85 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightDiskInfo.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightDiskInfo.md @@ -84,7 +84,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -100,7 +100,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightDnsResolver.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightDnsResolver.md index f2045beb9..364294ea5 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightDnsResolver.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightDnsResolver.md @@ -78,7 +78,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -94,7 +94,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightEtcHost.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightEtcHost.md index 4635d4fac..7c96a43ed 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightEtcHost.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightEtcHost.md @@ -75,7 +75,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -91,7 +91,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightFirefoxAddon.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightFirefoxAddon.md index 8497bb514..05f585367 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightFirefoxAddon.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightFirefoxAddon.md @@ -87,7 +87,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -103,7 +103,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightGroup.md index 928bb64d6..f9944c53c 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightGroup.md @@ -78,7 +78,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -94,7 +94,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightIeExtension.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightIeExtension.md index 551cf48d4..4312de76e 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightIeExtension.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightIeExtension.md @@ -77,7 +77,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -93,7 +93,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightInterfaceAddress.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightInterfaceAddress.md index b396eb411..d8c6adfa6 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightInterfaceAddress.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightInterfaceAddress.md @@ -80,7 +80,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -96,7 +96,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightInterfaceDetail.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightInterfaceDetail.md index a97db0197..b1b52e203 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightInterfaceDetail.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightInterfaceDetail.md @@ -107,7 +107,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -123,7 +123,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightKernelInfo.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightKernelInfo.md index 2e29cbdbd..9b8d9c996 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightKernelInfo.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightKernelInfo.md @@ -77,7 +77,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -93,7 +93,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLaunchd.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLaunchd.md index 48c1ca428..f0040508e 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLaunchd.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLaunchd.md @@ -94,7 +94,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -110,7 +110,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLinuxPackage.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLinuxPackage.md index 0c3835ba9..df280059b 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLinuxPackage.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLinuxPackage.md @@ -91,7 +91,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -107,7 +107,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLoggedinUser.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLoggedinUser.md index 1a8ff3ac1..4871476f7 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLoggedinUser.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLoggedinUser.md @@ -79,7 +79,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -95,7 +95,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLogicalDrive.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLogicalDrive.md index 5da60c80a..c560cf78c 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLogicalDrive.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLogicalDrive.md @@ -79,7 +79,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -95,7 +95,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightManagedPolicy.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightManagedPolicy.md index dafab18cb..c540e1e00 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightManagedPolicy.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightManagedPolicy.md @@ -79,7 +79,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -95,7 +95,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightMount.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightMount.md index 3720450b1..c6f70ca70 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightMount.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightMount.md @@ -84,7 +84,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -100,7 +100,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightOSVersion.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightOSVersion.md index 6b27897a8..65b39c11a 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightOSVersion.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightOSVersion.md @@ -83,7 +83,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -99,7 +99,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightPatch.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightPatch.md index 66b2809c9..3e666296d 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightPatch.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightPatch.md @@ -81,7 +81,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -97,7 +97,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightProgram.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightProgram.md index c5aa947b7..504742a21 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightProgram.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightProgram.md @@ -88,7 +88,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -104,7 +104,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightPythonPackage.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightPythonPackage.md index 455b53283..b24ee327b 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightPythonPackage.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightPythonPackage.md @@ -79,7 +79,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -95,7 +95,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSafariExtension.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSafariExtension.md index 1cb83bdc7..d5d42ce85 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSafariExtension.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSafariExtension.md @@ -83,7 +83,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -99,7 +99,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightScheduledTask.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightScheduledTask.md index b83d15a67..1527f03fe 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightScheduledTask.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightScheduledTask.md @@ -82,7 +82,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -98,7 +98,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSecureboot.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSecureboot.md index c79ca5913..fac815825 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSecureboot.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSecureboot.md @@ -75,7 +75,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -91,7 +91,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightService.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightService.md index 7595fd6ee..0bbdd06cc 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightService.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightService.md @@ -84,7 +84,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -100,7 +100,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightShadow.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightShadow.md index ec96c81cf..d09bacb42 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightShadow.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightShadow.md @@ -83,7 +83,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -99,7 +99,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSharedFolder.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSharedFolder.md index d004d8e62..e8131e49c 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSharedFolder.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSharedFolder.md @@ -75,7 +75,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -91,7 +91,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSharedResource.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSharedResource.md index a2f277c02..c0a0622fa 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSharedResource.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSharedResource.md @@ -81,7 +81,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -97,7 +97,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSharingPreference.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSharingPreference.md index 666763ce3..09dbcba55 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSharingPreference.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSharingPreference.md @@ -83,7 +83,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -99,7 +99,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSipConfig.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSipConfig.md index 39198e975..b2ab9c06c 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSipConfig.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSipConfig.md @@ -76,7 +76,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -92,7 +92,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightStartupItem.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightStartupItem.md index 77fdb4ac6..8fafde997 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightStartupItem.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightStartupItem.md @@ -79,7 +79,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -95,7 +95,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSystemControl.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSystemControl.md index 7a1d29734..d5f1f79d1 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSystemControl.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSystemControl.md @@ -80,7 +80,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -96,7 +96,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSystemInfo.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSystemInfo.md index b7a7eab1b..704732023 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSystemInfo.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSystemInfo.md @@ -88,7 +88,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -104,7 +104,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightTpmInfo.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightTpmInfo.md index dfd0cd546..a2918b924 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightTpmInfo.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightTpmInfo.md @@ -82,7 +82,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -98,7 +98,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUptime.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUptime.md index 4e061deef..78b4e3526 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUptime.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUptime.md @@ -78,7 +78,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -94,7 +94,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUsbDevice.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUsbDevice.md index 711a463ce..3614c179a 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUsbDevice.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUsbDevice.md @@ -85,7 +85,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -101,7 +101,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUser.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUser.md index f0cadc1e7..9e4d6482f 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUser.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUser.md @@ -89,7 +89,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -105,7 +105,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUserAssist.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUserAssist.md index dd35eb372..dd4e81212 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUserAssist.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUserAssist.md @@ -77,7 +77,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -93,7 +93,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUserGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUserGroup.md index 462defdc1..1d37bba6e 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUserGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUserGroup.md @@ -75,7 +75,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -91,7 +91,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUserSshKey.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUserSshKey.md index 91274f49b..48bd9999d 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUserSshKey.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUserSshKey.md @@ -76,7 +76,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -92,7 +92,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWifiNetwork.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWifiNetwork.md index 8b1f893c3..1239b31b2 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWifiNetwork.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWifiNetwork.md @@ -85,7 +85,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -101,7 +101,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWifiStatus.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWifiStatus.md index f3775be15..4e81200d3 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWifiStatus.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWifiStatus.md @@ -86,7 +86,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -102,7 +102,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWindowsSecurityCenter.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWindowsSecurityCenter.md index 50a226be7..448fe036e 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWindowsSecurityCenter.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWindowsSecurityCenter.md @@ -80,7 +80,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -96,7 +96,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWindowsSecurityProduct.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWindowsSecurityProduct.md index e8aedaeb7..c50238fcc 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWindowsSecurityProduct.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWindowsSecurityProduct.md @@ -79,7 +79,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -95,7 +95,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemMember.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemMember.md index ec061d0aa..fb74c1742 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemMember.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemMember.md @@ -130,7 +130,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -161,7 +161,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemPolicyStatus.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemPolicyStatus.md index de5fc7af0..26666933f 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemPolicyStatus.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemPolicyStatus.md @@ -90,7 +90,7 @@ The comma separated fields included in the returned records. If omitted, the default list of fields will be returned. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -118,7 +118,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -134,7 +134,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraverseCommand.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraverseCommand.md index 69c51553a..bb6ce7928 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraverseCommand.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraverseCommand.md @@ -140,7 +140,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraversePolicy.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraversePolicy.md index fe7fe14d7..3e7ebc5ac 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraversePolicy.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraversePolicy.md @@ -122,7 +122,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraversePolicyGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraversePolicyGroup.md index 914bc95c3..c3e2f3529 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraversePolicyGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraversePolicyGroup.md @@ -146,7 +146,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraverseUser.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraverseUser.md index dbb603fa5..8370c29f4 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraverseUser.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraverseUser.md @@ -146,7 +146,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraverseUserGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraverseUserGroup.md index 6d967693e..4e259db93 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraverseUserGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraverseUserGroup.md @@ -146,7 +146,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroup.md index 69c23d497..b16cb430b 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroup.md @@ -114,7 +114,7 @@ The comma separated fields included in the returned records. If omitted, the default list of fields will be returned. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: List Aliases: @@ -142,7 +142,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: List Aliases: @@ -188,7 +188,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: List Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupMembership.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupMembership.md index afa6041c3..1cd2a9291 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupMembership.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupMembership.md @@ -98,7 +98,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -144,7 +144,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseActiveDirectory.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseActiveDirectory.md index f210e673d..922ebbff0 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseActiveDirectory.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseActiveDirectory.md @@ -110,7 +110,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseApplication.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseApplication.md index 8ef59ba98..ff6980569 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseApplication.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseApplication.md @@ -114,7 +114,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseDirectory.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseDirectory.md index fffaf1a05..d0d56623b 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseDirectory.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseDirectory.md @@ -116,7 +116,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseGSuite.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseGSuite.md index 246054e9f..57935590c 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseGSuite.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseGSuite.md @@ -116,7 +116,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseLdapServer.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseLdapServer.md index 719a03213..809302113 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseLdapServer.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseLdapServer.md @@ -114,7 +114,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseOffice365.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseOffice365.md index 55f84a9dc..651a6f2b6 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseOffice365.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseOffice365.md @@ -114,7 +114,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseRadiusServer.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseRadiusServer.md index 9e60e1888..67db62d2d 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseRadiusServer.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseRadiusServer.md @@ -116,7 +116,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseSystem.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseSystem.md index 9a98ff09b..b6d3b970b 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseSystem.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseSystem.md @@ -114,7 +114,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseSystemGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseSystemGroup.md index 26c89dc00..9d341279b 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseSystemGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseSystemGroup.md @@ -114,7 +114,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserMember.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserMember.md index 2aeee1146..b51ea0a6e 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserMember.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserMember.md @@ -98,7 +98,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: @@ -129,7 +129,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseActiveDirectory.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseActiveDirectory.md index 00ac10707..d213f45a9 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseActiveDirectory.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseActiveDirectory.md @@ -114,7 +114,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseApplication.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseApplication.md index 726a0c3bc..131374497 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseApplication.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseApplication.md @@ -114,7 +114,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseDirectory.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseDirectory.md index 40a32b4da..7994b66dc 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseDirectory.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseDirectory.md @@ -114,7 +114,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseGSuite.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseGSuite.md index 905bfc939..4273c7e46 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseGSuite.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseGSuite.md @@ -114,7 +114,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseLdapServer.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseLdapServer.md index e3c7bf30f..c67d58845 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseLdapServer.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseLdapServer.md @@ -114,7 +114,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseOffice365.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseOffice365.md index 3aef92fda..b10282e00 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseOffice365.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseOffice365.md @@ -114,7 +114,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseRadiusServer.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseRadiusServer.md index 757521d7d..65783fae0 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseRadiusServer.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseRadiusServer.md @@ -114,7 +114,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseSystem.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseSystem.md index 9bc963f1c..73d8b54fe 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseSystem.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseSystem.md @@ -114,7 +114,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseSystemGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseSystemGroup.md index 81cc22780..42fd8b191 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseSystemGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseSystemGroup.md @@ -114,7 +114,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkday.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkday.md index df589dc1b..ffdcf75bc 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkday.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkday.md @@ -108,7 +108,7 @@ The comma separated fields included in the returned records. If omitted, the default list of fields will be returned. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: List Aliases: @@ -136,7 +136,7 @@ Supports wild cards. **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: List Aliases: @@ -182,7 +182,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: List Aliases: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkdayWorker.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkdayWorker.md index 46738cf09..186181069 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkdayWorker.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkdayWorker.md @@ -107,7 +107,7 @@ The comma separated fields used to sort the collection. Default sort is ascending, prefix with `-` to sort descending. ```yaml -Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] Parameter Sets: (All) Aliases: diff --git a/Tools/ModuleValidation.Tests.ps1 b/Tools/ModuleValidation.Tests.ps1 index d50e3d949..d2c329567 100644 --- a/Tools/ModuleValidation.Tests.ps1 +++ b/Tools/ModuleValidation.Tests.ps1 @@ -89,8 +89,8 @@ Describe -Tag:('ModuleValidation') 'Module Validation' -ForEach $modulesToValida Get-Content -Path $changelogPath | Should -Not -Match '\{\{Fill in the' } - It "ensures the Swagger spec is up to date with no pending changes for <_>" { - # Note: Assumes dependent scripts are in the parent directory of this test script. + It "ensures the Swagger spec is up to date with no pending changes for <_>" -Skip:($env:SKIP_API_TRANSFORM -eq 'true') { + # When CI sets SKIP_API_TRANSFORM (PR label skip-api-transform), ApiTransform is not required here. . (Join-Path $PSScriptRoot '..' 'ApiTransform.ps1') -SDKName $moduleName 3>$null $sdkSwaggerFile = Join-Path $PSScriptRoot '..' 'SwaggerSpecs' "$moduleName.json"