diff --git a/Tm/Build.ps1 b/Tm/Build.ps1 index b7c629b86..09cdc16d8 100644 --- a/Tm/Build.ps1 +++ b/Tm/Build.ps1 @@ -56,7 +56,7 @@ $Manifest = @{ CompanyName = 'SailPoint Technologies' Description = 'PSSailpoint - the PowerShell module for IdentityNow' - ModuleVersion = '1.4.7' + ModuleVersion = '1.4.8' RootModule = 'Tm.psm1' Guid = '7A197170-97E8-4DCD-A171-271D4AEC2F37' # Has to be static, otherwise each new build will be considered different module @@ -66,9 +66,9 @@ $Manifest = @{ FunctionsToExport = $FunctionPath | Get-ChildItem -Filter *.ps1 | Get-FunctionsToExport RequiredModules = @( - @{ModuleName = 'Tm.Beta'; RequiredVersion = '1.4.7'; }, - @{ModuleName = 'Tm.V3'; RequiredVersion = '1.4.7'; }, - @{ModuleName = 'Tm.V2024'; RequiredVersion = '1.4.7'; } + @{ModuleName = 'Tm.Beta'; RequiredVersion = '1.4.8'; }, + @{ModuleName = 'Tm.V3'; RequiredVersion = '1.4.8'; }, + @{ModuleName = 'Tm.V2024'; RequiredVersion = '1.4.8'; } ) VariablesToExport = @() diff --git a/Tm/Tm.psd1 b/Tm/Tm.psd1 index 383ec9218..7b59e474c 100644 --- a/Tm/Tm.psd1 +++ b/Tm/Tm.psd1 @@ -12,7 +12,7 @@ RootModule = 'Tm.psm1' # Version number of this module. -ModuleVersion = '1.4.7' +ModuleVersion = '1.4.8' # Supported PSEditions # CompatiblePSEditions = @() @@ -51,7 +51,9 @@ PowerShellVersion = '6.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -# RequiredModules = @() +RequiredModules = @(@{ModuleName = 'Tm.Beta'; RequiredVersion = '1.4.8'; }, + @{ModuleName = 'Tm.V3'; RequiredVersion = '1.4.8'; }, + @{ModuleName = 'Tm.V2024'; RequiredVersion = '1.4.8'; }) # Assemblies that must be loaded prior to importing this module # RequiredAssemblies = @() diff --git a/Tm/beta/Build.ps1 b/Tm/beta/Build.ps1 index 7db8300f0..1a1f0199e 100644 --- a/Tm/beta/Build.ps1 +++ b/Tm/beta/Build.ps1 @@ -55,7 +55,7 @@ $Manifest = @{ CompanyName = 'SailPoint Technologies' Description = 'Tm.Beta - the PowerShell module for Identity Security Cloud Beta API' - ModuleVersion = '1.4.7' + ModuleVersion = '1.4.8' RootModule = 'Tm.Beta.psm1' Guid = '61785CF2-2EB2-4FB6-9F7C-C5BD5B1733EB' # Has to be static, otherwise each new build will be considered different module diff --git a/Tm/beta/README.md b/Tm/beta/README.md index e6fc27c13..494102930 100644 --- a/Tm/beta/README.md +++ b/Tm/beta/README.md @@ -5,7 +5,7 @@ Use these APIs to interact with the Identity Security Cloud platform to achieve This PowerShell module is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: - API version: 3.1.0-beta -- SDK version: 1.4.7 +- SDK version: 1.4.8 - Build package: org.openapitools.codegen.languages.PowerShellClientCodegen For more information, please visit [https://developer.sailpoint.com/discuss/api-help](https://developer.sailpoint.com/discuss/api-help) @@ -30,7 +30,7 @@ To avoid function name collision, one can use `-Prefix`, e.g. `Import-Module -Na To uninstall the module, simply run: ```powershell -Remove-Module -FullyQualifiedName @{ModuleName = "Tm.Beta"; ModuleVersion = "1.4.7"} +Remove-Module -FullyQualifiedName @{ModuleName = "Tm.Beta"; ModuleVersion = "1.4.8"} ``` diff --git a/Tm/beta/src/Tm.Beta/Private/BetaApiClient.ps1 b/Tm/beta/src/Tm.Beta/Private/BetaApiClient.ps1 index 69bf062db..57159e88d 100644 --- a/Tm/beta/src/Tm.Beta/Private/BetaApiClient.ps1 +++ b/Tm/beta/src/Tm.Beta/Private/BetaApiClient.ps1 @@ -73,8 +73,8 @@ function Invoke-BetaApiClient { } # Add Custom Header - $HeaderParameters['X-SailPoint-SDK'] = "Powershell-1.4.7" - $HeaderParameters['User-Agent'] = "OpenAPI-Generator/1.4.7/ps" + $HeaderParameters['X-SailPoint-SDK'] = "Powershell-1.4.8" + $HeaderParameters['User-Agent'] = "OpenAPI-Generator/1.4.8/ps" $HasFormData = $False diff --git a/Tm/beta/src/Tm.Beta/Tm.Beta.psd1 b/Tm/beta/src/Tm.Beta/Tm.Beta.psd1 index 790d903fd..19f67032c 100644 --- a/Tm/beta/src/Tm.Beta/Tm.Beta.psd1 +++ b/Tm/beta/src/Tm.Beta/Tm.Beta.psd1 @@ -12,7 +12,7 @@ RootModule = 'Tm.Beta.psm1' # Version number of this module. -ModuleVersion = '1.4.7' +ModuleVersion = '1.4.8' # Supported PSEditions # CompatiblePSEditions = @() diff --git a/Tm/beta/src/Tm.Beta/en-US/about_Tm.Beta.help.txt b/Tm/beta/src/Tm.Beta/en-US/about_Tm.Beta.help.txt index 92ad9780a..5f4f6fc3d 100644 --- a/Tm/beta/src/Tm.Beta/en-US/about_Tm.Beta.help.txt +++ b/Tm/beta/src/Tm.Beta/en-US/about_Tm.Beta.help.txt @@ -10,7 +10,7 @@ LONG DESCRIPTION This PowerShell module is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: - API version: 3.1.0-beta - - SDK version: 1.4.7 + - SDK version: 1.4.8 - Build package: org.openapitools.codegen.languages.PowerShellClientCodegen For more information, please visit [https://developer.sailpoint.com/discuss/api-help](https://developer.sailpoint.com/discuss/api-help) diff --git a/Tm/v2024/Build.ps1 b/Tm/v2024/Build.ps1 index 2a431344e..0614c5f76 100644 --- a/Tm/v2024/Build.ps1 +++ b/Tm/v2024/Build.ps1 @@ -55,7 +55,7 @@ $Manifest = @{ CompanyName = 'SailPoint Technologies' Description = 'Tm.V2024 - the PowerShell module for Identity Security Cloud V2024 API' - ModuleVersion = '1.4.7' + ModuleVersion = '1.4.8' RootModule = 'Tm.V2024.psm1' Guid = '51EC9F24-1977-40CE-A990-D0186150E0A2' # Has to be static, otherwise each new build will be considered different module diff --git a/Tm/v2024/README.md b/Tm/v2024/README.md index 13aeab6f9..0dc592be8 100644 --- a/Tm/v2024/README.md +++ b/Tm/v2024/README.md @@ -5,7 +5,7 @@ Use these APIs to interact with the Identity Security Cloud platform to achieve This PowerShell module is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: - API version: v2024 -- SDK version: 1.4.7 +- SDK version: 1.4.8 - Build package: org.openapitools.codegen.languages.PowerShellClientCodegen For more information, please visit [https://developer.sailpoint.com/discuss/api-help](https://developer.sailpoint.com/discuss/api-help) @@ -30,7 +30,7 @@ To avoid function name collision, one can use `-Prefix`, e.g. `Import-Module -Na To uninstall the module, simply run: ```powershell -Remove-Module -FullyQualifiedName @{ModuleName = "Tm.V2024"; ModuleVersion = "1.4.7"} +Remove-Module -FullyQualifiedName @{ModuleName = "Tm.V2024"; ModuleVersion = "1.4.8"} ``` diff --git a/Tm/v2024/src/Tm.V2024/Private/V2024ApiClient.ps1 b/Tm/v2024/src/Tm.V2024/Private/V2024ApiClient.ps1 index b2638ad23..739d9ccd4 100644 --- a/Tm/v2024/src/Tm.V2024/Private/V2024ApiClient.ps1 +++ b/Tm/v2024/src/Tm.V2024/Private/V2024ApiClient.ps1 @@ -73,8 +73,8 @@ function Invoke-V2024ApiClient { } # Add Custom Header - $HeaderParameters['X-SailPoint-SDK'] = "Powershell-1.4.7" - $HeaderParameters['User-Agent'] = "OpenAPI-Generator/1.4.7/ps" + $HeaderParameters['X-SailPoint-SDK'] = "Powershell-1.4.8" + $HeaderParameters['User-Agent'] = "OpenAPI-Generator/1.4.8/ps" $HasFormData = $False diff --git a/Tm/v2024/src/Tm.V2024/Tm.V2024.psd1 b/Tm/v2024/src/Tm.V2024/Tm.V2024.psd1 index 5d7377f3c..a2e8a9788 100644 --- a/Tm/v2024/src/Tm.V2024/Tm.V2024.psd1 +++ b/Tm/v2024/src/Tm.V2024/Tm.V2024.psd1 @@ -12,7 +12,7 @@ RootModule = 'Tm.V2024.psm1' # Version number of this module. -ModuleVersion = '1.4.7' +ModuleVersion = '1.4.8' # Supported PSEditions # CompatiblePSEditions = @() diff --git a/Tm/v2024/src/Tm.V2024/en-US/about_Tm.V2024.help.txt b/Tm/v2024/src/Tm.V2024/en-US/about_Tm.V2024.help.txt index 094f03aca..17c498fa3 100644 --- a/Tm/v2024/src/Tm.V2024/en-US/about_Tm.V2024.help.txt +++ b/Tm/v2024/src/Tm.V2024/en-US/about_Tm.V2024.help.txt @@ -10,7 +10,7 @@ LONG DESCRIPTION This PowerShell module is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: - API version: v2024 - - SDK version: 1.4.7 + - SDK version: 1.4.8 - Build package: org.openapitools.codegen.languages.PowerShellClientCodegen For more information, please visit [https://developer.sailpoint.com/discuss/api-help](https://developer.sailpoint.com/discuss/api-help) diff --git a/Tm/v3/Build.ps1 b/Tm/v3/Build.ps1 index 03a0e5877..4da5fffa3 100644 --- a/Tm/v3/Build.ps1 +++ b/Tm/v3/Build.ps1 @@ -55,7 +55,7 @@ $Manifest = @{ CompanyName = 'SailPoint Technologies' Description = 'Tm.V3 - the PowerShell module for Identity Security Cloud V3 API' - ModuleVersion = '1.4.7' + ModuleVersion = '1.4.8' RootModule = 'Tm.V3.psm1' Guid = '7A197170-97E8-4DCD-A171-271D4AEC2F36' # Has to be static, otherwise each new build will be considered different module diff --git a/Tm/v3/README.md b/Tm/v3/README.md index 4add50e31..2089c4c4d 100644 --- a/Tm/v3/README.md +++ b/Tm/v3/README.md @@ -5,7 +5,7 @@ Use these APIs to interact with the Identity Security Cloud platform to achieve This PowerShell module is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: - API version: 3.0.0 -- SDK version: 1.4.7 +- SDK version: 1.4.8 - Build package: org.openapitools.codegen.languages.PowerShellClientCodegen For more information, please visit [https://developer.sailpoint.com/discuss/api-help](https://developer.sailpoint.com/discuss/api-help) @@ -30,7 +30,7 @@ To avoid function name collision, one can use `-Prefix`, e.g. `Import-Module -Na To uninstall the module, simply run: ```powershell -Remove-Module -FullyQualifiedName @{ModuleName = "Tm.V3"; ModuleVersion = "1.4.7"} +Remove-Module -FullyQualifiedName @{ModuleName = "Tm.V3"; ModuleVersion = "1.4.8"} ``` diff --git a/Tm/v3/src/Tm.V3/Private/ApiClient.ps1 b/Tm/v3/src/Tm.V3/Private/ApiClient.ps1 index 229dc259c..f90e34516 100644 --- a/Tm/v3/src/Tm.V3/Private/ApiClient.ps1 +++ b/Tm/v3/src/Tm.V3/Private/ApiClient.ps1 @@ -73,8 +73,8 @@ function Invoke-ApiClient { } # Add Custom Header - $HeaderParameters['X-SailPoint-SDK'] = "Powershell-1.4.7" - $HeaderParameters['User-Agent'] = "OpenAPI-Generator/1.4.7/ps" + $HeaderParameters['X-SailPoint-SDK'] = "Powershell-1.4.8" + $HeaderParameters['User-Agent'] = "OpenAPI-Generator/1.4.8/ps" $HasFormData = $False diff --git a/Tm/v3/src/Tm.V3/Tm.V3.psd1 b/Tm/v3/src/Tm.V3/Tm.V3.psd1 index 7594d8a0c..ec6c282a6 100644 --- a/Tm/v3/src/Tm.V3/Tm.V3.psd1 +++ b/Tm/v3/src/Tm.V3/Tm.V3.psd1 @@ -12,7 +12,7 @@ RootModule = 'Tm.V3.psm1' # Version number of this module. -ModuleVersion = '1.4.7' +ModuleVersion = '1.4.8' # Supported PSEditions # CompatiblePSEditions = @() diff --git a/Tm/v3/src/Tm.V3/en-US/about_Tm.V3.help.txt b/Tm/v3/src/Tm.V3/en-US/about_Tm.V3.help.txt index 2508e58a2..ce610f6f9 100644 --- a/Tm/v3/src/Tm.V3/en-US/about_Tm.V3.help.txt +++ b/Tm/v3/src/Tm.V3/en-US/about_Tm.V3.help.txt @@ -10,7 +10,7 @@ LONG DESCRIPTION This PowerShell module is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: - API version: 3.0.0 - - SDK version: 1.4.7 + - SDK version: 1.4.8 - Build package: org.openapitools.codegen.languages.PowerShellClientCodegen For more information, please visit [https://developer.sailpoint.com/discuss/api-help](https://developer.sailpoint.com/discuss/api-help) diff --git a/sdk-resources/beta-config.yaml b/sdk-resources/beta-config.yaml index b3cd52cfb..7b236ed40 100644 --- a/sdk-resources/beta-config.yaml +++ b/sdk-resources/beta-config.yaml @@ -1,6 +1,6 @@ templateDir: ./sdk-resources/resources packageName: Tm.Beta -packageVersion: 1.4.7 +packageVersion: 1.4.8 apiNamePrefix: Beta apiVersion: beta companyName: SailPoint Technologies diff --git a/sdk-resources/v2024-config.yaml b/sdk-resources/v2024-config.yaml index a0cfea89c..8eeb060bd 100644 --- a/sdk-resources/v2024-config.yaml +++ b/sdk-resources/v2024-config.yaml @@ -1,6 +1,6 @@ templateDir: ./sdk-resources/resources packageName: Tm.V2024 -packageVersion: 1.4.7 +packageVersion: 1.4.8 apiNamePrefix: V2024 apiVersion: v2024 companyName: SailPoint Technologies diff --git a/sdk-resources/v3-config.yaml b/sdk-resources/v3-config.yaml index 237c4198b..dd8bfdcb6 100644 --- a/sdk-resources/v3-config.yaml +++ b/sdk-resources/v3-config.yaml @@ -1,6 +1,6 @@ templateDir: ./sdk-resources/resources packageName: Tm.V3 -packageVersion: 1.4.7 +packageVersion: 1.4.8 apiVersion: v3 companyName: SailPoint Technologies packageGuid: 7A197170-97E8-4DCD-A171-271D4AEC2F36