Skip to content

Commit

Permalink
corrected client oidc property name
Browse files Browse the repository at this point in the history
  • Loading branch information
wesleymccollam authored Nov 17, 2023
2 parents decf021 + bc4ca06 commit 781bded
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 39 deletions.
8 changes: 4 additions & 4 deletions api/pf-swagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26200,7 +26200,7 @@ components:
ClientOIDCPolicy:
description: OAuth Client Open ID Connect Policy.
example:
PingFederateLogoutCapable: true
PingAccessLogoutCapable: true
sectorIdentifierUri: sectorIdentifierUri
grantAccessSessionRevocationApi: true
idTokenContentEncryptionAlgorithm: AES_128_CBC_HMAC_SHA_256
Expand Down Expand Up @@ -26297,11 +26297,11 @@ components:
Determines whether this client is allowed to access the Session
Management API.
type: boolean
PingFederateLogoutCapable:
pingAccessLogoutCapable:
description:
"Set this value to true if you wish to enable client application\
\ logout, and the client is PingFederate, or its logout endpoints follow\
\ the PingFederate path convention."
\ logout, and the client is PingAccess, or its logout endpoints follow\
\ the PingAccess path convention."
type: boolean
logoutUris:
description:
Expand Down
8 changes: 4 additions & 4 deletions configurationapi/api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26192,7 +26192,7 @@ components:
ClientOIDCPolicy:
description: OAuth Client Open ID Connect Policy.
example:
PingFederateLogoutCapable: true
PingAccessLogoutCapable: true
sectorIdentifierUri: sectorIdentifierUri
grantAccessSessionRevocationApi: true
idTokenContentEncryptionAlgorithm: AES_128_CBC_HMAC_SHA_256
Expand Down Expand Up @@ -26284,10 +26284,10 @@ components:
description: Determines whether this client is allowed to access the Session
Management API.
type: boolean
PingFederateLogoutCapable:
pingAccessLogoutCapable:
description: "Set this value to true if you wish to enable client application\
\ logout, and the client is PingFederate, or its logout endpoints follow\
\ the PingFederate path convention."
\ logout, and the client is PingAccess, or its logout endpoints follow\
\ the PingAccess path convention."
type: boolean
logoutUris:
description: A list of client logout URI's which will be invoked when a
Expand Down
26 changes: 13 additions & 13 deletions configurationapi/docs/ClientOIDCPolicy.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Name | Type | Description | Notes
**PolicyGroup** | Pointer to [**ResourceLink**](ResourceLink.md) | | [optional]
**GrantAccessSessionRevocationApi** | Pointer to **bool** | Determines whether this client is allowed to access the Session Revocation API. | [optional]
**GrantAccessSessionSessionManagementApi** | Pointer to **bool** | Determines whether this client is allowed to access the Session Management API. | [optional]
**PingFederateLogoutCapable** | Pointer to **bool** | Set this value to true if you wish to enable client application logout, and the client is PingFederate, or its logout endpoints follow the PingFederate path convention. | [optional]
**PingAccessLogoutCapable** | Pointer to **bool** | Set this value to true if you wish to enable client application logout, and the client is PingAccess, or its logout endpoints follow the PingAccess path convention. | [optional]
**LogoutUris** | Pointer to **[]string** | A list of client logout URI's which will be invoked when a user logs out through one of PingFederate's SLO endpoints. | [optional]
**PairwiseIdentifierUserType** | Pointer to **bool** | Determines whether the subject identifier type is pairwise. | [optional]
**SectorIdentifierUri** | Pointer to **string** | The URI references a file with a single JSON array of Redirect URI and JWKS URL values. | [optional]
Expand Down Expand Up @@ -184,30 +184,30 @@ SetGrantAccessSessionSessionManagementApi sets GrantAccessSessionSessionManageme

HasGrantAccessSessionSessionManagementApi returns a boolean if a field has been set.

### GetPingFederateLogoutCapable
### GetPingAccessLogoutCapable

`func (o *ClientOIDCPolicy) GetPingFederateLogoutCapable() bool`
`func (o *ClientOIDCPolicy) GetPingAccessLogoutCapable() bool`

GetPingFederateLogoutCapable returns the PingFederateLogoutCapable field if non-nil, zero value otherwise.
GetPingAccessLogoutCapable returns the PingAccessLogoutCapable field if non-nil, zero value otherwise.

### GetPingFederateLogoutCapableOk
### GetPingAccessLogoutCapableOk

`func (o *ClientOIDCPolicy) GetPingFederateLogoutCapableOk() (*bool, bool)`
`func (o *ClientOIDCPolicy) GetPingAccessLogoutCapableOk() (*bool, bool)`

GetPingFederateLogoutCapableOk returns a tuple with the PingFederateLogoutCapable field if it's non-nil, zero value otherwise
GetPingAccessLogoutCapableOk returns a tuple with the PingAccessLogoutCapable field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.

### SetPingFederateLogoutCapable
### SetPingAccessLogoutCapable

`func (o *ClientOIDCPolicy) SetPingFederateLogoutCapable(v bool)`
`func (o *ClientOIDCPolicy) SetPingAccessLogoutCapable(v bool)`

SetPingFederateLogoutCapable sets PingFederateLogoutCapable field to given value.
SetPingAccessLogoutCapable sets PingAccessLogoutCapable field to given value.

### HasPingFederateLogoutCapable
### HasPingAccessLogoutCapable

`func (o *ClientOIDCPolicy) HasPingFederateLogoutCapable() bool`
`func (o *ClientOIDCPolicy) HasPingAccessLogoutCapable() bool`

HasPingFederateLogoutCapable returns a boolean if a field has been set.
HasPingAccessLogoutCapable returns a boolean if a field has been set.

### GetLogoutUris

Expand Down
36 changes: 18 additions & 18 deletions configurationapi/model_client_oidc_policy.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 781bded

Please sign in to comment.