From 942d4e001a4b58aa173384e5b0c4632393153c09 Mon Sep 17 00:00:00 2001 From: Chris Berkhout Date: Fri, 6 Dec 2024 10:14:42 +0100 Subject: [PATCH] resolve conflicts --- .../entityanalytics/provider/okta/internal/okta/okta.go | 6 ------ 1 file changed, 6 deletions(-) diff --git a/x-pack/filebeat/input/entityanalytics/provider/okta/internal/okta/okta.go b/x-pack/filebeat/input/entityanalytics/provider/okta/internal/okta/okta.go index a549e34eea04..f06222c41d99 100644 --- a/x-pack/filebeat/input/entityanalytics/provider/okta/internal/okta/okta.go +++ b/x-pack/filebeat/input/entityanalytics/provider/okta/internal/okta/okta.go @@ -179,8 +179,6 @@ func GetUserDetails(ctx context.Context, cli *http.Client, host, key, user strin return getDetails[User](ctx, cli, u, endpoint, key, user == "", omit, lim, window, log) } -<<<<<<< HEAD -======= // GetUserFactors returns Okta group roles using the groups API endpoint. host is the // Okta user domain and key is the API token to use for the query. group must not be empty. // @@ -225,7 +223,6 @@ func GetUserRoles(ctx context.Context, cli *http.Client, host, key, user string, return getDetails[Role](ctx, cli, u, endpoint, key, true, OmitNone, lim, window, log) } ->>>>>>> 4e19d09ab2 (x-pack/filebeat/input/entityanalytics/provider/okta: Rate limiting fixes (#41583)) // GetUserGroupDetails returns Okta group details using the users API endpoint. host is the // Okta user domain and key is the API token to use for the query. user must not be empty. // @@ -248,8 +245,6 @@ func GetUserGroupDetails(ctx context.Context, cli *http.Client, host, key, user return getDetails[Group](ctx, cli, u, endpoint, key, true, OmitNone, lim, window, log) } -<<<<<<< HEAD -======= // GetGroupRoles returns Okta group roles using the groups API endpoint. host is the // Okta user domain and key is the API token to use for the query. group must not be empty. // @@ -272,7 +267,6 @@ func GetGroupRoles(ctx context.Context, cli *http.Client, host, key, group strin return getDetails[Role](ctx, cli, u, endpoint, key, true, OmitNone, lim, window, log) } ->>>>>>> 4e19d09ab2 (x-pack/filebeat/input/entityanalytics/provider/okta: Rate limiting fixes (#41583)) // GetDeviceDetails returns Okta device details using the list devices API endpoint. host is the // Okta user domain and key is the API token to use for the query. If device is not empty, // details for the specific device are returned, otherwise a list of all devices is returned.