Skip to content

Commit

Permalink
fix initialisms
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobbednarz committed May 6, 2024
1 parent e9a2115 commit f5ddd13
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions access_application.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ type AccessApplication struct {
OptionsPreflightBypass *bool `json:"options_preflight_bypass,omitempty"`
CustomPages []string `json:"custom_pages,omitempty"`
Tags []string `json:"tags,omitempty"`
ScimConfig *AccessApplicationScimConfig `json:"scim_config,omitempty"`
SCIMConfig *AccessApplicationScimConfig `json:"scim_config,omitempty"`
AccessAppLauncherCustomization
}

Expand All @@ -83,7 +83,7 @@ type AccessApplicationScimConfig struct {
Enabled *bool `json:"enabled,omitempty"`
RemoteURI string `json:"remote_uri,omitempty"`
Authentication *AccessApplicationScimAuthenticationJson `json:"authentication,omitempty"`
IdpUid string `json:"idp_uid,omitempty"`
IdPUID string `json:"idp_uid,omitempty"`
DeactivateOnDelete *bool `json:"deactivate_on_delete,omitempty"`
Mappings []*AccessApplicationScimMapping `json:"mappings,omitempty"`
}
Expand Down
8 changes: 4 additions & 4 deletions access_application_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1095,7 +1095,7 @@ func TestCreateAccessApplicationWithSCIMProvisioning(t *testing.T) {
UpdatedAt: &updatedAt,
CustomNonIdentityDenyURL: "https://blocked.com",
Tags: []string{"engineers"},
ScimConfig: &AccessApplicationScimConfig{
SCIMConfig: &AccessApplicationScimConfig{
Enabled: BoolPtr(true),
RemoteURI: "https://scim.com",
Authentication: &AccessApplicationScimAuthenticationJson{
Expand All @@ -1104,7 +1104,7 @@ func TestCreateAccessApplicationWithSCIMProvisioning(t *testing.T) {
baseScimAuthentication: baseScimAuthentication{Scheme: AccessApplicationScimAuthenticationSchemeOauthBearerToken},
},
},
IdpUid: "1234567",
IdPUID: "1234567",
DeactivateOnDelete: BoolPtr(true),
Mappings: []*AccessApplicationScimMapping{
{
Expand Down Expand Up @@ -1135,7 +1135,7 @@ func TestCreateAccessApplicationWithSCIMProvisioning(t *testing.T) {
baseScimAuthentication: baseScimAuthentication{Scheme: AccessApplicationScimAuthenticationSchemeOauthBearerToken},
},
},
IdpUid: "1234567",
IdPUID: "1234567",
DeactivateOnDelete: BoolPtr(true),
Mappings: []*AccessApplicationScimMapping{
{
Expand Down Expand Up @@ -1170,7 +1170,7 @@ func TestCreateAccessApplicationWithSCIMProvisioning(t *testing.T) {
baseScimAuthentication: baseScimAuthentication{Scheme: AccessApplicationScimAuthenticationSchemeOauthBearerToken},
},
},
IdpUid: "1234567",
IdPUID: "1234567",
DeactivateOnDelete: BoolPtr(true),
Mappings: []*AccessApplicationScimMapping{
{
Expand Down

0 comments on commit f5ddd13

Please sign in to comment.