diff --git a/docs/collections/_docs/01-authentication.md b/docs/collections/_docs/01-authentication.md index 2236c73f..cda43c00 100644 --- a/docs/collections/_docs/01-authentication.md +++ b/docs/collections/_docs/01-authentication.md @@ -201,7 +201,7 @@ Note that these methods are defined as `boolean`, so they will only return true ## IsValidToken -This method utilizes a hidden properties on the `TssObject` called `TimeOfDeath` (`datetime` type). This property's value is calculated based on the `expires_in` value returned by the OAuth2 endpoint and based on the local time of the machine calling the function. +This method utilizes a hidden properties on the `TssObject` called `TimeOfDeath` (`datetime` type). This property's value is calculated based on the `expires_in` value returned by the OAuth2 endpoint and based on the machine's local time calling the function. More details: [TssSession source code](https://github.com/thycotic-ps/thycotic.secretserver/blob/master/src/classes/TssSession.class.ps1) diff --git a/docs/collections/_docs/02-compatibility.md b/docs/collections/_docs/02-compatibility.md index 342b6d99..cfb5b93c 100644 --- a/docs/collections/_docs/02-compatibility.md +++ b/docs/collections/_docs/02-compatibility.md @@ -6,7 +6,10 @@ last_modified_at: 2021-02-10T00:00:00-00:00 toc: false --- -Back support use of the module with older versions of Secret Server is limited. Endpoints used in the module where the endpoint exists in a specific version are listed below for reference. +The module will attempt to support version 10.0 and higher of Secret Server. Endpoints added in specific releases of Secret Server in the module are listed below for reference. + +Each function listed below will include a test for the Secret Server version to warn of any potential failure with an endpoint. +{: .notice--info} ## Function List diff --git a/docs/collections/_docs/03-invoketssrestapi.md b/docs/collections/_docs/03-invoketssrestapi.md index 7dd4abe6..03bcc7df 100644 --- a/docs/collections/_docs/03-invoketssrestapi.md +++ b/docs/collections/_docs/03-invoketssrestapi.md @@ -5,11 +5,11 @@ excerpt: "Thycotic.SecretServer raw API calls" last_modified_at: 2021-02-10T00:00:00-00:00 --- -The module functions utilize this command for calling endpoints. The functions are meant to handle formatting the output where it can be more easily read and utilzied for processing in PowerShell scripts. If you want to see the raw endpoint's output you can utilize `Invoke-TssRestApi` for that purpose. +The module functions utilize this command for calling endpoints. The functions are meant to handle formatting the output where it can be more easily read and utilized for processing in PowerShell scripts. If you want to see the raw endpoint's output, you can utilize `Invoke-TssRestApi` for that purpose. ## What about Invoke-RestMethod -In PowerShell, the cmdlet used for REST API calls is `Invoke-RestMethod`, and Thycotic.SecretServer uses this same command. The `Invoke-TssRestApi` acts as a wrapper to `Invoke-RestMethod` with a few additions: +In PowerShell, the cmdlet used for REST API calls is `Invoke-RestMethod` and Thycotic.SecretServer uses this same command. The `Invoke-TssRestApi` acts as a wrapper to `Invoke-RestMethod` with a few additions: - Deals with creating the required header object for Secret Server using `-PersonalAccessToken` - Unwrap objects returned by an endpoint easily using `-ExpandProperty`