Skip to content

Commit

Permalink
Add V2024 to PowerShell SDK
Browse files Browse the repository at this point in the history
  • Loading branch information
tyler-mairose-sp committed Aug 6, 2024
1 parent 0a8cf47 commit 7ba36ef
Show file tree
Hide file tree
Showing 3,271 changed files with 290,517 additions and 10 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
2,083 changes: 2,081 additions & 2 deletions PSSailpoint/PSSailpoint.psd1

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion PSSailpoint/beta/docs/AccountUsage.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Name | Type | Description | Notes

- Prepare the resource
```powershell
$AccountUsage = Initialize-PSSailpointBetaAccountUsage -Date Fri Apr 21 00:00:00 UTC 2023 `
$AccountUsage = Initialize-PSSailpointBetaAccountUsage -Date Thu Apr 20 20:00:00 EDT 2023 `
-Count 10
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ $NonEmployeeRequestWithoutApprovalItem = Initialize-PSSailpointBetaNonEmployeeRe
-ApprovalStatus null `
-Comment null `
-CompletionDate 2020-03-24T11:11:41.139-05:00 `
-StartDate Tue Mar 24 00:00:00 UTC 2020 `
-EndDate Thu Mar 25 00:00:00 UTC 2021 `
-StartDate Mon Mar 23 20:00:00 EDT 2020 `
-EndDate Wed Mar 24 20:00:00 EDT 2021 `
-Modified 2020-03-24T11:11:41.139-05:00 `
-Created 2020-03-24T11:11:41.139-05:00
```
Expand Down
2 changes: 1 addition & 1 deletion PSSailpoint/beta/docs/SourceUsage.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Name | Type | Description | Notes

- Prepare the resource
```powershell
$SourceUsage = Initialize-PSSailpointBetaSourceUsage -Date Fri Apr 21 00:00:00 UTC 2023 `
$SourceUsage = Initialize-PSSailpointBetaSourceUsage -Date Thu Apr 20 20:00:00 EDT 2023 `
-Count 10.45
```

Expand Down
13 changes: 13 additions & 0 deletions PSSailpoint/tests/Validation.Tests.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -93,3 +93,16 @@ Describe 'Beta' {

}

Set-DefaultConfiguration -Experimental $True

Describe 'V2024' {
It 'Returns results for Get-V2024Identities' {
$Response = Get-V2024Identities -WithHttpInfo

$Response.Response | Should -Not -BeNullOrEmpty
$Response.StatusCode | Should -Be 200

}

}

23 changes: 23 additions & 0 deletions PSSailpoint/v2024/.openapi-generator-ignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# OpenAPI Generator Ignore
# Generated by openapi-generator https://github.com/openapitools/openapi-generator

# Use this file to prevent files from being overwritten by the generator.
# The patterns follow closely to .gitignore or .dockerignore.

# As an example, the C# client generator defines ApiClient.cs.
# You can make changes and tell OpenAPI Generator to ignore just this file by uncommenting the following line:
#ApiClient.cs

# You can match any string of characters against a directory, file or extension with a single asterisk (*):
#foo/*/qux
# The above matches foo/bar/qux and foo/baz/qux, but not foo/bar/baz/qux

# You can recursively match patterns against a directory, file or extension with a double asterisk (**):
#foo/**/qux
# This matches foo/bar/qux, foo/baz/qux, and foo/bar/baz/qux

# You can also negate patterns with an exclamation (!).
# For example, you can ignore all files in a docs folder with the file extension .md:
#docs/*.md
# Then explicitly reverse the ignore rule for a single file:
#!docs/README.md
Loading

0 comments on commit 7ba36ef

Please sign in to comment.