Skip to content

Commit

Permalink
AUTH-5081 Add claims and scopes fields to Access IDP config
Browse files Browse the repository at this point in the history
  • Loading branch information
Jesse Li committed Mar 16, 2023
1 parent fb8eb69 commit 453482c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions access_identity_provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ type AccessIdentityProviderConfiguration struct {
CertsURL string `json:"certs_url,omitempty"`
ClientID string `json:"client_id,omitempty"`
ClientSecret string `json:"client_secret,omitempty"`
Claims []string `json:"claims,omitempty"`
DirectoryID string `json:"directory_id,omitempty"`
EmailAttributeName string `json:"email_attribute_name,omitempty"`
IdpPublicCert string `json:"idp_public_cert,omitempty"`
Expand All @@ -42,6 +43,7 @@ type AccessIdentityProviderConfiguration struct {
SupportGroups bool `json:"support_groups,omitempty"`
TokenURL string `json:"token_url,omitempty"`
PKCEEnabled *bool `json:"pkce_enabled,omitempty"`
Scopes []string `json:"scopes,omitempty"`
}

// AccessIdentityProvidersListResponse is the API response for multiple
Expand Down

0 comments on commit 453482c

Please sign in to comment.